/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #f5f0e8 0%, #faf8f5 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.mt60{
	margin-top: 60px;
}
.fwb{
	font-weight: bold;
}
.t-c {
	text-align: center;
}
.att{
	color: #cc4444;
	font-weight: bold;
}
/* ヘッダー */
.header {
    background: linear-gradient(135deg, #2c1810 0%, #4a3428 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo {
    text-align: center;
    padding: 20px 0;
    background-color: #FFF;
}

.header-logo img {
    max-width: 300px;
    height: auto;
}

.nav {
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 50%, #d4af37 100%);
    border-top: 2px solid #f2d06b;
    border-bottom: 3px solid #b8941f;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    display: block;
    padding: 5px 25px;
    color: #2c1810;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #fff 0%, #f2d06b 50%, #fff 100%);
    transform: translateX(-50%);
    transition: width 0.3s;
}

.nav-list a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #1a0f08;
}

.nav-list a:hover::before {
    width: 80%;
}

/* メインビジュアル */
.main-visual {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(242, 208, 107, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #1a0f08 0%, #2c1810 50%, #4a3428 100%);
    position: relative;
    overflow: hidden;
}

.luxury-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.03) 2px,
            rgba(212, 175, 55, 0.03) 4px
        );
    pointer-events: none;
}

.sparkle-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(242, 208, 107, 0.8), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(212, 175, 55, 0.8), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 30% 80%, rgba(242, 208, 107, 0.6), transparent);
    background-size: 200% 200%;
    animation: sparkleMove 8s linear infinite;
    pointer-events: none;
}

@keyframes sparkleMove {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%, 50% 100%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 50%;
    }
}

.main-visual-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.main-visual-image {
    position: relative;
    animation: fadeInLeft 1.2s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-frame {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 50%, #d4af37 100%);
    border-radius: 12px;
    overflow: hidden;
}



@keyframes frameShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.frame-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    z-index: 2;
}

@keyframes imageShine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.main-visual-text {
    position: relative;
    animation: fadeInRight 1.2s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.title-decoration {
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, #f2d06b, #d4af37, transparent);
    margin: 20px 0;
    position: relative;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.title-decoration::before,
.title-decoration::after {
    content: '◆';
    position: absolute;
    color: #d4af37;
    font-size: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.title-decoration::before {
    left: 0;
}

.title-decoration::after {
    right: 0;
}

.title-decoration.top {
    animation: decorationPulse 2s infinite;
}

.title-decoration.bottom {
    animation: decorationPulse 2s infinite 1s;
}

@keyframes decorationPulse {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(212, 175, 55, 1);
    }
}

.main-visual-text h1 {
    font-size: 4rem;
    color: #d4af37;
    font-weight: bold;
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, #d4af37, #f2d06b, #fff, #f2d06b, #d4af37);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 3s linear infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    letter-spacing: 0.1em;
    line-height: 1.4;
}

@keyframes titleGradient {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.subtitle {
    text-align: center;
    color: #f2d06b;
    font-size: 1.3rem;
    letter-spacing: 0.3em;
    margin-top: 30px;
    opacity: 0;
    animation: subtitleFadeIn 1.5s ease-out 0.8s forwards;
    text-shadow: 0 0 10px rgba(242, 208, 107, 0.8);
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ツアーポイント */
.tour-points {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c1810;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f2d06b, #d4af37);
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.point-box {
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
    border: 2px solid #d4af37;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.point-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: sparkle 3s infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: rotate(180deg);
    }
}

.point-box h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.points-single-box {
    max-width: 780px;
    margin: 0 auto;
    background-color: #fdfbf8;
    border: 1px solid #d6c88a;
    border-radius: 10px;
    padding: 36px 48px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.points-list li {
    position: relative;
    padding: 11px 0 11px 1.4em;
    font-size: 1.15rem;
    line-height: 1.95;
    color: #222222;
    letter-spacing: 0.04em;
    border-bottom: 1px solid #ede8d8;
    font-weight: 700;
}

.points-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.points-list li:first-child {
    padding-top: 0;
}

.points-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #b8991e;
    font-weight: 700;
}

@media (max-width: 768px) {
    .points-single-box {
        padding: 28px 28px;
    }
}

@media (max-width: 480px) {
    .points-single-box {
        padding: 22px 18px;
        border-radius: 8px;
    }

    .points-list li {
        font-size: 1.05rem;
        line-height: 1.85;
    }
}
/* ツアー概要 */
.tour-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c1810 0%, #4a3428 100%);
}

.tour-overview .section-title {
    color: #d4af37;
}

.info-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 245, 0.95) 100%);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 5px solid #d4af37;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.info-title {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.info-content {
    color: #333;
    font-size: 1rem;
}
.info-content2 {
    color: #333;
    font-size: 1rem;
	font-weight: bold;
}

