/* ========================================
   Zendia Medical Tourism LP - Global Styles
   Apple Minimal × Luxury × Japanese Trust
   ======================================== */

:root {
    /* Color Palette */
    --color-gold: #D4AF37;
    --color-gold-soft: rgba(212, 175, 55, 0.1);
    --color-navy: #00233D;
    --color-text-main: #1D1D1F;
    --color-text-secondary: #6E6E73;
    --color-bg-alt: #F8F9FB;

    /* CTA Specific */
    --color-cta-bg: var(--color-gold);
    --color-cta-text: var(--color-navy);

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    --font-heading: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
}

/* ========== CSS Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background: #FFFFFF;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
}

/* ========== Typography ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6E6E73;
}

/* ========== Layout ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.section-alt {
    background: #F8F9FB;
}

/* ========== MEISHI DESIGN ELEMENTS (Shared) ========== */
:root {
    --meishi-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='40' height='40' fill='none'/%3E%3Cpath d='M0 10h10V0M10 0v10h10M20 0v10h10V0M30 10h10M0 20h10M10 20v10h10v10M30 10v10h10v10M0 30h10v10M20 20h10v10h10' stroke='rgba(255,255,255,0.06)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    --meishi-curve-gold: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 200'%3E%3Cpath d='M600 0 Q400 80 200 60 Q100 50 0 100' stroke='%23D4AF37' stroke-width='1.2' fill='none' opacity='0.5'/%3E%3Cpath d='M600 20 Q420 100 220 75 Q110 65 0 120' stroke='%23D4AF37' stroke-width='0.8' fill='none' opacity='0.3'/%3E%3Cpath d='M600 5 Q380 90 180 65 Q80 55 0 110' stroke='%23ffffff' stroke-width='0.6' fill='none' opacity='0.25'/%3E%3Cpath d='M600 35 Q440 110 240 85 Q130 75 0 135' stroke='%23ffffff' stroke-width='0.5' fill='none' opacity='0.15'/%3E%3C/svg%3E");
}

/* ========== Navigation (Meishi Design) ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* 名刺デザインのネイビー背景 */
    background: #0E162B;
    /* 幾何学パターンの重ね掛け */
    background-image: var(--meishi-pattern);
    background-repeat: repeat;
    z-index: 1000;
    border-bottom: 2px solid #D4AF37; /* ゴールドの境界線 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden; /* 流線のはみ出しを防ぐ */
}

/* 右側に流線を疑似要素で配置 */
.nav::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: var(--meishi-curve-gold);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem; /* 少し高さを抑える */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1; /* 流線より上にする */
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

.nav-logo-img {
    height: 80px; /* バランス調整のため少し小さく */
    width: auto;
    display: block;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85); /* ネイビーに映える白系 */
    text-decoration: none;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #D4AF37; /* ホバーでゴールドに */
    opacity: 1;
}

.language-switcher {
    display: flex;
    gap: 0.75rem;
}

.language-switcher a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.language-switcher a:hover,
.language-switcher a.active {
    color: #D4AF37; /* ゴールドをアクセントに */
}

/* ========== Hero Slideshow Section ========== */
.hero-slideshow {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: 72px;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.4) 0%, rgba(212, 175, 55, 0.2) 100%);
    /* Weakened overlay opacity */
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 2rem;
    text-align: center;
    color: #FFFFFF;
    top: -8rem;
    /* Move content block up globally */
}

.slide-content h1 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.5rem;
    color: #F8F9FB;
    margin-bottom: 3rem;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.slide-content .btn {
    animation: fadeInUp 1s ease 0.4s both;
    margin-top: 15rem;
    /* Large gap globally */
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    /* Metallic Gold Gradient */
    background-size: 200% auto;
    color: #000;
    /* Dark text for contrast on gold */
    box-shadow: 0 8px 24px rgba(191, 149, 63, 0.4);
    border: 1px solid #B38728;
}

.slide-content .btn:hover {
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.6);
}

/* Slide Navigation Dots */
.slide-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.dot:hover {
    background: rgba(212, 175, 55, 0.6);
    border-color: #D4AF37;
    transform: scale(1.2);
}

.dot.active {
    background: #D4AF37;
    border-color: #D4AF37;
    width: 40px;
    border-radius: 7px;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #D4AF37;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #C19B2A;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #1D1D1F;
    border: 1px solid #D2D2D7;
}

.btn-secondary:hover {
    border-color: #1D1D1F;
}

