@charset "UTF-8";

/* =============================================================
   Saiko Nature & Gastronomy Stay — Master Stylesheet
   =============================================================
   Color Palette:
     Primary BG : #C6CED0 (soft silver-blue)
     Accent     : #356275 (deep teal)
   Font:
     Japanese   : A-OTF A1明朝 Std Bold → 宋体-繁常规体 → Hiragino Mincho Pro → Yu Mincho
     English    : Cormorant Garamond (Google Fonts)
   ============================================================= */

/* -------------------------------------------------------------
   0. Design Tokens
------------------------------------------------------------- */
:root {
    /* Colors */
    --c-bg:        #C6CED0;
    --c-bg-soft:   #D4DADC;
    --c-bg-card:   #E8ECEE;
    --c-white:     #FFFFFF;
    --c-accent:    #356275;
    --c-accent-lt: #4A7E94;
    --c-accent-dk: #264854;
    --c-text:      #2A2F33;
    --c-text-lt:   #5A6268;
    --c-text-wh:   #FFFFFF;
    --c-border:    #B0BABF;
    --c-overlay:   rgba(37, 62, 74, 0.3);
    --c-disabled:  #A8B0B3;

    /* Typography */
    --ff-ja:   'A-OTF A1明朝 Std Bold', '宋体-繁常规体', 'Hiragino Mincho Pro', 'Yu Mincho', serif;
    --ff-en:   'Cormorant Garamond', 'Georgia', serif;
    --ff-body: 'Noto Serif JP', var(--ff-ja);
    --ff-ui:   'Noto Sans JP', ui-sans-serif, system-ui, -apple-system, 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;

    /* Spacing */
    --sp-xs:   8px;
    --sp-sm:   16px;
    --sp-md:   32px;
    --sp-lg:   64px;
    --sp-xl:   120px;

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* -------------------------------------------------------------
   1. Reset & Base
------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--ff-body);
    color: var(--c-text);
    background-color: var(--c-bg);
    line-height: 1.9;
    letter-spacing: 0.05em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* -------------------------------------------------------------
   2. Layout
------------------------------------------------------------- */
.l-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

.l-section {
    padding: var(--sp-xl) 0;
}

/* -------------------------------------------------------------
   3. Hero — Full-screen parallax
------------------------------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.hero::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('images/saiko.webp') center / cover no-repeat;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(53, 98, 117, 0.30) 0%,
        rgba(53, 98, 117, 0.55) 60%,
        rgba(37, 62, 74, 0.70) 100%
    );
}

.hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 24px;
    max-width: 1600px;
}

.hero__title {
    font-family: var(--ff-en);
    font-weight: 300;
    font-size: clamp(2.2rem, 6.5vw, 4rem);
    color: var(--c-text-wh);
    letter-spacing: 0.06em;
    line-height: 1.25;
    margin-bottom: 28px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

@media (max-width: 1600px) {
    .hero__title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .hero__title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 1.1rem;
    }
}

.hero__title em {
    font-style: italic;
    font-weight: 400;
}

.hero__sub {
    font-family: var(--ff-ja);
    font-weight: 300;
    font-size: clamp(0.85rem, 2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.14em;
    line-height: 2.4;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: var(--ff-en);
}

.hero__scroll::after {
    content: '';
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.4);
    animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    45%  { transform: scaleY(1); transform-origin: top; }
    50%  { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* -------------------------------------------------------------
   4. Scroll Reveal Animation
------------------------------------------------------------- */
.js-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1.4s var(--ease-out),
                transform 1.4s var(--ease-out);
}

.js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.js-reveal-delay-1 { transition-delay: 0.22s; }
.js-reveal-delay-2 { transition-delay: 0.44s; }
.js-reveal-delay-3 { transition-delay: 0.66s; }

/* -------------------------------------------------------------
   5. Section Headings
------------------------------------------------------------- */
.heading {
    text-align: center;
    margin-bottom: var(--sp-lg);
}

.heading__en {
    font-family: var(--ff-en);
    font-weight: 300;
    font-size: clamp(0.68rem, 1.4vw, 0.78rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--c-accent-lt);
    display: block;
    margin-bottom: 14px;
}

.heading__ja {
    font-family: var(--ff-ja);
    font-weight: normal;
    font-size: clamp(1.35rem, 3.8vw, 1.9rem);
    color: var(--c-accent);
    letter-spacing: 0.1em;
    line-height: 1.7;
}

