    /* ============================================
       Design Tokens  — index.html と同期 (2026-04-23)
       ============================================ */
    :root {
      --c-accent: #EC7D5F;
      --c-accent-light: #F29A7D;
      --c-accent-text: #EC7D5F;
      --c-cta-gradient: linear-gradient(135deg, #F29A7D 0%, #EC7D5F 100%);
      --c-sunset-red: #EC7D5F;
      --c-sunset-yellow: #E8A832;
      --c-ocean-blue: #4A90B8;
      --c-ocean-light: #81CDDC;
      --c-ocean-dark: #339DC1;
      --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;
      --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;
      --section-pad: 100px 0;
      --container-width: min(1680px, 87.5vw);   /* 基準書§7-A 流体コンテナ(左右ガター6.25vw)。旧1340px固定から統一 */
      --container-pad: 0;                          /* 87.5vw に左右ガターを内包するため内側paddingは0 */
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 16px;
      --radius-round: 50%;
      --content-scale: 1;
    }

    *, *::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); }
    .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
       ============================================ */
    .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;
      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; }
    .btn-outline .arrow { font-size: 12px; transition: transform 0.3s; }
    .btn-outline:hover .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; }
    /* === 統一ボタン右矢印 (arrow_right.webp 10×10) === */
    .btn-arrow {
      width: 10px;
      height: 10px;
      flex-shrink: 0;
      object-fit: contain;
      display: inline-block;
      vertical-align: middle;
      transition: transform 0.2s 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); }

    /* ============================================
       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);
    }

    /* ============================================
       NEW (v62): Anchor Nav — ページ内アンカー横スクロールメニュー
       ・restaurants / onsen / about と共通の sticky 横スクロールナビ
       ・fixed header の下に sticky 配置 (top: 80px)
       ============================================ */
    /* 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;            /* v49.1: 溢れたら2段(taikanso準拠) */
      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)+余白に縮小 */

    /* ============================================
       Section Heading (v49 由来 onsen-section-heading)
       ============================================ */
    .onsen-section-heading {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 100px 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);
    }

    /* ============================================
       Vertical Feature (v49 由来 onsen-feature-vertical)
       ・取り組み・各種ご案内 のセクション導入文として使用
       ============================================ */
    .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);
    }

    /* ============================================
       C. Feature Block — 画像 + テキスト (取り組み 2件)
       ============================================ */
    .feature-block {
      padding: 60px 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-text .vertical-label.is-horizontal {
      font-size: 14px;
      letter-spacing: 0.3em;
      color: var(--c-accent);
      text-align: left;
      margin-bottom: 12px;
    }
    .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; }

    /* ============================================
       Photo Slider (onsen v48 由来) — フェード式・自動再生付き
       ・feature-block-image の差し替え版として feature-block-inner 内に配置
       ・onsen クリマサウナと同じ仕様
       ============================================ */
    .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: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      font-weight: 500;
      color: var(--c-text);
      letter-spacing: 0.05em;
      min-width: 40px;
      text-align: center;
    }
    .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;
    }

    /* ============================================
       NEW: Full Bleed Image (v54 facilities/english-garden 由来を再利用)
       ・ホテルコンセプトの全幅情緒写真
       ============================================ */
    .full-bleed-image {
      position: relative;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      height: 520px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      margin-top: 60px;
    }
    .full-bleed-image::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.18) 100%);
      pointer-events: none;
    }

    /* ============================================
       NEW: Concept Block — "Green Harmony" 中央寄せポエム
       ・余白を広く取り、詩のように改行多めの読ませる構成
       ・display 系のタイトル + 小さなサブタイトル + 装飾線 + 連続ポエム + 補足テキスト
       ============================================ */
    .concept-block {
      padding: 80px 20px 100px;
      text-align: center;
      background: #fff;
    }
    .concept-block-inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .concept-block-en {
      font-family: var(--ff-display);
      font-size: clamp(2.75rem, 2.56rem + 0.78vw, 3.5rem);   /* 56/44 装飾ディスプレイ見出し */
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--c-accent);
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .concept-block-sub {
      font-family: var(--ff-serif);
      font-size: clamp(1.125rem, 1.09rem + 0.13vw, 1.25rem);   /* 20/18 */
      font-weight: 500;
      letter-spacing: 0.15em;
      color: var(--c-text);
      margin-bottom: 36px;
    }
    .concept-block-divider {
      width: 40px;
      height: 1px;
      background: var(--c-accent);
      margin: 0 auto 48px;
    }
    .concept-block-poem {
      font-family: var(--ff-serif);
      font-size: clamp(1.125rem, 1.09rem + 0.13vw, 1.25rem);   /* 20/18 */
      font-weight: 400;
      line-height: 2.2;
      letter-spacing: 0.1em;
      color: var(--c-text);
      margin-bottom: 32px;
    }
    .concept-block-poem:last-of-type { margin-bottom: 56px; }
    .concept-block-supp {
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      line-height: 2.1;
      color: var(--c-text-light);
      padding-top: 40px;
      border-top: 1px solid var(--c-border);
      max-width: 640px;
      margin: 0 auto;
    }

    /* ============================================
       Cream Block Wrap (v47 由来) — 各種ご案内セクション背景
       ============================================ */
    .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, .concept-block-sub, .concept-block-poem,
    .concept-block-supp, .onsen-feature-emotion, .onsen-feature-body,
    .feature-block-body, .info-card-desc {
      word-break: auto-phrase;
    }
    .cream-block-wrap { background: var(--c-bg-cream); }
    .cream-block-wrap .onsen-feature-vertical { padding: 60px 0 24px; }
    /* 各種ご案内: 泉質効能と同じインセットcreamボックス(左右上下に余白・白カードが浮く) */
    .info-cream-box {
      width: calc(100vw - 120px);
      max-width: 1680px;
      margin: 80px auto 100px;
      padding: 56px clamp(20px, 3.125vw, 60px) 64px;
      background: var(--c-bg-cream);
      border-radius: 6px;
    }
    .info-cream-box .onsen-section-heading { padding: 0; max-width: 100%; }
    .info-cream-box .cream-block-wrap { background: transparent; }
    .info-cream-box .cream-block-wrap .onsen-feature-vertical { padding: 8px 0 28px; }

    /* ============================================
       NEW: Info Card Grid — 各種ご案内 3列 (パンフレット / 採用 / お問い合わせ)
       ・"大きめのボタンカードUI" 指定に応える
       ・アイコン円 + タイトル + 説明 + アクションリンク
       ・カード全体が <a> でクリッカブル
       ・SP では縦1列
       ============================================ */
    .info-card-grid-section {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 20px 50px 100px;
    }
    .info-card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .info-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 48px 36px 40px;
      background: #fff;
      border-radius: var(--radius-md);
      box-shadow: 0 3px 24px 0 rgba(0, 0, 0, 0.08);
      transition: transform .4s ease, box-shadow .4s ease;
      text-align: center;
      min-height: 380px;
    }
    .info-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    }
    .info-card-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--c-bg-cream);
      color: var(--c-accent);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      transition: background .3s ease, color .3s ease;
    }
    .info-card-icon svg { width: 36px; height: 36px; display: block; }
    .info-card:hover .info-card-icon { background: var(--c-accent); color: #fff; }
    .info-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.6;
      margin-bottom: 16px;
      color: var(--c-text);
    }
    .info-card-desc {
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      line-height: 1.9;
      color: var(--c-text-light);
      margin-bottom: 28px;
      flex: 1;
    }
    .info-card-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: var(--ff-serif);
      font-size: clamp(0.875rem, 0.45rem + 0.88vw, 1rem);   /* 16/14 */
      letter-spacing: 0.06em;
      color: var(--c-accent);
      padding-top: 18px;
      border-top: 1px solid var(--c-border);
      width: 100%;
      margin-top: auto;
    }
    .info-card-action .arrow {
      font-size: 0.875rem;   /* 12→14: 基準書§4 小ラベル */
      transition: transform .3s ease;
    }
    .info-card:hover .info-card-action .arrow { transform: translate(3px, -3px); }

    /* ============================================
       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-inner { grid-template-columns: minmax(0, 1fr); }
      .info-card-grid { grid-template-columns: 1fr; gap: 16px; }
    }
    @media (max-width: 767px) {
      .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: 40px 0; }
      .feature-block-inner { padding: 0; }
      .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; }
      .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; }
      .full-bleed-image { height: 320px; margin-top: 40px; }
      .concept-block { padding: 60px 20px 80px; }
      .concept-block-sub { margin-bottom: 28px; }
      .concept-block-divider { margin: 0 auto 32px; }
      .concept-block-poem { line-height: 2.0; margin-bottom: 28px; }
      .concept-block-poem:last-of-type { margin-bottom: 40px; }
      .concept-block-supp { padding-top: 32px; line-height: 2.0; }
      .cream-block-wrap .onsen-feature-vertical { padding: 40px 0 16px; }
      /* SP: cream ボックスの左右余白を 60px → 16px に詰める（中央への凝縮を解消・縦積みは維持） */
      .info-cream-box { width: auto; margin-left: 16px; margin-right: 16px; padding-left: 16px; padding-right: 16px; padding-bottom: 0; }
      .info-card-grid-section { padding: 20px 0 60px; }
      .info-card { min-height: 0; padding: 36px 24px 32px; }
      .info-card-icon { width: 64px; height: 64px; margin-bottom: 20px; }
      .info-card-icon svg { width: 32px; height: 32px; }
      .info-card-title { margin-bottom: 14px; }
      .info-card-desc { margin-bottom: 24px; }
      .related-section { padding: 60px 0; }
      .related-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
      /* rooms基準: 本文15px底上げ(情緒コピー emotion/poem/sub は大きいので対象外) */
      .page-intro-text, .onsen-feature-body, .feature-block-body,
      .concept-block-supp, .info-card-desc { font-size: 0.9375rem; }
      .sub-hero-title, .heading-lg, .onsen-section-heading-ja, .feature-block-title { text-wrap: balance; }
      .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: 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; }
}