/* ========== 3-Block Layout (Why Japan × Why Zendia) ========== */
.three-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.block {
    text-align: center;
}

.block-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin-bottom: 1.5rem;
}

.block-icon svg {
    width: 32px;
    height: 32px;
    opacity: 0.9;
}

.block h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.block p {
    font-size: 1rem;
    line-height: 1.75;
}

/* ========== Vertical Timeline (Premium Minimal) ========== */
.timeline {
    max-width: 700px;
    margin: 4rem auto;
    position: relative;
    padding-left: 0;
    /* Remove left padding */
}

.timeline::before {
    content: '';
    position: absolute;
    left: 49px;
    /* Adjust line position */
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(26, 42, 108, 0.2);
    z-index: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.timeline::before {
    left: 40px;
    /* Center with 80px width icon container */
}

.timeline-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    background: #fff;
    padding: 0 0.5rem;
}

.timeline-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E5E5E7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
    stroke: #1A2A6C;
    stroke-width: 1.5;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1D1D1F;
    letter-spacing: 0.01em;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: #6E6E73;
    max-width: 580px;
}

/* ========== Stay Example (3-4 Days) ========== */
.stay-example {
    max-width: 820px;
    margin: 3rem auto;
}

.stay-day {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #E5E5E7;
}

.stay-day:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.stay-day-number {
    flex-shrink: 0;
    width: 120px;
    font-size: 1.75rem;
    font-weight: 500;
    color: #86868B;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.stay-day-content {
    flex: 1;
}

.stay-day-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1D1D1F;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.stay-day-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: #6E6E73;
}

/* ========== Options Grid ========== */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.option-item {
    border: 1px solid #E5E5E7;
    border-radius: 12px;
    transition: border-color 0.3s ease;
    overflow: hidden;
}

.option-item-body {
    padding: 1.5rem 2rem 2rem;
}

.option-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.option-item:hover {
    border-color: #1D1D1F;
}

.option-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.option-item p {
    font-size: 0.9375rem;
}

/* ========== Investment (Pricing) ========== */
.pricing {
    max-width: 600px;
    margin: 3rem auto;
    text-align: center;
}

.price-amount {
    font-size: 3rem;
    font-weight: 600;
    margin: 2rem 0;
}

.price-note {
    font-size: 0.875rem;
    color: #86868B;
}

/* ========== Form ========== */
.form {
    max-width: 600px;
    margin: 3rem auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1D1D1F;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid #D2D2D7;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1D1D1F;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-notice {
    font-size: 0.75rem;
    color: #86868B;
    margin-top: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.privacy-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #1D1D1F;
}