.heading__line {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--c-accent);
    margin: 22px auto 0;
    opacity: 0.6;
}

/* -------------------------------------------------------------
   6. Intro Section
------------------------------------------------------------- */
.intro__text {
    font-family: var(--ff-ja);
    font-weight: 300;
    font-size: clamp(0.9rem, 2vw, 1.02rem);
    line-height: 2.4;
    color: var(--c-text);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.intro__text + .intro__text {
    margin-top: 1.6em;
}

/* スマホ時のみ表示する改行 */
.sp-only {
    display: none;
}

/* -------------------------------------------------------------
   7. Five Senses — Parallax Sections
------------------------------------------------------------- */
.sense {
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.sense::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sense--auditory::before { background-image: url('images/hobie-at-sunset.webp'); }
.sense--visual::before   { background-image: url('images/fuji-and-saiko.webp'); }
.sense--touch::before    { background-image: url('images/hobie-quiet.webp'); }
.sense--smell::before    { background-image: url('images/aokigahara-forest.webp'); }
.sense--taste::before    { background-image: url('images/sai-wine-and-dish.webp'); }

.sense__overlay {
    position: absolute;
    inset: 0;
    background: var(--c-overlay);
}

.sense__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--sp-lg) 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.sense__content {
    padding: 44px 40px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.sense__label {
    font-family: var(--ff-en);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
}

.sense__title {
    font-family: var(--ff-ja);
    font-weight: normal;
    font-size: clamp(1.8rem, 4.2vw, 2.6rem);
    color: var(--c-text-wh);
    margin-bottom: 14px;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-align: left;
}

.sense__subtitle {
    font-family: var(--ff-ja);
    font-weight: 300;
    font-size: clamp(0.95rem, 2.2vw, 1.12rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    line-height: 1.9;
    text-align: left;
}

.sense__list {
    list-style: none;
}

.sense__list li {
    font-weight: 300;
    font-size: clamp(0.88rem, 1.8vw, 0.96rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 2.1;
    padding-left: 1.4em;
    position: relative;
}

.sense__list li::before {
    content: '─';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7em;
}

/* Spacer for grid alignment */
.sense__spacer {
    display: block;
}

/* -------------------------------------------------------------
   8. Story — Timeline
------------------------------------------------------------- */
.story {
    background: var(--c-bg-soft);
}

.story__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 2px;
    background: var(--c-white);
    overflow: hidden;
}

.story__item:nth-child(even) {
    direction: rtl;
}

.story__item:nth-child(even) > * {
    direction: ltr;
}

.story__img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.story__item:hover .story__img {
    transform: scale(1.03);
}

.story__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-lg) 44px;
    position: relative;
}

.story__body--link {
    padding-bottom: calc(var(--sp-lg) + 26px);
}

.story__official-link {
    position: absolute;
    right: 44px;
    bottom: 26px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    font-family: var(--ff-ui);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(55, 65, 81, 0.35);
    padding-bottom: 2px;
    opacity: 0.9;
    transition: opacity 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.story__official-link:hover {
    opacity: 1;
    border-bottom-color: rgba(55, 65, 81, 0.7);
}

.story__stay-detail {
    margin-top: var(--sp-sm);
    padding-top: var(--sp-md);
    border-top: 1px solid var(--c-border);
}

.story__stay-detail-heading {
    margin-top: 0;
}

.story__stay-note {
    margin-top: 0;
    margin-bottom: var(--sp-md);
}

.nowrap {
    white-space: nowrap;
}

.story__tag {
    font-family: var(--ff-en);
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-accent-lt);
    margin-bottom: 14px;
}

.story__title {
    font-family: var(--ff-ja);
    font-weight: normal;
    font-size: clamp(1.1rem, 2.8vw, 1.35rem);
    color: var(--c-accent);
    margin-bottom: 20px;
    letter-spacing: 0.06em;
    line-height: 1.7;
    text-align: left;
}

.story__text {
    font-weight: 300;
    font-size: clamp(0.86rem, 1.8vw, 0.95rem);
    line-height: 2.3;
    color: var(--c-text-lt);
}

.facilities__text {
    color: #374151;
}

/* -------------------------------------------------------------
   9. Gallery Strip
------------------------------------------------------------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    overflow: hidden;
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.gallery img:hover {
    transform: scale(1.04);
}

/* -------------------------------------------------------------
   10. Policy / Cancellation
------------------------------------------------------------- */
.policy {
    background: var(--c-white);
}

.policy__note {
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 2.2;
    color: var(--c-text-lt);
    margin-bottom: var(--sp-md);
    text-align: left;
}

.c-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--c-border);
}

