/* =========================================================
   GOOD LIFE フェア 2026 ビジネス来場者向けLP
   配色・字体は公式サイト(goodlife-fair.jp)準拠：
     ウォームクリーム × チャコール × セージ × ディープグリーン × オレンジ（CTA）／オレンジゴールド（数字・キャッチ）
     Noto Sans JP（本文・見出し）＋ Montserrat（Latin見出しの極細・字間広めアクセント）
   形状はシャープ・直線的（フラット／ヘアライン／最小角丸）。
   ========================================================= */

:root {
  /* B2Bインパクト方針：ライト×強コントラスト（白 × 近黒 × ビビッドオレンジ）。
     変数名は従来のまま“値だけ”を差し替え、全セクションへ一括で新トーンを波及させる。
     従来のグリーン系（--c-green等）は近黒に再定義し、黒/白/オレンジの3色に identity を集約する。 */
  --c-ink:      #161616;   /* 主要テキスト＆濃色セクション地（near-black） */
  --c-ink-2:    #46443f;   /* 副次テキスト */
  --c-muted:    #8a8780;   /* 補足 */
  --c-cream:    #f3f2ec;   /* 代替セクション背景（クールな淡色／旧クリーム枠を流用） */
  --c-cream-2:  #e9e7df;   /* さらに淡い代替背景 */
  --c-beige:    #e4e1d6;
  --c-white:    #ffffff;   /* 主背景（白） */
  --c-green:    #1b1b1b;   /* 旧グリーン枠 → 近黒（チップ/タブ/強調の地） */
  --c-green-900:#111111;   /* 濃色セクション用 near-black */
  --c-sage:     #b4b1a6;   /* ニュートラルグレー（旧セージ枠） */
  --c-gold:     #f19220;   /* 数字用の温かいオレンジゴールド（差し色） */
  --c-gold-700: #d97a0f;
  --c-accent:   #ff4700;   /* パワーオレンジ（CTA・主アクセント） */
  --c-accent-700:#d93c00;  /* CTAホバー/下線用の深いオレンジ */
  --c-line:     #e4e2da;   /* 白地上のヘアライン */
  --c-line-2:   #d8d5ca;
  --c-sage-deep:#555150;   /* 補助ラベル用ダークグレー */
  --c-dark:     #0d0d0d;   /* 濃色セクションの true near-black */

  --maxw: 1180px;
  --radius: 3px;           /* シャープ */
  --shadow: 0 1px 0 rgba(20,20,20,.04);
  --shadow-hover: 0 14px 34px rgba(20,20,20,.14);
  --font-sans:    "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-display: "Noto Sans JP", system-ui, sans-serif;
  --font-latin:   "Montserrat", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }

/* 基準フォントを一般的なサイト水準へ引き上げ（16px→18px）。rem/clampベースの各文字が全体的に拡大する。 */
html { font-size: 112.5%; scroll-behavior: smooth; scroll-padding-top: 114px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--c-ink);
  background: var(--c-white);
  line-height: 1.7;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  /* 日本語の改行をどの画面幅でも読みやすく：
     - line-break:strict … 句読点・閉じ括弧・小書き仮名などの禁則を厳格適用（行頭の「、」「。」等を防止）
     - overflow-wrap … 長い英単語/URLは画面外に溢れさせず折返す */
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* =========================================================
   日本語テキストの自動改行（変な位置で切れないように）
   画面幅に追従して「文節」で折り返し、見出し/本文の行バランスも最適化する。
   いずれも未対応ブラウザでは安全に無視され、従来の表示にフォールバックする。
   ========================================================= */
/* 見出し・キャッチコピー・要点文：文節（意味のまとまり）単位で改行 */
.hero-title, .hero-title-sub, .hero-catch, .hero-catch-lead, .hero-catch-key, .hero-catch-tail,
.hero-badge, .hero-note, .hero-facts .value, .section-title, .section-eyebrow, .section-desc,
.concept-title, .concept-lead, .cta-final-title, .cta-final-lead, .cta-final-note, .cta-final-facts,
.focus-name, .focus-desc, .merit-badge h3, .merit-badge p, .matching-step h3, .matching-step p,
.matching-lead, .speaker-name, .speaker-role, .coevent-desc, .coevent-noimg-name,
.access-place, .voice-text, .outline-table td, .footer-contact p, .btn {
  word-break: auto-phrase;
}
/* 本文・説明文：行末の孤立文字（ワンワード残り）を避けてバランス良く折返す */
p, li, dd, figcaption, .section-desc, .concept-lead, .matching-lead, .voice-text, .hero-note {
  text-wrap: pretty;
}
/* 短い見出しは複数行の長さを均す（不自然な1文字残りを防ぐ） */
.hero-title, .hero-catch, .section-title, .concept-title, .cta-final-title, .focus-name {
  text-wrap: balance;
}

/* スキップリンク（WCAG 2.4.1）。通常は画面外、フォーカスで表示 */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--c-ink); color: var(--c-white); text-decoration: none;
  padding: .6em 1.2em; font-weight: 700;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; }

/* キーボード操作時のフォーカス可視化（WCAG 2.4.7） */
:focus-visible { outline: 3px solid var(--c-gold); outline-offset: 2px; }

/* 左右余白は画面幅に追従（小型端末で詰まりすぎないよう下限16px・上限24px） */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(16px, 4vw, 24px); }
.muted { color: var(--c-muted); font-size: .9em; }

/* ---------- ボタン（フラット・直線・矢印） ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  font-weight: 800; text-decoration: none; line-height: 1.3; letter-spacing: .04em;
  padding: 1.05em 2.1em; border-radius: var(--radius);
  transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
/* CTAボタンはパワーオレンジ。B2Bインパクト方針に合わせ、より太く・濃い影で前面化 */
.btn-cta {
  position: relative; overflow: hidden;
  background: var(--c-accent); color: #fff;
  box-shadow: 0 6px 0 var(--c-accent-700);
}
.btn-cta small { font-size: .8em; font-weight: 800; }
.btn-cta::after { content: "→"; font-weight: 800; transition: transform .18s ease; }
/* キラッと光がCTA上を斜めに横切るアニメーション（ベース色はそのまま） */
.btn-cta::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0;
  width: 60%; pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  transform: translateX(-180%) skewX(-18deg);
  animation: btnShine 4.5s ease-in-out infinite;
}
.btn-cta:hover { background: var(--c-accent-700); color: #fff; box-shadow: 0 4px 0 #b53200; transform: translateY(2px); }
.btn-cta:hover::after { transform: translateX(3px); }
@keyframes btnShine {
  0%   { transform: translateX(-180%) skewX(-18deg); }
  /* 一瞬で走り抜け、残りは待機（次のキラッまで間を置く） */
  18%  { transform: translateX(260%) skewX(-18deg); }
  100% { transform: translateX(260%) skewX(-18deg); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-cta::before { animation: none; opacity: 0; }
}
.btn-lg { font-size: 1.12rem; padding: 1.2em 2.6em; }
/* 長文CTA（マッチング／セミナー）は狭い端末でも1行に収める。
   ビューポート幅に応じてフォントを可変（clamp）にして折り返しを防ぐ。
   デスクトップ幅では上限 1.12rem に張り付き従来どおりの見た目。 */
.matching-cta .btn-cta, .seminar-cta .btn-cta {
  white-space: nowrap;
  font-size: clamp(0.72rem, calc((100vw - 40px) / 22), 1.12rem);
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--c-ink);
}
/* 上段ユーティリティ帯（会員/プレス導線）：近黒地の右寄せテキストリンク */
.header-util { background: var(--c-ink); }
.header-util-inner { display: flex; justify-content: flex-end; align-items: center; gap: 26px; min-height: 38px; }
.header-util a {
  position: relative; color: #fff;
  font-size: .82rem; font-weight: 700; letter-spacing: .02em;
  text-decoration: none; white-space: nowrap; padding: 7px 0;
  transition: color .15s ease;
}
.header-util a:hover { color: var(--c-gold); text-decoration: underline; text-underline-offset: 3px; }
.header-util a + a::before {
  content: ""; position: absolute; left: -13px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 13px; background: rgba(255,255,255,.4);
}
.header-inner { display: flex; align-items: center; gap: 16px; min-height: 64px; }
.header-logo { font-family: var(--font-display); font-weight: 900; font-size: 1.05rem; letter-spacing: .04em; margin: 0; color: var(--c-ink); line-height: 0; flex-shrink: 0; }
.header-logo span { color: var(--c-gold-700); }
.header-logo img { display: block; width: auto; height: 40px; }
.header-nav { display: flex; gap: 13px; margin-left: auto; font-size: .84rem; font-weight: 700; }
.header-nav a { text-decoration: none; color: var(--c-ink); padding: 4px 0; border-bottom: 2px solid transparent; white-space: nowrap; transition: color .15s ease, border-color .15s ease; }
.header-nav a:hover { color: var(--c-accent); border-color: var(--c-accent); }
.header-nav a.is-current { color: var(--c-accent); border-color: var(--c-accent); font-weight: 800; }
.header-cta { padding: .62em 1.3em; font-size: .88rem; white-space: nowrap; flex-shrink: 0; }

/* ---- ハンバーガー（モバイル）＋ドロップダウンメニュー ---- */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0; flex-shrink: 0;
  background: transparent; border: 1.5px solid var(--c-line); border-radius: 8px; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.nav-toggle:hover { border-color: var(--c-ink); }
.nav-toggle-bars { position: relative; display: block; width: 20px; height: 14px; }
.nav-toggle-bars span {
  position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: var(--c-ink);
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }
/* 開いている時は×印に */
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }
/* メニュー本体はデスクトップでは非表示（≤1040pxでドロップダウンとして表示） */
.mobile-menu { display: none; }