.privacy-consent input {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.privacy-consent a {
    color: var(--color-gold);
    text-decoration: none;
}

.privacy-consent a:hover {
    text-decoration: underline;
}

/* CTA Buttons */
.btn-cta-nav {
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
    background: var(--color-cta-bg);
    color: var(--color-cta-text);
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    opacity: 0.9;
}

/* Mobile Sticky CTA Bar */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 999;
    display: none;
    /* Shown via Media Query */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cta-mobile {
    width: 100%;
    padding: 1rem;
    background: var(--color-cta-bg);
    color: var(--color-cta-text);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Mobile Scroll Animation: Shrink */
.mobile-cta-bar.shrink {
    padding: 0.6rem 1.5rem;
}

.mobile-cta-bar.shrink .btn-cta-mobile {
    padding: 0.75rem;
    font-size: 0.8125rem;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.6rem 1rem;
        flex-wrap: nowrap;
        align-items: center;
    }

    .nav-logo {
        gap: 0.6rem !important;
        flex-shrink: 0;
    }

    .nav-logo-img {
        height: 36px;
    }

    .nav-logo span {
        font-size: 1.2rem !important;
        letter-spacing: 0.15em !important;
    }

    .nav-actions {
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .language-switcher {
        gap: 0.4rem;
    }

    .language-switcher a {
        font-size: 0.72rem;
    }

    .btn-cta-nav {
        display: none;
    }

    .nav-actions .btn-cta-nav {
        display: none;
    }

    .mobile-cta-bar {
        display: block;
    }

    .hero-slideshow {
        margin-top: 60px;
        height: 75vh;
    }

    /* スライドごとの background-position（モバイル調整） */
    .slide-1 .slide-image { background-position: center center; }
    .slide-2 .slide-image { background-position: center center; }
    .slide-3 .slide-image { background-position: 70% center; }
    .slide-4 .slide-image { background-position: center center; }
    .slide-5 .slide-image { background-position: 60% center; }

    .why-row-label {
        font-size: 0.9rem !important;
        letter-spacing: 0 !important;
        padding: 0.5rem 0.8rem !important;
    }

    .slide-content {
        text-align: center;
        width: 100%;
        padding: 0 1.5rem;
    }

    .slide-content h1 {
        text-align: center;
    }

    .slide-content p {
        text-align: center;
    }

    .three-blocks {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .section-why .block {
        padding: 2rem 1.5rem;
    }

    .section-why h2.text-center {
        font-size: 1.3rem !important;
    }

    .section-why .block-icon {
        height: 40px !important;
        margin-bottom: 0.8rem !important;
    }

    .section-why .block-icon svg {
        width: 40px !important;
        height: 40px !important;
    }

    .flow-step-num {
        font-size: 3rem !important;
    }

    .japan-appeal-title {
        font-size: 1.2rem !important;
        line-height: 1.6 !important;
    }

    .section-package-bg h2.text-center {
        font-size: 1.3rem !important;
    }

    .section-package-bg h2.text-center span {
        font-size: 0.85rem !important;
    }

    #form.section {
        padding-top: 4rem !important;
    }

    #form .section-alt {
        padding-top: 3rem !important;
    }

    section#form {
        padding-top: 3rem !important;
    }

    .disclaimer {
        padding: 1rem 0 !important;
    }

    .form {
        margin: 1.5rem auto !important;
    }

    #form {
        padding-bottom: 3rem !important;
    }

    .section-package-bg {
        padding-top: 3rem !important;
        padding-bottom: 2rem !important;
    }

    .faq + .section h2,
    section[style*="padding-top: 4rem"] h2 {
        font-size: 1.3rem !important;
    }

    .faq ~ p,
    section p[style*="font-family: var(--font-display)"] {
        font-size: 1.2rem !important;
        letter-spacing: 0.1em !important;
    }

    .disclaimer-text {
        font-size: 0.72rem !important;
        line-height: 1.6 !important;
    }

    .flow-cta-wrap {
        display: none !important;
    }

    .kenko-eyebrow {
        font-size: 1rem !important;
        letter-spacing: 0.12em !important;
    }

    .kenko-title {
        font-size: 1.3rem !important;
    }

    .kenko-sub {
        font-size: 0.85rem !important;
        text-align: left !important;
    }
}

/* ========== FAQ Accordion ========== */
.faq {
    max-width: 720px;
    margin: 0 auto;
}