.c-table th,
.c-table td {
    padding: 18px 22px;
    text-align: left;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.8;
    border-bottom: 1px solid var(--c-border);
}

.c-table th {
    width: 34%;
    background: var(--c-bg-card);
    color: var(--c-accent);
    font-weight: 500;
    font-family: var(--ff-ja);
}

.policy__subheading {
    font-family: var(--ff-ja);
    font-weight: normal;
    font-size: 1.1rem;
    color: var(--c-accent);
    margin-top: 32px;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
}

.policy__subheading:first-of-type {
    margin-top: 0;
}

/* -------------------------------------------------------------
   11. CTA / Checkout
------------------------------------------------------------- */
.cta {
    background: var(--c-bg-soft);
}

.cta__box {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    padding: var(--sp-lg) var(--sp-md);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(53, 98, 117, 0.06);
}

.cta__heading {
    font-family: var(--ff-ja);
    font-weight: normal;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--c-accent);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.cta__desc {
    font-weight: 300;
    font-size: 0.92rem;
    color: var(--c-text-lt);
    margin-bottom: 32px;
    line-height: 2.2;
}

.cta__price {
    font-family: var(--ff-en);
    font-weight: 400;
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    color: var(--c-accent);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.cta__price-unit {
    font-family: var(--ff-ja);
    font-size: 0.5em;
}

.cta__price-note {
    font-size: 0.78rem;
    color: var(--c-text-lt);
    margin-bottom: 40px;
}

.cta__agree {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
    padding: 0 4px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 400;
    color: var(--c-text);
    text-align: left;
    line-height: 1.85;
}

.cta__agree-check {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 3px;
    accent-color: var(--c-accent);
    cursor: pointer;
    flex-shrink: 0;
}

.cta__agree-text {
    flex: 1;
    min-width: 0;
    display: block;
    word-break: break-word;
    overflow-wrap: break-word;
}

.cta__agree a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(53, 98, 117, 0.4);
    transition: text-decoration-color 0.3s;
}

.cta__agree a:hover {
    text-decoration-color: var(--c-accent);
}