/* 中間幅以下：横スクロールのアンカー帯はやめ、1段ヘッダー＋ハンバーガーメニューに集約 */
@media (max-width: 1180px) {
  /* インラインのセクションナビは幅1180px超でのみ表示（「ステージ・セミナー」を含めても収まる幅）。
     それ以下はハンバーガーに集約して溢れ・見切れを防ぐ */
  /* アンカー位置はヘッダー実高（--header-h）に追従させる */
  html { scroll-padding-top: calc(var(--header-h, 64px) + 8px); }
  .header-inner { gap: 10px 14px; min-height: 56px; padding-block: 8px; }
  .header-logo { margin-right: auto; }
  .header-util { display: none; }          /* 会員/プレス導線はメニュー内へ集約 */
  .header-nav { display: none; }           /* インラインのセクションナビは非表示 */
  .header-cta-pre { display: none; }       /* CTA短縮：来場登録（無料）。折り返し防止は white-space:nowrap */
  .header-cta { padding: .5em 1.05em; font-size: .85rem; min-height: 40px; }
  .nav-toggle { display: inline-flex; }

  /* ドロップダウン本体：ヘッダー直下に全幅で展開 */
  .mobile-menu {
    display: block; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 2px solid var(--c-ink);
    box-shadow: 0 18px 32px rgba(0, 0, 0, .16);
    padding: 6px 0; max-height: calc(100svh - var(--header-h, 64px)); overflow-y: auto;
    /* 閉じている状態（フォーカスもさせない） */
    visibility: hidden; opacity: 0; transform: translateY(-10px); pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .site-header.menu-open .mobile-menu { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-menu a {
    display: block; padding: 14px clamp(18px, 5vw, 26px);
    color: var(--c-ink); text-decoration: none; font-weight: 700; font-size: 1.02rem;
    border-bottom: 1px solid var(--c-line);
  }
  .mobile-menu a:hover, .mobile-menu a:active { background: var(--c-cream); color: var(--c-accent); }
  .mobile-menu-sub { font-size: .92rem !important; font-weight: 600 !important; color: var(--c-ink-2) !important; }
  .mobile-menu-sub:last-child { border-bottom: 0; }
  .mobile-menu-sep { display: block; height: 1px; background: var(--c-line); margin: 5px 0; }
}

/* ---------- ヒーロー（全面写真＋オーバーレイ・中央配置） ---------- */
/* 会場写真を全幅背景に敷き、複数枚をスライド層でクロスフェード。可読性は ::after の暗幕で確保。
   その上に中央寄せでキャッチ＋主CTA、最下部に開催情報＋カウントダウンの帯を置く。 */
.hero { position: relative; color: var(--c-white); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  /* TODO(P2): 現場写真（先方支給）に差し替え。暫定は会場写真。 */
  background: var(--c-green-900);
}
.hero-bg.has-photo { background: var(--c-green-900); }
/* 背景スライド（クロスフェード） */
.hero-bg-slide {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.4s ease; will-change: opacity;
}
.hero-bg-slide.is-active { opacity: 1; }
/* 写真背景時は縦方向の暗幕＋中央のヴィネットで、コピー位置のコントラストを底上げ。
   どんな写真でも中央テキストが沈まないようにする。 */
.hero-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(125% 88% at 50% 48%, rgba(10,10,10,.58) 0%, rgba(10,10,10,.24) 52%, transparent 100%),
    linear-gradient(180deg, rgba(10,10,10,.5) 0%, rgba(10,10,10,.3) 28%, rgba(10,10,10,.4) 60%, rgba(10,10,10,.78) 100%);
}
/* 上下分割：上段=中央寄せコピー（flexで縦中央）／下段=情報バー。全体で1画面に収める。
   ヘッダーは sticky で通常フロー内に高さを持つため、実測値 --header-h を差し引いて
   「ヘッダー＋ヒーロー＝ちょうど1画面」にし、情報バーが画面外に切れないようにする。 */
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; gap: clamp(24px, 5vh, 56px); min-height: calc(100svh - var(--header-h, 102px)); padding: clamp(18px, 3.5vh, 44px) clamp(16px, 4vw, 24px); }
/* 上段：会場写真の上に、キャッチ→CTAを中央寄せで主役配置（コピーとバーは1つの塊として縦中央）*/
.hero-copy { flex: 0 1 auto; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; width: 100%; max-width: 880px; margin: 0 auto; padding: 0; }
/* 写真背景でテキストが同化しないよう、ヒーロー内の文字に共通のドロップシャドウを敷く */
.hero-copy, .hero-bar { text-shadow: 0 1px 2px rgba(0,0,0,.55), 0 2px 14px rgba(0,0,0,.45); }
.hero-title, .hero-catch-key, .hero-catch-tail { text-shadow: 0 2px 3px rgba(0,0,0,.55), 0 6px 26px rgba(0,0,0,.6); }
/* サブ見出し（ターゲット明示）は明るいブース背景でも沈まないよう影を強める */
.hero-title-sub { text-shadow: 0 1px 2px rgba(0,0,0,.7), 0 2px 10px rgba(0,0,0,.6); }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--c-accent); color: #fff;
  font-weight: 800; font-size: .8rem; letter-spacing: .08em; padding: .55em 1.15em; margin: 0 0 18px; border-radius: 2px;
}
.hero-title { font-family: var(--font-display); font-weight: 900; line-height: 1.16; margin: 0 0 16px; font-size: clamp(2.3rem, 6vw, 4.2rem); letter-spacing: .005em; text-wrap: balance; }
.hero-title-sub { display: block; font-size: clamp(.95rem, 2.4vw, 1.2rem); font-weight: 800; color: var(--c-gold); margin-bottom: 10px; letter-spacing: .02em; }
.hero-title .year { color: inherit; }
/* キャッチは強いメリハリ：小さなリード → 特大の金キーフレーズ → 中サイズの締め */
.hero-catch { margin: 0 0 24px; line-height: 1.24; }
.hero-catch-lead { display: block; font-size: clamp(.95rem, 2.2vw, 1.15rem); font-weight: 700; opacity: .92; letter-spacing: .06em; margin-bottom: 10px; }
.hero-catch-key {
  display: block; font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.2vw, 4.8rem); font-weight: 900; line-height: 1.1;
  color: var(--c-gold); letter-spacing: .005em; white-space: nowrap;
  /* 上が明るく下が深いゴールドの縦グラデで金属的な立体感を出す。
     ハイライト（上）＋影（下）＋ドロップシャドウで彫りの深さを演出。 */
  text-shadow:
    0 1px 0 #fff3c4,
    0 -1px 0 rgba(120,72,0,.45),
    0 2px 3px rgba(0,0,0,.55),
    0 6px 26px rgba(0,0,0,.6);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  /* 「次の売れ筋と取引先／が、ここで見つかる。」は一文なので、締めの語尾もキーと同じ金グラデに揃える */
  .hero-catch-key, .hero-catch-tail {
    color: transparent;
    background-image: linear-gradient(180deg, #ffe9a8 0%, var(--c-gold) 48%, #c9971f 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.hero-catch-tail {
  display: block; font-size: clamp(1.25rem, 3vw, 1.9rem); font-weight: 800; margin-top: 8px;
  color: var(--c-gold);
  /* キーと同じ金色に見せる：上部ハイライト付きの立体シャドウを共通化（暗色の濁りを解消） */
  text-shadow:
    0 1px 0 #fff3c4,
    0 -1px 0 rgba(120,72,0,.45),
    0 2px 3px rgba(0,0,0,.55),
    0 6px 26px rgba(0,0,0,.6);
}
/* 事業名の下に添える補足2行（ストーリー性／全国600社）はタイトに重ねる */
.hero-catch--sub { margin: 14px 0 24px; }
.hero-catch--sub .hero-catch-lead { margin-bottom: 4px; }
.hero-catch--sub .hero-catch-lead:last-child { margin-bottom: 0; }

.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin: 0; }
/* ヒーローのCTAは賑やかな写真から浮かせるため、立体ボタン影＋ソフトな投影を重ねる */
.hero-actions .btn-cta { box-shadow: 0 6px 0 var(--c-accent-700), 0 14px 32px rgba(0, 0, 0, .42); }
.hero-actions .btn-cta:hover { box-shadow: 0 4px 0 #b53200, 0 9px 22px rgba(0, 0, 0, .42); }
.hero-note { font-size: .9rem; margin: 0; max-width: 600px; opacity: .95; }
.hero-note strong { color: var(--c-gold); }

/* ---------- 下段：開催情報＋カウントダウンの帯（横一列・薄いガラス板で可読性確保） ---------- */
.hero-bar {
  flex: 0 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 40px;
  width: 100%; max-width: 1120px; margin: 0 auto;
  padding: 16px 28px;
  /* 賑やかな写真の上でも数字・文言が読めるよう、半透明＋ぼかしのガラス板を敷く。
     backdrop-filter 非対応ブラウザでも背景の半透明黒でコントラストを確保。 */
  background: rgba(12, 12, 12, .34);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .28);
}
.hero-facts { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0; border: 0; }
.hero-facts li { padding: 2px 24px; border-right: 1px solid rgba(255,255,255,.22); }
.hero-facts li:first-child { padding-left: 0; }
.hero-facts li:last-child { border-right: 0; }
.hero-facts .label { display: block; font-family: var(--font-latin); font-size: .72rem; letter-spacing: .14em; color: var(--c-gold); font-weight: 700; margin-bottom: 2px; }
.hero-facts .value { display: block; font-weight: 800; font-size: 1.02rem; }
.hero-facts .value small { font-size: .62em; margin-left: 2px; opacity: .85; }