/* スケジュール・価格 */
.schedule, .price {
    padding: 80px 0;
}

.schedule {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
}

.price {
    background: linear-gradient(135deg, #2c1810 0%, #4a3428 100%);
}

.price .section-title {
    color: #d4af37;
}

.price .info-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 245, 0.95) 100%);
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.schedule-table, .price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.schedule-table th, .price-table th {
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 100%);
    color: #2c1810;
    padding: 15px;
    font-weight: bold;
    border: 1px solid #b8941f;
}

.schedule-table td, .price-table td {
    padding: 15px;
    border: 1px solid #ddd;
}



/* ol と ul の共通スタイル */
ol, ul {
    padding-left: 0;
    margin: 20px 0;
}

/* 番号付きリスト (ol) */
ol {
    list-style: none;
    counter-reset: luxury-counter;
}

ol li {
    padding: 15px 0 15px 50px;
    position: relative;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    transition: all 0.3s;
    counter-increment: luxury-counter;
}

ol li::before {
    content: counter(luxury-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 100%);
    color: #2c1810;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 
        0 3px 10px rgba(212, 175, 55, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

ol li:hover {
    padding-left: 55px;
    color: #2c1810;
}

ol li:hover::before {
    background: linear-gradient(135deg, #f2d06b 0%, #d4af37 100%);
    box-shadow: 
        0 5px 15px rgba(212, 175, 55, 0.6),
        inset 0 1px 3px rgba(255, 255, 255, 0.7);
    transform: translateY(-50%) scale(1.1);
}



@keyframes listSparkle {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.3);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    }
}


/* ネストされたリスト */
ol ol, ul ul, ol ul, ul ol {
    margin: 10px 0;
    padding-left: 30px;
}

ol ol li::before {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
}



/* レスポンシブ対応 */
@media (max-width: 768px) {
    ol li {
        padding: 12px 0 12px 45px;
        font-size: 0.95rem;
    }
    
    ol li::before {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    

}

@media (max-width: 480px) {
    ol li {
        padding: 10px 0 10px 40px;
        font-size: 0.9rem;
    }
    
    ol li::before {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
}
/* コンテンツ内のulスタイル（クラス指定） */
.luxury-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.luxury-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    transition: all 0.3s;
}

.luxury-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 1.4rem;
    transition: all 0.3s;

}


@keyframes listSparkle {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.3);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    }
}

.luxury-list li:hover {
    padding-left: 40px;
    color: #2c1810;
}

.luxury-list li:hover::before {
    color: #f2d06b;
    text-shadow: 0 0 15px rgba(242, 208, 107, 1);
    transform: translateY(-50%) rotate(90deg) scale(1.2);
}

/* ネストされたリスト */
.luxury-list ul {
    margin: 10px 0;
    padding-left: 30px;
}

.luxury-list ul li::before {
    content: '◆';
    font-size: 1.1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .luxury-list li {
        padding: 10px 0 10px 30px;
        font-size: 0.95rem;
    }
    
    .luxury-list li::before {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .luxury-list li {
        padding: 8px 0 8px 28px;
        font-size: 0.9rem;
    }
    
    .luxury-list li::before {
        font-size: 1.1rem;
    }
}
/* 注意事項 */
.notes {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
}

/* お申込み方法 */
.application {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c1810 0%, #4a3428 100%);
}

.application .section-title {
    color: #d4af37;
}

.steps {
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 100%);
    color: #2c1810;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.step-content h3 {
    color: #2c1810;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.step-content p {
    color: #555;
}

.arrow-down {
    text-align: center;
    font-size: 2rem;
    color: #d4af37;
    margin: 10px 0;
}

/* お申し込みボタン */
.apply-button {
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 50%, #d4af37 100%);
    background-size: 200% auto;
    color: #2c1810;
    border: none;
    padding: 20px 60px;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    margin: 30px auto 0;
    display: block;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    animation: buttonPulse 2s infinite;
}

.apply-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 70%
    );
    animation: buttonShine 3s infinite;
}