.faq-category {
    margin-top: 3rem;
    margin-bottom: 0.5rem;
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-category-label {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-bottom: 0.9rem;
    border-bottom: 2px solid rgba(212,175,55,0.5);
    margin-bottom: 0;
}

.faq-category-ja {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1712;
    letter-spacing: 0.06em;
}

.faq-category-en {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 400;
    color: #c8ae6a;
    letter-spacing: 0.2em;
    opacity: 1;
    text-transform: uppercase;
}

.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.faq-item:first-child {
    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.faq-question {
    width: 100%;
    padding: 1.2rem 0;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #1D1D1F;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.25s ease;
}

.faq-question:hover {
    opacity: 1;
    color: #D4AF37;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: #D4AF37;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.4rem;
}

.faq-answer p {
    font-size: 0.85rem;
    line-height: 1.85;
    color: #555;
    letter-spacing: 0.03em;
    padding-right: 1.5rem;
}

/* ========== About Section ========== */
.about {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.office-info {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.office-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.office-caption {
    font-size: 0.875rem;
    color: #86868B;
    letter-spacing: 0.02em;
}

.office-address {
    font-size: 0.9375rem;
    color: #1D1D1F;
    margin-bottom: 0.5rem;
}

/* ========== Medical Disclaimer ========== */
.disclaimer {
    background: #F8F9FB;
    padding: 2rem 0;
    border-top: 1px solid #E5E5E7;
}

.disclaimer-text {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #86868B;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

/* ========== Thank You Page ========== */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 8rem 0;
    margin-top: 72px;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-headers {
    margin-bottom: 2rem;
}

.thank-you-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #1D1D1F;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.thank-you-title:last-child {
    margin-bottom: 0;
}

.thank-you-message {
    font-size: 1rem;
    color: #6E6E73;
    margin: 2rem 0 3rem;
    line-height: 1.7;
}

.thank-you-contact {
    background: #F8F9FB;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
}

.thank-you-contact h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1D1D1F;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-method svg {
    flex-shrink: 0;
}

.contact-method a {
    font-size: 1.125rem;
    color: #1D1D1F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #D4AF37;
}

.coming-soon {
    font-size: 1rem;
    color: #86868B;
}

/* ========== Footer ========== */
.footer {
    position: relative;
    background: #0E162B; /* Matches Header Navy */
    background-image: var(--meishi-pattern);
    background-repeat: repeat;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    border-top: 2px solid #D4AF37;
    overflow: hidden;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: var(--meishi-curve-gold);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-address {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-email a {
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-text-main);
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section p,
.footer-section a {
    color: #86868B;
    font-size: 0.875rem;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #424245;
    color: #86868B;
    font-size: 0.875rem;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .hero-slideshow {
        min-height: 600px;
    }

    .slide-content h1 {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .slide-content p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .slide-dots {
        bottom: 2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .three-blocks {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline {
        padding-left: 60px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-number {
        left: -60px;
        width: 40px;
        padding-right: 16px;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.9375rem;
    }

    .stay-day {
        flex-direction: column;
    }

    .stay-day-number {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .stay-day-content h3 {
        font-size: 1.125rem;
    }

    .stay-day-content p {
        font-size: 0.9375rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========== Utility Classes ========== */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

/* ==========================================
   PREMIUM DESIGN ENHANCEMENTS
   ========================================== */

/* --- Section Heading — Gold Underline --- */
.section h2.text-center,
.section .container>h2.text-center {
    position: relative;
    padding-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

.section h2.text-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

/* --- Why Japan Section: Dark Background --- */
.section-why {
    background: #0E162B; /* ヘッダーと同じネイビー */
    background-image: var(--meishi-pattern);
    background-repeat: repeat;
    padding: 8rem 0;
    position: relative;
}

/* 右上に名刺の流線を疑似要素で追加 */
.section-why::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: var(--meishi-curve-gold);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.section-why .container {
    position: relative;
    z-index: 1; /* 流線の上に配置 */
}

.section-why h2.text-center {
    color: #FFFFFF;
}

.section-why h2.text-center::after {
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

/* --- Block Cards (Why Japan) — Premium Card --- */
.section-why .block {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95); /* パネル中は白色に */
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-top: 3px solid #D4AF37; /* ゴールドアクセント */
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.section-why .block:hover {
    background: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.section-why .block-icon {
    height: 72px;
    margin-bottom: 2rem;
}

.section-why .block-icon svg {
    width: 80px;
    height: 80px;
    color: #0E162B;
    fill: #0E162B;
}

.section-why .block h3 {
    font-family: var(--font-display);
    color: #0E162B;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.section-why .block p {
    color: #333333; /* 読みやすい黒色 */
    font-size: 0.9375rem;
    line-height: 1.85;
}

/* --- Why Row Headers (Japan / ZENDIA separator labels) --- */
.why-row-header {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
}

.why-row-header--second {
    margin-top: 4.5rem;
}

.why-row-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: rgba(212, 175, 55, 0.88);
    border-top: 1px solid rgba(212, 175, 55, 0.38);
    border-bottom: 1px solid rgba(212, 175, 55, 0.38);
    padding: 0.7rem 3rem;
}

/* --- Japanese sub-title inside block card --- */
.section-why .block .block-ja-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #0E162B;
    line-height: 1.5;
    margin-bottom: 0.35rem;
    flex: none;
}

/* --- Equal-height cards: flex column layout --- */
.section-why .block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-why .block p:last-child {
    flex: 1;
    text-align: left;
}

@media (max-width: 768px) {
    .why-row-header--second {
        margin-top: 3rem;
    }
}

/* ===== 3-Step Flow Section ===== */
.section-flow-bg {
    background-color: #0E162B;
    position: relative;
    overflow: hidden;
    padding-top: 4.5rem;
    padding-bottom: 5rem;
}

.section-flow-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212,175,55,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-flow-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.5));
    pointer-events: none;
}

.flow-header {
    max-width: 560px;
    margin: 0 auto 3.5rem;
}

.flow-eyebrow {
    font-family: var(--font-display);
    font-size: 1.7rem;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    opacity: 0.8;
}

.flow-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-weight: 500;
    color: #f5f0e8;
    letter-spacing: 0.06em;
    line-height: 1.55;
}

/* Grid: cards + arrows */
.flow-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    max-width: 1160px;
    margin: 0 auto;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.8rem;
    opacity: 0.6;
}

/* Card */
.flow-card-img {
    flex: 1;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
    min-width: 0;
}

.flow-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1712 0%, #221e16 100%);
    border-bottom: 1px solid rgba(212,175,55,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.flow-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212,175,55,0.1);
    pointer-events: none;
}

.flow-img-label {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(212,175,55,0.25);
    letter-spacing: 0.1em;
}

.flow-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flow-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.14);
    border-radius: 2px;
    padding: 2rem 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s ease;
    height: 100%;
}

.flow-card:hover {
    border-color: rgba(212,175,55,0.32);
}

.flow-card-top {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.flow-step-num {
    font-family: 'Cinzel', 'Trajan Pro', serif;
    font-size: 5.5rem;
    font-weight: 300;
    color: rgba(196,164,74,0.35);
    line-height: 1;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.flow-icon-wrap {
    flex-shrink: 0;
}

.flow-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.flow-card-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 700;
    color: #f0e8d0;
    letter-spacing: 0.04em;
    line-height: 1.4;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

.flow-card-who {
    font-size: 0.9rem;
    color: rgba(196,164,74,0.7);
    letter-spacing: 0.06em;
    margin: 0;
}

.flow-who-zendia {
    color: rgba(196,164,74,0.7);
    font-weight: 500;
}

.flow-who-client {
    color: rgba(196,164,74,0.7);
    font-weight: 500;
}

.flow-card-text {
    font-family: var(--font-body);
    font-size: 1.0rem;
    color: rgba(245,240,232,0.6);
    line-height: 1.85;
    letter-spacing: 0.02em;
    margin: 0;
}

/* Responsive: stack on mobile */
@media (max-width: 680px) {
    .flow-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .flow-arrow {
        transform: rotate(90deg);
        padding: 0.5rem 0;
    }
}

/* --- Timeline Section: Subtle Kyoto Background --- */
/* ===== 日本の健診が選ばれる理由 ===== */
.section-kenko-bg {
    position: relative;
    background-color: #14120e;
    overflow: hidden;
}

.section-kenko-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212,175,55,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.kenko-header {
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.kenko-eyebrow {
    font-family: var(--font-display);
    font-size: 1.28rem;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    opacity: 0.8;
}

.kenko-title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: #f5f0e8;
    letter-spacing: 0.06em;
    margin-bottom: 1.1rem;
    line-height: 1.5;
}

.kenko-sub {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: rgba(245,240,232,0.65);
    line-height: 1.85;
    letter-spacing: 0.03em;
}

.kenko-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1080px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .kenko-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .kenko-grid {
        grid-template-columns: 1fr;
    }
}

.kenko-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.kenko-card:hover {
    border-color: rgba(212,175,55,0.35);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.kenko-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
}

.kenko-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1712 0%, #221e16 100%);
    border-bottom: 1px solid rgba(212,175,55,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.kenko-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212,175,55,0.1);
    pointer-events: none;
}

.kenko-img-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 300;
    color: rgba(212,175,55,0.2);
    letter-spacing: 0.05em;
    line-height: 1;
}

.kenko-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kenko-card-body {
    padding: 1.4rem 1.3rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.kenko-card-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #f0e8d0;
    letter-spacing: 0.04em;
    line-height: 1.4;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(212,175,55,0.18);
}

.kenko-card-text {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(245,240,232,0.62);
    line-height: 1.8;
    letter-spacing: 0.02em;
    flex: 1;
}

.section-timeline-bg {
    position: relative;
    background-color: #F8F9FB;
    overflow: hidden;
}

.section-timeline-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/hero3kyoto.png');
    background-size: cover;
    background-position: center top;
    opacity: 0.06;
    pointer-events: none;
}

.section-timeline-bg .container {
    position: relative;
    z-index: 1;
}

/* --- Timeline: Gold Vertical Line --- */
.section-timeline-bg .timeline::before {
    background: linear-gradient(to bottom, #D4AF37, rgba(212, 175, 55, 0.1));
    width: 1px;
}

/* --- Timeline: Gold Numbers --- */
.section-timeline-bg .timeline-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: #D4AF37;
    letter-spacing: 0.08em;
    background: transparent;
}

/* --- Timeline: Gold Ring Icon --- */
.section-timeline-bg .timeline-icon {
    width: 72px;
    height: 72px;
    border: 1.5px solid #D4AF37;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

.section-timeline-bg .timeline-icon svg {
    width: 36px;
    height: 36px;
    stroke: #D4AF37;
}

/* --- Timeline Content Typography --- */
.section-timeline-bg .timeline-content h3 {
    color: #1A2A6C;
    font-size: 1.125rem;
    letter-spacing: 0.03em;
}

/* --- Example Package Section: Subtle Hotel Background (Removed) --- */
.section-package-bg {
    position: relative;
    overflow: hidden;
}


.section-package-bg .container {
    position: relative;
    z-index: 1;
}

/* --- Stay Day: Gold Day Numbers --- */
.section-package-bg .stay-day-number {
    font-family: var(--font-display);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 130px;
    text-align: center;
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    padding-right: 2.5rem;
    margin-right: 2.5rem;
    line-height: 1;
}

.section-package-bg .stay-day-number .day-word {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.38em;
    color: rgba(212, 175, 55, 0.7);
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.section-package-bg .stay-day-number .day-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 300;
    color: #D4AF37;
    line-height: 1;
    letter-spacing: 0.03em;
}

.section-package-bg .stay-day {
    background: #FFFFFF;
    border: none;
    border-radius: 0;
    padding: 2rem 2.5rem 2rem 3rem;
    margin-bottom: 1.25rem;
    align-items: center;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
    position: relative;
    opacity: 0;
    transform: scale(0.97);
    filter: blur(5px);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease, box-shadow 0.3s ease;
}

/* 左ボーダーを疑似要素でアニメーション化 */
.section-package-bg .stay-day::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(212, 175, 55, 0.5);
    transform: scaleY(0);
    transform-origin: top;
}

/* フェードイン状態 */
.section-package-bg .stay-day.fade-in {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.section-package-bg .stay-day.fade-in::before {
    animation: stayBorderGrow 0.45s ease 0.28s forwards;
}

@keyframes stayBorderGrow {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
}

/* ホバー */
.section-package-bg .stay-day:hover {
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.1);
}

.section-package-bg .stay-day:hover::before {
    background: #D4AF37;
    transition: background 0.3s ease;
}

/* スクロール時の段違い入場（nth-child stagger） */
.section-package-bg .stay-day:nth-child(2) { transition-delay: 0.07s; }
.section-package-bg .stay-day:nth-child(3) { transition-delay: 0.14s; }
.section-package-bg .stay-day:nth-child(4) { transition-delay: 0.21s; }
.section-package-bg .stay-day:nth-child(5) { transition-delay: 0.28s; }
.section-package-bg .stay-day:nth-child(6) { transition-delay: 0.35s; }
.section-package-bg .stay-day:nth-child(7) { transition-delay: 0.42s; }

/* 日数ナンバーのポップアニメーション */
@keyframes dayNumPop {
    0%   { transform: scale(0.65); }
    65%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes dayNumPopHover {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.18); }
    100% { transform: scale(1); }
}

.section-package-bg .stay-day-number .day-num {
    display: inline-block;
}

.section-package-bg .stay-day.fade-in .day-num {
    animation: dayNumPop 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) 0.38s both;
}

.section-package-bg .stay-day.fade-in:hover .day-num {
    animation: dayNumPopHover 0.45s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

/* カード間をつなぐ縦の糸 */
.section-package-bg .stay-example {
    position: relative;
}

.section-package-bg .stay-example::before {
    content: '';
    position: absolute;
    left: 1px;
    top: 3%;
    bottom: 3%;
    width: 1px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(212, 175, 55, 0.15) 12%,
        rgba(212, 175, 55, 0.15) 88%,
        transparent
    );
    pointer-events: none;
    z-index: 0;
}

.section-package-bg .stay-day:last-child {
    margin-bottom: 0;
}

.section-package-bg .stay-day-content h3 {
    font-family: var(--font-display);
    color: #0E162B;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

/* --- Pricing Block: Gold Border Treatment --- */
.section-package-bg .pricing {
    background: rgba(212, 175, 55, 0.04);
    border-top: 1.5px solid #D4AF37;
    border-bottom: 1.5px solid #D4AF37;
    padding: 3rem 2rem;
    border-radius: 0;
    text-align: left;
    word-break: normal;
    overflow-wrap: break-word;
}

/* 各パネルカードの高級感 */
.section-package-bg .pricing > div > div {
    background: linear-gradient(145deg, rgba(255,255,255,1) 0%, rgba(252,249,242,1) 100%) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.045), 0 0 0 1px rgba(212,175,55,0.18);
    border: none !important;
    border-radius: 4px !important;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.section-package-bg .pricing > div > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212,175,55,0.15), 0 0 0 1px rgba(212,175,55,0.38);
}

.section-package-bg .price-amount {
    font-family: var(--font-display);
    color: #D4AF37;
    font-size: 3.5rem;
    letter-spacing: 0.02em;
}

/* --- Options Section: Gold Hover & Title Accent --- */
.section-options .option-item:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.12);
    transform: translateY(-3px);
}

