/* Studio Liko Renewal — ヨガ詳細ページCSS（sample_03_壁画のみ/yoga.html から機械抽出。liko-common読込後にこのファイルで上書き） */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --olive:      #6b8f71;
      --olive-dark: #4a6b50;
      --olive-tint: #eef4ee;
      --olive-soft: #e8f0e9;
      --bs:         #d8be62;
      --bs-deep:    #ab8d33;
      --bs-soft:    #f5ecc8;
      --paper:      #fbf8f1;
      --paper-2:    #f4efe2;
      --ink:        #1f1d18;
      --ink-soft:   #4a4641;
      --ink-mute:   #8a857c;
      --line:       #e5dfd0;
      --serif:  "Shippori Mincho", "Hiragino Mincho ProN", serif;
      --sans:   "Zen Kaku Gothic New", "Hiragino Sans", system-ui, sans-serif;
      --italic: "Cormorant Garamond", serif;
      --mono:   "JetBrains Mono", ui-monospace, monospace;
    }
    html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
    body { font-family: var(--sans); color: var(--ink); background: var(--paper); line-height: 1.8; overflow-x: hidden; }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ── ヘッダー ── */
    .header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(251,248,241,.96); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); transition: transform .3s; }
    .header-inner { max-width: 1080px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
    .logo { font-family: var(--italic); font-style: italic; font-weight: 500; font-size: 1.3rem; line-height: 1.1; }
    .back-link { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; transition: background .2s; }
    .back-link:hover { background: var(--olive-tint); }
    .logo small { display: block; font-family: var(--mono); font-style: normal; font-size: .56rem; letter-spacing: .2em; color: var(--ink-mute); margin-top: 3px; }
    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
    .hamburger span { display: block; width: 22px; height: 1.2px; background: var(--ink); transition: all .3s; }
    .nav ul { display: flex; gap: 22px; list-style: none; align-items: center; }
    .nav a { font-size: .8rem; letter-spacing: .04em; }
    .nav a:hover { color: var(--olive); }
    .nav a.active { color: var(--olive); font-weight: 500; }
    .btn-nav { background: var(--olive); color: var(--paper) !important; padding: 8px 18px; border-radius: 999px; font-size: .78rem; }
    .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 190; }

    /* ── 共通 ── */
    .section { padding: 64px 0; }
    .section.bg-warm { background: var(--paper-2); }
    .section.bg-white { background: #fff; }
    .section.bg-olive { background: var(--olive-dark); color: var(--paper); }
    .container { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
    .eyebrow { font-family: var(--mono); font-size: .6rem; letter-spacing: .3em; color: var(--olive); text-transform: uppercase; margin-bottom: 10px; }
    .eyebrow.light { color: rgba(251,248,241,.55); }
    .sec-title { font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 500; line-height: 1.7; margin-bottom: 10px; letter-spacing: .04em; }
    .sec-lead { font-size: .88rem; color: var(--ink-soft); line-height: 2.1; }
    .divider { border: none; border-top: 1px solid var(--line); margin: 0; }
    .rule-line { width: 28px; height: 1px; background: var(--olive); margin-top: 4px; }
    .secthead { display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; }
    .chip-olive { display: inline-block; padding: 4px 14px; border-radius: 999px; background: var(--olive-soft); color: var(--olive-dark); font-family: var(--italic); font-style: italic; font-size: .72rem; }
    .btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; background: var(--olive); color: var(--paper); border: 1px solid var(--olive); border-radius: 999px; font-size: .85rem; letter-spacing: .1em; font-weight: 500; transition: opacity .2s; }
    .btn-primary:hover { opacity: .88; }
    .btn-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 24px; border: 1px solid var(--olive); color: var(--olive); border-radius: 999px; font-size: .82rem; letter-spacing: .08em; transition: all .2s; }
    .btn-ghost:hover { background: var(--olive); color: var(--paper); }

    /* ── ページヒーロー ── */
    .page-hero { position: relative; min-height: 950px; color: var(--ink); overflow: hidden; }
    .page-hero-bg { position: absolute; inset: 0; }
    .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; display: block; filter: brightness(1.02) saturate(0.95) contrast(0.98); }
    .page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to left, rgba(255,255,255,.82) 0%, rgba(255,255,255,.55) 25%, rgba(255,255,255,.20) 50%, rgba(255,255,255,0) 75%); pointer-events: none; }
    .page-hero-inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; padding: 120px 44px 68px 22px; display: flex; justify-content: flex-end; text-align: right; }
    .page-hero-content { max-width: 480px; }
    .page-hero-place { font-family: var(--mono); font-size: .62rem; letter-spacing: .22em; color: var(--olive); margin-bottom: 14px; }
    .page-hero-en { font-family: var(--italic); font-style: italic; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 400; line-height: 1; letter-spacing: .04em; color: var(--olive); opacity: .35; margin-bottom: 12px; }
    .page-hero-catch { font-family: var(--serif); font-size: clamp(1.18rem, 2.7vw, 1.6rem); font-weight: 500; line-height: 2.1; letter-spacing: .06em; margin-bottom: 22px; color: var(--ink); }
    .page-hero-sub { font-size: .86rem; line-height: 2.45; color: var(--ink-soft); }
    .breadcrumb { font-family: var(--mono); font-size: .58rem; letter-spacing: .1em; color: var(--ink-mute); margin-top: 28px; }
    .breadcrumb a { color: var(--olive-dark); }
    @media (max-width: 768px) {
      .page-hero { display: flex; flex-direction: column; min-height: auto; background: var(--paper); color: var(--ink); }
      .page-hero-bg { position: relative; inset: auto; order: 2; width: 100%; height: 280px; }
      .page-hero-bg::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 24px; background: linear-gradient(to bottom, var(--paper) 0%, rgba(251,248,241,.4) 55%, transparent 100%); z-index: 2; pointer-events: none; }
      .page-hero-bg::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 48px; background: linear-gradient(to top, var(--paper-2) 0%, rgba(244,239,226,.45) 45%, transparent 100%); z-index: 2; pointer-events: none; }
      .page-hero-bg img { object-position: center 35%; }
      .page-hero-overlay { display: none; }
      .page-hero-inner { position: relative; order: 1; padding: 72px 22px 14px; display: block; text-align: right; min-height: auto; max-width: none; margin: 0; }
      .page-hero-content { max-width: 100%; }
      .page-hero-en { font-size: 1.55rem; margin-bottom: 6px; color: var(--olive); opacity: .35; }
      .page-hero-catch { font-size: 1.15rem; line-height: 1.85; margin-bottom: 0; color: var(--ink); }
      .page-hero-sub { display: none; }
      .breadcrumb { display: none; }
    }

    /* ── タグ＋CTA バー ── */
    .tag-cta-bar { background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 18px 22px; }
    .tag-cta-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .tags-row { display: flex; gap: 8px; flex-wrap: wrap; }
    .tag { font-family: var(--mono); font-size: .56rem; letter-spacing: .1em; padding: 5px 12px; border-radius: 999px; border: 1px solid var(--olive); color: var(--olive-dark); }

    /* ── フォトストリップ ── */
    .photo-strip { line-height: 0; }
    .photo-strip-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
    .photo-strip-2col img,
    .photo-strip-2col .photo-ph { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
    .photo-ph { display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: .58rem; letter-spacing: .18em; }
    .photo-ph.studio { background: linear-gradient(135deg, #7a9e7e 0%, #4a6b50 100%); color: rgba(255,255,255,.45); }
    .photo-ph.lesson { background: linear-gradient(135deg, #6b8f71 0%, #3d5a42 100%); color: rgba(255,255,255,.45); }
    .photo-ph.warm   { background: linear-gradient(135deg, #9ab09e 0%, #6b8f71 100%); color: rgba(255,255,255,.45); }
    /* ── 写真準備中プレースホルダー ── */
    .photo-pending { width: 100%; aspect-ratio: 3/2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: var(--olive-tint); border: 1.5px dashed var(--olive-soft); }
    .photo-pending-icon { width: 32px; height: 32px; opacity: .35; }
    .photo-pending-label { font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; color: var(--olive-dark); opacity: .6; text-align: center; line-height: 1.9; padding: 0 12px; }

    /* ── こんな方に選ばれています ── */
    .for-you-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
    .fy-item { display: flex; align-items: center; gap: 10px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 11px 16px; }
    .fy-item.featured { background: var(--olive-tint); border-color: var(--olive-soft); }
    .fy-dot { flex: 0 0 8px; height: 8px; border-radius: 50%; background: var(--olive); flex-shrink: 0; }
    .fy-item.featured .fy-dot { background: var(--olive-dark); }
    .fy-title { font-family: var(--serif); font-size: .88rem; font-weight: 500; line-height: 1.4; }
    .fy-desc { display: none; }

    /* ── WHY LIKO ── */
    .why-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
    .why-list { display: flex; flex-direction: column; gap: 0; border-radius: 10px; overflow: hidden; margin-top: 28px; }
    .why-item { padding: 22px 22px; display: flex; gap: 16px; align-items: flex-start; background: var(--paper-2); }
    .why-item:last-child { border-bottom: none; }
    .why-check { flex: 0 0 28px; height: 28px; background: var(--olive); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
    .why-check svg { width: 13px; height: 13px; stroke: var(--paper); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .why-title { font-family: var(--serif); font-size: .9rem; font-weight: 500; margin-bottom: 5px; line-height: 1.5; }
    .why-desc { font-size: .78rem; color: var(--ink-soft); line-height: 1.9; }
    .why-photo { margin-top: 28px; align-self: stretch; }
    .why-photo img, .why-photo .photo-ph { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: 8px; display: block; }
    /* マタニティ・キッズ簡易案内 */
    .class-others-note { margin-top: 20px; background: var(--olive-tint); border-radius: 8px; padding: 13px 18px; }
    .class-others-text { font-size: .82rem; color: var(--ink-soft); line-height: 1.8; }
    .class-others-link { color: var(--olive-dark); text-decoration: underline; }
    /* クラスセクション共通CTA */
    .classes-cta-wrap { margin-top: 18px; display: flex; justify-content: center; }
    .classes-cta { display: inline-flex; align-items: center; gap: 6px; padding: 11px 28px; border: 1px solid var(--olive); color: var(--olive-dark); border-radius: 999px; font-size: .8rem; font-weight: 500; letter-spacing: .06em; transition: all .2s; }
    .classes-cta:hover { background: var(--olive); color: var(--paper); }
    .why-photo .photo-ph { border-radius: 8px; }

    /* ── フォトインタールード ── */
    .photo-interlude { position: relative; line-height: 0; overflow: hidden; }
    .photo-interlude img, .photo-interlude .photo-ph-wide { width: 100%; aspect-ratio: 16/6; object-fit: cover; object-position: center 35%; display: block; }
    .photo-interlude .photo-ph-wide { background: linear-gradient(135deg, #5a7860 0%, #3d5a42 100%); color: rgba(255,255,255,.4); font-family: var(--mono); font-size: .6rem; letter-spacing: .2em; display: flex; align-items: center; justify-content: center; line-height: 1; }
    .photo-interlude-overlay { position: absolute; inset: 0; background: rgba(30,40,28,.4); display: flex; align-items: center; justify-content: center; }
    .photo-interlude-text { text-align: center; color: var(--paper); padding: 0 20px; }
    .photo-interlude-copy { font-family: var(--serif); font-size: clamp(1rem, 2.5vw, 1.4rem); font-weight: 500; line-height: 1.8; letter-spacing: .08em; }

    /* ── プルクオート（生徒さまの声・抜粋） ── */
    .pull-quote { padding: 64px 28px; background: var(--paper-2); text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .pull-quote-mark { font-family: var(--italic); font-style: italic; font-size: 4rem; line-height: 0.5; color: var(--olive); opacity: .3; margin-bottom: 22px; height: 1.6rem; }
    .pull-quote-text { font-family: var(--serif); font-size: clamp(1rem, 2.4vw, 1.18rem); font-weight: 500; line-height: 2; letter-spacing: .04em; color: var(--ink); margin-bottom: 22px; max-width: 640px; margin-left: auto; margin-right: auto; }
    .pull-quote-attr { font-family: var(--mono); font-size: .6rem; letter-spacing: .2em; color: var(--ink-mute); text-transform: uppercase; }
    @media (max-width: 768px) {
      .pull-quote { padding: 48px 22px; }
      .pull-quote-text { font-size: .98rem; line-height: 1.95; }
    }

    /* ── クラスセクション ── */
    .classes-group { margin-top: 36px; }
    .classes-group + .classes-group { margin-top: 44px; }
    .classes-group-head {
      display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
      padding: 12px 16px; border-radius: 8px;
    }
    .classes-group-head.adult { background: var(--olive); }
    .classes-group-head.maternity { background: var(--bs-soft); border: 1px solid var(--bs); }
    .classes-group-label { font-family: var(--serif); font-size: .88rem; font-weight: 500; color: var(--paper); letter-spacing: .04em; }
    .classes-group-head.maternity .classes-group-label { color: var(--ink); }
    .classes-group-note { font-family: var(--mono); font-size: .58rem; letter-spacing: .08em; color: rgba(251,248,241,.7); }
    .classes-group-head.maternity .classes-group-note { color: var(--ink-mute); }
    .classes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .classes-grid .class-card:nth-child(5) { grid-column: 1 / -1; max-width: calc(50% - 7px); justify-self: center; }
    .class-card { background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--olive); border-radius: 6px; padding: 20px; display: flex; flex-direction: column; gap: 10px; }
    .class-card.maternity-card { border-top-color: var(--bs-deep); }
    .class-card-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .class-duration { font-family: var(--mono); font-size: .58rem; letter-spacing: .1em; color: var(--ink-mute); }
    .kids-badge { font-family: var(--mono); font-size: .55rem; letter-spacing: .06em; padding: 3px 8px; border-radius: 4px; }
    .kids-badge.ng { background: var(--olive-soft); color: var(--olive-dark); }
    .kids-badge.ok { background: var(--bs-soft); color: var(--bs-deep); }
    .class-name-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .class-name { font-family: var(--serif); font-size: .98rem; font-weight: 500; line-height: 1.4; }
    .class-target { font-size: .75rem; color: var(--olive-dark); font-weight: 500; }
    .class-card.maternity-card .class-target { color: var(--bs-deep); }
    .class-desc { font-size: .8rem; color: var(--ink-soft); line-height: 1.85; flex: 1; }
    .class-price-row { display: flex; gap: 16px; align-items: baseline; padding-top: 10px; border-top: 1px solid var(--line); flex-wrap: wrap; }
    .class-price-item { display: flex; flex-direction: column; gap: 1px; }
    .class-price-label { font-family: var(--mono); font-size: .55rem; letter-spacing: .08em; color: var(--ink-mute); }
    .class-price-val { font-family: var(--serif); font-size: .96rem; font-weight: 500; color: var(--olive-dark); }
    .class-card.maternity-card .class-price-val { color: var(--bs-deep); }
    .class-note-inline { font-size: .74rem; color: var(--ink-mute); padding: 8px 12px; background: var(--paper-2); border-radius: 5px; line-height: 1.75; }
    /* オンライン（小さめ） */
    .online-note { margin-top: 16px; padding: 16px 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
    .online-note-text { font-size: .82rem; color: var(--ink-soft); }
    .online-note-label { font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; color: var(--ink-mute); }

    /* ── 料金確認リンク（クラスカード内） ── */
    .class-price-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; padding: 9px 18px; border: 1px solid var(--olive); color: var(--olive-dark); border-radius: 999px; font-size: .78rem; letter-spacing: .06em; font-weight: 500; transition: all .2s; }
    .class-price-link:hover { background: var(--olive); color: var(--paper); }
    .class-price-link.line-inquiry { border-color: #06c755; color: #059542; }
    .class-price-link.line-inquiry:hover { background: #06c755; color: #fff; }

    /* ── キッズクラス ── */
    .classes-group-head.kids { background: var(--olive-tint); border: 1px solid var(--olive-soft); }
    .classes-group-head.kids .classes-group-label { color: var(--olive-dark); }
    .classes-group-head.kids .classes-group-note { color: var(--olive); }
    .class-card.kids-card { border-top-color: var(--olive-soft); }

    /* ── 料金 ── */
    .price-intro { background: var(--olive-tint); border: 1px solid var(--olive-soft); border-radius: 10px; padding: 22px 24px; margin-bottom: 28px; }
    .price-intro-text { font-size: .88rem; color: var(--olive-dark); line-height: 2; }
    .price-featured { display: flex; gap: 12px; align-items: center; padding: 16px 20px; background: var(--olive); border-radius: 8px; margin-bottom: 28px; color: var(--paper); flex-wrap: wrap; }
    .price-featured-label { font-family: var(--mono); font-size: .58rem; letter-spacing: .16em; opacity: .75; }
    .price-featured-val { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; letter-spacing: .04em; }
    .price-featured-note { font-size: .78rem; opacity: .8; line-height: 1.8; }
    .price-table { width: 100%; border-collapse: collapse; font-size: .84rem; margin-top: 8px; }
    .price-table th { background: var(--olive-tint); color: var(--olive-dark); font-family: var(--serif); font-weight: 500; padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: .82rem; }
    .price-table td { padding: 10px 14px; border-bottom: 1px solid var(--line); color: var(--ink-soft); vertical-align: top; font-size: .82rem; }
    .price-table tr:last-child td { border-bottom: none; }
    .price-note { font-size: .74rem; color: var(--ink-mute); margin-top: 12px; line-height: 1.9; }

    /* ── ステップ ── */
    .steps { margin-top: 24px; display: flex; flex-direction: column; }
    .step { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
    .step:last-child { border-bottom: none; }
    .step-num { flex: 0 0 38px; height: 38px; background: var(--olive); color: var(--paper); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--italic); font-style: italic; font-size: 1.05rem; font-weight: 500; flex-shrink: 0; margin-top: 2px; }
    .step-title { font-family: var(--serif); font-size: .9rem; font-weight: 500; margin-bottom: 4px; }
    .step-desc { font-size: .8rem; color: var(--ink-soft); line-height: 1.9; }

    /* ── FAQ アコーディオン ── */
    .faq-accordion { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
    .faq-acc-item { border: 1px solid var(--line); border-radius: 10px; background: var(--paper); overflow: hidden; }
    .faq-acc-q { display: flex; align-items: center; gap: 12px; padding: 18px 20px; cursor: pointer; list-style: none; }
    .faq-acc-q::-webkit-details-marker { display: none; }
    .faq-acc-label { font-family: var(--italic); font-style: italic; font-size: 1rem; color: var(--olive); flex-shrink: 0; line-height: 1; }
    .faq-acc-text { flex: 1; font-size: .88rem; color: var(--ink); line-height: 1.6; }
    .faq-acc-icon { font-size: 1.1rem; color: var(--ink-mute); flex-shrink: 0; transition: transform .25s; font-weight: 300; }
    details[open] .faq-acc-icon { transform: rotate(45deg); }
    .faq-acc-a { padding: 0 20px 18px calc(20px + 12px + 1rem); font-size: .84rem; color: var(--ink-soft); line-height: 2; }

    /* ── CTA ── */
    .cta-section { background: var(--olive-dark); padding: 72px 20px; text-align: center; color: var(--paper); }
    .cta-eyebrow { font-family: var(--mono); font-size: .6rem; letter-spacing: .3em; color: rgba(251,248,241,.42); text-transform: uppercase; margin-bottom: 14px; }
    .cta-title { font-family: var(--serif); font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 500; margin-bottom: 14px; letter-spacing: .06em; line-height: 1.7; }
    .cta-sub { font-size: .88rem; color: rgba(251,248,241,.7); margin-bottom: 10px; line-height: 2.2; }
    .cta-btns { display: flex; gap: 12px; justify-content: center; flex-direction: column; max-width: 320px; margin: 0 auto; }
    .btn-cta-line { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 24px; background: #06c755; color: #fff; border-radius: 999px; font-size: .85rem; letter-spacing: .06em; font-weight: 500; }
    .btn-cta-reserve { display: inline-flex; align-items: center; justify-content: center; padding: 15px 24px; border: 1px solid rgba(251,248,241,.45); color: var(--paper); border-radius: 999px; font-size: .85rem; letter-spacing: .06em; font-weight: 500; }

    /* ── フッター ── */
    footer { background: var(--ink); color: rgba(251,248,241,.55); padding: 40px 22px 32px; }
    .footer-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
    .footer-logo { font-family: var(--italic); font-style: italic; font-weight: 500; font-size: 1.3rem; color: var(--paper); }
    .footer-logo small { display: block; font-family: var(--mono); font-style: normal; font-size: .54rem; letter-spacing: .25em; color: rgba(251,248,241,.4); margin-top: 4px; }
    .footer-links { display: flex; flex-direction: column; gap: 4px; text-align: right; }
    .footer-links a { font-size: .72rem; color: rgba(251,248,241,.6); }
    .footer-addr { margin-top: 24px; font-size: .72rem; opacity: .65; line-height: 2; }
    .footer-meta { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(251,248,241,.12); display: flex; justify-content: space-between; font-family: var(--mono); font-size: .58rem; letter-spacing: .15em; opacity: .45; }

    /* ── スマホ固定CTA ── */
    .sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; padding: 10px 14px; background: rgba(251,248,241,.96); backdrop-filter: blur(6px); border-top: 1px solid var(--line); }
    .sticky-btn { flex: 1; padding: 12px; text-align: center; border-radius: 999px; font-size: .8rem; letter-spacing: .06em; font-weight: 500; }
    .sticky-btn-reserve { background: var(--olive); color: var(--paper); }
    .sticky-btn-line { background: var(--paper); color: var(--olive-dark); border: 1px solid var(--olive); }

    /* ── モバイル体験バナー（768px以下のみ表示） ── */
    .trial-hint { display: none; margin-top: 28px; background: var(--olive); border-radius: 10px; padding: 20px 18px; flex-direction: column; gap: 12px; }
    .trial-hint-body { color: var(--paper); }
    .trial-hint-label { font-family: var(--mono); font-size: .58rem; letter-spacing: .2em; opacity: .7; margin-bottom: 6px; }
    .trial-hint-main { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; line-height: 1.7; margin-bottom: 4px; }
    .trial-hint-note { font-size: .8rem; opacity: .8; line-height: 1.8; }
    .trial-hint-btn { display: flex; align-items: center; justify-content: center; padding: 13px; background: var(--paper); color: var(--olive-dark); border-radius: 999px; font-size: .84rem; font-weight: 500; letter-spacing: .06em; }

    /* ── 料金セクション再設計（pr- プレフィックス） ── */
    .pr-eyebrow { font-family: var(--mono); font-size: .56rem; letter-spacing: .28em; color: var(--olive); margin-bottom: 6px; text-transform: uppercase; }
    /* 体験カード */
    .pr-trial { background: var(--olive-dark); border-radius: 12px; padding: 26px 22px; color: var(--paper); margin-bottom: 28px; }
    .pr-trial-label { font-family: var(--mono); font-size: .54rem; letter-spacing: .28em; opacity: .55; margin-bottom: 8px; }
    .pr-trial-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; margin-bottom: 4px; }
    .pr-trial-sub { font-size: .82rem; opacity: .75; line-height: 1.8; margin-bottom: 18px; }
    .pr-trial-body { display: flex; gap: 22px; align-items: flex-start; margin-bottom: 18px; flex-wrap: wrap; }
    .pr-big-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 500; }
    .pr-unit { font-size: .8rem; opacity: .65; margin-left: 3px; }
    .pr-trial-list { list-style: none; flex: 1; min-width: 160px; display: flex; flex-direction: column; gap: 7px; padding-top: 6px; }
    .pr-trial-list li { font-size: .8rem; opacity: .8; line-height: 1.7; padding-left: 12px; position: relative; }
    .pr-trial-list li::before { content: '—'; position: absolute; left: 0; opacity: .45; font-size: .7rem; }
    .pr-trial-btn { display: flex; align-items: center; justify-content: center; padding: 13px; background: var(--paper); color: var(--olive-dark); border: 1.5px solid var(--paper); border-radius: 999px; font-size: .84rem; font-weight: 500; letter-spacing: .05em; transition: opacity .2s; }
    .pr-trial-btn:hover { opacity: .85; }

    /* ── ステップ後CTA ── */
    .step-cta { text-align: center; padding: 28px 0 4px; }
    .step-cta-btn { display: inline-flex; align-items: center; gap: 6px; padding: 11px 30px; border: 1.5px solid var(--olive); color: var(--olive-dark); border-radius: 999px; font-size: .82rem; font-weight: 500; letter-spacing: .04em; transition: background .2s, color .2s; }
    .step-cta-btn:hover { background: var(--olive); color: var(--paper); }
    /* 入会金 */
    .pr-enroll { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; background: var(--paper-2); border: 1px solid var(--line); border-radius: 10px; padding: 18px 20px; margin-bottom: 28px; }
    @media (max-width: 560px) { .pr-enroll { flex-direction: column; align-items: flex-start; gap: 12px; } .pr-enroll-notes { width: 100%; } }
    .pr-enroll-left { flex-shrink: 0; }
    .pr-enroll-tag { font-family: var(--mono); font-size: .56rem; letter-spacing: .18em; color: var(--olive-dark); margin-bottom: 4px; }
    .pr-enroll-price { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--olive-dark); }
    .pr-enroll-when { font-size: .72rem; color: var(--ink-mute); font-family: var(--sans); font-weight: 400; margin-left: 6px; }
    .pr-enroll-notes { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 4px; }
    .pr-enroll-notes li { font-size: .76rem; color: var(--ink-soft); padding-left: 14px; position: relative; line-height: 1.7; }
    .pr-enroll-notes li::before { content: '※'; position: absolute; left: 0; color: var(--olive); font-size: .7rem; top: 1px; }
    /* 通い方ガイド */
    .pr-guide { background: var(--olive-tint); border-radius: 10px; padding: 18px 20px; margin-bottom: 32px; }
    .pr-guide-title { font-family: var(--serif); font-size: .9rem; font-weight: 500; color: var(--olive-dark); margin-bottom: 12px; }
    .pr-guide-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
    .pr-guide-list li { display: flex; align-items: center; gap: 8px; font-size: .8rem; flex-wrap: wrap; }
    .pr-guide-situation { color: var(--ink-soft); }
    .pr-guide-arrow { color: var(--olive); font-size: .7rem; flex-shrink: 0; }
    .pr-guide-plan { color: var(--olive-dark); font-weight: 500; }
    .pr-guide-cta { font-size: .76rem; color: var(--olive-dark); }
    /* セクション共通 */
    .pr-section { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
    .pr-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .pr-section-head { margin-bottom: 10px; }
    .pr-section-title { font-family: var(--serif); font-size: .98rem; font-weight: 500; color: var(--ink); }
    .pr-section-note { font-size: .8rem; color: var(--ink-soft); line-height: 1.85; margin-bottom: 14px; }
    /* 月謝プランカード */
    .pr-plan-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 8px; }
    @media (min-width: 560px) { .pr-plan-grid { grid-template-columns: 1fr 1fr; } }
    .pr-plan-card { border: 1px solid var(--line); border-radius: 8px; background: var(--paper); padding: 14px 16px; }
    .pr-plan-card.pr-recommended { border-color: var(--olive); background: var(--olive-tint); }
    .pr-plan-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; flex-wrap: wrap; gap: 4px; }
    .pr-plan-name { font-family: var(--serif); font-size: .9rem; font-weight: 500; }
    .pr-plan-price { font-family: var(--serif); font-size: 1.08rem; font-weight: 500; color: var(--olive-dark); white-space: nowrap; }
    .pr-plan-price span { font-family: var(--sans); font-size: .68rem; font-weight: 400; color: var(--ink-mute); }
    .pr-plan-detail { font-size: .74rem; color: var(--ink-soft); line-height: 1.7; }
    .pr-plan-extra { font-size: .7rem; color: var(--olive-dark); margin-top: 5px; padding-top: 5px; border-top: 1px solid var(--olive-soft); }
    /* 特別クラス */
    .pr-special-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    @media (max-width: 480px) { .pr-special-grid { grid-template-columns: 1fr; } }
    .pr-special-card { border: 1px solid var(--bs); background: var(--bs-soft); border-radius: 8px; padding: 14px 16px; }
    .pr-special-name { font-family: var(--serif); font-size: .88rem; font-weight: 500; color: var(--bs-deep); margin-bottom: 3px; }
    .pr-special-target { font-size: .7rem; color: var(--ink-mute); margin-bottom: 6px; }
    .pr-special-price { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: var(--bs-deep); }
    .pr-special-price span { font-family: var(--sans); font-size: .68rem; font-weight: 400; color: var(--ink-mute); }
    /* チケット・オンライン・会員 */
    .pr-ticket-list { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; margin-bottom: 8px; }
    .pr-ticket-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--paper); gap: 12px; }
    .pr-ticket-row:last-child { border-bottom: none; }
    .pr-ticket-name { font-family: var(--serif); font-size: .88rem; font-weight: 500; }
    .pr-ticket-sub { font-size: .7rem; color: var(--ink-mute); margin-top: 2px; }
    .pr-ticket-price { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--olive-dark); white-space: nowrap; flex-shrink: 0; }
    .pr-ticket-price span { font-family: var(--sans); font-size: .66rem; font-weight: 400; color: var(--ink-mute); }
    .pr-ticket-benefit { background: var(--olive-tint); border: 1px solid var(--olive-soft); border-radius: 6px; padding: 9px 13px; margin-bottom: 6px; }
    .pr-ticket-benefit p { font-size: .76rem; color: var(--olive-dark); line-height: 1.7; }
    /* パーソナル */
    .pr-personal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 8px; }
    .pr-personal-card { border: 1px solid var(--line); border-radius: 8px; background: var(--paper); padding: 16px; text-align: center; }
    .pr-personal-duration { font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; color: var(--ink-mute); margin-bottom: 8px; }
    .pr-personal-price { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--olive-dark); }
    .pr-personal-price span { font-family: var(--sans); font-size: .68rem; font-weight: 400; color: var(--ink-mute); }
    .pr-personal-add { font-size: .7rem; color: var(--ink-mute); margin-top: 6px; line-height: 1.6; }
    /* BS会員 */
    .pr-member-wrap { background: var(--paper-2); border: 1px solid var(--line); border-radius: 10px; padding: 18px 20px; }
    .pr-member-wrap .pr-section-title { color: var(--bs-deep); }
    /* 確認中・注釈 */
    .pr-pending { display: inline-block; font-size: .64rem; color: var(--ink-mute); font-family: var(--mono); letter-spacing: .04em; background: rgba(0,0,0,.05); padding: 2px 7px; border-radius: 3px; margin-top: 4px; }
    .pr-small-note { font-size: .7rem; color: var(--ink-mute); line-height: 1.75; margin-top: 6px; }
    /* 続け方3択 */
    .pr-type-section { margin-bottom: 32px; }
    .pr-type-heading { font-family: var(--serif); font-size: .95rem; font-weight: 500; color: var(--ink); margin-bottom: 14px; }
    .pr-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    @media (max-width: 560px) { .pr-type-grid { grid-template-columns: 1fr; gap: 8px; } }
    .pr-type-card { border: 1px solid var(--line); border-radius: 10px; background: var(--paper); padding: 18px 16px; text-align: center; }
    .pr-type-num { font-family: var(--mono); font-size: .56rem; letter-spacing: .18em; color: var(--olive); margin-bottom: 8px; }
    .pr-type-name { font-family: var(--serif); font-size: .92rem; font-weight: 500; margin-bottom: 6px; }
    .pr-type-desc { font-size: .76rem; color: var(--ink-mute); line-height: 1.6; }
    /* 月謝縦型カード */
    .pr-plan-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
    .pr-plan-wide { border: 1px solid var(--line); border-radius: 10px; background: var(--paper); padding: 18px 20px; }
    .pr-plan-wide.pr-recommended { border-color: var(--olive); background: var(--olive-tint); }
    .pr-plan-wide-top { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
    .pr-plan-wide-name { font-family: var(--serif); font-size: 1rem; font-weight: 500; }
    .pr-plan-wide-price { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; color: var(--olive-dark); white-space: nowrap; }
    .pr-plan-wide-price span { font-family: var(--sans); font-size: .7rem; font-weight: 400; color: var(--ink-mute); }
    .pr-plan-wide-detail { font-size: .8rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 8px; }
    .pr-recommend-tag { display: inline-block; font-size: .68rem; color: var(--olive-dark); background: var(--olive-soft); padding: 3px 10px; border-radius: 999px; }
    /* その他クラスグリッド */
    .pr-others-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    @media (max-width: 560px) { .pr-others-grid { grid-template-columns: 1fr; } }
    .pr-other-card { border: 1px solid var(--line); border-radius: 10px; background: var(--paper); padding: 18px 16px; }
    .pr-other-card.pr-other-bs { border-color: var(--bs); background: var(--bs-soft); }
    .pr-other-name { font-family: var(--serif); font-size: .9rem; font-weight: 500; margin-bottom: 3px; }
    .pr-other-target { font-size: .7rem; color: var(--ink-mute); margin-bottom: 10px; }
    .pr-other-price { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--olive-dark); margin-bottom: 8px; }
    .pr-other-price span { font-family: var(--sans); font-size: .7rem; font-weight: 400; color: var(--ink-mute); }
    .pr-other-bs .pr-other-price { color: var(--bs-deep); }
    .pr-other-price-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 8px; }
    .pr-other-price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
    .pr-other-price-label { font-size: .76rem; color: var(--ink-soft); }
    .pr-other-price-val { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--olive-dark); white-space: nowrap; }
    .pr-other-price-val span { font-family: var(--sans); font-size: .66rem; font-weight: 400; color: var(--ink-mute); }
    .pr-other-bs .pr-other-price-val { color: var(--bs-deep); }

    /* ── レスポンシブ ── */
    @media (max-width: 900px) {
      .why-layout { grid-template-columns: 1fr; }
      .why-photo { display: none; }
    }
    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .nav { position: fixed; top: 0; right: -100%; width: 72%; max-width: 260px; height: 100vh; background: var(--paper); padding: 68px 24px 24px; transition: right .3s; z-index: 200; overflow-y: auto; box-shadow: -8px 0 24px rgba(0,0,0,.08); }
      .nav.open { right: 0; }
      .nav-overlay { display: block; opacity: 0; pointer-events: none; transition: opacity .3s; }
      .nav-overlay.open { opacity: 1; pointer-events: auto; }
      .nav ul { flex-direction: column; gap: 0; }
      .nav ul li { border-bottom: 1px solid var(--line); }
      .nav a:not(.btn-nav) { display: block; padding: 14px 0; font-size: .92rem; }
      .btn-nav { display: inline-block; margin: 16px 0 0; }
      body { padding-bottom: 72px; }
      .sticky-cta { display: flex; gap: 10px; }
      .tag-cta-inner { flex-direction: column; align-items: flex-start; }
      .for-you-grid { gap: 8px; }
      .classes-grid { grid-template-columns: 1fr; }
      .classes-grid .class-card:nth-child(5) { grid-column: auto; max-width: 100%; justify-self: auto; }
      .photo-interlude img, .photo-interlude .photo-ph-wide { aspect-ratio: 16/8; }
      .price-featured { gap: 8px; flex-direction: column; align-items: flex-start; padding: 20px; }
      .price-featured-val { font-size: 1.22rem; }

      /* ── スマホ読みやすさ改善（シニア・初心者対応） ── */
      .page-hero-catch { font-size: 1.28rem; line-height: 2.05; }
      .page-hero-sub { font-size: .92rem; line-height: 2.35; color: rgba(251,248,241,.84); }
      .sec-title { font-size: 1.22rem; }
      .sec-lead { font-size: .92rem; line-height: 2.2; }
      .class-desc { font-size: .86rem; line-height: 2.0; }
      .step-title { font-size: .92rem; }
      .step-desc { font-size: .86rem; line-height: 2.0; }
      .why-title { font-size: .92rem; }
      .why-desc { font-size: .83rem; line-height: 2.0; }
      .faq-acc-q { padding: 18px 16px; }
      .faq-acc-text { font-size: .94rem; line-height: 1.65; }
      .faq-acc-a { font-size: .9rem; line-height: 2.15; padding: 0 16px 22px 16px; }
      .price-table th, .price-table td { font-size: .86rem; padding: 12px 10px; }
      .sticky-btn { font-size: .84rem; padding: 13px 12px; }
      .trial-hint { display: flex; }

      /* 体験レッスン強調 */
      .price-featured-val { font-size: 1.42rem; letter-spacing: .02em; }
      .price-featured-note { font-size: .85rem; line-height: 1.95; opacity: .92; }

      /* 料金表：金額列を目立たせる */
      .price-table td:last-child { font-weight: 600; color: var(--olive-dark); font-size: .9rem; }
      .price-table th { font-size: .8rem; }

      /* クラスカード */
      .class-name { font-size: 1rem; }
      .class-target { font-size: .8rem; }
      .class-price-val { font-size: 1rem; }
      .class-price-label { font-size: .6rem; }
    }