/* Button */
.btn {
    display: inline-block;
    font-family: var(--ff-ja);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.18em;
    text-decoration: none;
    padding: 17px 52px;
    border: none;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.btn--primary {
    background: var(--c-accent);
    color: var(--c-text-wh);
}

.btn--primary:hover {
    background: var(--c-accent-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(53, 98, 117, 0.25);
}

.btn--disabled {
    background: var(--c-disabled);
    color: var(--c-text-wh);
    cursor: not-allowed;
    pointer-events: none;
}

.cta__notice {
    font-size: 0.76rem;
    text-align: left;
    color: var(--c-text-lt);
    letter-spacing: 0.02em;
}

.cta__info {
    background: var(--c-bg-card);
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.cta__info-item {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--c-text);
    margin-bottom: 12px;
    line-height: 1.8;
}

.cta__info-item strong {
    color: var(--c-accent);
}

.cta__info-note {
    font-weight: 300;
    font-size: 0.85rem;
    line-height: 2;
    color: var(--c-text-lt);
    margin: 0;
}

.cta__dates {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
}

.cta__day-group {
    width: 100%;
}

.cta__day-heading {
    font-family: var(--ff-ja);
    font-weight: 500;
    font-size: clamp(0.88rem, 2vw, 0.98rem);
    line-height: 1.75;
    text-align: center;
    color: var(--c-text);
    margin: 0 0 16px;
    letter-spacing: 0.04em;
}

.cta__day-options {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
}

.cta__room-label {
    display: inline-block;
    font-family: var(--ff-ja);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    text-align: center;
}

.cta__date-item--first .cta__room-label {
    color: var(--c-accent);
}

.cta__date-item--second .cta__room-label {
    color: var(--c-accent-dk);
}

.cta__date-item {
    flex: 1;
    padding: 24px;
    background: var(--c-bg-card);
    border: 2px solid var(--c-border);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta__date-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 第1回：アクセントカラー（濃い青緑） */
.cta__date-item--first {
    background: linear-gradient(to bottom, rgba(53, 98, 117, 0.05), var(--c-bg-card));
    border-color: var(--c-accent);
}

.cta__date-item--first .cta__date-label {
    background: var(--c-accent);
    color: var(--c-text-wh);
}

.cta__date-item--first .cta__date-title {
    color: var(--c-accent);
}

/* 第2回：別の色調（より濃い青） */
.cta__date-item--second {
    background: linear-gradient(to bottom, rgba(38, 72, 84, 0.05), var(--c-bg-card));
    border-color: var(--c-accent-dk);
}

.cta__date-item--second .cta__date-label {
    background: var(--c-accent-dk);
    color: var(--c-text-wh);
}

.cta__date-item--second .cta__date-title {
    color: var(--c-accent-dk);
}

.cta__date-label {
    display: inline-block;
    font-family: var(--ff-ja);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.cta__date-title {
    font-family: var(--ff-ja);
    font-weight: 400;
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: center;
}

.cta__date-title--compact {
    font-size: clamp(0.88rem, 2vw, 1rem);
    letter-spacing: 0.02em;
}

.cta__apply-lead {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px auto 14px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(38, 72, 84, 0.22);
    background: linear-gradient(to bottom, rgba(38, 72, 84, 0.10), rgba(38, 72, 84, 0.04));
    box-shadow: 0 10px 26px rgba(38, 72, 84, 0.08);
    text-align: center;
    font-weight: 600;
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    letter-spacing: 0.10em;
    color: var(--c-accent-dk);
}

.cta__date-item .btn {
    width: 100%;
    max-width: 280px;
}

/* 第1回のボタン */
.cta__date-item--first .btn--primary {
    background: var(--c-accent);
}

.cta__date-item--first .btn--primary:hover {
    background: var(--c-accent-lt);
}

/* 第2回のボタン */
.cta__date-item--second .btn--primary {
    background: var(--c-accent-dk);
}

.cta__date-item--second .btn--primary:hover {
    background: var(--c-accent);
}

/* -------------------------------------------------------------
   12. Modal — 特定商取引法
------------------------------------------------------------- */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal.is-open {
    display: flex;
}

.modal__box {
    background: var(--c-white);
    max-width: 740px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    padding: 52px 48px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--c-text-lt);
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal__close:hover {
    color: var(--c-accent);
}

.modal__title {
    font-family: var(--ff-ja);
    font-weight: normal;
    font-size: 1.25rem;
    color: var(--c-accent);
    margin-bottom: 30px;
    text-align: left;
    letter-spacing: 0.08em;
}

.modal .c-table {
    margin-bottom: 24px;
}

.modal__note {
    font-size: 0.84rem;
    color: var(--c-text-lt);
    line-height: 2;
}

.modal__policy {
    text-align: left;
}

.modal__policy-lead {
    font-family: var(--ff-ja);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 2;
    color: var(--c-text);
    margin: 0 0 28px;
}

.modal__policy-section {
    margin-bottom: 22px;
}

.modal__policy-heading {
    font-family: var(--ff-ja);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-accent-dk);
    margin: 0 0 10px;
    letter-spacing: 0.06em;
}

.modal__policy-text {
    font-family: var(--ff-ja);
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 2;
    color: var(--c-text);
    margin: 0 0 10px;
}

.modal__policy-text:last-child {
    margin-bottom: 0;
}

.modal__policy-text a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.modal__policy-text a:hover {
    color: var(--c-accent-dk);
}

.modal__policy-list {
    font-family: var(--ff-ja);
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.95;
    color: var(--c-text);
    margin: 0 0 12px;
    padding-left: 1.25em;
}

.modal__policy-list li {
    margin-bottom: 6px;
}

.modal__policy-list li:last-child {
    margin-bottom: 0;
}

.modal__note--policy {
    margin-top: 28px;
    margin-bottom: 0;
}

.footer__copy {
    margin: 0 0 10px;
}

.footer__legal {
    margin: 0;
    font-family: var(--ff-ja);
    letter-spacing: 0.08em;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 2px;
    transition: color 0.25s, border-color 0.25s;
}

.footer__legal a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.65);
}

/* -------------------------------------------------------------
   13. Tour Schedule — ツアー工程
------------------------------------------------------------- */
.schedule {
    background: var(--c-white);
}

.schedule__dates {
    text-align: center;
    margin-bottom: var(--sp-lg);
}

.schedule__dates-text {
    font-weight: 300;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 2.4;
    color: var(--c-text);
}

.schedule__dates-text strong {
    color: var(--c-accent);
    font-weight: 500;
}

.schedule__timeline {
    max-width: 850px;
    margin: 0 auto;
}

.schedule__item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 28px;
    padding: 32px 0;
    border-bottom: 1px solid var(--c-border);
    align-items: start;
}