.section-options .option-item {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.section-options .option-item-body h3 {
    position: relative;
    padding-top: 1rem;
}

.section-options .option-item-body h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 1.5px;
    background: #D4AF37;
}

/* =============================================
   Japan Appeal Section
   ============================================= */
.section-japan-appeal {
    background: #100f0d;
    padding: 6rem 0 7rem;
    position: relative;
    overflow: hidden;
}

.section-japan-appeal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.5));
}

.japan-appeal-header {
    margin-bottom: 3.5rem;
}

.japan-appeal-eyebrow {
    font-family: var(--font-display);
    font-size: 1.7rem;
    letter-spacing: 0.38em;
    color: #D4AF37;
    opacity: 0.8;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
}

.japan-appeal-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.6;
    color: #F5EED8;
    margin-bottom: 1.4rem;
}

.japan-appeal-sub {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 2;
    color: rgba(245,238,216,0.55);
    letter-spacing: 0.04em;
}

/* Grid */
.japan-appeal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Card */
.appeal-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.14);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.appeal-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.appeal-card:hover {
    border-color: rgba(212,175,55,0.45);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(212,175,55,0.22);
}

/* Image placeholder */
.appeal-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    flex-shrink: 0;
}

.appeal-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1c1a16 0%, #252118 100%);
    border-bottom: 1px solid rgba(212,175,55,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.appeal-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(212,175,55,0.12);
    pointer-events: none;
}

