    /* ============================================
       Design Tokens  — index.html と同期 (2026-04-23)
       ============================================ */
    :root {
      /* Primary / Accent */
      --c-accent: #EC7D5F;
      --c-accent-light: #F29A7D;
      --c-accent-text: #EC7D5F;
      --c-cta-gradient: linear-gradient(135deg, #F29A7D 0%, #EC7D5F 100%);

      /* Corporate */
      --c-sunset-red: #EC7D5F;
      --c-sunset-yellow: #E8A832;
      --c-ocean-blue: #4A90B8;
      --c-ocean-light: #81CDDC;
      --c-ocean-dark: #339DC1;

      /* Neutral */
      --c-text: #222222;
      --c-text-light: #333333;
      --c-text-muted: #888;
      --c-border: #e0e0e0;
      --c-bg: #fff;
      --c-bg-cream: #FEF7E7;   /* 基準書§1: トップと統一 (旧 #FBF6F0 はズレ) */
      --c-bg-soft: #f2f6fa;
      --c-bg-gray: #f5f5f5;
      --c-cream-text: #F0EBDE;

      /* Typography */
      --ff-sans: '游ゴシック Medium', 'Yu Gothic Medium', YuGothic, '游ゴシック', 'Yu Gothic', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
      --ff-serif: 'Shippori Mincho B1', 'Noto Serif JP', serif;
      --ff-serif-alt: 'Shippori Mincho B1', 'Noto Serif JP', serif;
      --ff-display: 'Cormorant Infant', 'Cormorant Garamond', serif;
      --ff-script: 'Allura', 'Dancing Script', cursive;

      /* Layout */
      --section-pad: 100px 0;
      --container-width: min(1680px, 87.5vw);   /* 基準書§7-A 流体コンテナ(左右ガター6.25vw)。旧1340px固定から統一 */
      --container-pad: 0;                          /* 87.5vw に左右ガターを内包するため内側paddingは0 */

      /* Radius */
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 16px;
      --radius-round: 50%;

      /* v3.8 レスポンシブ基準 (2026-04-23 星さん指示, JS 駆動 / index.html と同期) */
      --content-scale: 1;
    }

    /* ============================================
       Reset & Base
       ============================================ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--ff-sans);
      color: var(--c-text);
      background: var(--c-bg);
      line-height: 1.875;       /* 基準書§5 本文 lh30px相当(16px×1.875) */
      font-size: 1rem;
      letter-spacing: 0.04em;   /* 基準書§5 本文字間 */
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
    ul, ol { list-style: none; }

    /* ============================================
       Layout & Typography utilities
       ============================================ */
    .container {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: var(--container-pad);
    }
    .heading-lg {
      font-family: var(--ff-serif);
      font-size: clamp(1.375rem, 1.22rem + 0.65vw, 2rem);   /* 基準書§3 大見出し: SP22px→PC32px */
      font-weight: 500;
      line-height: 1.6;
      letter-spacing: 0.1em;
      color: var(--c-text);
      padding-bottom: 0.25em;
    }
    .heading-lg .accent { color: var(--c-accent); }
    .heading-sub {
      font-family: var(--ff-display);
      font-size: 26px;
      font-weight: 500;
      color: var(--c-text);
      letter-spacing: 0.01em;
      margin-top: 8px;
    }
    .vertical-label {
      font-family: var(--ff-display);
      font-size: 22px;
      font-weight: 500;
      letter-spacing: 0.1em;
      color: var(--c-text);
      writing-mode: vertical-rl;
      text-orientation: mixed;
    }
    .vertical-label.is-horizontal {
      writing-mode: horizontal-tb;
      text-align: center;
      display: block;
      margin-bottom: 8px;
    }

    /* ============================================
       Buttons
       ============================================ */
    /* トップ p-common__btn と完全一致（明朝500・14px・高さ46px・丸角5・gap16）*/
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      height: 46px;
      padding: 0 28px;
      border: 1px solid var(--c-text);
      border-radius: 5px;
      font-family: var(--ff-serif);   /* 明朝 */
      font-weight: 500;
      font-size: 0.875rem;            /* 14px */
      letter-spacing: 0.08em;
      color: var(--c-text);
      background: #fff;
      transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }
    .btn-outline:hover { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
    /* 矢印はトップ p-common__btn と同じ ::after 方式（44×25 画像を contain で 10×約5.7 に。img の潰れ対策）*/
    .btn-outline::after {
      content: "";
      display: inline-block;
      flex-shrink: 0;
      width: 10px;
      height: 10px;
      background: url(/assets/images/icons/arrow_right.webp) no-repeat center / contain;
      transition: transform 0.25s ease, filter 0.25s ease;
    }
    .btn-outline:hover::after { filter: invert(1); transform: translateX(4px); }
    .btn-outline .arrow { font-size: 12px; transition: transform 0.3s; }
    .btn-outline:hover .arrow { transform: translateX(4px); }

    /* img 矢印 (index.html v3.8 と同期) — detail系ボタンで使用 */
    .btn-arrow {
      width: 10px;
      height: 10px;
      flex-shrink: 0;
      display: inline-block;
      vertical-align: middle;
      transition: transform 0.25s ease, filter 0.25s ease;
    }
    .btn-outline:hover .btn-arrow { transform: translateX(4px); filter: invert(1); }
    .btn-cta .btn-arrow,
    .form-submit .btn-arrow { filter: invert(1); }
    .btn-cta:hover .btn-arrow,
    .form-submit:hover .btn-arrow { transform: translateX(4px); }

    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      background: var(--c-cta-gradient);
      color: #fff;
      font-size: 16px;
      letter-spacing: 0.05em;
      border-radius: var(--radius-sm);
      transition: opacity 0.3s;
    }
    .btn-cta:hover { opacity: 0.85; }

    /* ============================================
       1. Header  (index.html と同一)
       ============================================ */
    .header {
      position: fixed;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 1680px;
      z-index: 100;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      border-bottom-left-radius: 6px;
      border-bottom-right-radius: 6px;
    }
    @media (max-width: 1679px) {
      .header {
        max-width: none;
        left: 0;
        transform: none;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
      }
    }
    .header-inner {
      display: flex;
      align-items: center;
      height: 100px;
      padding: 0 40px 0 10px;
      gap: 24px;
    }
    .header-logo { display: flex; align-items: center; flex-shrink: 0; }
    .header-logo-icon {
      width: 325px;
      height: 83px;
      background-image: url('../assets/images/logo/olivean-logo.webp');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: left center;
    }
    .header-nav {
      display: flex;
      align-items: center;
      gap: 36px;
      margin-left: auto;
      margin-right: 16px;
    }
    .header-nav a {
      font-family: var(--ff-serif);
      font-size: 16px;
      font-weight: 500;
      color: #222;
      transition: color 0.3s;
      position: relative;
    }
    .header-nav a:hover { color: var(--c-accent); }
    .header-nav a.is-current {
      color: var(--c-accent);
    }
    .header-nav a.is-current::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -8px;
      height: 2px;
      background: var(--c-accent);
    }
    .header-actions { display: flex; align-items: center; gap: 24px; }

    .header-booking-btn {
      position: relative;
      isolation: isolate;
      background: #EC7D5F;
      color: #fff;
      font-family: var(--ff-serif);
      font-size: 17px;
      font-weight: 500;
      width: 130px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 5px;
      letter-spacing: 0.08em;
      line-height: 1;
      white-space: nowrap;
      overflow: hidden;
      transition: box-shadow 0.35s ease;
    }
    .header-booking-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, #EC7D5F 0%, #F6B196 100%);
      transition: opacity 0.35s ease;
      z-index: -1;
    }
    .header-booking-btn:hover::before { opacity: 0; }
    .header-booking-btn:hover { box-shadow: 0 4px 14px rgba(236, 125, 95, 0.35); }

    .header-hamburger {
      width: 40px;
      height: 40px;
      background: #222;
      border: none;
      border-radius: 4px;
      padding: 0;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      transition: background 0.25s ease;
      font-size: 0;
    }
    .header-hamburger:hover { background: #3a3530; }
    .header-hamburger .bar { display: block; width: 20px; height: 1px; background: #fff; }

    .header-lang-wrap { position: relative; display: inline-flex; align-items: center; }
    .header-lang {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--ff-display);
      font-size: 18px;
      font-weight: 600;
      color: #222;
      cursor: pointer;
      user-select: none;
    }
    .header-lang-icon { width: 20px; height: 20px; }
    .header-lang .chevron { width: 10px; height: 6px; margin-left: 2px; transition: transform .25s ease; }
    .header-lang-wrap[aria-expanded="true"] .chevron { transform: rotate(180deg); }
    .header-lang-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: #fff;
      border: 1px solid var(--c-border);
      border-radius: 6px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      min-width: 140px;
      padding: 8px 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease;
      z-index: 200;
    }
    .header-lang-wrap.is-open .header-lang-menu { opacity: 1; pointer-events: auto; }
    .header-lang-menu li a {
      display: block;
      padding: 8px 16px;
      font-size: 14px;
      color: var(--c-text);
      transition: background .2s;
    }
    .header-lang-menu li a:hover { background: var(--c-bg-cream); }

    .header-tel { text-align: right; }
    .header-tel-number {
      font-family: var(--ff-display);
      font-size: 22px;
      font-weight: 600;
      color: var(--c-text);
      letter-spacing: 0.02em;
      line-height: 1.2;
    }
    .header-tel-hours {
      font-size: 11px;
      color: var(--c-text-muted);
      margin-top: 2px;
    }

    /* Page content spacer for fixed header */
    .page-body { padding-top: 100px; }

    /* ============================================
       A. Sub-Page Hero
       ============================================ */
    .sub-hero {
      position: relative;
      height: 480px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .sub-hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      z-index: 0;
    }
    .sub-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
    }
    .sub-hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      color: #fff;
      padding: 0 1rem;
    }
    .sub-hero-en {
      font-family: var(--ff-display);
      font-size: clamp(1rem, 0.94rem + 0.26vw, 1.25rem);   /* 20/16 */
      font-weight: 500;
      letter-spacing: 0.2em;
      color: var(--c-cream-text);
      opacity: 0.9;
      margin-bottom: 12px;
    }
    .sub-hero-title {
      font-family: var(--ff-serif);
      font-size: clamp(1.625rem, 1.47rem + 0.65vw, 2.25rem);   /* 基準書§3 ヒーローH1: SP26px→PC36px */
      font-weight: 500;
      letter-spacing: 0.15em;
      line-height: 1.7;
      color: #fff;
    }
    .sub-hero-desc {
      margin-top: 16px;
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      letter-spacing: 0.08em;
      color: var(--c-cream-text);
      opacity: 0.9;
    }

    /* Breadcrumb */
    .breadcrumb {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 20px 50px;
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      color: var(--c-text-muted);
      letter-spacing: 0.05em;
    }
    .breadcrumb a:hover { color: var(--c-accent); }
    .breadcrumb-sep { margin: 0 8px; color: var(--c-border); }
    .breadcrumb .is-current { color: var(--c-text); }

    /* ============================================
       B. Page Intro
       ============================================ */
    .page-intro {
      padding: 60px 0;
      text-align: center;
      position: relative;
    }
    .page-intro .vertical-label.is-horizontal {
      font-size: 18px;
      letter-spacing: 0.3em;
      color: var(--c-accent);
      margin-bottom: 16px;
    }
    .page-intro .heading-lg { margin-bottom: 20px; }
    .page-intro-text {
      max-width: 1000px;
      margin: 0 auto;
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      line-height: 2;
      color: var(--c-text-light);
    }

    /* ============================================
       Anchor Nav — ページ内アンカー横スクロールメニュー
       ・restaurants / onsen / about と共通の横スクロールナビ
       ============================================ */
    /* v49: 角丸ピル → 「テキスト+下矢印」タイプ (参考: taikanso.co.jp/rooms)。
       追従なし(sticky解除) / #f2f6fa のインセット帯 (トップ p-plan__filter と同じ余白) */
    .anchor-nav {
      margin: 8px 0 0;
    }
    .anchor-nav-inner {
      max-width: calc(100vw - 120px);
      margin: 0 auto;
      background: var(--c-bg-soft);
      border-radius: 6px;
      padding: 6px 24px;
      display: flex;
      flex-wrap: wrap;            /* 一列・溢れたら2段(横スクロールしない) */
      justify-content: center;
      align-items: stretch;
      row-gap: 0;
    }
    .anchor-nav a {
      flex-shrink: 0;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      padding: 16px 44px;
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      letter-spacing: 0.08em;
      color: var(--c-text);
      white-space: nowrap;
      transition: color 0.3s;
    }
    .anchor-nav a:not(:last-child) { border-right: 1px solid var(--c-border); }
    .anchor-nav a::after {
      content: "";
      width: 8px;
      height: 8px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg);
      transition: transform 0.3s;
    }
    .anchor-nav a:hover { color: var(--c-accent); }
    .anchor-nav a:hover::after { transform: rotate(45deg) translate(2px, 2px); }

    /* Smooth scroll offset for fixed header + sticky anchor-nav */
    .section-anchor { scroll-margin-top: 120px; }   /* v49: アンカーナビ追従解除に伴い固定ヘッダー(100px)+余白に縮小 */

    /* ============================================
       C. Feature Block  — 画像 + テキスト (交互配置)
       ============================================ */
    .feature-block {
      padding: 80px 0;
    }
    .feature-block-inner {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: var(--container-pad);
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .feature-block.is-reversed .feature-block-inner {
      grid-template-columns: 1fr 1.15fr;
    }
    .feature-block.is-reversed .feature-block-image {
      order: 2;
    }
    .feature-block-image {
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-radius: var(--radius-sm);
      background: var(--c-bg-gray);
    }
    .feature-block-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s ease;
    }
    .feature-block-image:hover img { transform: scale(1.04); }
    .feature-block-text .vertical-label.is-horizontal {
      font-size: 14px;
      letter-spacing: 0.3em;
      color: var(--c-accent);
      text-align: left;
      margin-bottom: 12px;
    }

    /* ============================================
       NEW (v49): Onsen Section Heading — 3セクション共通の大見出し
       ・アンカーリンクの飛び先 (section-anchor + id をここに付与)
       ・英字サブ → 装飾線 → 和文大見出し の3段構成
       ============================================ */
    .onsen-section-heading {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 80px 50px 0;
      text-align: center;
    }
    .onsen-section-heading-en {
      display: block;
      font-family: var(--ff-display);
      font-size: clamp(1rem, 0.97rem + 0.13vw, 1.125rem);   /* 18/16 */
      font-weight: 500;
      letter-spacing: 0.3em;
      color: var(--c-accent);
      margin-bottom: 14px;
    }
    .onsen-section-heading-line {
      display: block;
      width: 40px;
      height: 1px;
      background: var(--c-accent);
      margin: 18px auto 24px;
    }
    .onsen-section-heading-ja {
      font-family: var(--ff-serif);
      font-size: clamp(1.5rem, 1.34rem + 0.65vw, 2.125rem);   /* v49 大見出し: heading-lgより一回り大 SP24px→PC34px */
      font-weight: 500;
      letter-spacing: 0.08em;
      line-height: 46px;
      color: var(--c-text);
    }

    /* ============================================
       NEW (v49): Vertical Feature Block — 縦積みレイアウト
       ・露天風呂・大浴場セクションで使用
       ・大見出し → 情緒コピー(サブ) → 説明文 → 横幅ワイド peek-slider の縦積み
       ============================================ */
    .onsen-feature-vertical {
      padding: 40px 0 80px;
    }
    .onsen-feature-vertical-text {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 50px;
      text-align: center;
    }
    .onsen-feature-emotion {
      font-family: var(--ff-serif);
      font-size: clamp(1.25rem, 1.19rem + 0.26vw, 1.5rem);   /* 24/20 */
      font-weight: 500;
      line-height: 1.7;
      letter-spacing: 0.08em;
      color: var(--c-text);
      margin-bottom: 28px;
    }
    .onsen-feature-body {
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      line-height: 2;
      color: var(--c-text-light);
    }

    /* ============================================
       NEW (v49): Peek Slider — 画面端まで突き抜けの中央寄せ peek スライダー
       ・1-2-3-4-5-1-2-3... の無限ループ (クローン方式でシームレス)
       ・中央スライド: 大きく強調、サイド: opacity 0.5 + scale 0.95 で奥行き感
       ・main slide width = min(880px, 64vw)
       ・自動 3.5秒で右→左へ流れる、ホバー停止
       ============================================ */
    .peek-slider {
      position: relative;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      margin-top: 56px;
      overflow: hidden;
      padding: 16px 0;
    }
    .peek-slider-track {
      display: flex;
      gap: 24px;
      will-change: transform;
      touch-action: pan-y;   /* 横スワイプはJSで処理、縦スクロールはブラウザに委譲 */
    }
    .peek-slider-slide {
      flex: 0 0 auto;
      width: min(880px, 64vw);
      aspect-ratio: 16 / 10;
      overflow: hidden;
      border-radius: var(--radius-sm);
      background: var(--c-bg-gray);
      box-shadow: 0 6px 24px rgba(0,0,0,0.08);
      opacity: 0.45;
      transform: scale(0.94);
      transition: opacity 0.7s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    .peek-slider-slide.is-active {
      opacity: 1;
      transform: scale(1);
    }
    .peek-slider-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .peek-slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-top: 24px;
    }
    .peek-slider-controls .slider-btn {
      width: 44px;
      height: 44px;
      border: 1px solid var(--c-text-muted);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;   /* 16px */
      font-family: var(--ff-display);
      color: var(--c-text);
      background: transparent;
      cursor: pointer;
      transition: border-color 0.3s, background 0.3s, color 0.3s;
    }
    .peek-slider-controls .slider-btn:hover {
      border-color: var(--c-accent);
      background: var(--c-accent);
      color: #fff;
    }
    .peek-slider-controls .slider-counter {
      font-family: var(--ff-display);
      font-size: clamp(1rem, 0.97rem + 0.13vw, 1.125rem);   /* 18/16 */
      font-weight: 500;
      color: var(--c-text);
      letter-spacing: 0.05em;
      min-width: 48px;
      text-align: center;
    }
    .peek-slider:focus-visible {
      outline: 2px solid var(--c-accent);
      outline-offset: 4px;
    }

    /* ============================================
       NEW: Photo Slider — フェード式・自動再生付き
       (lower4 温泉ページで導入、今後の lower ページでも流用可)
       ・index.html の .slider / .slider-btn / .slider-counter パターンを継承
       ・feature-block-image の差し替え版として feature-block-inner 内に配置
       ============================================ */
    .photo-slider {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      touch-action: pan-y;   /* 横スワイプはJSで処理、縦スクロールはブラウザに委譲 */
      border-radius: var(--radius-sm);
      background: var(--c-bg-gray);
      box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    }
    .photo-slider-stage {
      position: absolute;
      inset: 0;
    }
    .photo-slider-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
      pointer-events: none;
    }
    .photo-slider-slide.is-active {
      opacity: 1;
      pointer-events: auto;
    }
    .photo-slider-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .photo-slider-controls {
      position: absolute;
      right: 16px;
      bottom: 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      background: rgba(255, 255, 255, 0.92);
      border-radius: 999px;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 2px 10px rgba(0,0,0,0.12);
      z-index: 2;
    }
    .photo-slider-controls .slider-btn {
      width: 32px;
      height: 32px;
      border: 1px solid var(--c-text-muted);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.875rem;   /* 14px */
      font-family: var(--ff-display);
      color: var(--c-text);
      background: transparent;
      cursor: pointer;
      transition: border-color 0.3s, background 0.3s, color 0.3s;
    }
    .photo-slider-controls .slider-btn:hover {
      border-color: var(--c-accent);
      background: var(--c-accent);
      color: #fff;
    }
    .photo-slider-controls .slider-counter {
      font-family: var(--ff-display);
      font-size: 1rem;   /* 16px */
      font-weight: 500;
      color: var(--c-text);
      letter-spacing: 0.05em;
      min-width: 40px;
      text-align: center;
    }
    /* ドット式ページネーション（オプション・SP表示時に強調） */
    .photo-slider-dots {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 14px;
      display: flex;
      justify-content: center;
      gap: 6px;
      z-index: 1;
      pointer-events: none;
    }
    .photo-slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      border: 1px solid rgba(255,255,255,0.85);
      transition: background 0.3s, transform 0.3s;
    }
    .photo-slider-dot.is-active {
      background: #fff;
      transform: scale(1.2);
    }
    /* キーボードフォーカス用 */
    .photo-slider:focus-visible {
      outline: 2px solid var(--c-accent);
      outline-offset: 4px;
    }
    .feature-block-title {
      font-family: var(--ff-serif);
      font-size: clamp(1.25rem, 1.19rem + 0.26vw, 1.5rem);   /* 基準書§3 サブ見出し: SP20px→PC24px */
      font-weight: 500;
      line-height: 1.6;
      letter-spacing: 0.08em;
      margin-bottom: 24px;
    }
    .feature-block-body {
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      line-height: 1.875;       /* 基準書§5 本文 */
      letter-spacing: 0.04em;
      color: var(--c-text-light);
      margin-bottom: 32px;
    }
    .feature-block-text .feature-block-body:last-child { margin-bottom: 0; }

    /* ============================================
       D. Detail Grid  — カード一覧
       ============================================ */
    /* v49: クリームのインセット角丸ボックス化 (width=100vw-120px, 上0/下60px margin) */
    .detail-grid-section {
      width: calc(100vw - 120px);
      margin: 0 auto 60px;
      padding: 80px clamp(20px, 3.125vw, 60px);
      background: var(--c-bg-cream);
      border-radius: 6px;
    }
    /* ボックス内は full 幅 (var(--container-width) の 87.5vw だとボックスを超えるため) */
    .detail-grid-section .detail-grid-head,
    .detail-grid-section .detail-grid { max-width: 100%; }
    .detail-grid-head {
      max-width: var(--container-width);
      margin: 0 auto 60px;
      padding: var(--container-pad);
      text-align: center;
    }
    .detail-grid-head .vertical-label.is-horizontal {
      font-size: 16px;
      letter-spacing: 0.3em;
      color: var(--c-accent);
      margin-bottom: 12px;
    }
    .detail-grid {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: var(--container-pad);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 50px 40px;
    }
    .detail-card {
      background: #fff;
      border-radius: var(--radius-sm);
      overflow: hidden;
      box-shadow: 0 3px 24px 0 rgba(0,0,0,0.08);
      transition: transform .4s ease, box-shadow .4s ease;
    }
    .detail-card:hover {
      transform: none;   /* 非リンクカード=hoverで浮かせない(hoshi指示) */
      box-shadow: 0 3px 24px 0 rgba(0,0,0,0.08);
    }
    .detail-card-image {
      aspect-ratio: 3 / 2;
      overflow: hidden;
      background: var(--c-bg-gray);
    }
    .detail-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1s ease;
    }
    .detail-card:hover .detail-card-image img { transform: scale(1.06); }
    .detail-card-body {
      padding: 28px 28px 32px;
    }
    .detail-card-tag {
      display: inline-block;
      font-family: var(--ff-display);
      font-size: 0.875rem;   /* 12→14: 基準書§4 小ラベル */
      letter-spacing: 0.15em;
      color: var(--c-accent);
      padding-bottom: 2px;
      border-bottom: 1px solid var(--c-accent);
      margin-bottom: 12px;
    }
    .detail-card-title {
      font-family: var(--ff-serif);
      font-size: clamp(1.125rem, 1.06rem + 0.26vw, 1.375rem);   /* 22/18 */
      font-weight: 500;
      letter-spacing: 0.06em;
      line-height: 1.5;
      margin-bottom: 14px;
    }
    .detail-card-desc {
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      line-height: 1.875;       /* 基準書§5 本文 */
      letter-spacing: 0.04em;
      color: var(--c-text-light);
      margin-bottom: 20px;
    }
    .detail-card-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 16px;
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      color: var(--c-text-muted);
      padding-top: 16px;
      border-top: 1px solid var(--c-border);
    }
    .detail-card-specs li::before { content: '・'; margin-right: 2px; }
    /* Detail Grid 3列バリエーション */
    .detail-grid.is-cols-3 { grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
    /* Detail Grid 4列バリエーション (v48: ①親セクションの 泉質・効能・特徴・おすすめ spec strip) */
    .detail-grid.is-cols-4 { grid-template-columns: repeat(4, 1fr); gap: 32px 24px; }

    /* NEW: 画像なし detail-card バリ (泉質・特徴3項目用)
       上端のアクセントストライプで「画像なし」の物足りなさをカバー */
    .detail-card.is-text-only {
      border-top: 3px solid var(--c-accent);
    }
    .detail-card.is-text-only .detail-card-body {
      padding: 36px 28px 36px;
    }
    .detail-card.is-text-only .detail-card-desc { margin-bottom: 0; }   /* specs を持たないため desc 末尾余白を相殺 */

    /* NEW: クリーム背景の連続セクション用ラッパー
       feature-block と detail-grid-section を同色背景で繋ぐ (lower3 .dining-block.is-cream のリネーム版) */
    /* v49: detail-grid-section が単体ではクリームのインセット角丸ボックスになるため、
       cream-block-wrap 内では全幅・透明・角丸/横inset解除で「連続するクリーム面」に戻す */
    .is-bg-cream { background: var(--c-bg-cream); }
    .is-bg-soft { background: var(--c-bg-soft); }
    /* 日本語を文節境界で自動改行(語中割れ防止・PC/SP共通・Chrome系/非対応ブラウザは通常折返し) */
    .sub-hero-desc, .page-intro-text, .onsen-feature-emotion, .onsen-feature-body,
    .detail-card-desc, .feature-block-body, .spec-note, .dayuse-lead,
    .dayuse-price-foot, .notice-section-lead, .notice-card-desc {
      word-break: auto-phrase;
    }
    .cream-block-wrap { background: var(--c-bg-cream); }
    .cream-block-wrap .feature-block { padding-top: 100px; padding-bottom: 40px; }
    .cream-block-wrap .detail-grid-section {
      width: auto;
      margin: 0;
      background: transparent;
      border-radius: 0;
      padding: 40px 50px 100px;
    }

    /* ============================================
       E. Spec Table  — 共通仕様/施設情報 (営業時間案内用)
       ============================================ */
    .spec-section {
      padding: 100px 0;
    }
    /* INFORMATION 大見出し: spec-section が既に上100px確保 → 見出し自身の上paddingは0。見出し下〜テーブルは50px。 */
    .spec-section .onsen-section-heading { padding-top: 0; margin-bottom: 50px; }
    /* 「（ご宿泊のお客様）」を少し小さく (色はブランドアクセント var(--c-accent)) */
    .spec-section .onsen-section-heading-ja .accent { font-size: 0.65em; color: var(--c-accent); }
    .spec-section-inner {
      max-width: 900px;
      margin: 0 auto;
      padding: var(--container-pad);
    }
    .spec-section-head { text-align: center; margin-bottom: 48px; }
    .spec-section-head .vertical-label.is-horizontal {
      font-size: 16px;
      letter-spacing: 0.3em;
      color: var(--c-accent);
      margin-bottom: 12px;
    }
    .spec-table {
      width: 100%;
      border-collapse: collapse;
    }
    .spec-table tr {
      border-bottom: 1px solid var(--c-border);
    }
    .spec-table tr:first-child { border-top: 1px solid var(--c-border); }
    .spec-table th, .spec-table td {
      padding: 20px 24px;
      text-align: left;
      vertical-align: top;
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      line-height: 1.875;
      letter-spacing: 0.04em;
    }
    .spec-table th {
      width: 220px;
      font-family: var(--ff-serif);
      font-weight: 500;
      color: var(--c-text);
      background: var(--c-bg-cream);
    }
    .spec-table td { color: var(--c-text-light); }
    .spec-table .spec-time {
      display: inline-block;
      font-family: var(--ff-display);
      font-size: clamp(1.125rem, 1.06rem + 0.26vw, 1.375rem);   /* 22/18 */
      font-weight: 600;
      color: var(--c-text);
      letter-spacing: 0.05em;
      margin-right: 16px;
    }
    .spec-table .spec-time-label {
      display: inline-block;
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      color: var(--c-text-muted);
      margin-right: 24px;
    }
    .spec-note {
      max-width: var(--container-width);
      margin: 28px auto 0;
      padding: var(--container-pad);
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      line-height: 1.875;
      letter-spacing: 0.04em;
      color: var(--c-text-muted);
    }
    .spec-note strong { color: var(--c-text-light); font-weight: 600; }

    /* ============================================
       NEW: Notice Section — ご入浴マナー 注意事項ボックス
       sunset-yellow アクセントで重要事項を目立たせる縦並び3ボックス
       ============================================ */
    .notice-section {
      padding: 100px 0;
      background: var(--c-bg-soft);
    }
    .notice-section-head {
      max-width: var(--container-width);
      margin: 0 auto 48px;
      padding: var(--container-pad);
      text-align: center;
    }
    .notice-section-head .vertical-label.is-horizontal {
      font-size: 16px;
      letter-spacing: 0.3em;
      color: var(--c-accent);
      margin-bottom: 12px;
    }
    .notice-section-lead {
      max-width: 720px;
      margin: 18px auto 0;
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      line-height: 1.95;
      color: var(--c-text-light);
    }
    .notice-grid {
      max-width: 900px;
      margin: 0 auto;
      padding: var(--container-pad);
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .notice-card {
      background: #fff;
      border-left: 4px solid var(--c-sunset-yellow);
      border-radius: var(--radius-sm);
      padding: 26px 30px;
      display: flex;
      gap: 22px;
      align-items: flex-start;
      box-shadow: 0 3px 24px 0 rgba(0, 0, 0, 0.08);
      transition: box-shadow .3s ease, transform .3s ease;
    }
    .notice-card:hover {
      box-shadow: 0 3px 24px 0 rgba(0, 0, 0, 0.08);   /* 非リンク=hover効果無し */
      transform: none;
    }
    .notice-card-mark {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--c-sunset-yellow);
      color: #fff;
      font-family: var(--ff-display);
      font-size: clamp(1.125rem, 1.09rem + 0.13vw, 1.25rem);   /* 20/18 */
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }
    .notice-card-body { flex: 1; }
    .notice-card-title {
      font-family: var(--ff-serif);
      font-size: clamp(1rem, 0.97rem + 0.13vw, 1.125rem);   /* 18/16 */
      font-weight: 500;
      letter-spacing: 0.04em;
      margin-bottom: 6px;
      color: var(--c-text);
      line-height: 1.5;
    }
    .notice-card-desc {
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      line-height: 1.85;
      color: var(--c-text-light);
    }

    /* ============================================
       NEW (v48): Day-Use Section — 日帰り温泉のご案内 (独立セクション)
       宿泊者無料と混ざらないよう分離。料金2区分(タオル有無)をカードで比較表示。
       ============================================ */
    .dayuse-section { padding: 0 0; }
    /* 「日帰り利用の方はこちら」控えめテキストリンク (青字+下線) */
    .dayuse-textlink { display: inline-block; margin-top: 6px; font-size: 0.875rem; color: #1565c0; text-decoration: underline; text-underline-offset: 0.15em; }
    .dayuse-textlink:hover { color: #0d3f7a; }
    .dayuse-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 50px;
    }
    .dayuse-head { text-align: center; margin-bottom: 40px; }
    .dayuse-en {
      display: block;
      font-family: var(--ff-display);
      font-size: clamp(1rem, 0.97rem + 0.13vw, 1.125rem);   /* 18/16 */
      font-weight: 500;
      letter-spacing: 0.3em;
      color: var(--c-accent);
      margin-bottom: 14px;
    }
    .dayuse-lead {
      max-width: 640px;
      margin: 16px auto 0;
      text-align: center;
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      line-height: 1.95;
      color: var(--c-text-light);
    }
    .dayuse-panel {
      margin-top: 40px;
      background: var(--c-bg-cream);
      border-radius: 6px;
      padding: 48px clamp(20px, 3vw, 56px);
      box-shadow: none;
    }
    .dayuse-hours {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 40px;
      margin-bottom: 32px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--c-border);
    }
    .dayuse-hours-row { display: inline-flex; align-items: baseline; gap: 10px; }
    .dayuse-hours-label {
      font-family: var(--ff-serif);
      font-weight: 500;
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      color: var(--c-text);
    }
    .dayuse-hours .spec-time {
      display: inline-block;
      font-family: var(--ff-display);
      font-size: clamp(1.125rem, 1.06rem + 0.26vw, 1.375rem);   /* 22/18 */
      font-weight: 600;
      color: var(--c-text);
      letter-spacing: 0.05em;
    }
    .dayuse-hours-note { font-size: 0.8125rem; color: var(--c-text-muted); }
    .dayuse-price-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .dayuse-price-card {
      background: #fff;
      border: 1px solid var(--c-border);
      border-radius: 8px;
      padding: 28px 26px 24px;
      text-align: left;
      box-shadow: 0 3px 24px 0 rgba(0, 0, 0, 0.08);
    }
    .dayuse-price-card.is-featured {
      border-color: var(--c-accent);
      box-shadow: 0 6px 24px rgba(236, 125, 95, 0.14);
    }
    .dayuse-price-tag {
      display: inline-block;
      font-family: var(--ff-serif);
      font-weight: 500;
      font-size: 1rem;   /* 15→16: +1 */
      letter-spacing: 0.06em;
      padding: 5px 20px;
      border-radius: 999px;
      background: #f1ece0;
      color: var(--c-text);
      margin-bottom: 20px;
    }
    .dayuse-price-card.is-featured .dayuse-price-tag {
      background: var(--c-cta-gradient);
      color: #fff;
    }
    .dayuse-price-list li {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 12px 4px;
      border-bottom: 1px dashed var(--c-border);
      font-size: clamp(0.9375rem, 0.45rem + 0.95vw, 1.0625rem);   /* 17/15 (+1) */
      color: var(--c-text-light);
    }
    .dayuse-price-list li:last-child { border-bottom: none; }
    .dayuse-price-num {
      font-family: var(--ff-display);
      font-weight: 600;
      font-size: 1.75rem;   /* 28px */
      color: var(--c-accent);
      letter-spacing: 0.02em;
      line-height: 1;
    }
    .dayuse-price-num small {
      font-family: var(--ff-sans);
      font-size: 0.875rem;
      color: var(--c-text-light);
      margin-left: 2px;
    }
    .dayuse-price-foot {
      margin-top: 16px;
      font-size: 1.0625rem;   /* 16→17: +1 */
      line-height: 1.7;
      color: #222;
      text-align: left;
    }

    /* ============================================
       F. Related Links  — 関連ページ誘導
       ============================================ */
    .related-section {
      padding: 60px 0 100px;
      background: #fff;
      border: 1px solid #ddd;
    }
    .related-section-head {
      max-width: var(--container-width);
      margin: 0 auto 48px;
      padding: var(--container-pad);
      text-align: center;
    }
    .related-section-head .vertical-label.is-horizontal {
      font-size: 16px;
      letter-spacing: 0.3em;
      color: var(--c-accent);
      margin-bottom: 12px;
    }
    .related-grid {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: var(--container-pad);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .related-section .related-grid { padding-left: 0; padding-right: 0; }   /* 関連カードを全幅(客室ページ基準)に統一 */
    .related-card {
      position: relative;
      display: block;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-radius: var(--radius-sm);
      background: var(--c-bg-gray);
    }
    .related-card-image {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 1s ease;
    }
    .related-card:hover .related-card-image { transform: scale(1.06); }
    .related-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
    }
    .related-card-label {
      position: absolute;
      left: 24px;
      bottom: 22px;
      z-index: 1;
      color: #fff;
    }
    .related-card-label .en {
      display: block;
      font-family: var(--ff-display);
      font-size: 0.875rem;   /* 14px */
      letter-spacing: 0.25em;
      color: var(--c-cream-text);
      margin-bottom: 4px;
    }
    .related-card-label .ja {
      font-family: var(--ff-serif);
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      letter-spacing: 0.08em;
    }

    /* ============================================
       Footer  (index.html と同一)
       ============================================ */
    .footer {
      padding: 50px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      max-width: 1400px;
      margin: 0 auto;
    }
    .footer-harmony {
      grid-column: 1 / -1;
      text-align: center;
      font-size: 14px;
      color: var(--c-text-light);
      padding-bottom: 30px;
      border-bottom: 1px solid var(--c-border);
      margin-bottom: 30px;
    }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-logo-icon {
      width: 72px; height: 48px;
      background-image: url('../assets/images/logo/olivean-logo.webp');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }
    .footer-logo-text {
      font-family: var(--ff-serif);
      font-size: 13px;
      letter-spacing: 0.15em;
      color: var(--c-accent);
    }
    .footer-logo-text small { font-size: 10px; display: block; color: var(--c-text-light); }
    .footer-name { font-size: 14px; margin-bottom: 12px; }
    .footer-address { font-size: 13px; color: var(--c-text-light); line-height: 1.8; }
    .footer-holdings {
      margin-top: 30px;
      padding: 16px 20px;
      border: 1px solid var(--c-border);
      display: inline-block;
      font-size: 13px;
    }
    .footer-holdings-name { font-size: 11px; color: var(--c-text-muted); margin-top: 4px; }
    .footer-sns { display: flex; gap: 16px; margin-bottom: 20px; }
    .footer-sns a { font-size: 24px; transition: color 0.3s; }
    .footer-sns a:hover { color: var(--c-accent); }
    .footer-links { font-size: 13px; color: var(--c-text-light); margin-bottom: 30px; }
    .footer-links a:hover { color: var(--c-accent); }
    .footer-booking-label { font-family: var(--ff-serif); font-size: 18px; margin-bottom: 16px; }
    .footer-booking-btns { display: flex; gap: 12px; margin-bottom: 20px; }
    .footer-booking-btns .btn-cta { font-size: 16px; padding: 12px 24px; }
    .footer-booking-btns .btn-outline { font-size: 16px; padding: 12px 24px; }
    .footer-sub-links {
      font-size: 13px;
      color: var(--c-text-light);
      margin-bottom: 20px;
      display: flex;
      gap: 20px;
    }
    .footer-sub-links a { text-decoration: underline; }
    .footer-sub-links a:hover { color: var(--c-accent); }
    .footer-bottom-btns { display: flex; gap: 12px; }
    .footer-bottom-btns .btn-outline { font-size: 16px; padding: 10px 20px; }

    .copyright {
      background: var(--c-cta-gradient);
      color: #fff;
      text-align: center;
      padding: 20px;
      font-family: var(--ff-display);
      font-size: 16px;
      letter-spacing: 0.05em;
    }

    /* ============================================
       Side Fix Buttons  (index.html と同一)
       ============================================ */
    .side-fix {
      position: fixed;
      right: 0;
      bottom: 100px;
      z-index: 90;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .side-fix-btn {
      position: relative;
      width: 80px;
      height: 80px;
      border-radius: 4px 0 0 4px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      color: #fff;
      font-family: 'Inter', var(--ff-sans);
      font-size: 13px;
      font-weight: 400;
      line-height: 15px;
      text-align: center;
      text-decoration: none;
      transition: transform .25s ease, filter .25s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }
    .side-fix-btn:hover { transform: translateX(-4px); filter: brightness(1.08); }
    .side-fix-btn.is-plan   { background: linear-gradient(135deg, #3B69AC 0%, #5486D1 100%); }
    .side-fix-btn.is-search { background: linear-gradient(135deg, #2A88B2 0%, #48A0C8 100%); }
    .side-fix-btn.is-faq    { background: linear-gradient(135deg, #40AB67 0%, #63C286 100%); }
    .side-fix-btn-icon {
      width: 28px; height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #fff;
    }
    .side-fix-btn-icon svg { width: 100%; height: 100%; display: block; stroke: #fff; }
    .side-fix-btn-text { white-space: nowrap; }

    /* ============================================
       Scroll Reveal Animations
       ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition:
        opacity 0.55s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 0.55s cubic-bezier(0.215, 0.61, 0.355, 1);
      will-change: opacity, transform;
    }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }
    .reveal-fade {
      opacity: 0;
      transition: opacity 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    .reveal-fade.is-visible { opacity: 1; }
    [data-reveal="stagger"] > .reveal-item {
      opacity: 0;
      transform: translateY(16px);
      transition:
        opacity 0.55s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 0.55s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    [data-reveal="stagger"].is-visible > .reveal-item { opacity: 1; transform: translateY(0); }
    [data-reveal="stagger"].is-visible > .reveal-item:nth-child(1) { transition-delay: 0ms; }
    [data-reveal="stagger"].is-visible > .reveal-item:nth-child(2) { transition-delay: 70ms; }
    [data-reveal="stagger"].is-visible > .reveal-item:nth-child(3) { transition-delay: 140ms; }
    [data-reveal="stagger"].is-visible > .reveal-item:nth-child(4) { transition-delay: 210ms; }
    @media (prefers-reduced-motion: reduce) {
      .reveal, .reveal-fade, [data-reveal="stagger"] > .reveal-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }

    /* ============================================
       Responsive (SP)
       ============================================ */
    @media (max-width: 1024px) {
      .feature-block-inner { grid-template-columns: minmax(0, 1fr); gap: 32px; }
      .feature-block.is-reversed .feature-block-image { order: 0; }
      .detail-grid { grid-template-columns: 1fr; gap: 32px; }
      .detail-grid.is-cols-3 { grid-template-columns: 1fr; gap: 32px; }
      .detail-grid.is-cols-4 { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
      .related-grid { grid-template-columns: 1fr; gap: 24px; }
    }
    @media (max-width: 767px) {
      .u-pcbr { display: none; }   /* PC専用改行: SPでは自然折返し */
      .header-inner { height: 72px; padding: 0 16px; gap: 12px; }
      .header-logo-icon { width: 220px; height: 56px; }
      .header-nav, .header-tel, .header-lang-wrap { display: none; }
      .page-body { padding-top: 72px; }
      .sub-hero { height: 320px; }
      .breadcrumb { padding: 16px 20px; }
      .page-intro { padding: 40px 0 30px; }
      /* SP: PC見た目(縦積み+下矢印+区切り線)を維持して横スクロール。safe center=少数項目は中央/溢れたら左詰めスクロール */
      .anchor-nav-inner { max-width: calc(100vw - 24px); padding: 6px 12px; flex-wrap: nowrap; overflow-x: auto; justify-content: safe center; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
      .anchor-nav a { padding: 4px 24px 8px; }
      .section-anchor { scroll-margin-top: 100px; }
      .feature-block { padding: 48px 0; }
      .feature-block-inner { padding: 0; }
      .detail-grid-section, .spec-section, .notice-section, .related-section, .dayuse-section { padding: 60px 0; }
      /* SP: standalone のクリーム箱(泉質効能特徴)が base width:calc(100vw-120px)=270px と細い→端24pxまで広げる。cream-block-wrap内は width:auto が高詳細度で勝つため不変 (hoshi 2026-06-20) */
      /* 横16px insetでクリーム余白を確保(rooms基準=section 16px + grid 0 → カード319px。grid側padは下で0化) */
      .detail-grid-section { width: calc(100vw - 24px); padding-left: 16px; padding-right: 16px; }
      .cream-block-wrap .feature-block { padding-top: 60px; padding-bottom: 24px; }
      .cream-block-wrap .detail-grid-section { padding-top: 24px; padding-bottom: 60px; }
      .detail-grid, .related-grid, .detail-grid-head { padding: 0 20px; }
      /* 泉質・効能・特徴のクリームボックス: section inset と grid pad の二重余白を解除しカード(is-text-only含む)を拡幅 (rooms/restaurants パリティ 2026-06-20) */
      .detail-grid-section .detail-grid,
      .detail-grid-section .detail-grid-head { padding-left: 0; padding-right: 0; }
      .detail-card-body { padding-left: 18px; padding-right: 18px; }
      .detail-grid.is-cols-4 { grid-template-columns: 1fr; gap: 32px; }
      .dayuse-inner { padding: 0 20px; }
      .dayuse-panel { padding: 28px 20px; }
      .dayuse-price-grid { grid-template-columns: 1fr; gap: 16px; }
      .dayuse-hours { gap: 8px 24px; }
      .spec-section-inner { padding: 0 20px; }
      .spec-table th, .spec-table td { display: block; width: auto; padding: 14px 18px; }
      .spec-table th { border-bottom: 1px solid var(--c-border); }
      .spec-table .spec-time { margin-right: 12px; }
      .notice-grid { padding: 0 20px; gap: 12px; }
      .notice-card { padding: 20px 22px; gap: 16px; }
      .notice-card-mark { width: 32px; height: 32px; }
      .photo-slider-controls { right: 12px; bottom: 12px; padding: 4px 8px; gap: 6px; }
      .photo-slider-controls .slider-btn { width: 28px; height: 28px; }
      .photo-slider-controls .slider-counter { min-width: 36px; }
      .onsen-section-heading { padding: 50px 0 0; }
      /* SP: 日帰り温泉/ご利用案内 の大見出し上余白を 60px だけに (section側のpadding-topを殺し、見出し自身を60px) */
      .dayuse-section, .spec-section { padding-top: 0; }
      .dayuse-section .onsen-section-heading,
      .spec-section .onsen-section-heading { padding-top: 60px; }
      .spec-section .onsen-section-heading { margin-bottom: 30px; }
      .onsen-section-heading-en { letter-spacing: 0.25em; margin-bottom: 8px; }
      .onsen-section-heading-line { margin: 0 auto 6px; }
      .onsen-section-heading-ja { letter-spacing: 0.06em; }
      .onsen-feature-vertical { padding: 28px 0 60px; }
      .onsen-feature-vertical-text { padding: 0 20px; }
      .onsen-feature-emotion { margin-bottom: 20px; }
      .peek-slider { margin-top: 36px; padding: 12px 0; }
      .peek-slider-track { gap: 16px; }
      .peek-slider-slide { width: 82vw; }
      .peek-slider-controls { gap: 12px; margin-top: 18px; }
      .peek-slider-controls .slider-btn { width: 38px; height: 38px; }
      .peek-slider-controls .slider-counter { min-width: 42px; }
      .footer { grid-template-columns: 1fr; padding: 40px 20px; gap: 32px; }
      .footer-booking-btns, .footer-bottom-btns { flex-wrap: wrap; }
      .side-fix { bottom: 80px; gap: 6px; }
      .side-fix-btn { width: 64px; height: 64px; font-size: 11px; line-height: 13px; }
      .side-fix-btn-icon { width: 22px; height: 22px; }
      /* SP 本文15px底上げ + 見出し折返し最適化 (rooms/restaurants パリティ 2026-06-20) */
      .page-intro-text, .feature-block-body, .detail-card-desc, .onsen-feature-body,
      .notice-card-desc, .notice-section-lead, .dayuse-lead,
      .spec-table th, .spec-table td, .spec-note { font-size: 0.9375rem; }
      .sub-hero-title, .heading-lg, .onsen-section-heading-ja, .feature-block-title { text-wrap: balance; }
    }

/* ============================================
   SP: Scroll Reveal 高速化(フリックでも待たせない)
   ============================================ */
@media (max-width: 767px) {
  .reveal {
    transform: translateY(20px);
    transition-duration: 0.55s, 0.55s;
  }
  .reveal-fade { transition-duration: 0.6s; }
  [data-reveal="stagger"] > .reveal-item {
    transform: translateY(16px);
    transition-duration: 0.5s, 0.5s;
  }
  [data-reveal="stagger"].is-visible > .reveal-item:nth-child(2) { transition-delay: 70ms; }
  [data-reveal="stagger"].is-visible > .reveal-item:nth-child(3) { transition-delay: 140ms; }
  [data-reveal="stagger"].is-visible > .reveal-item:nth-child(4) { transition-delay: 210ms; }
}