.schedule__item:last-child {
    border-bottom: none;
}

.schedule__number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-accent);
    color: var(--c-white);
    border-radius: 50%;
    font-family: var(--ff-ja);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0;
    flex-shrink: 0;
}

.schedule__content {
    padding-top: 4px;
}

.schedule__title {
    font-family: var(--ff-ja);
    font-weight: normal;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--c-accent);
    margin-bottom: 12px;
    letter-spacing: 0.06em;
    line-height: 1.6;
}

.schedule__text {
    font-weight: 300;
    font-size: clamp(0.88rem, 1.8vw, 0.95rem);
    line-height: 2.2;
    color: var(--c-text-lt);
}

/* -------------------------------------------------------------
   13b. Tour participant benefits — 参加者特典
------------------------------------------------------------- */
.perks {
    background: var(--c-bg);
}

.perks__body {
    max-width: 800px;
    margin: 0 auto;
}

.perks__figure {
    margin: 0 0 var(--sp-sm);
}

/* バスタオル／バスローブ：同一の枠サイズで表示（画像の実ピクセル比に依存しない） */
.perks__figure--towel,
.perks__figure--bathrobe {
    max-width: 580px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    border: 1px solid var(--c-border);
    box-shadow: 0 6px 28px rgba(53, 98, 117, 0.08);
    overflow: hidden;
    background: var(--c-white);
    display: grid;
    grid-template: 1fr / 1fr;
}

.perks__img--towel,
.perks__img--bathrobe {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}

.perks__lead {
    font-family: var(--ff-ja);
    font-weight: 500;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--c-accent);
    margin-bottom: var(--sp-sm);
    letter-spacing: 0.06em;
}

.perks__list {
    list-style: none;
    margin: 0 0 var(--sp-md);
    padding: 0;
}

.perks__item {
    padding: var(--sp-sm) 0;
    border-bottom: 1px solid var(--c-border);
}

.perks__item:last-child {
    border-bottom: none;
}

.perks__item-title {
    font-weight: 400;
    font-size: clamp(0.9rem, 1.9vw, 0.98rem);
    line-height: 2;
    color: var(--c-text);
    margin-bottom: 8px;
}

.perks__item-link {
    font-family: var(--ff-ui);
    font-size: 0.88rem;
}

.perks__item-link a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.perks__item-link a:hover {
    color: var(--c-accent-lt);
}

.perks__item-link--multi {
    display: flex;
    flex-direction: column;
    gap: 0.45em;
    align-items: flex-start;
}

.perks__closing {
    font-weight: 300;
    font-size: clamp(0.9rem, 1.9vw, 0.95rem);
    line-height: 2.2;
    color: var(--c-text-lt);
    text-align: center;
}

@media (min-width: 769px) {
    .perks__body {
        max-width: 920px;
    }

    .perks__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-lg) clamp(24px, 3vw, 40px);
        align-items: start;
    }

    .perks__item {
        padding: 0;
        border-bottom: none;
    }

    .perks__closing {
        font-size: 0.9rem;
    }
}

/* -------------------------------------------------------------
   14. A VILLAGE stay detail (within Story) / shared tables
------------------------------------------------------------- */
.accommodation__text {
    font-weight: 300;
    font-size: clamp(0.86rem, 1.8vw, 0.95rem);
    line-height: 2.3;
    color: var(--c-text-lt);
    margin-bottom: 20px;
}

.accommodation__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: var(--sp-sm);
}

.accommodation__table-wrap .c-table {
    min-width: 520px;
}

.story__stay-detail .c-table thead th {
    background: var(--c-bg-card);
    color: var(--c-accent);
    font-weight: 500;
    font-family: var(--ff-ja);
    width: auto;
}

.story__stay-detail .c-table tbody th {
    width: 28%;
    vertical-align: top;
}

.accommodation__text--panel {
    margin-bottom: 12px;
}

.accommodation__text--panel:last-child {
    margin-bottom: 0;
}