.appeal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.appeal-img-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: rgba(212,175,55,0.25);
    letter-spacing: 0.05em;
    line-height: 1;
}

/* Card body */
.appeal-card-body {
    padding: 1.4rem 1.3rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.appeal-card-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #E8D8A0;
    position: relative;
    padding-bottom: 0.7rem;
}

.appeal-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 1px;
    background: rgba(212,175,55,0.5);
}

.appeal-card-text {
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.85;
    color: rgba(245,238,216,0.55);
    letter-spacing: 0.03em;
    flex: 1;
}

/* Stagger */
.appeal-card:nth-child(2) { transition-delay: 0.07s; }
.appeal-card:nth-child(3) { transition-delay: 0.14s; }
.appeal-card:nth-child(4) { transition-delay: 0.21s; }
.appeal-card:nth-child(5) { transition-delay: 0.08s; }
.appeal-card:nth-child(6) { transition-delay: 0.15s; }
.appeal-card:nth-child(7) { transition-delay: 0.22s; }
.appeal-card:nth-child(8) { transition-delay: 0.29s; }

/* Responsive */
@media (max-width: 1024px) {
    .japan-appeal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .japan-appeal-grid {
        grid-template-columns: 1fr;
    }
    .japan-appeal-sub br {
        display: none;
    }
}