.hero-countdown { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin: 0; padding: 0; border: 0; }
.cd-label { font-family: var(--font-latin); letter-spacing: .14em; font-size: .9rem; color: var(--c-gold); font-weight: 700; }
.hero-countdown .cd-unit { font-size: .85rem; opacity: .9; display: inline-flex; align-items: baseline; gap: 4px; }
.hero-countdown b { font-family: var(--font-display); font-weight: 900; font-size: 2rem; line-height: 1; color: var(--c-white); letter-spacing: .01em; }

/* 背の低いビューポート（ノートPC横・小型ディスプレイ）でヒーローが1画面に収まるよう、
   高さに応じて見出し・余白を段階的に圧縮する。幅だけでなく高さでも破綻させない。 */
/* ※モバイル(≤768px)は別途 幅基準で最適化するため、高さ圧縮はデスクトップ(≥769px)に限定する */
@media (min-width: 769px) and (max-height: 820px) {
  .hero-inner { gap: clamp(18px, 3.2vh, 40px); padding-block: clamp(14px, 2.4vh, 28px); }
  .hero-badge { margin-bottom: 12px; }
  .hero-title { font-size: clamp(2rem, 5.2vw, 3.2rem); margin-bottom: 10px; }
  .hero-catch { margin-bottom: 0; }
  .hero-catch-key { font-size: clamp(2.2rem, 6vw, 3.6rem); }
  .hero-catch-lead { margin-bottom: 6px; }
  .hero-catch-tail { font-size: clamp(1.1rem, 2.6vw, 1.6rem); margin-top: 6px; }
}
@media (min-width: 769px) and (max-height: 680px) {
  .hero-inner { gap: clamp(8px, 1.5vh, 14px); padding-block: 8px; }
  .hero-badge { margin-bottom: 5px; padding: .4em .95em; font-size: .76rem; }
  .hero-title { font-size: clamp(1.65rem, 4.2vw, 2.5rem); margin-bottom: 5px; }
  .hero-title-sub { margin-bottom: 2px; font-size: clamp(.85rem, 2vw, 1rem); }
  .hero-catch { margin-bottom: 0; }
  .hero-catch-lead { margin-bottom: 2px; }
  .hero-catch-key { font-size: clamp(1.85rem, 5vw, 2.9rem); }
  .hero-catch-tail { margin-top: 2px; }
  .hero-actions .btn-lg { padding-block: 11px; }
  .hero-bar { gap: 6px; padding: 8px 14px; }
  .hero-countdown b { font-size: 1.35rem; }
}

/* ---------- セクション共通 ---------- */
.section { padding: 100px 0; }
.section-head { text-align: center; max-width: 860px; margin: 0 auto 56px; }
.section-eyebrow { font-family: var(--font-latin); color: var(--c-accent); font-weight: 700; letter-spacing: .24em; font-size: .8rem; text-transform: uppercase; margin: 0 0 18px; }
.section-eyebrow::after { content: ""; display: block; width: 40px; height: 3px; background: var(--c-accent); margin: 14px auto 0; }
.section-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.9rem, 4.4vw, 3.1rem); line-height: 1.3; margin: 0; color: var(--c-ink); letter-spacing: .01em; text-wrap: balance; }
/* 見出しの“キリのいい改行”用：意味のまとまりを inline-block 化し、語の途中で折り返さない。
   横幅に余裕があれば一列、足りなければまとまり単位で改行される。
   超狭幅で文節がコンテナ幅を超える場合のみ、最終手段として文節内でも折返し（横溢れ防止）。 */
.t-nb { display: inline-block; max-width: 100%; overflow-wrap: anywhere; }
.section-desc { margin: 20px 0 0; color: var(--c-ink-2); font-size: 1.02rem; }
.section-desc strong { color: var(--c-ink); }

/* ---------- コンセプト宣言 ---------- */
/* 宣言文は写真を敷かず、白地＋DISCOVERの大きな透かし文字だけで見せる（落ち着いた“宣言”の質感を優先） */
.section-concept { position: relative; overflow: hidden; background: var(--c-white); text-align: center; }
.concept-bgword {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-latin); font-weight: 800; font-size: clamp(4.5rem, 20vw, 15rem);
  color: rgba(22,22,22,.05); white-space: nowrap; letter-spacing: .02em; z-index: 0; pointer-events: none;
}
.concept-inner { position: relative; z-index: 1; max-width: 860px; }
.concept-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.8rem, 5vw, 3rem); line-height: 1.4; color: var(--c-ink); margin: 6px 0 24px; letter-spacing: .01em; text-wrap: balance; }
.concept-lead { font-size: 1.08rem; color: var(--c-ink-2); margin: 0; }
.concept-lead strong { color: var(--c-accent); }