.accommodation__check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 32px;
    align-items: baseline;
    font-size: clamp(0.88rem, 1.8vw, 0.95rem);
    line-height: 1.8;
    margin-bottom: var(--sp-md);
    padding-bottom: var(--sp-md);
    border-bottom: 1px solid var(--c-border);
}

.accommodation__check dt {
    font-family: var(--ff-ja);
    color: var(--c-accent);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.accommodation__check dd {
    font-weight: 300;
    color: var(--c-text-lt);
    margin: 0;
}

/* -------------------------------------------------------------
   16. FAQ — よくある質問
------------------------------------------------------------- */
.faq {
    background: var(--c-bg-soft);
}

.faq__lead {
    max-width: 760px;
    margin: 0 auto var(--sp-md);
}

.faq__lead-text {
    font-weight: 300;
    font-size: 0.92rem;
    line-height: 2.2;
    color: var(--c-text-lt);
    text-align: center;
}

.faq__list {
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid var(--c-border);
    background: var(--c-white);
}

.faq__item {
    border-bottom: 1px solid var(--c-border);
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__q {
    list-style: none;
    cursor: pointer;
    padding: 22px 56px 22px 22px;
    position: relative;
    font-family: var(--ff-ja);
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--c-accent);
    letter-spacing: 0.04em;
    line-height: 1.8;
}

.faq__q::-webkit-details-marker {
    display: none;
}

.faq__q::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 1px solid rgba(53, 98, 117, 0.35);
    color: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: var(--ff-en);
    font-size: 1.1rem;
    transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out);
    background: rgba(255, 255, 255, 0.65);
}

.faq__item[open] > .faq__q::after {
    content: '–';
}

.faq__a {
    padding: 0 22px 22px;
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 2.1;
    color: var(--c-text-lt);
}

.faq__a p {
    margin-top: 12px;
}

.faq__a p:first-child {
    margin-top: 0;
}

.faq__bullets {
    margin-top: 12px;
    padding-left: 1.2em;
}

.faq__bullets li {
    margin: 0.35em 0;
}

.hobie-faq-link {
    font-family: var(--ff-ui);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(55, 65, 81, 0.35);
    padding-bottom: 2px;
}

/* -------------------------------------------------------------
   17. Footer
------------------------------------------------------------- */
.footer {
    background: var(--c-accent-dk);
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    padding: var(--sp-md) 24px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    font-family: var(--ff-en);
}