/* ─── Step Form ──────────────────────────────────────── */

/* Step indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212,175,55,0.15);
    margin-bottom: 2rem;
}

.step-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.step-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D8D8DA;
    transition: background 0.3s ease, transform 0.3s ease;
}

.step-dot.active {
    background: #D4AF37;
    transform: scale(1.25);
}

.step-dot.done {
    background: rgba(212,175,55,0.45);
    transform: scale(1);
}

.step-counter {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.14em;
    color: #555;
}

/* Step panels */
.form-step {
    display: none;
    animation: stepFadeIn 0.32s ease both;
}

.form-step.active {
    display: block;
}

@keyframes stepFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Question heading */
.step-question {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #1D1D1F;
    margin-bottom: 1.4rem;
    line-height: 1.5;
}

.step-question-en {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #999;
}

/* Option buttons */
.step-options {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.step-option {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
    padding: 0.82rem 1.1rem;
    background: #fff;
    border: 1px solid #D8D8DA;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: #1D1D1F;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.step-option::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1.5px solid #C8C8CA;
    background: #fff;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.step-option.selected::before {
    background: var(--color-gold);
    border-color: var(--color-gold);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* Multi-select: checkbox style */
.step-options[data-multi="true"] .step-option::before {
    border-radius: 3px;
}

.step-options[data-multi="true"] .step-option.selected::before {
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* Multi-select hint */
.step-multi-hint {
    font-size: 0.72rem;
    color: #aaa;
    letter-spacing: 0.06em;
    margin: -0.3rem 0 0.9rem;
}

/* Multi-select next button row */
.step-multi-next {
    margin-top: 1.2rem;
    text-align: right;
}

.step-next-btn {
    background: #D4AF37;
    color: #fff;
    border: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    padding: 0.6rem 1.6rem;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.step-next-btn:disabled {
    background: #D8D8DA;
    cursor: default;
    opacity: 0.6;
}

.step-next-btn:not(:disabled):hover {
    background: #b8942e;
}

.step-option:hover {
    border-color: rgba(212,175,55,0.55);
    box-shadow: 0 2px 10px rgba(212,175,55,0.08);
}

.step-option.selected {
    border-color: #D4AF37;
    background: rgba(212,175,55,0.04);
}

/* Back button */
.step-nav {
    margin-top: 1.4rem;
    text-align: left;
}

.step-back-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: #999;
    cursor: pointer;
    padding: 0.3rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease;
}

.step-back-btn:hover {
    color: #D4AF37;
}

/* ─────────────────────────────────────────────────────── */

/* --- Form: Refined Luxury --- */
#form {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 768px) {
    #form {
        padding-top: 2rem !important;
    }
}

#form h2 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #1D1D1F;
    margin-bottom: 0.6rem;
}