/* ---------- メリット（番号主役の編集的インデックス／脱・囲みカード） ---------- */
.section-merit { background: var(--c-cream); }
.merit-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 30px; counter-reset: merit; }
.merit-badge {
  position: relative; counter-increment: merit; text-align: left;
  background: transparent; border: 0; border-top: 2px solid var(--c-ink);
  padding: 24px 8px 0 0;
}
/* 上罫の左端だけオレンジの短いアクセント（差し色は最小限に） */
.merit-badge::after { content: ""; position: absolute; top: -2px; left: 0; width: 34px; height: 2px; background: var(--c-accent); }
/* アイコンチップは廃止し、大型ナンバーを主役に */
.merit-ring { display: none; }
.merit-badge::before {
  content: counter(merit, decimal-leading-zero);
  display: block; font-family: var(--font-latin); font-weight: 800;
  font-size: 2.5rem; line-height: 1; color: var(--c-ink); letter-spacing: -.02em; margin-bottom: 16px;
}
.merit-badge h3 { font-size: 1.16rem; margin: 0 0 10px; color: var(--c-ink); }
.merit-badge p { margin: 0; font-size: .94rem; color: var(--c-ink-2); }
.merit-badge s { color: var(--c-muted); }
.merit-badge strong { color: var(--c-accent); }

/* メリット用アイコン */
[data-icon="ticket"]    { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2 2 2 0 0 0 0 4 2 2 0 0 1-2 2H5a2 2 0 0 1-2-2 2 2 0 0 0 0-4z'/%3E%3Cpath d='M14 6v12' stroke-dasharray='2 2'/%3E%3C/svg%3E"); }
[data-icon="mic"]       { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='3' width='6' height='11' rx='3'/%3E%3Cpath d='M6 11a6 6 0 0 0 12 0'/%3E%3Cpath d='M12 17v4'/%3E%3C/svg%3E"); }
[data-icon="handshake"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11l4-4 5 3 5-3 4 4'/%3E%3Cpath d='M12 10l-2.5 2.5a1.5 1.5 0 0 0 2 2L13 13l1.5 1.5a1.5 1.5 0 0 0 2-2L14 10'/%3E%3C/svg%3E"); }
[data-icon="trend"]     { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17l6-6 4 4 8-8'/%3E%3Cpath d='M15 7h6v6'/%3E%3C/svg%3E"); }

/* ---------- 数字で見る実績（VOICE「高評価」ブロックと同じ質感） ---------- */
/* 茶系チャコール（--c-ink）＋ドットパターンの背景に、半透明カードを並べる。
   フラットな表組み（細罫線）はやめ、VOICEセクションと統一したトーンで上質化。 */
.section-stats {
  position: relative; overflow: hidden;
  color: #eef1ea; background: var(--c-ink);
}
/* VOICEと同じ細かなドットの地紋 */
.section-stats::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Ccircle cx='2' cy='2' r='1.3' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
  background-size: 44px 44px; pointer-events: none;
}
.section-stats .container { position: relative; z-index: 1; }
.section-stats .section-title { color: var(--c-white); }
.section-stats .section-eyebrow { color: var(--c-gold); }
/* 脱・囲みカード：ヘアラインで区切った数字ストリップ。数字を特大にして主役化 */
.stats-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-card {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  text-align: center; padding: 6px 26px; position: relative;
  background: transparent; border: 0; border-left: 1px solid rgba(255,255,255,.16);
}
.stat-card:first-child { border-left: 0; }
/* アイコンリングは廃止。数字に視線を集中させる */
.stat-ico { display: none; }

.stat-num {
  display: inline-flex; align-items: baseline; justify-content: center; white-space: nowrap;
  position: relative;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.8rem, 5.4vw, 4.4rem); color: var(--c-gold);
  line-height: 1; letter-spacing: .005em; padding-bottom: 18px;
}
/* 数字の下にゴールドの短いアクセント線（罫線の代わりの“区切り”） */
.stat-num::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 32px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-700));
}
/* 「約」プレフィックスは控えめに、数字を主役に */
.stat-num .stat-pre { font-style: normal; font-size: .4em; font-weight: 700; color: rgba(255,255,255,.75); margin-right: 3px; align-self: center; }
.stat-num .stat-figure { font-variant-numeric: tabular-nums; }
.stat-num .unit { font-size: .4em; margin-left: 4px; color: rgba(255,255,255,.85); font-weight: 700; }
.stat-label {
  display: block; margin-top: 16px;
  font-size: .92rem; letter-spacing: .04em; color: rgba(255,255,255,.78);
}

/* 数字セクション用アイコン */
[data-icon="building"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f19220' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21V6l8-3 8 3v15'/%3E%3Cpath d='M4 21h16'/%3E%3Cpath d='M9 9h.01M15 9h.01M9 13h.01M15 13h.01M9 17h.01M15 17h.01'/%3E%3C/svg%3E"); }
[data-icon="people"]   { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f19220' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3.5 20a5.5 5.5 0 0 1 11 0'/%3E%3Cpath d='M16 5.5a3 3 0 0 1 0 5.6'/%3E%3Cpath d='M17.5 14.5a5.5 5.5 0 0 1 3 5'/%3E%3C/svg%3E"); }
[data-icon="grid"]     { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f19220' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E"); }
[data-icon="calendar"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f19220' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 9h18M8 3v4M16 3v4'/%3E%3C/svg%3E"); }

/* ---------- 開催概要 ---------- */
.section-outline { background: var(--c-white); }
.outline-wrap { max-width: 780px; margin: 0 auto; }
.outline-table { width: 100%; border-collapse: collapse; background: var(--c-white); border: 1px solid var(--c-line); }
.outline-table th, .outline-table td { text-align: left; padding: 18px 22px; border-bottom: 1px solid var(--c-line); vertical-align: top; }
.outline-table tr:last-child th, .outline-table tr:last-child td { border-bottom: 0; }
.outline-table th { width: 130px; background: var(--c-cream); font-weight: 700; color: var(--c-ink); white-space: nowrap; }
.outline-table strong { color: var(--c-gold-700); }
.outline-cta { text-align: center; margin-top: 36px; }
.outline-cta-note { margin: 14px 0 0; }

/* ---------- 注目の4大ジャンル（B2B注力ジャンル・大型写真カード） ---------- */
.section-focus { background: var(--c-white); }
.focus-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.focus-card {
  position: relative; overflow: hidden; border-radius: 4px;
  aspect-ratio: 16 / 10; background: var(--c-ink);
}
/* カード上辺のオレンジ・アクセント（ホバーで端まで伸びる） */
.focus-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 64px; height: 6px;
  background: var(--c-accent); z-index: 3; transition: width .4s ease;
}
.focus-card:hover::before { width: 100%; }
.focus-img {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transition: transform .5s ease;
}
.focus-card:hover .focus-img { transform: scale(1.06); }
.focus-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,.05) 0%, rgba(13,13,13,.42) 52%, rgba(13,13,13,.86) 100%);
}
.focus-body {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(22px, 3vw, 34px); color: #fff;
}
.focus-no { font-family: var(--font-latin); font-weight: 800; font-size: .9rem; letter-spacing: .12em; color: var(--c-accent); margin-bottom: 6px; }
.focus-name { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.2; margin: 0 0 10px; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.focus-desc { margin: 0; font-size: .95rem; line-height: 1.65; max-width: 42ch; color: rgba(255,255,255,.92); }

/* ---------- 出展ゾーン ---------- */
.section-zones { background: var(--c-cream); }
.zone-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.zone-card { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; text-align: left; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.zone-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); border-color: var(--c-sage); }
.zone-card h3 { font-size: .98rem; margin: 0; padding: 16px 16px; color: var(--c-ink); }

/* 写真プレースホルダ（フラット）。TODO(P2): 写真差し替え時は background を画像へ。 */
.zone-thumb {
  display: block; aspect-ratio: 4 / 3; position: relative;
  background-color: var(--c-sage);
  background-image: var(--icon);
  background-repeat: no-repeat; background-position: center; background-size: 44px auto;
}
.zone-grid .zone-card:nth-child(even) .zone-thumb { background-color: var(--c-green); }
.zone-thumb::after { content: "PHOTO"; position: absolute; left: 10px; bottom: 8px; font-family: var(--font-latin); font-size: .62rem; letter-spacing: .14em; color: rgba(255,255,255,.7); }