/* -------------------------------------------------------------
   14. Responsive — Mobile First
------------------------------------------------------------- */
@media (max-width: 768px) {
    /* Parallax → absolute for iOS */
    .hero::before,
    .sense::before {
        position: absolute;
    }

    /* ヒーロー文言を中央よりやや上に */
    .hero {
        padding-bottom: 10vh;
    }

    /* Hero subtitle */
    .hero__sub {
        font-size: 0.9rem;
    }

    /* スマホ時のみ改行を表示 */
    .sp-only {
        display: inline;
    }

    /* Intro */
    .intro__text {
        text-align: left;
        font-size: clamp(0.88rem, 2.2vw, 0.95rem);
        line-height: 2.2;
        max-width: 100%;
        padding: 0 4px;
    }

    .heading {
        margin-bottom: var(--sp-md);
    }

    .heading__ja {
        font-size: clamp(1.15rem, 5vw, 1.5rem);
        letter-spacing: 0.06em;
        line-height: 1.8;
    }

    /* Sense sections */
    .sense__inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: var(--sp-lg) 20px;
    }

    .sense__spacer {
        display: none;
    }

    .sense__content {
        padding: 32px 24px;
    }

    /* Story — single column */
    .story__item,
    .story__item:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .story__img {
        min-height: 240px;
    }

    .story__body {
        padding: var(--sp-md) 24px;
    }

    .story__body--link {
        padding-bottom: calc(var(--sp-md) + 22px);
    }

    .story__official-link {
        right: 24px;
        bottom: 18px;
        font-size: 0.78rem;
    }

    /* A VILLAGE 宿泊ブロック（スマホ） */
    .story__item--stay .story__body {
        justify-content: flex-start;
    }

    .story__item--stay .story__img {
        min-height: 200px;
    }

    .story__item--stay .story__stay-detail {
        margin-top: var(--sp-xs);
        padding-top: var(--sp-sm);
    }

    .story__item--stay .story__stay-detail .policy__subheading {
        font-size: clamp(0.95rem, 4vw, 1.05rem);
        margin-top: 22px;
        margin-bottom: 10px;
        letter-spacing: 0.04em;
    }

    .story__item--stay .story__stay-detail .story__stay-detail-heading {
        margin-top: 0;
    }

    .story__item--stay .accommodation__check {
        gap: 6px 20px;
        margin-bottom: var(--sp-sm);
        padding-bottom: var(--sp-sm);
        font-size: 0.88rem;
    }

    .story__item--stay .story__stay-note {
        font-size: 0.82rem;
        line-height: 1.85;
        margin-bottom: var(--sp-sm);
    }

    .story__item--stay .accommodation__text--panel {
        font-size: 0.86rem;
        line-height: 1.95;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .story__item--stay .story__body--link {
        padding-bottom: calc(var(--sp-md) + 56px);
    }

    .story__item--stay .story__official-link {
        max-width: calc(100% - 48px);
        text-align: right;
        line-height: 1.5;
    }

    /* お部屋情報テーブル → カード積み（横スクロールなし） */
    .story__item--stay .accommodation__table-wrap {
        overflow: visible;
        margin-bottom: var(--sp-xs);
    }

    .story__item--stay .accommodation__table-wrap .c-table {
        min-width: 0;
        border: none;
        background: transparent;
    }

    .story__item--stay .accommodation__table-wrap .c-table thead {
        display: none;
    }

    .story__item--stay .accommodation__table-wrap .c-table tbody tr {
        display: block;
        margin-bottom: 12px;
        border: 1px solid var(--c-border);
        border-radius: 8px;
        overflow: hidden;
        background: var(--c-white);
        box-shadow: 0 2px 12px rgba(53, 98, 117, 0.06);
    }

    .story__item--stay .accommodation__table-wrap .c-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .story__item--stay .accommodation__table-wrap .c-table tbody th,
    .story__item--stay .accommodation__table-wrap .c-table tbody td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .story__item--stay .accommodation__table-wrap .c-table tbody th {
        border-bottom: 1px solid var(--c-border);
        padding: 12px 14px;
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .story__item--stay .accommodation__table-wrap .c-table tbody td {
        border-bottom: none;
        padding: 14px 14px 16px;
        font-size: 0.84rem;
        line-height: 1.75;
        background: var(--c-white);
    }

    /* Gallery */
    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery img {
        height: 200px;
    }

    /* CTA */
    .cta__box {
        padding: var(--sp-md) 20px;
    }

    .cta__dates {
        gap: 24px;
    }

    .cta__day-options {
        flex-direction: column;
        gap: 16px;
    }

    .cta__date-item {
        padding: 20px;
    }

    /* Modal */
    .modal__box {
        padding: 32px 20px;
    }
    
    /* Schedule */
    .schedule__item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 0;
    }
    
    .schedule__number {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    
    .schedule__content {
        padding-top: 0;
    }
    
    /* Facilities */
    .facilities__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* FAQ */
    .faq__lead-text {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero__sub {
        font-size: clamp(0.75rem, 2.5vw, 0.88rem);
    }

    .intro__text {
        font-size: 0.88rem;
        line-height: 2.1;
    }

    .heading__ja {
        font-size: 1.2rem;
    }

    .l-section {
        padding: var(--sp-lg) 0;
    }

    .story__img {
        min-height: 190px;
    }

    .story__item--stay .story__img {
        min-height: 176px;
    }

    .story__item--stay .accommodation__check {
        grid-template-columns: 1fr;
        gap: 0;
        row-gap: 0;
    }

    .story__item--stay .accommodation__check dt {
        margin-top: 12px;
    }

    .story__item--stay .accommodation__check dt:first-of-type {
        margin-top: 0;
    }

    .story__item--stay .accommodation__check dd {
        margin-bottom: 4px;
    }

    .gallery img {
        height: 170px;
    }

    .sense {
        min-height: 80vh;
    }

    .cta__agree {
        font-size: 0.82rem;
        gap: 10px;
        padding: 0 2px;
    }

    .cta__agree-check {
        margin-top: 2px;
    }
    
    .cta__info {
        padding: 20px;
    }

    .cta__dates {
        gap: 20px;
        margin-top: 28px;
    }

    .cta__day-options {
        gap: 14px;
    }

    .cta__date-item {
        padding: 20px;
    }

    .cta__date-title {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .cta__date-item .btn {
        max-width: 100%;
    }

    .btn {
        padding: 15px 36px;
        font-size: 0.88rem;
    }
}
