    /* ===================================================================
       01. グローバル変数・リセット
       =================================================================== */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* グレインテクスチャ：装飾目的の背景パターン。z-indexを下げてコンテンツを覆わない */
    body::after {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' seed='2' /%3E%3C/filter%3E%3Crect width='1024' height='1024' filter='url(%23noise)' opacity='0.03' /%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1;
    }

    main {
      position: relative;
      z-index: 2;
    }

    /* ===================================================================
       02. タイポグラフィ・ボタン基底
       =================================================================== */

    h1 {
      font-family: var(--ff-display);
      font-size: clamp(2.5rem, 8vw, 4.5rem);
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      letter-spacing: 2px;
    }

    h1 em {
      color: var(--turquoise);
      font-style: normal;
      font-weight: 400;
    }

    h2 {
      font-family: var(--ff-display);
      font-size: 3rem;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 1rem;
      color: var(--ink);
    }

    h2.light {
      color: #fff;
    }

    h3 {
      font-family: var(--ff-display);
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
    }

    .btn {
      padding: 1rem 2.5rem;
      border-radius: 2px;
      font-family: var(--ff-label);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-primary {
      background: var(--amber);
      color: var(--midnight);
    }

    .btn-primary:hover {
      background: var(--coral-light);
    }
    .btn-white {
      background: #fff;
      color: var(--midnight);
      border: 2px solid #fff;
    }

    .btn-white:hover {
      background: transparent;
      color: #fff;
    }

    /* ===================================================================
       03. ヘッダー・ナビゲーション
       =================================================================== */

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(9, 23, 38, 0.92);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 1.5rem 2rem;
      transition: all 0.3s ease;
    }

    /* スクロール時にヘッダーの背景を濃くしてコンテンツとの区別を明確にする */
    .site-header.is-scrolled {
      background: rgba(9, 23, 38, 0.88);
      backdrop-filter: blur(8px);
      padding: 1rem 2rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .site-header > div {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .site-header-logo {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      text-decoration: none;
    }

    .site-header-logo-main {
      font-family: var(--ff-display);
      font-size: 28px;
      font-weight: 300;
      letter-spacing: 8px;
      color: #fff;
      line-height: 1;
    }

    .site-header-logo-sub {
      font-family: var(--ff-label);
      font-size: 10px;
      color: #fff;
      letter-spacing: 1px;
    }

    .site-header-nav {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }

    .site-header-nav-list {
      display: flex;
      gap: 2.5rem;
      align-items: center;
      list-style: none;
    }

    .site-header-nav-list a {
      font-family: var(--ff-label);
      font-size: 13px;
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease;
      letter-spacing: 1px;
    }

    .site-header-nav-list a:hover {
      color: var(--amber);
    }

    .site-header-cta {
      background: var(--amber);
      color: var(--midnight);
      padding: 0.7rem 1.2rem;
      border-radius: 2px;
      font-weight: 400;
      font-size: 13px;
      letter-spacing: 2px;
      transition: background 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .site-header-cta:hover {
      background: var(--coral-light);
    }

    .site-header-hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      background: none;
      border: none;
      padding: 0;
    }

    .site-header-hamburger span {
      width: 24px;
      height: 2px;
      background: #fff;
      transition: all 0.3s ease;
    }

    .site-header-hamburger[aria-expanded="true"] span:nth-child(1) {
      transform: rotate(45deg) translate(7px, 7px);
    }

    .site-header-hamburger[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .site-header-hamburger[aria-expanded="true"] span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    .site-nav-drawer {
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      flex-direction: column;
      gap: 0;
      background: rgba(9, 23, 38, 0.98);
      padding: 2rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      z-index: 99;
    }

    .site-nav-drawer.is-open {
      max-height: 500px;
    }

    .site-nav-drawer a {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      font-family: var(--ff-label);
      font-size: 13px;
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease;
      letter-spacing: 1px;
    }

    .site-nav-drawer a:hover {
      color: var(--amber);
    }

    .site-nav-drawer .site-header-cta {
      margin-top: 1rem;
      width: 100%;
      text-align: center;
    }

    @media (max-width: 768px) {
      .site-header-hamburger {
        display: flex;
      }

      .site-header-nav {
        display: none;
      }
    }

    /* ===================================================================
       04. ヒーローセクション
       =================================================================== */

    /* 2026-04-23 刷新：単色グラデーションから大判の実写写真ビジュアルへ。
       代理店様向けのため、格調高い海のパノラマ写真を背景に配置。
       ダークオーバーレイで白文字の視認性を確保する。 */
    .hero {
      /* 背景：海・テラス席の広角写真。代理店向けのブランド感を強化 */
      background-image: url("../../images/scene-beach-bbq.jpg");
      background-size: cover;
      background-position: center 55%;
      color: #fff;
      padding: 100px 2rem 140px;
      text-align: center;
      position: relative;
      overflow: hidden;
      min-height: 560px;
    }

    /* ::before：2層オーバーレイで本文の視認性を強化
       ① ラジアル：画面中央のテキスト領域を集中的に暗くする
       ② リニア ：上下を全体的に暗くし、背景の明るさを抑える */
    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(ellipse 80% 65% at 50% 55%, rgba(9, 23, 38, .55) 0%, transparent 72%),
        linear-gradient(180deg,
          rgba(9, 23, 38, .65) 0%,
          rgba(9, 23, 38, .45) 50%,
          rgba(9, 23, 38, .85) 100%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      margin: 0 auto;
    }

    .hero-logo {
      display: block;
      width: clamp(240px, 34vw, 380px);
      height: auto;
      margin: 0 auto 28px;
      filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.45));
    }

    /* ヒーロー内テキストには軽めの drop shadow を掛けて、
       背景写真の明暗ムラがあっても文字の輪郭が潰れないようにする */
    .hero h1 {
      text-shadow: 0 2px 20px rgba(0, 0, 0, .55);
    }
    .hero p {
      font-size: clamp(1rem, 2vw, 1.3rem);
      font-weight: 300;
      line-height: 1.8;
      margin-bottom: 2.5rem;
      text-shadow: 0 1px 12px rgba(0, 0, 0, .6);
    }

    .hero-badge {
      display: inline-block;
      font-family: var(--ff-label);
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1.5rem;
      /* 背景写真に埋もれないよう、バッジの背景色も濃くする */
      background: rgba(240, 184, 96, 0.18);
      border: 1px solid rgba(240, 184, 96, 0.5);
      padding: 0.5rem 1rem;
      border-radius: 20px;
    }

    /* ===================================================================
       05. 各セクション（旅行代理店向け固有セクション）
       =================================================================== */

    .spec-ribbon {
      background: var(--sand-light);
      padding: 3rem 2rem;
      border-top: 1px solid var(--stone-light);
      border-bottom: 1px solid var(--stone-light);
    }

    .spec-ribbon-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
    }

    .spec-item {
      text-align: center;
    }

    .spec-item-number {
      font-family: var(--ff-number);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--coral);
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .spec-item-label {
      font-family: var(--ff-label);
      font-size: 13px;
      color: var(--ink);
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
    }

    .spec-item-sub {
      font-size: 12px;
      color: var(--ink-light);
    }

    section {
      padding: 4rem 2rem;
    }

    section.cream {
      background: var(--cream);
    }

    section.sand-light {
      background: var(--sand-light);
    }

    section.dark {
      background: var(--midnight);
      color: #fff;
    }

    /* ダークセクションでの見出し色上書き（見えないバグ対策） */
    section.dark h1,
    section.dark h2,
    section.dark h3 {
      color: #fff;
    }
    section.dark p {
      color: rgba(255, 255, 255, 0.85);
    }

    .section-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-eyebrow {
      font-family: var(--ff-label);
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1rem;
      display: block;
    }

    .section-lead {
      font-size: 1.1rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--ink-light);
      max-width: 800px;
    }

    .section-lead.light {
      color: rgba(255, 255, 255, 0.8);
    }

    /* ===== FEATURES ===== */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .feature-card {
      background: #fff;
      border-radius: 2px;
      overflow: hidden;
      height: 280px;
      position: relative;
      transition: all 0.3s ease;
    }

    .feature-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .feature-card:hover img {
      transform: scale(1.05);
    }

    .feature-card-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      /* 写真の下半分に読み取りやすい暗グラデーションを重ねる */
      background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,.78) 100%);
      padding: 2rem 1.5rem 1.4rem;
      color: #fff;
      text-align: center;
    }

    /* カテゴリラベル（MARINE SPORTS / RENTAL CAR 等） */
    .feature-card-label {
      font-family: var(--ff-label);
      font-size: 13px;
      letter-spacing: 2px;
      color: var(--amber);
      margin-bottom: .4rem;
    }
    /* 本文（説明テキスト） */
    .feature-card-text {
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255,255,255,.94);
    }
    /* 10% Commissionカードは画像を持たずグラデーション背景のままにする専用バリアント */
    .feature-card--commission {
      background: linear-gradient(135deg, var(--coral), var(--coral-light));
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .feature-card--commission .feature-card-caption {
      position: relative;
      bottom: auto;
      background: none;
      padding: 1.5rem;
    }
    .feature-card--commission .feature-card-label {
      color: #fff;
    }
    .feature-card--commission .feature-card-percent {
      font-family: var(--ff-number);
      font-size: 36px;
      font-weight: 500;
      margin-bottom: .3rem;
      color: #fff;
    }

    /* カード群下部の注釈（※で始まる備考） */
    .features-note {
      max-width: 1100px;
      margin: 2.5rem auto 0;
      padding: 1.25rem 1.5rem;
      background: #fff;
      border-left: 3px solid var(--coral);
      font-size: 14px;
      line-height: 1.9;
      color: var(--ink-light);
    }
    .features-note strong {
      color: var(--ink);
      font-weight: 500;
    }

    .feature-card-caption h3 {
      font-family: var(--ff-display);
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
    }

    /* ===== LUNCH SECTION ===== */
    .lunch-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-top: 2rem;
      align-items: center;
    }

    .lunch-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .lunch-card {
      background: #fff;
      padding: 1.5rem;
      border-left: 3px solid var(--coral);
      border-radius: 2px;
    }

    .lunch-card-name {
      font-family: var(--ff-display);
      font-size: 1.3rem;
      color: var(--ink);
      margin-bottom: 0.5rem;
    }

    .lunch-card-price {
      font-family: var(--ff-number);
      font-size: 1.8rem;
      color: var(--coral);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .lunch-image {
      margin: 1rem 0;
      border-radius: 2px;
      overflow: hidden;
    }

    .lunch-image img {
      width: 100%;
      height: 150px;
      object-fit: cover;
    }

    .lunch-notes {
      font-size: 0.9rem;
      color: var(--ink-light);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .lunch-content {
        grid-template-columns: 1fr;
      }

      .lunch-cards {
        grid-template-columns: 1fr;
      }
    }

    /* ===== BBQ PLANS ===== */
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .plan-card {
      background: #fff;
      border: 1px solid var(--stone-light);
      padding: 0;
      border-radius: 2px;
      position: relative;
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .plan-card-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .plan-card > *:not(.plan-card-img):not(.plan-recommend) {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    .plan-card .plan-name {
      padding-top: 1.5rem;
    }

    .plan-card:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      transform: translateY(-4px);
    }

    .plan-recommend {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--coral);
      color: #fff;
      padding: 0.4rem 1rem;
      font-size: 12px;
      border-radius: 2px;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .plan-name {
      font-family: var(--ff-display);
      font-size: 28px;
      color: var(--ink);
      margin-bottom: 0.5rem;
    }

    .plan-price {
      font-family: var(--ff-number);
      font-size: 40px;
      color: var(--coral);
      font-weight: 600;
      margin-bottom: 1.5rem;
      line-height: 1;
    }

    .plan-price span {
      font-size: 18px;
      color: var(--ink-light);
      font-weight: 400;
      margin-left: 0.5rem;
    }

    @media (max-width: 768px) {
      .plan-price {
        font-size: 32px;
      }
    }

    /* ===== PLAN LEAD（プラン下のキャッチ文） ===== */
    /* 食材内訳は運用負荷を考慮して非掲載。代わりにキャッチ文のみ表示 */
    .plan-lead {
      font-size: 0.92rem;
      color: var(--ink-light);
      line-height: 1.8;
      padding-bottom: 1.5rem;
      margin: 0;
    }

    /* ===== BBQ OPTIONS（シンプル化：画像なしミニマルカード） ===== */
    .bbq-options {
      background: var(--cream);
      border: 1px solid var(--stone-light);
      padding: 2rem;
      border-radius: 2px;
      margin-top: 2rem;
    }

    .bbq-options-title {
      font-family: var(--ff-display);
      font-size: 22px;
      color: var(--coral);
      margin-bottom: 1.5rem;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid var(--coral);
      letter-spacing: 0.04em;
    }

    .options-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0.75rem;
    }

    .option-item {
      padding: 0.9rem 1rem;
      background: #fff;
      border-radius: 2px;
      border-left: 2px solid var(--teal);
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .option-name {
      font-family: var(--ff-body);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--ink);
    }

    .option-details {
      font-size: 0.85rem;
      color: var(--ink-light);
      line-height: 1.5;
    }

    .option-note {
      font-size: 0.8rem;
      color: var(--stone);
      margin-top: 1.25rem;
      padding-top: 1rem;
      border-top: 1px solid var(--sand-light);
      line-height: 1.7;
    }

    /* ===== LUNCH SUB-BLOCK（シンプルな名前＋価格リスト） ===== */
    .lunch-sub {
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(160, 152, 136, .2);
    }
    .lunch-sub-title {
      font-family: var(--ff-display);
      font-size: 1.5rem;
      color: var(--ink);
      letter-spacing: .04em;
      margin-bottom: .35rem;
    }
    .lunch-sub-lead {
      font-size: .9rem;
      color: var(--ink-light);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    .lunch-sub-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0 2rem;
    }
    .lunch-sub-list li {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 0.85rem 0;
      border-bottom: 1px solid var(--sand-light);
      gap: 1rem;
    }
    .lunch-sub-list-name {
      font-family: var(--ff-body);
      font-size: 1rem;
      color: var(--ink);
    }
    .lunch-sub-list-price {
      font-family: var(--ff-number);
      font-size: 1.15rem;
      color: var(--coral);
      font-weight: 600;
      flex-shrink: 0;
    }
    @media (max-width: 768px) {
      .lunch-sub-list { grid-template-columns: 1fr; }
    }

    /* ===== MENU/SHOP ===== */
    .menu-tabs {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .menu-category {
      background: #fff;
      border: 1px solid var(--stone-light);
      border-radius: 2px;
      overflow: hidden;
    }

    .menu-category-title {
      font-family: var(--ff-display);
      font-size: 22px;
      color: var(--coral);
      padding: 1.5rem;
      border-bottom: 3px solid var(--coral);
      background: var(--sand-light);
    }

    .menu-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid var(--sand-light);
    }

    .menu-item:last-child {
      border-bottom: none;
    }

    .menu-item-name {
      flex: 1;
      font-size: 0.95rem;
      color: var(--ink);
    }

    .menu-item-price {
      font-family: var(--ff-number);
      font-size: 1rem;
      color: var(--coral);
      font-weight: 600;
      margin-left: 1rem;
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .menu-tabs {
        grid-template-columns: 1fr;
      }
    }

    /* ===== SCHEDULE ===== */
    .schedule-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .timeline {
      background: #fff;
      border: 1px solid var(--stone-light);
      border-left: 4px solid var(--coral);
      padding: 2rem;
      border-radius: 2px;
    }

    .timeline-title {
      font-family: var(--ff-display);
      font-size: 18px;
      color: var(--ink);
      margin-bottom: 1rem;
    }

    .timeline-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .timeline-item::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--coral);
      border-radius: 50%;
      margin-top: 0.7rem;
      flex-shrink: 0;
    }

    .timeline-item time {
      font-family: var(--ff-label);
      font-size: 28px;
      color: var(--coral);
      font-weight: 600;
      line-height: 1;
    }

    .timeline-item p {
      font-size: 0.95rem;
      color: var(--ink-light);
    }

    @media (max-width: 768px) {
      .schedule-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ===================================================================
       MODEL ITINERARIES セクション
       代理店が商品化しやすい具体シナリオ（修学旅行・社員旅行・インバウンド）を
       パッケージ例として提示。営業資料への転用を想定したカードレイアウト。
       =================================================================== */
    .itinerary-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.75rem;
      margin-top: 3rem;
    }
    .itinerary-card {
      background: #fff;
      border: 1px solid rgba(160, 152, 136, .15);
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform .3s, box-shadow .3s;
    }
    .itinerary-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(44, 36, 24, .1);
    }
    .itinerary-card-image {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: rgba(160, 152, 136, .08);
    }
    /* Chrome iOS 対策：picture をブロック化して親サイズに追従 */
    .itinerary-card-image picture {
      display: block;
      width: 100%;
      height: 100%;
    }
    .itinerary-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s cubic-bezier(.2,.9,.3,1);
    }
    .itinerary-card:hover .itinerary-card-image img {
      transform: scale(1.06);
    }
    .itinerary-card-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: var(--coral);
      color: #fff;
      font-family: var(--ff-label);
      font-size: 11px;
      letter-spacing: .15em;
      padding: .4rem .75rem;
      border-radius: 2px;
      font-weight: 600;
    }
    .itinerary-card-body {
      padding: 1.5rem 1.5rem 1.75rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .itinerary-card-title {
      font-family: var(--ff-display);
      font-size: 1.25rem;
      color: var(--ink);
      letter-spacing: .02em;
      margin-bottom: .5rem;
    }
    .itinerary-card-sub {
      font-family: var(--ff-label);
      font-size: 11px;
      color: var(--stone);
      letter-spacing: .15em;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .itinerary-card-schedule {
      list-style: none;
      margin: 0 0 1.25rem;
      padding: 0;
      border-left: 2px solid rgba(224, 120, 80, .25);
      padding-left: 1rem;
      display: grid;
      gap: .45rem;
    }
    .itinerary-card-schedule li {
      font-size: .82rem;
      color: var(--ink-light);
      line-height: 1.6;
    }
    .itinerary-card-schedule li time {
      font-family: var(--ff-number);
      font-weight: 600;
      color: var(--coral);
      margin-right: .6rem;
      display: inline-block;
      min-width: 3em;
    }
    .itinerary-card-foot {
      margin-top: auto;
      padding-top: 1rem;
      border-top: 1px dashed rgba(160, 152, 136, .25);
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: .5rem;
    }
    .itinerary-card-price-label {
      font-family: var(--ff-label);
      font-size: 10px;
      color: var(--stone);
      letter-spacing: .15em;
      font-weight: 600;
    }
    .itinerary-card-price {
      font-family: var(--ff-number);
      font-size: 1.15rem;
      color: var(--ink);
      font-weight: 600;
    }
    .itinerary-card-price small {
      font-size: .7rem;
      color: var(--stone);
      font-weight: 400;
      margin-left: .2rem;
    }
    .itinerary-note {
      max-width: 1100px;
      margin: 2.5rem auto 0;
      padding: 1.25rem 1.5rem;
      background: var(--cream);
      border-left: 3px solid var(--coral);
      border-radius: 2px;
      font-size: .88rem;
      color: var(--ink-light);
      line-height: 1.75;
    }
    @media (max-width: 900px) {
      .itinerary-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
    }

    /* ===================================================================
       COMMISSION & BOOKING FLOW セクション
       紹介料10%・予約の流れ・下見対応・支払条件を一元化して表示する。
       旧 Schedule セクションを置換。
       =================================================================== */

    /* --- 紹介料ハイライト ---------------------------------------------- */
    .commission-hero {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 2.5rem;
      align-items: center;
      background: linear-gradient(135deg, var(--coral), var(--coral-light));
      color: #fff;
      padding: 2.5rem 3rem;
      border-radius: 4px;
      margin-top: 3rem;
      box-shadow: 0 10px 30px rgba(224, 120, 80, .25);
    }
    .commission-hero-percent {
      font-family: var(--ff-number);
      font-size: clamp(4rem, 10vw, 6rem);
      font-weight: 600;
      line-height: 1;
      letter-spacing: -.02em;
    }
    .commission-hero-body h3 {
      font-family: var(--ff-display);
      font-size: 1.8rem;
      letter-spacing: .03em;
      margin-bottom: .5rem;
    }
    .commission-hero-body p {
      font-size: .95rem;
      line-height: 1.8;
      opacity: .95;
    }

    /* --- 予約フロー（5ステップ） --------------------------------------- */
    .booking-flow {
      margin-top: 3.5rem;
    }
    .booking-flow-title {
      font-family: var(--ff-display);
      font-size: 1.5rem;
      color: var(--ink);
      text-align: center;
      margin-bottom: 2rem;
      letter-spacing: .04em;
    }
    .booking-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
      position: relative;
    }
    .booking-step {
      background: #fff;
      border: 1px solid rgba(160, 152, 136, .18);
      border-top: 3px solid var(--coral);
      padding: 1.5rem 1.25rem;
      border-radius: 2px;
      position: relative;
    }
    .booking-step-num {
      font-family: var(--ff-number);
      font-size: .75rem;
      color: var(--coral);
      letter-spacing: .2em;
      font-weight: 600;
      margin-bottom: .5rem;
    }
    .booking-step-title {
      font-family: var(--ff-display);
      font-size: 1.15rem;
      color: var(--ink);
      margin-bottom: .5rem;
      letter-spacing: .02em;
    }
    .booking-step-desc {
      font-size: .82rem;
      color: var(--ink-light);
      line-height: 1.7;
    }

    /* --- 取引条件リスト ------------------------------------------------ */
    .commission-terms {
      margin-top: 3rem;
      padding: 2rem 2.5rem;
      background: var(--cream);
      border: 1px solid rgba(160, 152, 136, .15);
      border-left: 3px solid var(--coral);
      border-radius: 2px;
    }
    .commission-terms-title {
      font-family: var(--ff-label);
      font-size: 12px;
      color: var(--coral);
      letter-spacing: .2em;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .commission-terms-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: .9rem 2rem;
    }
    .commission-terms-list li {
      font-size: .88rem;
      color: var(--ink-light);
      line-height: 1.7;
      padding-left: 1rem;
      position: relative;
    }
    .commission-terms-list li::before {
      content: '—';
      color: var(--coral);
      position: absolute;
      left: 0;
      top: 0;
    }
    .commission-terms-list li strong {
      color: var(--ink);
      font-weight: 600;
      display: block;
      font-size: .82rem;
      letter-spacing: .04em;
      margin-bottom: .15rem;
    }

    @media (max-width: 900px) {
      .booking-steps { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .commission-hero { grid-template-columns: 1fr; gap: 1rem; padding: 2rem; text-align: center; }
      .commission-terms-list { grid-template-columns: 1fr; }
      /* SPではヒーロー高さを抑え、余白も減らして縦幅を短く */
      .hero { min-height: 0; padding: 80px 1.5rem 60px; background-position: center; }
      .hero-logo { width: clamp(180px, 55vw, 240px); margin: 0 auto 18px; }
      .hero h1 { font-size: clamp(28px, 7vw, 40px); }
      .hero p { font-size: 14px; margin-bottom: 1.5rem; }

      /* SP：FAQのpadding/font縮小＋日本語の改行最適化 */
      .faq-question {
        padding: 16px 18px;
        font-size: 15px;
        gap: 12px;
        line-height: 1.5;
        word-break: auto-phrase;
        line-break: strict;
      }
      .faq-icon { font-size: 14px; flex-shrink: 0; }
      .faq-answer p { font-size: 14px; padding: 0 18px 16px; }
    }
    @media (max-width: 480px) {
      .booking-steps { grid-template-columns: 1fr; }
    }

    /* 320〜380px 極狭幅 */
    @media (max-width: 380px) {
      .hero { padding: 64px 1rem 48px; }
      .hero-logo { width: 180px !important; margin: 0 auto 14px !important; }
      .hero-badge { font-size: 10px; letter-spacing: 2px; padding: 5px 12px; margin-bottom: 16px; }
      .hero h1 { font-size: 26px !important; letter-spacing: 1px !important; margin-bottom: 14px; }
      .hero p { font-size: 13px !important; line-height: 1.8; }
      .section, .section-inner { padding-left: 1rem !important; padding-right: 1rem !important; }
      .section-inner { padding-top: 48px; padding-bottom: 48px; }
      h2 { font-size: 22px !important; }
      .btn { font-size: 13px; padding: 12px 20px; width: 100%; }
      .cta-buttons { flex-direction: column; gap: 10px; }
      .commission-hero { padding: 1.5rem !important; }
      .booking-steps { gap: 16px; }
      .faq-question { padding: 14px 14px; font-size: 14px; gap: 10px; }
      .faq-icon { font-size: 12px; }
      .faq-answer p { font-size: 13px; padding: 0 14px 14px; }
    }

    /* ===================================================================
       FAQ セクション
       =================================================================== */

    .faq-list {
      margin-top: 3rem;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .faq-item {
      background: #fff;
      border: 1px solid var(--stone-light);
      border-left: 3px solid var(--coral);
      margin-bottom: 1rem;
      border-radius: 2px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: 1.5rem 2rem;
      background: #fff;
      border: none;
      text-align: left;
      font-family: var(--ff-display);
      font-size: 1.1rem;
      color: var(--ink);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s ease;
    }

    .faq-question:hover {
      background: var(--sand-light);
    }

    .faq-icon {
      font-size: 1.2rem;
      transition: transform 0.3s ease;
      color: var(--coral);
    }

    /* aria-expanded はボタン側に付与されるため、.faq-question を起点に指定 */
    .faq-question[aria-expanded="true"] .faq-icon {
      transform: rotate(180deg);
    }

    /* FAQ answer：[hidden] 属性で表示制御する。
       以前は max-height: 0 + overflow: hidden が残留し、hidden解除後も
       中身が0px高で見えなかったため、シンプルな display 切替に変更。 */
    .faq-answer {
      animation: faq-fade-in .25s ease-out;
    }

    .faq-answer[hidden] {
      display: none;
    }

    .faq-answer p {
      padding: 0 2rem 1.75rem;
      color: var(--ink-light);
      line-height: 1.8;
      font-size: 0.95rem;
    }

    @keyframes faq-fade-in {
      from { opacity: 0; transform: translateY(-4px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .cta-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .cta-content h2 {
      margin-bottom: 1rem;
    }

    .cta-note {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      font-weight: 300;
    }

    .cta-buttons {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 2rem;
    }
/* ===================================================================
       90. フッター
       =================================================================== */
/* ===================================================================
       91. 共通ユーティリティ
       =================================================================== */

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ===================================================================
       99. レスポンシブ
       =================================================================== */

    @media (max-width: 768px) {
      .spec-ribbon-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }

      .lunch-content {
        grid-template-columns: 1fr;
      }

      .lunch-cards {
        grid-template-columns: 1fr;
      }

      .plan-price {
        font-size: 32px;
      }

      .menu-tabs {
        grid-template-columns: 1fr;
      }

      .schedule-grid {
        grid-template-columns: 1fr;
      }

      .cta-buttons {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }
    }

    @media print {
      .site-header,
main {
        padding: 0;
      }
    }