/* 写真を当てたサムネ共通：アイコン/PHOTOラベルを消し cover 表示 */
.zone-thumb.has-photo,
.highlight-thumb.has-photo {
  background-color: var(--c-sage);
  background-repeat: no-repeat; background-position: center; background-size: cover;
}
.zone-thumb.has-photo::after,
.highlight-thumb.has-photo::after { content: none; }
[data-icon="food"]   { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); }
[data-icon="sdg"]    { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 19c0-7 5-12 14-12 0 7-5 12-14 12z'/%3E%3Cpath d='M9 15c2-3 5-5 8-6'/%3E%3C/svg%3E"); }
[data-icon="home"]   { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 11l8-7 8 7'/%3E%3Cpath d='M6 10v9h12v-9'/%3E%3C/svg%3E"); }
[data-icon="learn"]  { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h7v14H4z'/%3E%3Cpath d='M13 5h7v14h-7z'/%3E%3Cpath d='M11 5v14'/%3E%3C/svg%3E"); }
[data-icon="health"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z'/%3E%3C/svg%3E"); }
[data-icon="region"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-6-5-6-10a6 6 0 0 1 12 0c0 5-6 10-6 10z'/%3E%3Ccircle cx='12' cy='11' r='2'/%3E%3C/svg%3E"); }
[data-icon="goods"]  { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8h12l-1 11H7z'/%3E%3Cpath d='M9 8a3 3 0 0 1 6 0'/%3E%3C/svg%3E"); }

/* ---------- セミナー（Speakers型） ---------- */
.section-seminar { background: var(--c-white); }

/* 登壇者・セッション一覧：写真主役の縦型カード（3列）。
   大きな正方形写真にテーマ帯と分類タグをオーバーレイし、氏名を大きく見せてメリハリを付ける。
   2名セッションは写真を全幅にすることで顔がしっかり見える幅を確保する。 */
/* 全登壇枠を1段の横並びに。画面幅に収まらない場合は横スクロール（縦の hover 浮きは padding で確保） */
.speaker-carousel {
  margin: 0 0 32px; overflow-x: auto; overflow-y: hidden; padding: 4px 4px 10px;
  scroll-snap-type: x proximity; scroll-padding-left: 4px; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
}
.speaker-grid {
  list-style: none; margin: 0; padding: 0;
  /* justify-content は flex-start。中央寄せにすると、はみ出し時に先頭カードが左へ溢れて
     scrollLeft=0 では到達できず隠れてしまう（スマホで石山カードが消える不具合）。
     デスクトップはカードが flex-grow で全幅を埋めるため見た目は変わらない */
  display: flex; flex-wrap: nowrap; justify-content: flex-start; gap: 20px;
}
.speaker-card {
  flex: 1 0 0; min-width: 200px; max-width: 260px; scroll-snap-align: start;
  display: flex; flex-direction: column; text-align: left;
  background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.speaker-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); border-color: var(--c-sage); }
/* 写真ブロック（正方形）。タグ・タイトルは重ねず本文側へ移動しクリーンに */
.speaker-figure { position: relative; aspect-ratio: 1 / 1; background: var(--c-sage); overflow: hidden; }
.speaker-photo {
  position: absolute; inset: 0;
  background-color: var(--c-sage);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='9' r='3.4'/%3E%3Cpath d='M5 20a7 7 0 0 1 14 0'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 56px auto;
}
.speaker-photo.has-photo { background-size: cover; background-position: center top; }
/* 2名セッション：全幅写真を左右に2分割（各〜半幅で顔が見える） */
.speaker-photo--split { display: flex; gap: 2px; }
.speaker-photo--split i {
  flex: 1 1 0; min-width: 0; align-self: stretch;
  background-size: cover; background-position: center top; background-repeat: no-repeat;
}
/* ロゴ枠（人物なし）：白地に contain。テーマ帯は出さず本文側に表示 */
.speaker-photo--logo { background-color: #fff; background-size: 66% auto; background-position: center; }
/* 分類タグ：写真上部のオーバーレイ帯（顔・ロゴがくる中央は避け、上端の空きスペースを活用）。
   下向きグラデで文字の視認性を確保し、長いタグは折り返す */
.speaker-tag {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  padding: 8px 12px 16px;
  background: linear-gradient(to bottom, rgba(10,10,10,.8) 30%, rgba(10,10,10,0));
  color: #fff; font-size: .68rem; font-weight: 700; line-height: 1.35; letter-spacing: .02em;
}
/* 本文：主役（氏名）を写真直下に置き、区切り線の下にセッション情報を従属表示 */
.speaker-body { flex: 1 1 auto; display: flex; flex-direction: column; align-items: stretch; padding: 13px 14px 15px; }
/* 主役ブロック：写真直下に固定位置で並ぶため、氏名の縦位置が各カードで揃う */
.speaker-person { display: flex; flex-direction: column; }
.speaker-name {
  font-weight: 700; color: var(--c-ink); font-size: 1.12rem; line-height: 1.3; margin: 0 0 3px;
  letter-spacing: .01em; padding-left: 9px; border-left: 3px solid var(--c-accent);
}
/* 連名は「／」でのみ改行し、各人名は途中で折れないようにする */
.speaker-name-part { display: inline-block; white-space: nowrap; }
.speaker-role { margin: 0; padding-left: 9px; font-size: .78rem; line-height: 1.5; color: var(--c-ink-2); }
/* セッションタイトル：従属情報。カード下部に固定＋高さを一定化し、区切り線の位置を各カードで揃える。
   （氏名＝上端揃い、セッション＝下端揃いで、間の余白差を吸収する）。文字量が多い枠は3行で省略 */
.speaker-title {
  margin: auto 0 0; padding-top: 11px; border-top: 1px solid var(--c-line); min-height: 78px;
  color: var(--c-ink-2); font-weight: 600; font-size: .82rem; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
/* プログラム枠（PHASE FREE等）：演目名を主役に、説明文を従属側に。区切り線は出さず自然につなぐ */
/* プログラム枠の名称（例：フェーズフリーライブ）は他の人名より長いため、
   狭いカード幅でも1行に収まるよう少し小さめ＋折り返し無しにする */
.speaker-card--program .speaker-name { border-left-color: var(--c-sage); font-size: .86rem; white-space: nowrap; }
.speaker-card--program .speaker-title { border-top: 0; margin-top: 8px; padding-top: 0; min-height: 0; -webkit-line-clamp: 4; }
.speaker-note { text-align: center; margin: 0 0 32px; }
.seminar-cta { text-align: center; }
.seminar-cta .muted { margin: 16px 0 0; }

/* ---------- タイムテーブル（公開前の告知） ---------- */
.section-timetable { background: var(--c-cream); }
.timetable-notice {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--c-white); border: 1px solid var(--c-line); padding: 44px 32px;
}
.timetable-notice-main { font-size: 1.15rem; font-weight: 700; color: var(--c-ink); margin: 0 0 22px; line-height: 1.6; }
.timetable-notice-main strong { color: var(--c-gold-700); }
.timetable-days { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 0; padding: 0; margin: 0 0 22px; border: 1px solid var(--c-line); width: fit-content; margin-inline: auto; }
.timetable-days li { background: var(--c-green); color: var(--c-white); font-weight: 700; padding: .55em 1.5em; font-size: .95rem; border-right: 1px solid rgba(255,255,255,.2); }
.timetable-days li:last-child { border-right: 0; }
.timetable-days li small { font-size: .62em; margin-left: 5px; opacity: .8; }

/* ---------- タイムテーブル（確定後の表示・未使用時は無害） ---------- */
.timetable-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.timetable-day { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; }
.timetable-date { margin: 0; padding: 14px 18px; background: var(--c-green); color: var(--c-white); font-weight: 700; font-size: 1.05rem; }
.timetable-date small { font-size: .62em; margin-left: 5px; opacity: .8; }
.timetable-list { list-style: none; margin: 0; padding: 8px 18px 16px; }
.timetable-list li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px dotted var(--c-line); }
.timetable-list li:last-child { border-bottom: 0; }
.tt-time { flex: 0 0 64px; font-weight: 700; color: var(--c-ink); font-size: .9rem; }
.tt-body { font-size: .9rem; }

/* ---------- バイヤー実績（横スライド・マーキー） ---------- */
.section-buyers { background: var(--c-white); }
/* 既定（JS無効時）は横スクロールで全社にアクセス可能なフォールバック */
.buyer-marquee { position: relative; overflow-x: auto; -webkit-overflow-scrolling: touch; }
/* JS有効時：はみ出しを隠して無限ループ。左右端はマスクでフェード */
.buyer-marquee.is-ready {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.buyer-row { display: flex; width: max-content; }
.buyer-row + .buyer-row { margin-top: 14px; }
.buyer-set { display: flex; flex: 0 0 auto; list-style: none; margin: 0; padding: 0; }
/* gap は li の右マージンで作る（2セット連結時に継ぎ目が出ないようにするため） */
.buyer-set li {
  flex: 0 0 auto; white-space: nowrap; margin-right: 16px;
  padding: 14px 26px; border: 1px solid var(--c-line); border-radius: 999px;
  background: var(--c-white); color: var(--c-ink-2); font-size: 1.15rem; font-weight: 600;
}
.is-ready .buyer-row { animation: buyerScroll 70s linear infinite; }
.is-ready .buyer-row--rev { animation-direction: reverse; }
.buyer-marquee.is-ready:hover .buyer-row,
.buyer-marquee.is-ready:focus-within .buyer-row { animation-play-state: paused; }
@keyframes buyerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.buyer-note { text-align: right; margin: 16px 4px 0; }
@media (prefers-reduced-motion: reduce) {
  .is-ready .buyer-row { animation: none; }
  .buyer-marquee.is-ready { overflow-x: auto; }
}

/* ---------- バイヤーの声（Voice・濃色） ---------- */
.section-voice { position: relative; color: #eef1ea; overflow: hidden; background: var(--c-ink); }
.voice-bg {
  position: absolute; inset: 0; z-index: 0;
  /* TODO(P2): 背景に会場写真（先方支給）を差し替え。 */
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Ccircle cx='2' cy='2' r='1.3' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
  background-size: 44px 44px;
}
.section-voice .container { position: relative; z-index: 1; }
.voice-eyebrow { color: var(--c-gold); }
.voice-headline { color: var(--c-white); }
/* 満足度グラフ（仮） */
.voice-stats {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.voice-stats li {
  background: var(--c-white); border-radius: var(--radius); padding: 14px;
  display: flex; align-items: center; justify-content: center;
}
.voice-stats img { display: block; width: 100%; max-width: 260px; height: auto; }

.voice-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.voice-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16);
  color: #eef1ea; padding: 34px 26px; position: relative;
  display: flex; flex-direction: column;
}
.voice-card::before { content: "\201C"; font-family: var(--font-latin); font-size: 4rem; color: var(--c-gold); line-height: .6; display: block; }
.voice-text { font-size: 1.06rem; margin: 0 0 20px; }
/* 各カードの級数を文字量に応じてゆるやかに調整し、掲載範囲の差を和らげる。
   級数差は控えめ（0.93〜1.06rem）にして自然な見た目を優先。行間は全カード共通1.7。 */
.voice-card--base .voice-text,
.voice-card--short .voice-text,
.voice-card--long .voice-text,
.voice-card--long2 .voice-text { line-height: 1.7; }
.voice-card--short .voice-text { font-size: 1.10rem; }
.voice-card--base .voice-text  { font-size: 1.04rem; }
.voice-card--long2 .voice-text { font-size: .96rem; }
.voice-card--long .voice-text  { font-size: .89rem; }
/* 声の主：丸いポートレート（仮）＋肩書。本文の長短に関わらず全カードで下端にそろえる */
.voice-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.voice-avatar {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(255,255,255,.3); background-color: var(--c-green-900);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Ccircle cx='12' cy='8.5' r='4'/%3E%3Cpath d='M4 21a8 8 0 0 1 16 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center bottom -2px; background-size: 32px auto;
}
/* 投稿者名は1行に収める（折り返させない） */
.voice-author { margin: 0; font-weight: 700; color: var(--c-gold); font-size: .88rem; font-family: var(--font-latin); letter-spacing: .02em; white-space: nowrap; }
.voice-note { text-align: right; margin: 16px 4px 0; color: rgba(255,255,255,.5); }

/* ---------- 見どころ ---------- */
.section-highlight { background: var(--c-cream); }
.highlight-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.highlight-card { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.highlight-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); border-color: var(--c-sage); }
.highlight-card p { margin: 0; padding: 14px 12px; text-align: center; font-size: .9rem; font-weight: 500; color: var(--c-ink); }

/* 写真プレースホルダ（フラット）。TODO(P2): 写真差し替え時は background を画像へ。 */
.highlight-thumb {
  display: block; aspect-ratio: 1 / 1; position: relative;
  background-color: var(--c-green);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8.5' cy='10' r='1.6'/%3E%3Cpath d='M4 17l5-4 4 3 3-2 4 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 42px auto;
}
.highlight-grid .highlight-card:nth-child(even) .highlight-thumb { background-color: var(--c-sage); }
.highlight-thumb::after { content: "PHOTO"; position: absolute; left: 10px; bottom: 8px; font-family: var(--font-latin); font-size: .62rem; letter-spacing: .14em; color: rgba(255,255,255,.7); }

/* ---------- 併催イベント ---------- */
.section-coevent { background: var(--c-white); }
.coevent-banner { margin: 0 auto 28px; max-width: 640px; text-align: center; }
.coevent-banner img { display: block; width: 100%; height: auto; border-radius: var(--radius); }
.coevent-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.coevent-card { display: flex; flex-direction: column; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; height: 100%; }
a.coevent-card { text-decoration: none; color: inherit; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
a.coevent-card:hover { border-color: var(--c-green); box-shadow: 0 6px 18px rgba(0,0,0,.08); transform: translateY(-2px); }
a.coevent-card:focus-visible { outline: 2px solid var(--c-green); outline-offset: 2px; }
.coevent-card.is-soon { opacity: .9; }
/* ロゴ枠：全カード共通の高さ・中央寄せで4件を統一 */
.coevent-logobox {
  display: flex; align-items: center; justify-content: center;
  min-height: 96px; padding: 20px 24px;
  background: var(--c-white); border-bottom: 1px solid var(--c-line);
}
.coevent-logobox picture { display: block; line-height: 0; }
.coevent-logo { display: block; width: auto; height: auto; max-width: 100%; max-height: 48px; object-fit: contain; }
/* 角形（フライヤー型）ロゴ用：枠の高さは他カードと揃えたまま、paddingを詰めてロゴを最大化 */
.coevent-logobox--badge { padding-block: 8px; }
.coevent-logo--badge { max-height: 80px; }
.coevent-logobox--empty { flex-direction: column; gap: 6px; background: var(--c-cream); }
.coevent-noimg-name { font-size: 1.05rem; font-weight: 700; color: var(--c-ink); text-align: center; }
.coevent-noimg-note { font-size: .72rem; font-weight: 700; color: var(--c-ink-2); padding: 2px 8px; background: var(--c-line); border-radius: 999px; }
/* テキストロゴ（ロゴ未提供のイベント名をタイポグラフィで表現。背景は他カードと揃えて白） */
.coevent-textlogo { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; line-height: 1.3; }
.coevent-textlogo-main { font-family: var(--font-display); font-weight: 900; font-size: 1.32rem; color: var(--c-ink); letter-spacing: .02em; }
.coevent-textlogo-sub { font-size: .86rem; font-weight: 700; color: var(--c-ink-2); letter-spacing: .02em; }
.coevent-body { flex: 1; padding: 20px 24px; display: flex; flex-direction: column; gap: 12px; }
.coevent-desc { color: var(--c-ink-2); line-height: 1.7; }
.coevent-desc strong { color: var(--c-green); }
.coevent-link { margin-top: auto; font-size: .9rem; font-weight: 700; color: var(--c-green); }
.coevent-link--soon { color: var(--c-ink-2); }
.coevent-ext { font-weight: 700; }

/* ---------- アクセス ---------- */
.section-access { background: var(--c-cream); }
.access-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.access-info { background: var(--c-white); border: 1px solid var(--c-line); padding: 32px; }
.access-place { font-size: 1.25rem; font-weight: 700; color: var(--c-ink); margin: 0 0 6px; }
.access-list { padding-left: 1.2em; margin: 14px 0; }
.access-map { min-height: 260px; }
.access-map-frame {
  display: block; width: 100%; height: 100%; min-height: 260px;
  border: 1px solid var(--c-line);
}

/* ---------- 最終CTA（濃色・締め） ---------- */
.section-cta-final { text-align: center; color: var(--c-white); background: var(--c-ink); }
.cta-final-lead { font-family: var(--font-latin); letter-spacing: .12em; margin: 0 0 10px; opacity: .9; }
.cta-final-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.7rem, 5vw, 2.6rem); margin: 0 0 28px; letter-spacing: .02em; }
.cta-final-title strong { color: var(--c-gold); }
.cta-final-note { font-size: .9rem; opacity: .85; margin: 16px 0 0; }
.cta-final-facts { margin: 22px 0 0; font-weight: 700; letter-spacing: .04em; opacity: .92; }
.cta-final-facts small { font-size: .62em; margin: 0 2px; opacity: .85; }

/* ---------- フッター ---------- */
.site-footer { background: var(--c-ink); color: #cfc9c2; font-size: .92rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; padding: 52px 24px 36px; }
.footer-logo { font-family: var(--font-display); font-weight: 900; font-size: 1.15rem; color: var(--c-white); margin: 0 0 6px; letter-spacing: .04em; line-height: 0; }
.footer-logo img { display: block; width: auto; height: 40px; }
.footer-inner .muted { color: #a39c94; }
.footer-contact-title { font-weight: 700; color: var(--c-gold); margin: 0 0 6px; }
.footer-contact p { margin: 2px 0; }
.footer-contact a { color: var(--c-white); }
/* tel: リンクはモバイルの推奨タップ領域（44px）を確保 */
.footer-contact a[href^="tel:"] { display: inline-flex; align-items: center; min-height: 44px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.12); }
.footer-legal .container { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; padding-block: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: #c2bbb3; text-decoration: none; font-size: .85rem; }
.footer-links a:hover { color: var(--c-white); text-decoration: underline; }
.footer-link-pending { color: #978f87; font-size: .85rem; }
.footer-link-pending small { font-size: .82em; opacity: .85; }
.footer-copy { margin: 0; font-size: .82rem; color: #908981; font-family: var(--font-latin); letter-spacing: .03em; }
/* 免責文言：規約リンク行の下に全幅で敷く */
.footer-disclaimer { flex-basis: 100%; order: 3; margin: 0; font-size: .78rem; line-height: 1.7; color: #908981; }

/* ---------- 追従CTA（モバイル：下部全幅バー） ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-top: 2px solid var(--c-ink); display: none; }
.sticky-cta .btn { width: 100%; }

/* ---------- 追従CTA（デスクトップ：右下フロート） ---------- */
/* ヒーロー内では非表示（JSがopacity/pointer-eventsを切替）。スクロールで下部に常駐。 */
.floating-cta {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  padding: .95em 1.6em; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: background-color .18s ease, color .18s ease, opacity .3s ease, transform .3s ease;
}
.floating-cta.is-shown { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ---------- バイヤー・マッチングサービス（新設：番号主役の3ステップ） ---------- */
.section-matching { background: var(--c-cream); }
.matching-steps {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 30px; counter-reset: matching;
}
.matching-step {
  position: relative; counter-increment: matching; text-align: left;
  border-top: 2px solid var(--c-ink); padding: 24px 8px 0 0;
}
.matching-step::after { content: ""; position: absolute; top: -2px; left: 0; width: 34px; height: 2px; background: var(--c-accent); }
/* アイコンチップは廃止し、大型ナンバーを主役に（メリット／ジャンルと統一） */
.matching-ico { display: none; }
.matching-step::before {
  content: counter(matching, decimal-leading-zero);
  display: block; font-family: var(--font-latin); font-weight: 800;
  font-size: 2.5rem; line-height: 1; color: var(--c-ink); letter-spacing: -.02em; margin-bottom: 16px;
}
.matching-step h3 { font-size: 1.16rem; margin: 0 0 10px; color: var(--c-ink); }
.matching-step p { margin: 0; font-size: .94rem; color: var(--c-ink-2); }
.matching-step strong { color: var(--c-accent); }
.matching-lead {
  max-width: 60ch; margin: 0 auto 30px; text-align: center;
  font-size: 1.02rem; line-height: 1.8; color: var(--c-ink);
}
.matching-cta { text-align: center; }
.matching-cta-note { margin: 12px 0 0; font-size: .86rem; }

/* =========================================================
   レスポンシブ
   ========================================================= */
/* VOICE：4列→2列は1080pxで切替（4列のまま狭めると引用文が窮屈になるため） */
@media (max-width: 1080px) {
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .merit-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  /* 2カラム時は左列の縦罫を消す */
  .stats-grid .stat-card:nth-child(odd) { border-left: 0; }
  .matching-steps { grid-template-columns: 1fr; row-gap: 32px; }
  .section { padding: 76px 0; }
}

@media (max-width: 920px) {
  .zone-grid { grid-template-columns: repeat(3, 1fr); }
  .buyer-list { grid-template-columns: repeat(3, 1fr); }
  .highlight-grid { grid-template-columns: repeat(3, 1fr); }
  .timetable-grid { grid-template-columns: 1fr; }
  .coevent-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* モバイル：1段ヘッダー（ロゴ＋短縮CTA＋ハンバーガー）。アンカー位置は --header-h に追従 */
  .header-inner { gap: 8px 10px; min-height: 50px; padding-block: 7px; }
  .header-logo img { height: 28px; }
  .voice-stats { grid-template-columns: 1fr 1fr; }
  .access-wrap { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; gap: 16px; }
  .zone-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .buyer-list { grid-template-columns: repeat(2, 1fr); }
  /* モバイル：ヘッダー実高は JS の --header-h で追従。
     縦余白は vh 連動（clamp）にして、表示領域が高いときは自然に広がり、低いときは詰める。
     → 中央に密集して上下が大きく空く“塊感”を防ぎ、どの高さでもバランス良く配置する。 */
  .hero-inner { justify-content: space-between; gap: clamp(20px, 4.4vh, 48px); padding-block: clamp(16px, 3vh, 40px); }
  /* コピー塊は上側の空間を使って配置（中身は縦中央寄せ）、情報バーは最下部に固定。
     → 縦に長い表示でも下に大きく空かず、塊が中央に密集して見えるのを防ぐ。 */
  .hero-copy { flex: 1 1 auto; justify-content: center; }
  /* ── 文字組み：強弱を効かせた階層（① 前置き=小 ② イベント名=中 ③ 価値提案=主役の大）── */
  .hero-badge { font-size: .72rem; margin: 0 0 clamp(13px, 2.6vh, 28px); }
  .hero-title-sub { font-size: .85rem; margin-bottom: clamp(5px, 1vh, 10px); }   /* 対象明示（アイブロウ） */
  .hero-title { font-size: 1.6rem; line-height: 1.24; margin: clamp(18px, 3.8vh, 34px) 0 clamp(14px, 2.8vh, 30px); } /* 二次：イベント名。上に余白を足しキャッチ一文と分離 */
  .hero-catch { margin: 0; }
  .hero-catch-lead { font-size: .85rem; margin-bottom: clamp(7px, 1.5vh, 14px); }
  .hero-catch-key { font-size: min(2.3rem, 8.8vw); line-height: 1.16; }          /* 主役：価値提案。nowrapで1行固定し幅に応じ縮小 */
  .hero-catch-tail { font-size: 1.16rem; margin-top: clamp(5px, 1vh, 10px); }
  .hero-actions { margin-top: clamp(16px, 3.4vh, 42px); }                          /* CTA は塊から離して際立たせる */
  /* 情報バー：左詰め＋ラベル/値を桁揃え（会期・会場・主催が縦に揃う）で読みやすく。
     カウントダウンは区切り線で分けて左寄せに。 */
  .hero-bar { flex-direction: column; align-items: stretch; gap: 11px; padding: 14px 16px; border-radius: 12px; text-align: left; }
  .hero-facts { flex-direction: column; align-items: stretch; gap: 9px; width: 100%; }
  .hero-facts li { padding: 0; border-right: 0; display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: baseline; }
  .hero-facts .label { display: block; margin: 0; text-align: left; font-size: .74rem; }
  .hero-facts .value { display: block; font-size: 1.04rem; line-height: 1.45; }
  .hero-countdown { width: 100%; justify-content: flex-start; gap: 7px 14px; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, .2); }
  /* カウントダウンの数字は他の行（値）と同じ大きさに揃える */
  .hero-countdown b { font-size: 1.04rem; }
  .hero-countdown .cd-label { font-size: .82rem; }
  .hero-countdown .cd-unit { font-size: .82rem; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .sticky-cta { display: block; }
  .floating-cta { display: none; }
  body { padding-bottom: 76px; }
  /* CTAは短縮（来場登録（無料））して1行に収める。「ビジネス」はハンバーガー化で省略済み */
  .header-cta { padding: .5em .9em; font-size: .82rem; min-height: 40px; }

  /* カード・表の内側余白を圧縮し、狭幅でも本文幅を確保 */
  .access-info { padding: 24px 20px; }
  .access-map, .access-map-frame { min-height: 220px; }
  .voice-card { padding: 28px 22px; }
  .coevent-body, .coevent-logobox { padding-inline: 20px; }
  .outline-table th, .outline-table td { padding: 14px 14px; }
  .outline-table th { width: 92px; }
  /* 数字・見出しの折返しを許可（特大文字が画面外に溢れないように） */
  .stat-num, .hero-facts .value { white-space: normal; }
}

/* VOICE：スマホ専用で登壇者カードと同じ横スクロール（1枚ずつ見せてスワイプ）。タブレット以上は grid のまま。
   justify は既定の flex-start（中央寄せにするとはみ出し時に先頭カードが左へ溢れて到達できないため） */
@media (max-width: 600px) {
  .voice-grid {
    display: flex; flex-wrap: nowrap; gap: 14px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x proximity; scroll-padding-left: 2px;
    -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
    padding-bottom: 4px;
  }
  .voice-card { flex: 0 0 84%; scroll-snap-align: start; }
}

@media (max-width: 480px) {
  .zone-grid, .highlight-grid, .buyer-list { grid-template-columns: 1fr 1fr; }
  .merit-grid { grid-template-columns: 1fr; row-gap: 32px; }
  /* 特大ナンバーを溢れさせないよう、狭幅では1カラムで全幅表示 */
  .stats-grid { grid-template-columns: 1fr; row-gap: 36px; }
  .stats-grid .stat-card { border-left: 0; padding-left: 0; padding-right: 0; }

  /* 小型端末：ロゴをさらに縮小し、CTA(ロゴ右)と確実に1段へ収める */
  .header-logo img { height: 25px; }
  .header-cta { padding: .46em .66em; font-size: .76rem; }

  .section { padding: 52px 0; }
  /* ヒーロー見出しサイズは ≤768px の階層設定を踏襲（ここでは上書きしない） */
  .hero-note { font-size: .84rem; }
  /* CTAボタンは狭幅で全幅化し、タップ領域を最大化 */
  .hero-actions .btn, .outline-cta .btn, .matching-cta .btn, .section-cta-final .btn, .seminar-cta .btn { width: 100%; }
  /* 全幅ボタンは横paddingを詰めて文字領域を確保（狭幅での折り返し防止） */
  .btn-lg { font-size: 1.02rem; padding: 1.1em 1.1em; }
  /* バイヤー名チップを縮小（横スクロール帯の高さを抑える） */
  .buyer-set li { font-size: .98rem; padding: 11px 18px; margin-right: 12px; }
  /* 併催ロゴの高さを抑えて窮屈さを解消 */
  .coevent-logobox { min-height: 78px; padding: 16px 18px; }
  .coevent-logo { max-height: 40px; }
  .coevent-logobox--badge { padding-block: 8px; }
  .coevent-logo--badge { max-height: 62px; }
  .coevent-textlogo-main { font-size: 1.18rem; }
  .coevent-textlogo-sub { font-size: .8rem; }
  /* セクション見出し下の余白を一段詰める */
  .section-head { margin-bottom: 32px; }
  .voice-stats { gap: 12px; }
}

/* 超小型端末（iPhone SE 等・360px以下）の最終調整 */
/* 狭幅端末（iPhone SE/mini系＝375px以下）はヘッダーCTAの「（無料）」を省略し1行を死守 */
@media (max-width: 384px) {
  .header-cta small { display: none; }
}

@media (max-width: 360px) {
  /* ロゴ＋CTA＋ハンバーガーを320pxでも1段に収める（さらに圧縮） */
  .header-inner { column-gap: 6px; }
  .header-logo img { height: 22px; }
  .header-cta { font-size: .72rem; padding: .42em .58em; }
  .nav-toggle { width: 38px; height: 38px; }
  /* 2カラムが窮屈なグリッドは1カラムへ */
  .zone-grid, .highlight-grid, .buyer-list { grid-template-columns: 1fr; }
  .hero-catch-key { font-size: 8.8vw; }  /* 1行固定（nowrap）に合わせ、狭幅でも収まる級数へ */
  .hero-actions .btn-lg { font-size: .95rem; padding-inline: .9em; }
  .hero-facts .value { font-size: 1rem; }
  .hero-countdown { gap: 6px 11px; }
  .hero-countdown b { font-size: 1rem; }
  .outline-table th { width: 78px; }
  .outline-table th, .outline-table td { padding: 12px 10px; }
}

/* 低めの画面（アドレスバー表示時の標準的なスマホ高さ）：vh余白を少し詰めて1画面に収める */
@media (max-width: 768px) and (max-height: 690px) {
  .hero-inner { gap: 16px; padding-block: 13px; }
  .hero-badge { margin-bottom: 13px; }
  .hero-title { margin-bottom: 13px; }
  .hero-catch-lead { margin-bottom: 7px; }
  .hero-actions { margin-top: 15px; }
}

/* 狭幅×低めの端末（SE/mini/360Android等）は折り返しが増えて縦が伸びるため、
   見出し・余白だけ少し圧縮して1画面に寄せる。390px以上の端末は余裕レイアウトのまま。 */
@media (max-width: 384px) and (max-height: 740px) {
  .hero-inner { gap: 15px; padding-block: 13px; }
  .hero-badge { margin-bottom: 11px; }
  .hero-title { font-size: 1.45rem; margin-bottom: 12px; }
  .hero-catch-lead { margin-bottom: 6px; }
  .hero-catch-key { font-size: min(2.05rem, 8.8vw); line-height: 1.14; }
  .hero-catch-tail { font-size: 1.05rem; margin-top: 5px; }
  .hero-actions { margin-top: 14px; }
  .hero-bar { gap: 8px; padding: 11px 14px; }
  .hero-facts { gap: 7px; }
}
@media (max-width: 384px) and (max-height: 600px) {
  /* さらに低い画面：本命見出しと余白をもう一段詰める */
  .hero-inner { gap: 11px; padding-block: 9px; }
  .hero-title { font-size: 1.32rem; margin-bottom: 9px; }
  .hero-catch-key { font-size: 1.85rem; }
  .hero-badge { margin-bottom: 8px; }
  .hero-actions { margin-top: 11px; }
}

/* スマホ（≤400px）：情報バーの値を少し詰め、長めの「会場」も1行に収める。
   → 会期・会場・主催の3行がすべて1行の同じ高さで揃い、主催前に空きが出るような不揃いを解消 */
@media (max-width: 400px) {
  .hero-facts .value { font-size: .95rem; }
}

/* ---------- スクロール連動の出現アニメーション（resol準拠の落ち着いたフェードアップ） ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ヒーロー背景のゆっくりズーム（写真差し替え後に効果大） */
.hero-bg { animation: heroZoom 24s ease-out forwards; transform-origin: center; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-bg { animation: none !important; transform: none !important; }
}