.apply-button::after {
    content: '→';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    transition: all 0.3s;
    opacity: 0;
}
.apply-button_no {
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 50%, #d4af37 100%);
    background-size: 200% auto;
    color: #2c1810;
    border: none;
    padding: 20px 60px;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    margin: 30px auto 0;
    display: block;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    animation: buttonPulse 2s infinite;
}

.apply-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
}

.apply-button::after {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    transition: all 0.3s;
    opacity: 0;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(212, 175, 55, 0.5),
            0 0 30px rgba(212, 175, 55, 0.3),
            inset 0 2px 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 
            0 10px 35px rgba(212, 175, 55, 0.7),
            0 0 50px rgba(212, 175, 55, 0.5),
            inset 0 2px 5px rgba(255, 255, 255, 0.7);
    }
}

@keyframes buttonShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.apply-button:hover {
    transform: translateY(-5px) scale(1.05);
    background-position: 100% center;
    box-shadow: 
        0 15px 45px rgba(212, 175, 55, 0.8),
        0 0 60px rgba(242, 208, 107, 0.6),
        inset 0 2px 8px rgba(255, 255, 255, 0.7);
    padding-right: 70px;
}

.apply-button:hover::after {
    opacity: 1;
    right: 30px;
}

.apply-button:active {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(242, 208, 107, 0.4),
        inset 0 2px 5px rgba(255, 255, 255, 0.5);
}
/* 取消料について */
.cancellation {
    padding: 80px 0;
    background: linear-gradient(135deg, #3d1a1a 0%, #5c2828 100%);
    position: relative;
}

.cancellation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(220, 100, 100, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(200, 80, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cancellation .section-title {
    color: #ff9999;
    text-shadow: 0 2px 10px rgba(255, 100, 100, 0.5);
}

.cancellation .section-title::after {
    background: linear-gradient(90deg, transparent, #ff9999, #ff6666, #ff9999, transparent);
}



.cancellation-notice p {
    color: #cc4444;
    font-weight: bold;
    margin: 0;
}

.cancellation-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 25px rgba(200, 50, 50, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.cancellation-table th {
    background: linear-gradient(135deg, #cc4444 0%, #ff6666 100%);
    color: #fff;
    padding: 18px 15px;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cancellation-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #ffcccc;
    color: #333;
    vertical-align: middle;
}

.cancellation-table tbody tr {
    transition: all 0.3s;
}

.cancellation-table tbody tr:hover {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
}

.cancellation-table tbody tr:last-child td {
    border-bottom: none;
}

.fee-amount {
    font-weight: bold;
    color: #cc4444;
    font-size: 1.1rem;
    text-align: center;
}

.fee-amount.full {
    color: #bb0000;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #ffe0e0 0%, #ffcccc 100%);
}

.highlight-row {
    background: linear-gradient(135deg, #fff0f0 0%, #ffe5e5 100%);
}

.highlight-row:hover {
    background: linear-gradient(135deg, #ffe8e8 0%, #ffd0d0 100%);
}

.cancellation-note {
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 240, 0.95) 100%);
    padding: 20px 30px;
    border-radius: 8px;
    border: 2px solid #ff9999;
    box-shadow: 0 3px 15px rgba(200, 50, 50, 0.2);
}

.cancellation-note p {
    color: #cc4444;
    margin: 5px 0;
    font-size: 0.95rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .cancellation-table th,
    .cancellation-table td {
        padding: 12px 10px;
        font-size: 0.95rem;
    }
    
    .fee-amount {
        font-size: 1rem;
    }
    
    .fee-amount.full {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
/* Step内のスタイル */
.step {
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    text-align: left;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 100%);
    color: #2c1810;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.step-content h3 {
    color: #2c1810;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.step-content p {
    color: #555;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .apply-button {
        padding: 18px 50px;
        font-size: 1.2rem;
    }
    
    .apply-button:hover {
        padding-right: 60px;
    }
    
    .apply-button::after {
        font-size: 1.4rem;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .apply-button {
        padding: 15px 40px;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .apply-button:hover {
        padding-right: 40px;
    }
    
    .apply-button::after {
        display: none;
    }
    
    .step {
        padding: 20px;
    }
}
@media (max-width: 480px) {
    .apply-button {
        padding: 15px 40px;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .apply-button:hover {
        padding-right: 40px;
    }
    
    .apply-button::after {
        display: none;
    }
    
    .step {
        padding: 20px;
    }
}

/* お問い合わせ */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info .note {
    font-size: 0.9rem;
    color: #666;
	font-weight: bold;
}

.manager-info {
    border: 2px solid #d4af37;
    padding: 25px;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 30px;
}

.company-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.company-info h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.company-logo img {
    max-width: 200px;
    height: auto;
}

.privacy-info {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.privacy-info h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

/* フッター */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
    color: #d4af37;
    text-align: center!important;
    padding: 30px 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
    }
    
    .nav-list a {
        text-align: center;
        border-bottom: 1px solid rgba(44, 24, 16, 0.2);
    }
    
    .main-visual-content {
        grid-template-columns: 1fr;
    }
    
    .main-visual-text h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .company-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .company-logo {
        text-align: center;
		width: 50%;
    }
}

@media (max-width: 480px) {
    .header-logo img {
        max-width: 200px;
    }
    
    .nav-list a {
        padding: 5px 15px;
        font-size: 14px;
    }
    
    .main-visual-text h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .step {
        padding: 20px;
    }
    
    .apply-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .main-visual {
        padding: 60px 0;
    }
    
    .main-visual-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-visual-text h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-visual-text h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }
    
    .image-frame {
        padding: 10px;
    }
}
/* TOPへ戻るボタン */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 100%);
    border: 2px solid #f2d06b;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 
        0 5px 20px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: buttonPulseFloat 2s infinite;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-arrow {
    font-size: 1.8rem;
    color: #2c1810;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    animation: arrowBounce 1.5s infinite;
}

.scroll-text {
    font-size: 0.7rem;
    color: #2c1810;
    font-weight: bold;
    margin-top: 2px;
    letter-spacing: 0.05em;
}

@keyframes buttonPulseFloat {
    0%, 100% {
        box-shadow: 
            0 5px 20px rgba(212, 175, 55, 0.5),
            0 0 20px rgba(212, 175, 55, 0.3),
            inset 0 2px 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 
            0 8px 30px rgba(212, 175, 55, 0.7),
            0 0 35px rgba(212, 175, 55, 0.5),
            inset 0 2px 5px rgba(255, 255, 255, 0.7);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #d4af37, #f2d06b);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, #f2d06b 0%, #d4af37 100%);
    box-shadow: 
        0 10px 35px rgba(212, 175, 55, 0.8),
        0 0 50px rgba(242, 208, 107, 0.6),
        inset 0 2px 8px rgba(255, 255, 255, 0.7);
}

.scroll-to-top:hover::before {
    opacity: 0.5;
    animation: ringPulse 1s infinite;
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.scroll-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .scroll-arrow {
        font-size: 1.6rem;
    }
    
    .scroll-text {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .scroll-arrow {
        font-size: 1.5rem;
    }
    
    .scroll-text {
        font-size: 0.6rem;
    }
}

/* 確認ボタン */
.confirm-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.confirm-btn {
    position: relative;
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 999px;
    overflow: hidden;
}

.confirm-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d4af37, #f2d06b);
    z-index: 1;
}


.confirm-btn:hover::before {
    width: 300px;
    height: 300px;
}

.confirm-btn:active {
    transform: scale(0.98);
}
.confirm-btn span {
    position: relative;
    z-index: 2;
}
.confirm-btn::before {
    z-index: 1;
}

/* YESボタン */
.yes-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 100%);
    color: #2c1810;
    border-color: #d4af37;
    box-shadow: 
        0 5px 20px rgba(212, 175, 55, 0.4),
        inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

.yes-btn::before {
    background: linear-gradient(135deg, #f2d06b 0%, #d4af37 100%);
}

.yes-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(212, 175, 55, 0.6),
        inset 0 2px 5px rgba(255, 255, 255, 0.5);
    border-color: #f2d06b;
}

/* NOボタン */
.no-btn {
    background: linear-gradient(135deg, #888 0%, #aaa 100%);
    color: #fff;
    border-color: #888;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.2),
        inset 0 2px 5px rgba(255, 255, 255, 0.2);
}

.no-btn::before {
    background: linear-gradient(135deg, #666 0%, #888 100%);
}

.no-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.3);
    border-color: #aaa;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .confirm-buttons {
        gap: 20px;
    }
    
    .confirm-btn {
        min-width: 130px;
        padding: 12px 30px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .confirm-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .confirm-btn {
        width: 80%;
        max-width: 250px;
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}