#form h2::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: #D4AF37;
    margin: 0.9rem auto 0;
}

#form .form {
    background: #fff;
    padding: 2.8rem 2.8rem 2.4rem;
    border-radius: 2px;
    border: 1px solid rgba(212,175,55,0.22);
    box-shadow: 0 2px 24px rgba(0,0,0,0.05);
    margin-top: 2.5rem;
}

#form .form-group {
    margin-bottom: 1.3rem;
}

#form .form-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #555;
    margin-bottom: 0.4rem;
    text-transform: none;
}

#form .form-label-required::after {
    content: ' *';
    color: #C0392B;
    font-size: 0.9em;
    margin-left: 0.15em;
}

#form .form-input,
#form .form-textarea {
    padding: 0.62rem 0.9rem;
    font-size: 0.92rem;
    border: 1px solid #D8D8DA;
    border-radius: 2px;
    background: #FAFAF8;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.12);
    outline: none;
    background: #fff;
}

#form .form-textarea {
    min-height: 110px;
}

#form .privacy-consent {
    margin-bottom: 1.4rem;
    font-size: 0.8rem;
}

#form .btn-primary {
    font-size: 0.88rem;
    letter-spacing: 0.14em;
    padding: 0.85rem 2rem;
}

#form .form-notice {
    font-size: 0.72rem;
    margin-top: 1.2rem;
    opacity: 0.65;
    text-align: left;
}

/* --- FAQ: Gold Active State --- */
.faq-item.active .faq-question {
    color: #D4AF37;
}

/* --- Fade-In Animation --- */
.section-why .block,
.section-timeline-bg .timeline-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-why .block.fade-in,
.section-timeline-bg .timeline-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Responsive Adjustments --- */
@media (max-width: 768px) {
    .section-why {
        padding: 5rem 0;
    }

    .section-why .three-blocks {
        gap: 1.5rem;
    }

    .section-package-bg .stay-day-number {
        flex-direction: row;
        align-items: baseline;
        gap: 0.6rem;
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        padding-right: 0;
        padding-bottom: 0.75rem;
        margin-right: 0;
        margin-bottom: 1rem;
        min-width: unset;
        width: 100%;
        justify-content: flex-start;
    }

    .section-package-bg .stay-day-number .day-word {
        margin-bottom: 0;
    }

    .section-package-bg .stay-day-number .day-num {
        font-size: 1.8rem;
    }

    .section-package-bg .stay-day {
        padding: 1.5rem;
        border-left-width: 2px;
    }

    .section #form .form {
        padding: 2rem 1.5rem;
    }
}