/* ============================================================
   プラスパージャパン コーポレートサイト 共通CSS v4.0
   デザインコンセプト: 上品ミニマル × 高級感 × ファミリー親和
   参考: 国立美術館おでかけサイト + Claude.ai + 高級ホテルブランディング

   カラーパレット（v4.0 新ブランド）
   ─────────────────────────────────────────────
   ダークブラウン: #1F1B16（旧navy） — 文字・主要要素
   ゴールド    : #B68449（旧red）  — アクセント
   クリーム    : #FAF6EE — オフホワイトベース
   深クリーム  : #F0E9DC — セクション背景
   ベージュ    : #DCD3BF — ボーダー
   ピュア白    : #FFFFFF
   ─────────────────────────────────────────────

   フォント
   ─────────────────────────────────────────────
   見出し: Noto Serif JP 400-700（セリフ・上品）
   本文  : Noto Sans JP 400-600（読みやすさ）
   数字  : Inter / Roboto（モダン）
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

/* ---------- リセット & ベース ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ===== メインカラー（v5.0 ピュアホワイト × ペールブルー）===== */
  /* メイン文字・主要要素：ディープブルー */
  --navy:          #1E3A5F;  /* ディープブルー（旧ダークブラウン） */
  --navy-dark:     #0F1F33;  /* ネイビー濃 */
  --navy-light:    #3B5C82;  /* ミディアムブルー */
  --navy-muted:    #5C7A99;  /* グレーブルー */

  /* アクセント：薄い青 */
  --red:           #5B9BD5;  /* ペールブルー（旧ゴールド） */
  --red-dark:      #3D7BB2;  /* ミディアムブルー */
  --red-light:     #E8F1FA;  /* 極薄ブルー */

  /* ===== ベースカラー（白主体・うっすら青）===== */
  --white:         #FFFFFF;  /* ピュアホワイト */
  --off-white:     #F8FAFC;  /* ほぼ白（ごく僅かに青） */
  --light-gray:    #EEF3F8;  /* ライトブルーグレー */
  --mid-gray:      #C9D9E6;  /* ペールブルーグレー */

  /* ===== テキスト ===== */
  --text:          #1A2D44;
  --text-mid:      #5C7184;
  --text-light:    #8C9DAE;
  --text-muted:    #B5C2CE;

  /* ===== ボーダー・シャドウ（青系・柔らかい）===== */
  --border:        #DCE6F0;
  --border-light:  #EBF1F7;
  --shadow-sm:     0 1px 3px rgba(30, 58, 95, 0.04);
  --shadow-md:     0 4px 16px rgba(30, 58, 95, 0.08);
  --shadow-lg:     0 12px 36px rgba(30, 58, 95, 0.12);

  /* ===== 半径（やや丸く・優しく） ===== */
  --radius:        6px;
  --radius-md:     10px;
  --radius-lg:     14px;

  /* ===== トランジション（滑らか）===== */
  --transition:    0.32s cubic-bezier(0.4, 0, 0.2, 1);

  /* ===== 新規追加：セリフフォント変数 ===== */
  --font-serif:    'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --font-sans:     'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  --font-num:      'Inter', 'Roboto', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans',
               'Yu Gothic', 'YuGothic', 'Meiryo', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- ユーティリティ ---------- */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
/* 国立美術館サイト風の余裕ある余白（上品系） */
.section    { padding: 104px 0; }
.section-sm { padding: 60px 0; }
.section-bg { background: var(--off-white); }
.section-light { background: var(--light-gray); }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
}
.text-center { text-align: center; }
.text-navy   { color: var(--navy); }
.text-red    { color: var(--red); }
.fw-bold     { font-weight: 700; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ---------- 見出し（国立美術館風・上品ミニマル） ---------- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 60px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
/* 細い1pxラインの上品なアンダーライン */
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 1px;
  background: var(--navy);
  opacity: 0.5;
}
.section-title::before { display: none; }

.section-title .sub {
  display: block;
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
/* 旧 btn-teal → 濃紺に変換 */
.btn-teal {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-teal:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
/* 旧 btn-navy → そのまま濃紺 */
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.85);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}
.btn-outline-red {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 40px; font-size: 0.95rem; }
.btn-sm { padding: 9px 20px; font-size: 0.8rem; }
.btn-block { display: flex; width: 100%; }
/* ボタン内絵文字はそのまま許容 */

/* ---------- カード（国立美術館風・上品） ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.04),
    0 12px 32px -12px rgba(13, 33, 67, 0.12);
}
.card-body { padding: 22px 22px 24px; }
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover .card-img {
  transform: scale(1.04);
}
.card { position: relative; }
.card .card-img-wrap {
  overflow: hidden;
}

/* ---------- バッジ ---------- */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius);
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-orange  { background: var(--red);   color: var(--white); }
.badge-navy    { background: var(--navy);  color: var(--white); }
.badge-outline { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; }
.badge-sage    { background: #388E3C; color: var(--white); }
.badge-gold    { background: #F57F17; color: var(--white); }

/* ---------- ヘッダー ---------- */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 12px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.logo-main {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 0.6rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
}
.logo-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--radius);
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

/* グローバルナビ */
#gnav ul {
  display: flex;
  align-items: center;
  gap: 0;
}
#gnav a {
  display: block;
  padding: 8px 11px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 0;
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
}
#gnav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 11px; right: 11px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
#gnav a:hover,
#gnav a.active {
  color: var(--navy);
}
#gnav a:hover::after,
#gnav a.active::after {
  transform: scaleX(1);
}
/* お問い合わせボタン（赤）は下線なし */
#gnav a.btn::after { display: none; }

.header-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.header-tel {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.header-tel span {
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

/* ハンバーガー */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}
#hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* SP ドロワー */
#sp-nav {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: var(--white);
  box-shadow: -2px 0 24px rgba(0, 0, 0, 0.14);
  padding: 80px 0 40px;
  z-index: 1050;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}
#sp-nav.open { transform: translateX(0); }
#sp-nav ul li {
  border-bottom: 1px solid var(--border-light);
}
#sp-nav ul li a {
  display: block;
  padding: 14px 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}
#sp-nav ul li a:hover {
  color: var(--navy);
  background: var(--off-white);
}
#sp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1040;
}

body { padding-top: 64px; }

/* ---------- パンくず ---------- */
.breadcrumb {
  padding: 11px 0;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  color: var(--text-light);
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.breadcrumb li + li::before { content: '/'; margin-right: 4px; color: var(--text-muted); }
.breadcrumb a:hover { color: var(--navy); text-decoration: underline; }

/* ============================================================
   Hero Cinema（v6.0 シネマ型・全画面・スローズーム背景）
   ============================================================ */
.hero-cinema {
  position: relative;
  width: 100%;
  /* 2026-05-13 根本対応：枠を画像と同じ16:9に固定→画像が等倍フィット・切れなし */
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  max-height: none;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* 青空グラデ：cinema-bg のクロスフェード切り替わり時も青空が連続して見える */
  background: linear-gradient(180deg, #B6E5FF 0%, #87CEEB 40%, #6BBCD8 75%, #5BA8D4 100%);
  margin-top: 0;
  padding-top: 64px;
  box-sizing: border-box;
}
.cinema-bg { position: absolute; inset: 0; }
.cinema-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.0);
  animation: cinema-zoom 27s ease-out infinite;
  will-change: opacity, transform;
  filter: brightness(1.10) saturate(1.08) contrast(1.0);
  /* stacking context を明示：slide-sp-cta が cinema-overlay より確実に上に来る */
  isolation: isolate;
}
.cinema-bg-1 { animation-delay: 0s; }
.cinema-bg-2 { animation-delay: 9s; }
.cinema-bg-3 { animation-delay: 18s; }
/* ③店舗写真：PCはデフォルト（center center / cover）に戻す
   2026-05-13 revert：野村さんからの指示「変なのは携帯の画像のみ」
   →PC側の調整は元に戻し、SPだけ縦長専用画像で差替え */
.cinema-bg-3 {
  background-size: cover;
  background-position: center center;
}
/* ============================================================
   SUMMER BANNER 2026（規定サイズ版・2026-05-13 sized）
   PC：summer-campaign-2026-pc.jpg（1920x1080・16:9 規定サイズ）
   SP：summer-campaign-2026-mobile.jpg（360x640・9:16 規定サイズ）
   ヒーロー枠は cover で全面表示
   ============================================================ */
.summer-banner {
  background: linear-gradient(180deg, #B6E5FF 0%, #87CEEB 45%, #6BBCD8 100%);
  overflow: hidden;
}
/* 画像レイヤー：ヒーロー枠を全面に広げる（cover） */
.summer-banner .sb-image,
.summer-banner .sb-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.summer-banner .sb-image img {
  object-fit: cover;
  /* 新画像（1.79:1）はヒーロー（1.87:1）とほぼ一致。
     主要要素（タイトル＋車4台）は中央上下にバランス配置 → center center で全要素フィット */
  object-position: center center;
}
@media (max-width: 768px) {
  .summer-banner .sb-image img {
    object-fit: cover;
    /* スマホは専用縦長画像（1144x2048・0.559:1）を <source> で読込。
       スマホ枠（375x680→0.55:1）とほぼ一致 → 主要要素（タイトル/車4台/椰子/太陽/ハイビスカス/近日公開バッジ）全て見切れず表示 */
    object-position: center center;
  }
}
.summer-banner .sb-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #4FB3E5 0%, #76C5F5 35%, #B6E5FF 75%, #E0F4FF 100%);
}
/* 雲（楕円グラデで再現） */
.summer-banner .sb-cloud {
  position: absolute;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  filter: blur(0.5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.summer-banner .sb-cloud::before,
.summer-banner .sb-cloud::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
}
.summer-banner .sb-cloud-1 {
  top: 8%; left: 14%;
  width: 14vw; height: 4vw;
  min-width: 120px; min-height: 36px;
  animation: sb-drift 28s linear infinite;
}
.summer-banner .sb-cloud-1::before { top: -45%; left: 20%; width: 60%; height: 130%; }
.summer-banner .sb-cloud-1::after  { top: -25%; left: 60%; width: 45%; height: 110%; }
.summer-banner .sb-cloud-2 {
  top: 22%; right: 16%;
  width: 10vw; height: 3vw;
  min-width: 90px; min-height: 26px;
  animation: sb-drift 36s linear infinite reverse;
}
.summer-banner .sb-cloud-2::before { top: -45%; left: 25%; width: 55%; height: 125%; }
.summer-banner .sb-cloud-3 {
  top: 5%; left: 48%;
  width: 9vw; height: 2.5vw;
  min-width: 80px; min-height: 22px;
  animation: sb-drift 40s linear infinite;
}
.summer-banner .sb-cloud-3::before { top: -50%; left: 30%; width: 50%; height: 130%; }
@keyframes sb-drift {
  0%   { transform: translateX(-20px); }
  50%  { transform: translateX(20px); }
  100% { transform: translateX(-20px); }
}

/* 太陽 */
.summer-banner .sb-sun {
  position: absolute;
  top: 8%; left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 9vw, 130px);
  height: clamp(80px, 9vw, 130px);
  border-radius: 50%;
  background: radial-gradient(circle, #FFF8B5 0%, #FCD34D 45%, #FB923C 100%);
  box-shadow:
    0 0 60px rgba(252,211,77,0.55),
    0 0 100px rgba(251,146,60,0.30);
  z-index: 1;
}

/* 椰子の木 */
.summer-banner .sb-palm {
  position: absolute;
  width: clamp(90px, 11vw, 150px);
  height: auto;
  bottom: 25%;
  z-index: 3;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.summer-banner .sb-palm-l { left: 2%; transform: rotate(-6deg); }
.summer-banner .sb-palm-r { right: 2%; transform: rotate(6deg) scaleX(-1); }

/* 中央タイトル */
.summer-banner .sb-title-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  text-align: center;
  z-index: 4;
  pointer-events: none;
}
.summer-banner .sb-title-en {
  font-family: "Inter", "Anton", "Noto Sans JP", sans-serif;
  font-size: clamp(46px, 9vw, 110px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
  text-shadow: 4px 4px 0 #FFFFFF, 6px 6px 0 #1E3A5F, 8px 10px 18px rgba(0,0,0,0.25);
}
.summer-banner .sb-title-en span {
  display: inline-block;
  transform-origin: center bottom;
  animation: sb-bounce 3.6s ease-in-out infinite;
}
.summer-banner .sb-title-en span:nth-child(1) { animation-delay: 0s; }
.summer-banner .sb-title-en span:nth-child(2) { animation-delay: 0.1s; }
.summer-banner .sb-title-en span:nth-child(3) { animation-delay: 0.2s; }
.summer-banner .sb-title-en span:nth-child(4) { animation-delay: 0.3s; }
.summer-banner .sb-title-en span:nth-child(5) { animation-delay: 0.4s; }
.summer-banner .sb-title-en span:nth-child(6) { animation-delay: 0.5s; }
@keyframes sb-bounce {
  0%, 70%, 100% { transform: translateY(0); }
  35%           { transform: translateY(-12px); }
}
.summer-banner .sb-title-year {
  display: inline-block;
  margin-top: 6px;
  font-family: "Inter", monospace;
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 900;
  color: #FFFFFF;
  background: linear-gradient(135deg, #C62828, #FB923C);
  padding: 4px 18px;
  border-radius: 8px;
  letter-spacing: 0.10em;
  box-shadow: 0 6px 16px rgba(198,40,40,0.35);
  transform: rotate(-2deg);
}

/* COMING SOON 用：6・7・8 月を大きく表示 */
.summer-banner .sb-title-coming {
  font-size: clamp(28px, 4vw, 48px) !important;
  line-height: 1.1;
}
.summer-banner .sb-title-space {
  display: inline-block;
  width: 0.4em;
}
.summer-banner .sb-title-months {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
  margin: 16px 0 8px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 900;
  color: #FFFFFF;
  background: linear-gradient(135deg, #C62828 0%, #FB923C 50%, #FCD34D 100%);
  padding: 12px 28px 8px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(198,40,40,0.45), inset 0 -4px 0 rgba(0,0,0,0.15);
  transform: rotate(-1deg);
  letter-spacing: 0.02em;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.18), 4px 4px 12px rgba(0,0,0,0.25);
}
.summer-banner .sb-month {
  font-size: clamp(72px, 11vw, 144px);
  line-height: 0.95;
  display: inline-block;
  animation: sb-month-pulse 2.4s ease-in-out infinite;
}
.summer-banner .sb-month-6 { animation-delay: 0s; }
.summer-banner .sb-month-7 { animation-delay: 0.3s; }
.summer-banner .sb-month-8 { animation-delay: 0.6s; }
@keyframes sb-month-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.summer-banner .sb-month-dot {
  font-size: clamp(40px, 6vw, 80px);
  color: #FCD34D;
  margin: 0 0.05em;
  line-height: 1;
}
.summer-banner .sb-month-unit {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-left: 0.15em;
  align-self: center;
}
@media (max-width: 768px) {
  .summer-banner .sb-title-coming {
    font-size: clamp(24px, 6vw, 36px) !important;
  }
  .summer-banner .sb-title-months {
    padding: 8px 18px 6px;
  }
  .summer-banner .sb-month {
    font-size: clamp(60px, 18vw, 100px);
  }
  .summer-banner .sb-month-dot {
    font-size: clamp(32px, 10vw, 56px);
  }
  .summer-banner .sb-month-unit {
    font-size: clamp(22px, 6vw, 32px);
  }
}
.summer-banner .sb-title-jp {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(14px, 1.6vw, 19px);
  font-weight: 700;
  color: #1E3A5F;
  margin: 14px 0 4px;
  background: rgba(255,255,255,0.85);
  padding: 4px 16px;
  border-radius: 999px;
  display: inline-block;
}
.summer-banner .sb-title-period {
  font-family: "Inter", monospace;
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 800;
  color: #C62828;
  letter-spacing: 0.32em;
  margin: 4px 0 0;
}

/* 左右バブル（編集可能プレースホルダ） */
.summer-banner .sb-bubble {
  position: absolute;
  width: clamp(150px, 17vw, 210px);
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,0.96);
  border: 4px solid #C62828;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.22), 0 0 0 4px rgba(252,211,77,0.85);
  z-index: 5;
  pointer-events: auto;
  transition: transform 0.4s ease;
}
.summer-banner .sb-bubble-left {
  top: clamp(60px, 10vh, 110px);
  left: clamp(14px, 3vw, 60px);
  transform: rotate(-5deg);
}
.summer-banner .sb-bubble-right {
  top: clamp(60px, 10vh, 110px);
  right: clamp(14px, 3vw, 60px);
  transform: rotate(5deg);
}
.summer-banner .sb-bubble:hover { transform: rotate(0deg) scale(1.04); }
.summer-banner .sb-bubble-tag {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #FFFFFF;
  background: linear-gradient(135deg, #C62828, #E53935);
  padding: 3px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  box-shadow: 0 3px 8px rgba(198,40,40,0.40);
}
.summer-banner .sb-bubble-icon {
  width: 32px;
  height: 32px;
  color: #1E3A5F;
  margin-bottom: 4px;
}
.summer-banner .sb-bubble-icon svg { width: 100%; height: 100%; }
.summer-banner .sb-bubble-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 800;
  color: #1E3A5F;
  margin: 0 0 4px;
  line-height: 1.32;
  letter-spacing: -0.01em;
}
.summer-banner .sb-bubble-desc {
  font-size: clamp(10px, 0.85vw, 11px);
  font-weight: 600;
  color: #475569;
  margin: 0;
  line-height: 1.4;
}

/* 中央下の成約帯 */
.summer-banner .sb-strip {
  position: absolute;
  left: 50%;
  bottom: clamp(110px, 18vh, 180px);
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C62828 0%, #E53935 100%);
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 800;
  padding: 8px 22px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(198,40,40,0.35);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
}
.summer-banner .sb-strip strong {
  color: #FCD34D;
  font-weight: 900;
}
.summer-banner .sb-strip-flag {
  color: #FCD34D;
  font-size: 1.05em;
}

/* 駐車場の車並び */
.summer-banner .sb-cars {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(110px, 16vh, 160px);
  background: linear-gradient(180deg, #B6E5FF 0%, #E0F4FF 35%, #cfd8dc 75%, #b0bec5 100%);
  z-index: 2;
  overflow: hidden;
}
.summer-banner .sb-cars::before {
  content: "";
  position: absolute;
  top: -8px; left: 0; right: 0;
  height: 12px;
  background: repeating-linear-gradient(90deg, #ef4444 0 16px, #ffffff 16px 32px);
  opacity: 0.85;
}
.summer-banner .sb-cars-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
}

/* レスポンシブ */
@media (max-width: 880px) {
  .summer-banner .sb-bubble {
    width: clamp(110px, 26vw, 150px);
    border-width: 3px;
    padding: 11px;
  }
  .summer-banner .sb-bubble-icon { width: 26px; height: 26px; }
  .summer-banner .sb-bubble-tag { font-size: 9.5px; padding: 2px 8px; }
  .summer-banner .sb-bubble-title { font-size: 10.5px; }
  .summer-banner .sb-bubble-desc { font-size: 9.5px; }
  .summer-banner .sb-palm { width: 80px; }
  .summer-banner .sb-strip { font-size: 11px; padding: 6px 16px; bottom: 95px; }
  .summer-banner .sb-cars { height: 100px; }
}

/* ============================================================
   ジムニー ノマド入荷キャンペーン（純HTML/CSS）
   左右に2台の写真＋中央に大きな案内テキスト
   ============================================================ */
.nomad-banner {
  background: linear-gradient(135deg, #F0F6FC 0%, #E0F2FE 45%, #FEF3C7 100%);
  overflow: hidden;
}
.nb-photo {
  position: absolute;
  top: 0; bottom: 0;
  width: 36%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nb-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.05) saturate(1.06) contrast(1.0);
}
.nb-photo-l {
  left: 3%;
}
.nb-photo-l img {
  object-position: right center;
}
.nb-photo-r {
  right: 3%;
}
.nb-photo-r img {
  object-position: left center;
}
.nb-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 60% at 50% 50%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.40) 70%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.nb-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
  padding: 0 20px;
  color: #0F172A;
}
.nb-tag {
  display: inline-block;
  font-family: "Inter", "Noto Sans JP", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: #C62828;
  border: 1px solid rgba(198,40,40,0.40);
  background: rgba(255,255,255,0.85);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nb-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 0 14px;
  line-height: 0.95;
}
.nb-title-en {
  font-family: "Inter", sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: 0.30em;
  color: #1E3A5F;
}
.nb-title-em {
  font-family: "Inter", "Anton", sans-serif;
  font-size: clamp(48px, 7.5vw, 90px);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #C62828 0%, #FB923C 50%, #FCD34D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 12px rgba(198,40,40,0.20);
}
.nb-stock {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: 0.05em;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nb-stock strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C62828;
  color: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 900;
  padding: 8px 22px 10px;
  letter-spacing: 0.12em;
  box-shadow: 0 8px 22px rgba(198,40,40,0.40);
  position: relative;
}
.nb-stock strong::before {
  content: "●";
  font-size: 0.6em;
  color: #FFFFFF;
  animation: nb-stock-pulse 1.6s ease-in-out infinite;
}
@keyframes nb-stock-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
@media (prefers-reduced-motion: reduce) {
  .nb-stock strong::before { animation: none; }
}

.nb-features {
  display: flex;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.nb-features li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 1.35vw, 16px);
  font-weight: 700;
  color: #0D2143;
  background: #FFFFFF;
  border: 2px solid #0D2143;
  padding: 10px 18px;
  border-radius: 0;
  box-shadow: 0 6px 14px rgba(15,23,42,0.10);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nb-features li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #C62828;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}
.nb-features li span {
  color: #C62828;
  font-weight: 900;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  margin-right: 2px;
}
.nb-cta {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 500;
  color: #475569;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.nb-cta strong {
  color: #C62828;
  font-weight: 700;
  border-bottom: 1px dashed rgba(198,40,40,0.55);
  padding-bottom: 1px;
}
.nb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #0F172A;
  background: linear-gradient(135deg, #FCD34D 0%, #FB923C 100%);
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(252,211,77,0.30);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nb-cta-btn svg {
  width: 16px; height: 16px;
  transition: transform 0.3s ease;
}
.nb-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(251,146,60,0.50);
}
.nb-cta-btn:hover svg { transform: translateX(4px); }

@media (max-width: 880px) {
  .nb-photo { width: 28%; opacity: 0.55; }
  .nb-tag { font-size: 9.5px; margin-bottom: 12px; }
  .nb-features { gap: 8px; margin-bottom: 16px; }
  .nb-features li { padding: 5px 12px; font-size: 11px; }
  .nb-cta { font-size: 12px; }
  .nb-cta-btn { padding: 10px 22px; font-size: 13px; }
}
@media (max-width: 540px) {
  .nb-photo { width: 22%; opacity: 0.40; }
  .nb-overlay {
    background:
      radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.65) 100%);
  }
}
@keyframes cinema-zoom {
  0%        { opacity: 0; transform: scale(1.0); }
  4%        { opacity: 1; }
  30%       { opacity: 1; }
  33%       { opacity: 0; transform: scale(1.03); }
  100%      { opacity: 0; transform: scale(1.0); }
}
.cinema-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(15,31,51,0.50) 0%, rgba(15,31,51,0.28) 50%, rgba(15,31,51,0.12) 100%),
    linear-gradient(to top, rgba(15,31,51,0.32) 0%, transparent 45%);
}
.cinema-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  padding: 0 clamp(20px, 5vw, 64px);
  margin: 0 auto;
}

.cinema-eyebrow-h1 {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #FCD34D;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  animation: cinema-fade-up 0.8s ease 0.18s both;
}

/* CTA下のノート（無料相談 + LINE導線） */
.cinema-cta-note {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
  animation: cinema-fade-up 0.9s ease 0.7s both;
}
.cinema-cta-sep {
  color: rgba(255, 255, 255, 0.30);
}
.cinema-cta-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4ADE80;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 222, 128, 0.45);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.cinema-cta-line:hover {
  color: #FCD34D;
  border-color: #FCD34D;
}
.cinema-cta-line svg { flex-shrink: 0; }

.cinema-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 500;
  animation: cinema-fade-up 0.8s ease 0.1s both;
  max-width: 100%;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cinema-trust-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.cinema-trust-badge strong { font-weight: 800; color: #FCD34D; padding: 0 2px; }
.cinema-trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  position: relative;
  flex-shrink: 0;
}
.cinema-trust-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.4);
  animation: live-pulse-ring 1.8s ease-in-out infinite;
}

.cinema-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55);
  animation: cinema-fade-up 0.9s ease 0.25s both;
}
.cinema-title-accent {
  color: #FCD34D;
  position: relative;
  display: inline-block;
}

.cinema-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 640px;
  animation: cinema-fade-up 0.9s ease 0.40s both;
}

.cinema-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: cinema-fade-up 0.9s ease 0.55s both;
}
.cinema-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.04em;
  cursor: pointer;
}
.cinema-btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.cinema-btn-primary:hover {
  background: #FCD34D;
  color: var(--navy-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(252, 211, 77, 0.40);
}
.cinema-btn-primary svg { transition: transform 0.3s ease; }
.cinema-btn-primary:hover svg { transform: translateX(6px); }
.cinema-btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.85);
}
.cinema-btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.cinema-scroll {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-num);
  font-size: 0.7rem;
  letter-spacing: 0.30em;
  text-align: center;
  z-index: 10;
}
.cinema-scroll span {
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.55);
  margin: 0 auto 10px;
  animation: cinema-scroll-line 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cinema-scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%      { transform: scaleY(0.4) translateY(20px); opacity: 0.2; }
}
@keyframes cinema-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* クイック在庫検索パネル（ヒーロー下部に被せる） */
.cinema-search {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(50%);
  z-index: 20;
  padding: 0 24px;
}
.cinema-search-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cinema-search-form {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 31, 51, 0.30);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.cinema-search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.cinema-search-field label {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.06em;
}
.cinema-search-field select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%231E3A5F'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.cinema-search-field select:hover { border-color: var(--red); background-color: var(--white); }
.cinema-search-field select:focus { border-color: var(--red); background-color: var(--white); box-shadow: 0 0 0 3px rgba(91, 155, 213, 0.15); }
.cinema-search-btn {
  background: var(--navy);
  color: var(--white);
  border: 0;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.cinema-search-btn:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(91, 155, 213, 0.40);
}

/* レスポンシブ */
@media (max-width: 900px) {
  .cinema-search-form {
    grid-template-columns: 1fr 1fr;
  }
  .cinema-search-btn { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .cinema-search { display: none; }
  .cinema-scroll { display: none; }

  /* ============================================================
     スマホ ヒーロー v8.0 2026-05-12 ゼロベース再設計
     ──────────────────────────────────────────────────────────
     上58%：装飾スライド（サマー青空 / ノマド写真 / 店舗写真）
     下42%：「家族の時間を、いい車で。」+ CTA
             背景 = 青空グラデの延長（濃紺禁止）
     上下境界：透明→空色で自然に溶かす（視覚的1枚絵）
     CTA  ：PCと同じ 白ボタン（紺文字） + 白枠ゴーストボタン（白文字）
     ============================================================ */

  /* ── セクション全体 ─────────────────────────────────────── */
  .hero-cinema {
    position: relative;
    /* 2026-05-13 根本対応：枠を画像と同じ9:16に固定→画像が等倍フィット・切れなし */
    aspect-ratio: 9 / 16;
    height: auto;
    min-height: 0;
    max-height: none;
    margin-top: 0;
    padding: 0;
    display: block;
    overflow: hidden;
  }

  /* ── 装飾スライド：枠いっぱい（画像をフル表示）─────────── */
  .cinema-bg {
    position: absolute;
    inset: 0;
    height: 100%;
    overflow: hidden;
  }

  /* ── オーバーレイ：枠いっぱい・下半分でテキスト視認性を確保 ── */
  .cinema-overlay {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 2;
    /* 上部は透明（画像主役）、下40%にかけて濃紺→より濃紺で文字を可読化 */
    background: linear-gradient(
      to bottom,
      rgba(15,31,51,0.00) 0%,
      rgba(15,31,51,0.00) 55%,
      rgba(15,31,51,0.45) 78%,
      rgba(15,31,51,0.72) 100%
    );
  }

  /* ── テキスト＋CTA：画像の上に重ねる（画像をフル表示するため）
       2026-05-13 根本対応：cinema-overlay の下部濃紺グラデで可読性を確保
       cinema-content 自体は背景を持たず、画像の主役性を最大化
       ─────────────────────────────────────────────────────── */
  .cinema-content {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;  /* 下詰め */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;  /* 中身に応じて伸縮 */
    z-index: 15;
    padding: 24px 22px 28px;  /* 上はオーバーレイで可読性確保、コンパクトに */
    background: transparent;  /* 画像をフル表示するため透明 */
    box-shadow: none;
  }

  /* ── eyebrow：黄バッジ風（背景＋枠で目立たせる）─────────── */
  .cinema-eyebrow-h1 {
    display: inline-block;
    color: #FFFFFF !important;
    background: rgba(252,211,77,0.28) !important;
    border: 1px solid rgba(252,211,77,0.70) !important;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
    animation: none;
  }

  /* ── メインタイトル：白文字＋黄アクセント・少し大きめ─── */
  .cinema-title {
    font-size: clamp(1.6rem, 6.4vw, 2.1rem);
    color: #FFFFFF !important;
    font-weight: 700;
    text-shadow: 0 3px 14px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.35);
    margin-bottom: 14px;
    line-height: 1.32;
    letter-spacing: 0.03em;
    animation: none;
  }
  .cinema-title-accent {
    color: #FCD34D !important;
    -webkit-text-fill-color: #FCD34D !important;
    text-shadow: 0 3px 16px rgba(252,211,77,0.40), 0 2px 6px rgba(0,0,0,0.40);
  }

  /* ── サブテキスト：PC同じ改行構造で読みやすく ─────────── */
  .cinema-subtitle {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.96) !important;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 100%;
    animation: none;
    text-shadow: 0 1px 3px rgba(0,0,0,0.35);
    display: block;
    overflow: visible;
  }
  .cinema-subtitle br { display: inline !important; }

  /* ── CTA：縦並び・フル幅 ────────────────────────────────── */
  .cinema-cta {
    flex-direction: column;
    gap: 9px;
    width: 100%;
    animation: none;
  }
  .cinema-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.92rem;
    flex: none;
    min-width: 0;
    border-radius: 0;  /* PSJブランド：シャープ */
  }

  /* プライマリ：PCと同じ 白ボタン（紺文字） */
  .cinema-btn-primary {
    background: #FFFFFF !important;
    color: #1E3A5F !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.20);
  }
  .cinema-btn-primary:hover,
  .cinema-btn-primary:active {
    background: #F0F8FF !important;
    color: #1E3A5F !important;
    transform: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
  .cinema-btn-primary svg {
    stroke: #C62828;  /* 矢印だけ赤 */
  }

  /* ゴースト：PCと同じ 白枠＋白文字 */
  .cinema-btn-ghost {
    background: transparent !important;
    color: #FFFFFF !important;
    border: 2px solid rgba(255,255,255,0.85) !important;
    font-size: 0.88rem;
    padding: 12px 20px;
  }
  .cinema-btn-ghost:hover,
  .cinema-btn-ghost:active {
    background: rgba(255,255,255,0.15) !important;
    border-color: #FFFFFF !important;
  }

  /* trust-badge：スペース確保のため非表示 */
  .cinema-trust-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-cinema {
    /* 2026-05-13 根本対応：aspect-ratio 9/16 を維持（高さは width × 16/9 で自動算出） */
    aspect-ratio: 9 / 16;
    height: auto;
    min-height: 0;
    padding: 0;
  }
  .cinema-content {
    padding: 16px 18px 24px;
  }
  .cinema-title {
    font-size: clamp(1.4rem, 6.5vw, 1.8rem);
  }
  .cinema-btn {
    padding: 13px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .cinema-eyebrow-h1 {
    font-size: 0.63rem;
    letter-spacing: 0.18em;
  }
  .cinema-title {
    font-size: 1.35rem;
  }
  .cinema-subtitle {
    font-size: 0.70rem;
  }
}

/* ============================================================
   slide-sp-cta：各スライド専用CTAブロック（スマホ専用）
   PC(769px以上)では非表示。スマホでは各スライド内に固定表示。
   ============================================================ */
.slide-sp-cta {
  display: none; /* PCでは非表示 */
}

@media (max-width: 768px) {
  /* 全スライド共通：スライド内下部に固定配置 */
  .slide-sp-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 16px 20px 24px;
    text-align: center;
  }

  /* サマーバナー用：明るい背景の下に表示するため白背景グラデ */
  .slide-sp-cta--summer {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.82) 25%,
      rgba(255,255,255,0.96) 100%
    );
  }

  /* ノマドバナー用 */
  .slide-sp-cta--nomad {
    background: linear-gradient(
      to bottom,
      rgba(240,246,252,0) 0%,
      rgba(240,246,252,0.80) 25%,
      rgba(240,246,252,0.97) 100%
    );
  }

  /* 店舗写真用：暗い背景の下に表示するため暗グラデ */
  .slide-sp-cta--store {
    background: linear-gradient(
      to bottom,
      rgba(13,33,67,0) 0%,
      rgba(13,33,67,0.72) 30%,
      rgba(13,33,67,0.95) 100%
    );
    padding: 24px 20px 32px;
  }

  /* ラベルテキスト（サマー・ノマド用） */
  .slide-sp-label {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #1E3A5F;
    letter-spacing: 0.06em;
    margin: 0 0 4px;
    line-height: 1.4;
  }
  .slide-sp-cta--nomad .slide-sp-label {
    color: #1E3A5F;
  }

  /* 店舗スライド用：アイブロウ */
  .slide-sp-eyebrow {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.80);
    letter-spacing: 0.22em;
    margin: 0 0 6px;
    text-transform: uppercase;
  }

  /* 店舗スライド用：メインキャッチコピー */
  .slide-sp-title {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.6rem, 6.8vw, 2.2rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.22;
    letter-spacing: 0.03em;
    text-shadow: 0 3px 16px rgba(0,0,0,0.65);
    margin: 0 0 14px;
  }
  .slide-sp-title span {
    color: #FCD34D;
  }

  /* ボタン共通 */
  .slide-sp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    padding: 15px 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.25s ease;
    line-height: 1;
  }

  /* 赤ボタン（メイン） */
  .slide-sp-btn--red {
    background: #C62828;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(198,40,40,0.35);
  }
  .slide-sp-btn--red:hover,
  .slide-sp-btn--red:active {
    background: #a51d1d;
    transform: translateY(-1px);
  }

  /* 白ボタン（店舗写真上のメインCTA） */
  .slide-sp-btn--white {
    background: #FFFFFF;
    color: #0D2143;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }
  .slide-sp-btn--white:hover,
  .slide-sp-btn--white:active {
    background: #F1F5F9;
    transform: translateY(-1px);
  }

  /* ゴーストボタン（サブ） */
  .slide-sp-btn--ghost {
    background: transparent;
    color: #1E3A5F;
    border: 2px solid rgba(30,58,95,0.55);
    font-size: 0.88rem;
    padding: 12px 20px;
  }
  .slide-sp-cta--store .slide-sp-btn--ghost {
    color: rgba(255,255,255,0.88);
    border-color: rgba(255,255,255,0.55);
  }
  .slide-sp-btn--ghost:hover,
  .slide-sp-btn--ghost:active {
    background: rgba(30,58,95,0.08);
  }
  .slide-sp-cta--store .slide-sp-btn--ghost:hover {
    background: rgba(255,255,255,0.12);
  }

  /* slide-sp-cta は今回の縦2分割設計では使用しない（HTML側も削除済） */
}

/* ============================================================
   スマホ向け：サマーバナー(cinema-bg-1) / ノマドバナー(cinema-bg-2)
   ============================================================ */
@media (max-width: 768px) {
  /* サマーバナー：椰子は下に配置・大きめ（地面から生える感じ） */
  .summer-banner .sb-palm {
    width: 110px;
    opacity: 0.92;
    top: auto !important;
    bottom: 30px !important;
  }
  .summer-banner .sb-palm-l { left: -16px; }
  .summer-banner .sb-palm-r { right: -16px; }
  .summer-banner .sb-sun { width: 60px; height: 60px; top: 6%; }
  /* タイトルを上エリア中央に配置（上エリア55%の真ん中≒画面全体の27%） */
  .summer-banner .sb-title-wrap {
    top: 50%;       /* 上エリア内(height:55%)の中央 = position:absoluteはその親基準 */
    padding: 0 10px;
    transform: translate(-50%, -50%); /* 中央揃え */
  }
  /* バブル：PCと同じく両端に正円表示・内部はスッキリ2要素のみ */
  .summer-banner .sb-bubble {
    display: flex !important;
    width: 90px !important;
    height: 90px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    border-width: 2px;
    padding: 8px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.18), 0 0 0 2px rgba(252,211,77,0.85);
    overflow: hidden;
    align-items: center;
    justify-content: center;
  }
  .summer-banner .sb-bubble-left { left: 4px; top: 5%; }
  .summer-banner .sb-bubble-right { right: 4px; top: 5%; }
  /* アイコンと desc は窮屈の原因なので非表示。 タグ＋タイトルだけ */
  .summer-banner .sb-bubble-icon { display: none !important; }
  .summer-banner .sb-bubble-desc { display: none !important; }
  .summer-banner .sb-bubble-tag {
    font-size: 7.5px !important;
    padding: 2px 7px !important;
    margin: 0 0 6px !important;
    line-height: 1.1 !important;
  }
  .summer-banner .sb-bubble-title {
    font-size: 9.5px !important;
    line-height: 1.25 !important;
    margin: 0 !important;
    text-align: center;
  }
  /* COMING SOON テキスト：上エリア内に収まるサイズ */
  .summer-banner .sb-title-coming {
    font-size: clamp(20px, 5.5vw, 30px) !important;
    letter-spacing: -0.02em;
  }
  /* 6・7・8 月の大数字：コンパクト化 */
  .summer-banner .sb-month {
    font-size: clamp(44px, 13vw, 72px);
  }
  .summer-banner .sb-title-months {
    padding: 8px 18px 6px;
    margin: 8px 0 4px;
    border-radius: 10px;
  }
  .summer-banner .sb-month-unit {
    font-size: clamp(18px, 4.5vw, 28px);
  }
  .summer-banner .sb-title-jp {
    font-size: 11px;
    padding: 3px 10px;
    margin: 6px 0 3px;
  }
  .summer-banner .sb-title-period {
    font-size: 9.5px;
    letter-spacing: 0.20em;
  }
  /* cinema-bg-1（summer-banner自体）に overflow:hidden を強制（要素がエリア外に出ないように） */
  .cinema-bg-1.summer-banner {
    overflow: hidden !important;
  }
  /* sb-strip：スマホでは表示しない（cinema-content と被る原因） */
  .summer-banner .sb-strip {
    display: none !important;
  }
  /* 車並び：表示・上半分エリアの最下部 */
  .summer-banner .sb-cars {
    display: block !important;
    height: 42px;
    bottom: 0;
  }
  /* 車並びの上の赤破線は中途半端なので非表示 */
  .summer-banner .sb-cars::before {
    display: none !important;
  }

  /* ============================================================
     ノマドバナー（スマホ）：1スライド目（サマー）と同じ思想に統一
     2026-05-13 更新：スマホ専用縦長画像（360×640・9:16）で全要素表示
     - 横並び左右画像（.nb-photo-l/r）は両方非表示
     - .cinema-bg-2.nomad-banner に jimny-nomad-sp.jpg を背景表示
     - 縦長合成画像（上＝ベージュ／下＝ダークグリーン）でジムニー2台
     - .nb-content は中央寄せでオーバーレイ（既存維持）
     ============================================================ */
  .cinema-bg-2.nomad-banner {
    /* スマホ専用縦長合成画像（ジムニー2台縦並び）を背景表示 */
    background-image: url('../img/jimny-nomad-sp.jpg?v=20260513-nomad-sp-vert') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  /* 左右2分割の画像枠は両方非表示（サマー1スライド目と同じく1枚画像背景に統一） */
  .nb-photo-l,
  .nb-photo-r {
    display: none !important;
  }

  /* オーバーレイ：1枚合成画像の上に薄い濃紺グラデで文字可読性確保 */
  .nb-overlay {
    z-index: 2;
    background:
      linear-gradient(to bottom,
        rgba(13,33,67,0.32) 0%,
        rgba(13,33,67,0.18) 35%,
        rgba(13,33,67,0.18) 65%,
        rgba(13,33,67,0.42) 100%
      );
  }

  /* テキストコンテンツ：上寄せ配置（合成画像の上にオーバーレイ）
     2026-05-13 修正：cinema-content（家族の時間を、いい車で。）が下部 bottom:0 に
     存在するため、nb-content を画面上半分にまとめて配置し
     「在庫あり」バッジと「家族と…」コメントの重なりを解消する。 */
  .nb-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 14px 0;
    z-index: 3;
    color: #FFFFFF;
    text-align: center;
  }
  .nb-tag {
    font-size: 9.5px;
    letter-spacing: 0.24em;
    padding: 4px 12px;
    margin-bottom: 10px;
    background: rgba(198,40,40,0.85);
    border-color: transparent;
    color: #FFFFFF;
    backdrop-filter: none;
  }
  .nb-title-en {
    font-size: 13px;
    letter-spacing: 0.28em;
    color: rgba(255,255,255,0.80);
  }
  .nb-title-em {
    font-size: clamp(36px, 11vw, 60px);
    /* 暗背景向け：グラデを白ベースに変更 */
    background: linear-gradient(135deg, #FFFFFF 0%, #FCA5A5 60%, #FB923C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .nb-stock { font-size: 12px; margin-bottom: 8px; }
  .nb-stock strong {
    font-size: 16px;
    padding: 5px 14px 7px;
    letter-spacing: 0.08em;
  }
  .nb-features { gap: 7px; margin-bottom: 8px; }
  .nb-features li {
    padding: 6px 12px;
    font-size: 11px;
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.55);
    color: #FFFFFF;
    box-shadow: none;
  }
  .nb-features li::before {
    background: #C62828;
    color: #FFFFFF;
  }
  .nb-features li span { color: #FCA5A5; }
  /* nb-cta（テキスト）：上寄せレイアウトでは下部cinema-content（家族と…）と被らないよう非表示 */
  .nb-cta { display: none; }
  /* nb-title 余白圧縮（上寄せレイアウトで縦に詰める） */
  .nb-title { margin-bottom: 8px; }
}

@media (max-width: 480px) {
  /* サマーバナー：椰子は大きめ（地面から生える感じ） */
  .summer-banner .sb-palm { width: 105px !important; opacity: 0.92 !important; }
  .summer-banner .sb-sun { width: 48px; height: 48px; top: 5%; }
  .summer-banner .sb-title-jp { font-size: 10px; padding: 2px 9px; }
  .summer-banner .sb-title-period { font-size: 8.5px; }
  .summer-banner .sb-month {
    font-size: clamp(38px, 12vw, 58px);
  }
  .summer-banner .sb-strip {
    font-size: 9px;
    padding: 3px 8px;
    bottom: 6px;
  }
  .summer-banner .sb-cars { height: 45px; bottom: 26px; }

  /* ノマドバナー（480px以下）：写真はそのまま・テキスト微調整 */
  .nb-title-em { font-size: clamp(32px, 10.5vw, 48px); }
  .nb-tag { font-size: 9px; }
  .nb-features li { font-size: 10.5px; padding: 5px 10px; }
  .nb-features li::before { width: 15px; height: 15px; font-size: 9.5px; }
}

/* ============================================================
   メトリックバナー v4 ── ライト＋グラデ数字（明るめモダン）
   ============================================================ */
.metrics-v4 {
  position: relative;
  background: #FFFFFF;
  color: var(--text);
  padding: 110px 0 100px;
  overflow: hidden;
}
/* ドットパターン背景（さらに一段階薄く） */
.metrics-v4::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(147,197,253,0.28) 1.3px, transparent 1.6px);
  background-size: 29px 29px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 52%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 52%, #000 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .metrics-v4 { padding: 64px 0 56px; }
}
.metrics-v4-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 400px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(91, 155, 213, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.metrics-v4-container {
  position: relative;
  z-index: 2;
}

.metrics-v4-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.metrics-v4-title {
  font-family: var(--font-num);
  font-size: clamp(1.2rem, 3.6vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 18px;
  color: var(--navy);
  white-space: nowrap;
}
@media (max-width: 540px) {
  .metrics-v4-title {
    font-size: clamp(1.05rem, 4.4vw, 1.4rem);
    letter-spacing: -0.025em;
  }
}
.metrics-v4-lead {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto;
}

.metrics-v4-grid,
.psj-m4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .metrics-v4-grid,
  .psj-m4-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .metrics-v4-grid,
  .psj-m4-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   METRICS V4 — Gemini採用版（直線・金/ダーク不使用・2026-05-10）
   ============================================================ */
.psj-m4-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 14px rgba(15,31,51,0.05);
}
.psj-m4-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--m4-accent, #94A3B8);
  transition: height 0.3s ease;
}
.psj-m4-card:hover {
  transform: translateY(-6px);
  border-color: var(--m4-accent, rgba(91,155,213,0.40));
  box-shadow: 0 18px 40px -10px rgba(15,31,51,0.18);
}
.psj-m4-card:hover::before { height: 7px; }

/* タイプ別アクセント色（金/ダーク不使用） */
.psj-m4-blue    { --m4-accent: #2563EB; --m4-accent-soft: rgba(37,99,235,0.08); }
.psj-m4-indigo  { --m4-accent: #6366F1; --m4-accent-soft: rgba(99,102,241,0.08); }
.psj-m4-emerald { --m4-accent: #10B981; --m4-accent-soft: rgba(16,185,129,0.08); }
.psj-m4-coral   { --m4-accent: #F87171; --m4-accent-soft: rgba(248,113,113,0.10); }

.psj-m4-card-content {
  padding: 28px 24px 26px;
  position: relative;
}

/* ステップ番号＋アイコン */
.psj-m4-step-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.psj-m4-step {
  font-family: "Inter", "Roboto Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--m4-accent, #94A3B8);
  border: 1px solid var(--m4-accent, #CBD5E1);
  padding: 4px 10px;
  border-radius: 0;
}
.psj-m4-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m4-accent, #64748B);
  background: var(--m4-accent-soft, transparent);
  border: 1px solid var(--m4-accent-soft, #E2E8F0);
}
.psj-m4-icon svg {
  width: 22px; height: 22px;
}

/* LIVE ドット */
.psj-m4-live-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.20);
  animation: psj-m4-pulse 1.6s ease-in-out infinite;
}
@keyframes psj-m4-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.20); transform: scale(1); }
  50%      { box-shadow: 0 0 0 8px rgba(16,185,129,0.06); transform: scale(0.92); }
}

/* 数字 */
.psj-m4-value-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 16px;
}
.psj-m4-value {
  font-family: "Inter", "Roboto Mono", monospace;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--m4-accent, #1E3A5F);
}
.psj-m4-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #64748B;
  letter-spacing: -0.01em;
}

/* タイトル＋説明 */
.psj-m4-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.psj-m4-card-text {
  font-size: 11.5px;
  line-height: 1.75;
  color: #64748B;
  margin: 0;
}
.psj-m4-card-text small {
  font-size: 10px;
  color: #94A3B8;
}

@media (max-width: 540px) {
  .psj-m4-card-content { padding: 22px 20px 20px; }
  .psj-m4-value { font-size: 36px; }
}

/* カード共通（ライト基調・直線的・モダンミニマル） */
.m4-card {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-top: 4px solid #94A3B8;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.06);
  transition: background 0.5s ease,
              border-color 0.5s ease,
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s ease;
}
.m4-card:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(30, 58, 95, 0.18);
}
.m4-card-blue    { border-top-color: #2563EB; }
.m4-card-purple  { border-top-color: #9333EA; }
.m4-card-emerald { border-top-color: #059669; }
.m4-card-gold    { border-top-color: #F59E0B; }
.m4-card-blue:hover    { border-color: #60A5FA; border-top-color: #2563EB; }
.m4-card-purple:hover  { border-color: #C084FC; border-top-color: #9333EA; }
.m4-card-emerald:hover { border-color: #34D399; border-top-color: #059669; }

/* ホバー時のグラデーションハイライト（控えめに） */
.m4-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.m4-card-blue .m4-glow    { background: linear-gradient(135deg, rgba(91, 155, 213, 0.10) 0%, transparent 70%); }
.m4-card-purple .m4-glow  { background: linear-gradient(135deg, rgba(168, 85, 247, 0.10) 0%, transparent 70%); }
.m4-card-emerald .m4-glow { background: linear-gradient(135deg, rgba(16, 185, 129, 0.10) 0%, transparent 70%); }
.m4-card-gold .m4-glow    { background: linear-gradient(135deg, rgba(252, 211, 77, 0.14) 0%, transparent 70%); }
.m4-card:hover .m4-glow { opacity: 1; }
.m4-card-gold:hover { border-color: #FCD34D; }
.m4-card-gold .m4-eyebrow { color: #B45309; }
.m4-card-gold .m4-num {
  background-image: linear-gradient(135deg, #F59E0B 0%, #DC2626 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.m4-stars {
  color: #F59E0B;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.m4-content {
  position: relative;
  z-index: 2;
}
.m4-eyebrow {
  font-family: var(--font-num);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.m4-card-blue .m4-eyebrow    { color: #2563EB; }
.m4-card-purple .m4-eyebrow  { color: #9333EA; }
.m4-card-emerald .m4-eyebrow { color: #059669; }

/* LIVEドット */
.m4-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10B981;
  position: relative;
  flex-shrink: 0;
}
.m4-live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.4);
  animation: live-pulse-ring 1.6s ease-in-out infinite;
}

/* 数字 */
.m4-num-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
  white-space: nowrap;
}
.m4-num {
  font-family: var(--font-num);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: transparent;
}
/* ライト背景でも映える濃いめのグラデ */
.m4-card-blue .m4-num {
  background-image: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
}
.m4-card-purple .m4-num {
  background-image: linear-gradient(135deg, #9333EA 0%, #DB2777 100%);
}
.m4-card-emerald .m4-num {
  background-image: linear-gradient(135deg, #059669 0%, #14B8A6 100%);
}
.m4-suffix {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-mid);
}

.m4-h {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.m4-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* PC：数字メトリック4カードの縦を詰める（2026-05-14 野村さん指示） */
@media (min-width: 769px) {
  .m4-card { padding: 24px 28px 24px; }
  .m4-eyebrow { margin-bottom: 10px; }
  .m4-num { font-size: clamp(3rem, 6vw, 4.4rem); }
  .m4-num-row { margin-bottom: 8px; }
  .m4-h { margin-bottom: 6px; font-size: 1rem; }
  .m4-desc { line-height: 1.55; font-size: 0.82rem; }
}

@media (max-width: 540px) {
  .m4-card { padding: 28px 22px; }
}

/* 旧 v3 メトリック非表示 */
.metrics-v3 { display: none !important; }

/* ============================================================
   メトリックバナー v3 ── シンプル統一・Apple Card風（旧版・非表示）
   ============================================================ */
.metrics-v3 {
  background: var(--off-white);
  padding: 80px 0;
}
@media (max-width: 768px) {
  .metrics-v3 { padding: 48px 0; }
}
.metrics-v3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .metrics-v3-grid { grid-template-columns: 1fr; gap: 12px; }
}

.m3-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.m3-card:hover {
  transform: translateY(-6px);
  border-color: var(--navy);
  box-shadow:
    0 1px 3px rgba(15, 31, 51, 0.04),
    0 18px 40px -12px rgba(15, 31, 51, 0.18);
}

/* 左上の番号（薄く大きく） */
.m3-num-id {
  position: absolute;
  top: 24px; right: 26px;
  font-family: var(--font-num);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-light);
}

/* タグ（カテゴリ） */
.m3-tag {
  font-family: var(--font-num);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-block;
}
.m3-tag-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #DC2626;
}
.m3-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #DC2626;
  position: relative;
  flex-shrink: 0;
}
.m3-live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.40);
  animation: live-pulse-ring 1.4s ease-in-out infinite;
}

/* 巨大数字 */
.m3-num-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
  white-space: nowrap;
}
.m3-num {
  font-family: var(--font-num);
  font-size: clamp(3.2rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.m3-unit {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-mid);
}

/* メインラベル */
.m3-label {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* サブラベル */
.m3-sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  line-height: 1.65;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

/* 右下の矢印（ホバーで動く） */
.m3-arrow {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.3s ease;
}
.m3-card:hover .m3-arrow {
  background: var(--red);
  color: var(--white);
  transform: translateX(4px) translateY(-4px);
}

/* LIVEカード専用 */
.m3-card-live .m3-num { color: #DC2626; }
.m3-card-live:hover { border-color: #DC2626; }
.m3-card-live:hover .m3-arrow { background: #DC2626; }

/* 旧 v2 メトリック非表示 */
.metrics, .metrics-grid { display: none !important; }

/* ============================================================
   メトリックバナー v2 ── 3つの強みを巨大装飾豊富に（旧版・非表示）
   ============================================================ */
.metrics {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .metrics { padding: 48px 0 48px; }
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .metrics-grid { grid-template-columns: 1fr; gap: 14px; }
}

.metric-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s ease,
              border-color 0.4s ease;
}
.metric-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow:
    0 1px 3px rgba(30, 58, 95, 0.04),
    0 24px 48px -16px rgba(91, 155, 213, 0.30);
}

.metric-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.metric-tag {
  font-family: var(--font-num);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--text-light);
  font-weight: 600;
}
.metric-tag-live {
  color: #DC2626;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.metric-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #DC2626;
  position: relative;
  animation: live-pulse 1.4s ease-in-out infinite;
}
.metric-live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.40);
  animation: live-pulse-ring 1.4s ease-in-out infinite;
}

.metric-num-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  white-space: nowrap;
}
.metric-num {
  font-family: var(--font-num);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--navy) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-stock .metric-num {
  background: linear-gradient(135deg, #DC2626 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.metric-makers .metric-num {
  background: linear-gradient(135deg, #FCD34D 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.metric-unit {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-mid);
}
.metric-label {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 18px;
}
.metric-foot {
  margin-top: auto;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

/* === METRIC 1: 1.9% ── コイン浮遊＋比較バー === */
.metric-deco-coins {
  position: absolute;
  top: -10px; right: -10px;
  width: 140px; height: 140px;
  pointer-events: none;
}
.metric-coin {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-num);
  font-weight: 800;
  color: #92400E;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  font-size: 1rem;
}
.metric-coin-1 { top: 12px; right: 22px; animation: coin-float 5s ease-in-out infinite; }
.metric-coin-2 { top: 50px; right: 50px; width: 28px; height: 28px; font-size: 0.86rem; animation: coin-float 7s ease-in-out 0.6s infinite; }
.metric-coin-3 { top: 70px; right: 8px; width: 22px; height: 22px; font-size: 0.7rem; animation: coin-float 6s ease-in-out 1.2s infinite; }
@keyframes coin-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(180deg); }
}

.metric-compare {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.metric-compare-row {
  display: grid;
  grid-template-columns: 60px 1fr 50px;
  gap: 10px;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.74rem;
}
.metric-compare-name {
  color: var(--text-light);
  font-weight: 600;
}
.metric-compare-name.metric-strong {
  color: var(--red);
  font-weight: 700;
}
.metric-compare-bar {
  height: 6px;
  background: rgba(91, 155, 213, 0.12);
  border-radius: 3px;
  overflow: hidden;
}
.metric-compare-bar > span {
  display: block;
  height: 100%;
  border-radius: 3px;
  width: 0;
  animation: bar-grow 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}
.metric-bar-other {
  background: var(--text-light);
  --bar-w: 100%;
}
.metric-bar-us {
  background: linear-gradient(90deg, var(--red), #FCD34D);
  --bar-w: 32%;
}
@keyframes bar-grow {
  to { width: var(--bar-w); }
}
.metric-compare-row:nth-child(1) .metric-compare-bar > span { --bar-w: 100%; }
.metric-compare-row:nth-child(2) .metric-compare-bar > span { --bar-w: 32%; }
.metric-compare-val {
  text-align: right;
  font-family: var(--font-num);
  color: var(--text-mid);
  font-weight: 700;
}
.metric-compare-val.metric-strong {
  color: var(--red);
  font-size: 0.9rem;
}

/* === METRIC 2: 3メーカー ── 星浮遊＋メーカー名縦回転 === */
.metric-deco-stars {
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  pointer-events: none;
}
.metric-star {
  position: absolute;
  font-size: 1.6rem;
  color: rgba(252, 211, 77, 0.65);
  font-weight: 800;
}
.metric-star-1 { top: 18px; right: 24px; animation: star-twinkle 3s ease-in-out infinite; }
.metric-star-2 { top: 50px; right: 60px; font-size: 1.2rem; animation: star-twinkle 4s ease-in-out 0.8s infinite; }
.metric-star-3 { top: 78px; right: 18px; font-size: 1rem; animation: star-twinkle 3.5s ease-in-out 1.6s infinite; }
@keyframes star-twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.65; }
  50%      { transform: scale(1.3) rotate(180deg); opacity: 1; }
}

.metric-makers-rotate {
  height: 1.8rem;
  overflow: hidden;
  margin-bottom: 18px;
}
.metric-makers-track {
  display: flex;
  flex-direction: column;
  animation: metric-makers-rotate 5s ease-in-out infinite;
}
.metric-maker-name {
  height: 1.8rem;
  display: flex;
  align-items: center;
  font-family: var(--font-num);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.10em;
}
.metric-maker-suzuki { color: #FCD34D; }
.metric-maker-daihatsu { color: #FF8B7B; }
.metric-maker-toyota { color: #FF6B6B; }
@keyframes metric-makers-rotate {
  0%, 25%   { transform: translateY(0); }
  33%, 58%  { transform: translateY(-100%); }
  66%, 91%  { transform: translateY(-200%); }
  100%      { transform: translateY(-300%); }
}

/* === METRIC 3: LIVE在庫 ── 脈動波紋＋ライブバー === */
.metric-deco-pulse {
  position: absolute;
  top: 30px; right: 30px;
  width: 80px; height: 80px;
  pointer-events: none;
}
.metric-pulse-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(220, 38, 38, 0.40);
  animation: pulse-expand 2.4s ease-out infinite;
}
.metric-pulse-1 { animation-delay: 0s; }
.metric-pulse-2 { animation-delay: 0.8s; }
.metric-pulse-3 { animation-delay: 1.6s; }
@keyframes pulse-expand {
  0%   { transform: scale(0.4); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.metric-live-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.20);
  border-radius: 4px;
}
.metric-live-bar {
  display: block;
  width: 32px; height: 3px;
  background: linear-gradient(90deg, transparent 0%, #DC2626 50%, transparent 100%);
  background-size: 200% 100%;
  animation: live-bar-flow 1.6s linear infinite;
}
@keyframes live-bar-flow {
  from { background-position: 100% 0; }
  to   { background-position: -100% 0; }
}
.metric-live-text {
  font-family: var(--font-num);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: #DC2626;
  font-weight: 700;
}

/* === 既存の hero-stats を非表示 === */
.hero-stats { display: none !important; }

/* === 旧 hero-stats（参照のみ・非表示） === */
.hero-stats-legacy {
  padding: 56px 0 56px;
  background: var(--off-white);
}
@media (max-width: 768px) {
  .hero-stats { padding: 36px 0 32px; }
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hero-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
  min-width: 0;
}
.hero-stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 16px 36px -12px rgba(91, 155, 213, 0.30);
}
.hero-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-light);
  color: var(--red);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.hero-stat-pill-live {
  background: rgba(220, 38, 38, 0.10);
  color: #DC2626;
}
.hero-stat-pill-live .bento-live-dot { width: 6px; height: 6px; }
.hero-stat-num-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.hero-stat-num {
  font-family: var(--font-num);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline-block;
  white-space: nowrap;
}
.hero-stat-unit {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-mid);
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-stat-label {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.hero-stat-sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-light);
}
@media (max-width: 768px) {
  .hero-stats-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* 旧Bento・Legacy 完全非表示 */
.legacy-bento-removed { display: none !important; }
.hero-bento { display: none !important; }

/* ============================================================
   Bento Heroセクション（v4.5 旧版・現在は非表示）
   ============================================================ */
.hero-bento {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: 1.5fr 1.5fr 1.5fr 1.1fr;
  gap: 14px;
  padding: 88px 24px 24px;
  max-width: 1320px;
  margin: 0 auto;
  min-height: calc(100vh - 64px);
}

.bento-tile {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.bento-tile:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 3px rgba(31, 27, 22, 0.04),
    0 16px 40px -12px rgba(31, 27, 22, 0.18);
  border-color: var(--border);
}

/* === メインタイル（左大） === */
.bento-main {
  grid-column: 1 / 6;
  grid-row: 1 / 4;
  background: var(--navy);
  color: var(--white);
  border: none;
  min-height: 480px;
}
.bento-main-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.6s ease, transform 12s ease-out;
}
.bento-main-bg.show {
  opacity: 0.55;
  transform: scale(1);
}
.bento-main-bg.zooming {
  transform: scale(1.10);
}
.bento-main-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(31, 27, 22, 0.85) 0%, rgba(31, 27, 22, 0.55) 55%, rgba(31, 27, 22, 0.25) 100%),
    radial-gradient(ellipse at 30% 80%, rgba(182, 132, 73, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.bento-main-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 64px);
}
.bento-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(182, 132, 73, 0.95);
  color: var(--white);
  padding: 7px 18px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.bento-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 7vw, 5.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.bento-title em {
  font-style: normal;
  color: var(--red);
  background: linear-gradient(180deg, transparent 65%, rgba(182, 132, 73, 0.30) 65%);
  padding: 0 8px;
}
.bento-brand {
  font-family: var(--font-num);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  letter-spacing: 0.42em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-weight: 600;
}
.bento-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-outline-on-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
  padding: 16px 40px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-outline-on-dark:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-on-dark .btn-icon {
  filter: brightness(0) saturate(100%) invert(100%);
}
.btn-outline-on-dark:hover .btn-icon {
  filter: brightness(0) saturate(100%) invert(11%) sepia(45%) saturate(2447%) hue-rotate(204deg) brightness(95%) contrast(98%);
}

/* === 数字タイル（右3つ） === */
.bento-stat {
  grid-column: 6 / 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.bento-stat-1 { grid-row: 1; }
.bento-stat-2 { grid-row: 2; background: var(--navy); color: var(--white); border: none; }
.bento-stat-3 { grid-row: 3; background: var(--off-white); }

.bento-stat-content {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  justify-content: center;
}
.bento-stat-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.bento-stat-num {
  font-family: var(--font-num);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline-block;
}
.bento-stat-2 .bento-stat-num { color: #FCD34D; }
.bento-stat-unit {
  font-family: var(--font-sans);
  font-size: 0.34em;
  color: var(--text-mid);
  font-weight: 700;
  vertical-align: 0.2em;
}
.bento-stat-2 .bento-stat-unit { color: rgba(255,255,255,0.85); }
.bento-stat-label {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 8px;
  line-height: 1.55;
}
.bento-stat-2 .bento-stat-label { color: var(--white); }
.bento-stat-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 4px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.bento-stat-2 .bento-stat-sub { color: rgba(255,255,255,0.55); }

/* ピル（バッジ） */
.bento-stat-pill {
  align-self: flex-start;
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.bento-stat-pill-light {
  background: rgba(252, 211, 77, 0.18);
  color: #FCD34D;
}

/* === タイル1: 3D風コイン＋比較バー === */
.bento-deco-coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.bento-deco-coins .coin {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 1.5rem;
  color: #92400E;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.15),
    inset 0 -2px 4px rgba(0,0,0,0.18),
    inset 0 2px 4px rgba(255,255,255,0.4);
  opacity: 0.85;
}
.bento-deco-coins .coin-1 {
  top: 8%; right: 10%;
  animation: coin-spin1 6s ease-in-out infinite;
}
.bento-deco-coins .coin-2 {
  top: 35%; right: 28%;
  width: 38px; height: 38px;
  font-size: 1.1rem;
  animation: coin-spin2 7s ease-in-out 0.6s infinite;
}
.bento-deco-coins .coin-3 {
  top: 18%; right: 4%;
  width: 28px; height: 28px;
  font-size: 0.85rem;
  animation: coin-spin3 5s ease-in-out 1.2s infinite;
  opacity: 0.7;
}
@keyframes coin-spin1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(180deg); }
}
@keyframes coin-spin2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-8px) rotate(-180deg); }
}
@keyframes coin-spin3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(360deg); }
}

/* 比較バー（他社 vs 当社） */
.bento-compare {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bento-compare-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
}
.bento-compare-label {
  width: 56px;
  color: var(--text-light);
  font-weight: 600;
  flex-shrink: 0;
}
.bento-compare-label-strong { color: var(--red); font-weight: 700; }
.bento-compare-bar {
  flex: 1;
  height: 6px;
  background: rgba(91, 155, 213, 0.10);
  border-radius: 3px;
  overflow: hidden;
}
.bento-compare-bar > span {
  display: block;
  height: 100%;
  border-radius: 3px;
  transform-origin: left;
  animation: bar-grow 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
  width: 0;
}
.bar-other { background: var(--text-light); }
.bar-us {
  background: linear-gradient(90deg, var(--red), #FCD34D);
}
@keyframes bar-grow {
  to { width: var(--bar-w, 100%); }
}
.bento-compare-row:nth-child(1) .bento-compare-bar > span { --bar-w: 100%; }
.bento-compare-row:nth-child(2) .bento-compare-bar > span { --bar-w: 32%; }
.bento-compare-val {
  width: 38px;
  text-align: right;
  color: var(--text-mid);
  font-weight: 600;
  font-family: var(--font-num);
  flex-shrink: 0;
}
.bento-compare-val-strong { color: var(--red); font-size: 0.86rem; }
.bento-deco-wave {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  color: var(--red);
  opacity: 0.20;
  pointer-events: none;
  z-index: 1;
}
.bento-deco-wave path {
  stroke-dasharray: 600;
  animation: wave-flow 4s ease-in-out infinite;
}
@keyframes wave-flow {
  0%, 100% { stroke-dashoffset: 0; }
  50%      { stroke-dashoffset: -200; }
}
.bento-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(182, 132, 73, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 10px;
}
.bento-progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), #D4A56F);
  border-radius: 2px;
  animation: progress-fill 2.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}
@keyframes progress-fill {
  to { width: 92%; }
}

/* === タイル2: 3メーカー（カラフルメーカーグリッド） === */
.bento-makers-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 80% 30%, rgba(252, 211, 77, 0.20) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(252, 211, 77, 0.14) 0%, transparent 45%);
}
.bento-makers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
}
.bento-maker {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 10px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.bento-maker::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--maker-color, #FCD34D);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.bento-maker:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
  border-color: var(--maker-color, #FCD34D);
}
.bento-maker:hover::before { transform: scaleX(1); }
.bento-maker strong {
  font-family: var(--font-num);
  font-size: clamp(0.7rem, 1.4vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--maker-color, #FCD34D);
  line-height: 1;
}
.bento-maker small {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.bento-maker-suzuki { --maker-color: #FCD34D; }
.bento-maker-daihatsu { --maker-color: #FF8B7B; }
.bento-maker-toyota { --maker-color: #FF6B6B; }

.bento-stat-row-mini {
  margin-top: 8px;
  align-items: baseline;
  gap: 6px;
}
.bento-stat-num-mini {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
}
.bento-stat-unit-mini {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.bento-stat-plus {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  margin-left: 6px;
  padding: 3px 9px;
  background: rgba(255,255,255,0.10);
  border-radius: 999px;
}

/* === タイル3: 実車ショーケース（販売管理から実画像をグリッド配置） === */
.bento-stat-3 {
  background: var(--navy-dark) !important;
  color: var(--white);
  border: none !important;
}
.bento-cars-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  z-index: 1;
}
.bento-cars-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}
.bento-stat-3:hover .bento-cars-grid img {
  transform: scale(1.05);
}
.bento-cars-grid img:nth-child(1) { animation: tile-fade-in 0.6s ease 0.1s both; }
.bento-cars-grid img:nth-child(2) { animation: tile-fade-in 0.6s ease 0.2s both; }
.bento-cars-grid img:nth-child(3) { animation: tile-fade-in 0.6s ease 0.3s both; }
.bento-cars-grid img:nth-child(4) { animation: tile-fade-in 0.6s ease 0.4s both; }
.bento-cars-grid img:nth-child(5) { animation: tile-fade-in 0.6s ease 0.5s both; }
.bento-cars-grid img:nth-child(6) { animation: tile-fade-in 0.6s ease 0.6s both; }
@keyframes tile-fade-in {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

.bento-cars-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(15, 31, 51, 0.10) 0%, rgba(15, 31, 51, 0.85) 100%);
  padding: 16px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}
.bento-stock-mini {
  font-family: var(--font-num);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  margin-left: 4px;
}
.bento-stock-mini strong {
  color: var(--red);
  font-weight: 800;
  font-size: 1.1rem;
  margin-right: 2px;
}
.bento-stat-label-on-grid {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.bento-stat-link-on-dark {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  align-self: flex-start;
  padding: 8px 16px;
  font-weight: 700;
}
.bento-stat-link-on-dark:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.bento-live-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.bento-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #DC2626;
  position: relative;
  animation: live-pulse 1.6s ease-in-out infinite;
}
.bento-live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.4);
  animation: live-pulse-ring 1.6s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}
@keyframes live-pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0; }
  50%      { transform: scale(2); opacity: 0.6; }
}
.bento-live-text {
  font-family: var(--font-num);
  font-size: 0.72rem;
  font-weight: 700;
  color: #DC2626;
  letter-spacing: 0.18em;
}
.bento-stat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  align-self: flex-start;
  transition: all var(--transition);
}
.bento-stat-link:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}
.bento-stat-link span {
  display: inline-block;
  animation: bounce-arrow 1.6s ease-in-out infinite;
}
@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}

/* === インフォタイル（下2つ） === */
.bento-info {
  grid-row: 4;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.bento-info-1 { grid-column: 1 / 5; background: var(--white); }
.bento-info-2 { grid-column: 5 / 9; background: var(--navy); color: var(--white); border: none; }
.bento-info-content {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 2.6vw, 28px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 営業中ステータス */
.bento-status-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  color: #16A34A;
  padding: 6px 14px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.bento-status-row.closed {
  background: rgba(107, 114, 128, 0.12);
  color: #4B5563;
}
.bento-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #16A34A;
  position: relative;
}
.bento-status-row.closed .bento-status-dot { background: #6B7280; }
.bento-status-row:not(.closed) .bento-status-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.4);
  animation: live-pulse-ring 1.6s ease-in-out infinite;
}
.bento-status-sub {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.74rem;
}
.bento-status-row.closed .bento-status-sub { color: #6B7280; }

.bento-info-value {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-top: 4px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.bento-info-2 .bento-info-value { color: var(--white); }
.bento-info-dash {
  color: var(--red);
  font-weight: 500;
  margin: 0 6px;
}
.bento-info-sub-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-top: 6px;
}
.bento-info-2 .bento-info-sub-label { color: rgba(255,255,255,0.78); }

/* 営業時間タイルのアナログ時計（背景装飾） */
.bento-info-bg {
  position: absolute;
  top: 50%; right: 24px;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.10;
  pointer-events: none;
}
.bento-clock {
  width: clamp(80px, 14vw, 140px);
  height: auto;
  color: var(--navy);
}
.clock-min {
  transform-origin: 30px 30px;
  animation: clock-min 60s linear infinite;
}
.clock-hour {
  transform-origin: 30px 30px;
  animation: clock-hour 720s linear infinite;
}
@keyframes clock-min {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes clock-hour {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ミニアクションボタン */
.bento-info-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.bento-mini-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
}
.bento-mini-btn img {
  width: 13px; height: 13px;
  filter: brightness(0) saturate(100%) invert(11%) sepia(45%) saturate(2447%) hue-rotate(204deg) brightness(95%) contrast(98%);
}
.bento-mini-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.bento-mini-btn:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}
.bento-mini-btn-line {
  background: #06C755;
  color: var(--white);
  border-color: #06C755;
}
.bento-mini-btn-line img {
  filter: brightness(0) saturate(100%) invert(100%);
}
.bento-mini-btn-line:hover {
  background: #05B04C;
  border-color: #05B04C;
}

/* === 車検センタータイル === */
.bento-info-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 0;
  transition: transform 0.8s ease, opacity var(--transition);
}
.bento-info-2:hover .bento-info-bg-img {
  transform: scale(1.06);
  opacity: 0.55;
}
.bento-info-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(31, 27, 22, 0.78) 0%, rgba(31, 27, 22, 0.55) 60%, rgba(31, 27, 22, 0.30) 100%),
    radial-gradient(ellipse at 80% 100%, rgba(182, 132, 73, 0.30) 0%, transparent 60%);
  z-index: 1;
}
.bento-info-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.bento-info-icon-spin {
  display: inline-flex;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: wrench-tilt 3s ease-in-out infinite;
}
.bento-info-icon-spin img {
  width: 22px; height: 22px;
  filter: brightness(0) saturate(100%) invert(100%);
}
@keyframes wrench-tilt {
  0%, 100% { transform: rotate(-12deg); }
  50%      { transform: rotate(12deg); }
}
.bento-info-pill {
  font-family: var(--font-num);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

/* 車検センタータイルの特徴バッジ */
.bento-info-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.bento-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--white);
  font-weight: 500;
}
.bento-feature-item img {
  width: 12px; height: 12px;
  filter: brightness(0) saturate(100%) invert(100%);
}

/* === レスポンシブ === */
@media (max-width: 1024px) {
  .hero-bento {
    grid-template-rows: 1.6fr 1fr 1fr 1fr;
    min-height: auto;
  }
}
@media (max-width: 900px) {
  .hero-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    padding: 72px 16px 16px;
    gap: 10px;
  }
  .bento-main { grid-column: 1 / 3; grid-row: auto; min-height: 460px; }
  .bento-stat-1, .bento-stat-2 { grid-column: auto; grid-row: auto; }
  .bento-stat-3 { grid-column: 1 / 3; grid-row: auto; }
  .bento-info-1, .bento-info-2 { grid-column: 1 / 3; grid-row: auto; }
}
@media (max-width: 540px) {
  .hero-bento { grid-template-columns: 1fr; padding: 64px 12px 12px; }
  .bento-main { min-height: 400px; grid-column: 1; }
  .bento-stat-1, .bento-stat-2, .bento-stat-3,
  .bento-info-1, .bento-info-2 { grid-column: 1; }
  .bento-main-content { padding: 28px 22px; }
}

/* ---------- 旧ヒーローセクション（白基調・左テキスト＋右スライダー） ---------- */
.hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
  border-bottom: 4px solid var(--red);
}
.hero::before, .hero::after { display: none; }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: stretch;
  min-height: 540px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-text {
  padding: 72px 56px 72px max(28px, calc((100vw - 1280px) / 2 + 28px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  color: var(--text);
}
.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  letter-spacing: 0.06em;
}
.hero-title {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: clamp(1.65rem, 4.4vw, 2.55rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  color: var(--navy);
}
.hero-title em {
  font-style: normal;
  color: var(--red);
}
.hero-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(0.85rem, 1.6vw, 0.94rem);
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 30px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* 白基調なので CTA は赤地白文字に戻す */
.hero-btns .btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}
.hero-btns .btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.hero-btns .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--white);
}
.hero-btns .btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---------- ヒーロースライダー（右側） ---------- */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  min-height: 480px;
}
.hero-slider .slides {
  position: absolute;
  inset: 0;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s ease;
  will-change: opacity, transform;
}
.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
  animation: hero-zoom 7s ease-out forwards;
}
@keyframes hero-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
/* 写真上に薄い濃紺オーバーレイ（文字読みやすさ＆ブランド統一） */
.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,33,67,0.0) 60%,
    rgba(13,33,67,0.28) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.hero-slider .slide-caption {
  position: absolute;
  left: 24px; bottom: 60px;
  z-index: 3;
  background: rgba(13,33,67,0.82);
  color: var(--white);
  padding: 8px 14px;
  border-left: 3px solid var(--red);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
  max-width: calc(100% - 110px);
}
.hero-slider .slide.active .slide-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ナビゲーションドット */
.slider-dots {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.slider-dots .dot {
  width: 10px; height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(255,255,255,0.95);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.slider-dots .dot:hover { background: rgba(255,255,255,0.9); }
.slider-dots .dot.active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.18);
}

/* 矢印ナビ */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  padding: 0;
  line-height: 1;
}
.slider-nav:hover {
  background: var(--navy);
  color: var(--white);
}
.slider-nav.prev { left: 14px; }
.slider-nav.next { right: 14px; }

/* スクロール案内（白基調用に色変更） */
.hero-scroll {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  font-family: 'Roboto', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-align: center;
  z-index: 5;
  animation: bounce-scroll 2.4s ease-in-out infinite;
  background: var(--white);
  padding: 4px 12px;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.hero-scroll::after {
  content: '';
  display: block;
  margin: 4px auto 0;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--text-light);
  border-bottom: 1.5px solid var(--text-light);
  transform: rotate(45deg);
}
@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

/* ---------- キャンペーンバナー（白基調） ---------- */
.campaign-banner {
  background: var(--white);
  color: var(--navy);
  padding: 11px 0;
  text-align: center;
  border-bottom: 2px solid var(--red);
  border-top: 1px solid var(--border);
}
.campaign-banner p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(0.78rem, 2.2vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.campaign-banner a {
  display: inline-block;
  margin-left: 14px;
  background: var(--red);
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  transition: background var(--transition);
}
.campaign-banner a:hover { background: var(--red-dark); }
#campaign-countdown {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  background: var(--red-light);
  color: var(--red);
  border-radius: var(--radius);
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ---------- 取扱メーカー表記（ヒーロー） ---------- */
.hero-makers {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-makers .dot-sep {
  color: var(--red);
  font-weight: 700;
}

/* ---------- 在庫カード ---------- */
.stock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ============================================================
   今月の特選車（FEATURED CAR）─ 大型1枠
   ============================================================ */
.featured-car-section .section-title .sub {
  color: #c62828;
}
.featured-car-body {
  background: #fff;
  border: 2px solid #0D2143;
  border-top: 6px solid #C62828;
  box-shadow: 0 8px 28px rgba(13,33,67,0.10);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  overflow: hidden;
  position: relative;
}
.featured-car-body::before {
  content: '📌 EDITOR\'S PICK';
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: #C62828;
  color: #fff;
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 800;
  padding: 6px 14px;
}
.featured-car-img {
  position: relative;
  background: #f0f0f0;
  min-height: 360px;
  overflow: hidden;
}
.featured-car-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-car-img .fc-fallback {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #cfcfcf;
}
.featured-car-info {
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.featured-car-info .fc-model {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0D2143;
  line-height: 1.25;
  margin-bottom: 4px;
  word-break: keep-all;
}
.featured-car-info .fc-grade {
  font-size: 1rem;
  color: #2e7d32;
  font-weight: 700;
  margin-bottom: 20px;
}
.featured-car-info .fc-spec {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.featured-car-info .fc-spec li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: .92rem;
}
.featured-car-info .fc-spec li dt {
  color: #777;
  font-weight: 500;
  margin: 0;
}
.featured-car-info .fc-spec li dd {
  color: #111;
  font-weight: 700;
  margin: 0;
  text-align: right;
}
.featured-car-info .fc-price {
  background: #fff5f5;
  border-left: 4px solid #C62828;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.featured-car-info .fc-price-label {
  display: block;
  font-size: 12px;
  color: #C62828;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.featured-car-info .fc-price-value {
  font-size: 1.9rem;
  font-weight: 900;
  color: #C62828;
  line-height: 1;
}
.featured-car-info .fc-price-value small {
  font-size: 12px;
  color: #999;
  font-weight: 500;
  margin-left: 6px;
}
.featured-car-info .fc-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.featured-car-info .fc-cta .btn { flex: 1; min-width: 140px; }

@media (max-width: 820px) {
  .featured-car-body { grid-template-columns: 1fr; }
  .featured-car-img { min-height: 240px; }
  .featured-car-info { padding: 28px 22px 24px; }
  .featured-car-info .fc-model { font-size: 1.45rem; }
  .featured-car-info .fc-spec { grid-template-columns: 1fr; }
  .featured-car-info .fc-price-value { font-size: 1.6rem; }
}

/* スマホ：特選車セクションも縦コンパクト化（在庫カード方針と合わせる） */
@media (max-width: 768px) {
  .featured-car-section { padding: 28px 0 20px !important; }
  .featured-car-body {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .featured-car-img {
    min-height: 240px !important;
    aspect-ratio: 4/3 !important;  /* やや縦長で迫力UP */
  }
  .featured-car-img img {
    object-fit: cover !important;
    height: 100% !important;
    width: 100% !important;
  }
  .featured-car-info { padding: 14px 16px 16px !important; }
  .featured-car-info .fc-model {
    font-size: 1.15rem !important;
    margin-bottom: 4px !important;
  }
  .featured-car-info .fc-grade {
    font-size: 0.78rem !important;
    margin-bottom: 8px !important;
  }
  .featured-car-info .fc-spec {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px 12px !important;
    margin-bottom: 10px !important;
  }
  .featured-car-info .fc-spec li {
    padding: 3px 0 !important;
  }
  .featured-car-info .fc-spec li dt {
    font-size: 0.7rem !important;
  }
  .featured-car-info .fc-spec li dd {
    font-size: 0.82rem !important;
  }
  .featured-car-info .fc-price {
    padding: 8px 10px !important;
    margin-bottom: 10px !important;
  }
  .featured-car-info .fc-price-label {
    font-size: 0.7rem !important;
  }
  .featured-car-info .fc-price-value {
    font-size: 1.3rem !important;
  }
  .featured-car-info .fc-price-value small {
    font-size: 0.65rem !important;
  }
  .featured-car-info .fc-cta { gap: 8px !important; }
  .featured-car-info .fc-cta .btn {
    padding: 11px 14px !important;
    font-size: 0.85rem !important;
    min-height: 44px !important;
    min-width: 0 !important;
  }
}

/* スケルトン（読み込み中） */
.stock-skeleton {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 380px;
  position: relative;
  overflow: hidden;
}
.stock-skeleton::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0, rgba(13,33,67,0.06) 50%, transparent 100%);
  animation: skeleton-shimmer 1.4s infinite;
}
@keyframes skeleton-shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

/* 画像フォールバック（写真なし） */
.card-img-fallback {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-light);
  opacity: 0.6;
}

/* 価格お問合せ表記 */
.stock-price-ask {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--red);
  background: var(--red-light);
  padding: 8px 12px;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.4;
}
.stock-price-ask small {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

/* 在庫メモ */
.stock-note {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 14px;
  background: var(--off-white);
  padding: 8px 10px;
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}

/* 空状態（在庫なし or fetch失敗） */
.stock-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
}
.stock-empty p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 0.92rem;
}
.stock-card .card-img {
  aspect-ratio: 16/10;
  border-radius: 0;
  object-fit: contain;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 50%, #F1F5F9 100%);
  padding: 6px;
}
.stock-card-body { padding: 16px 18px 20px; }
.stock-car-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}
.stock-car-grade {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.stock-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  font-size: 0.74rem;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.stock-spec-item { display: flex; gap: 5px; align-items: center; }
.stock-spec-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
  opacity: 0.5;
}
.stock-price {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 3px;
}
.stock-price small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 4px;
}
.stock-price-sub {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

/* 絞り込みタブ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 8px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.filter-tab:hover,
.filter-tab.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* 検索バー */
.search-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.search-bar input {
  flex: 1;
  padding: 11px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  color: var(--text);
}
.search-bar input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 33, 67, 0.10);
}

/* ============================================================
   PSJ Group v12.1 ── ライト・シネマ型（白基調＋カードのみ写真）
   ============================================================ */
.psj-cinema {
  position: relative;
  background:
    linear-gradient(180deg,
      #FFFFFF 0%,
      #FBFDFF 25%,
      #F4F8FD 50%,
      #FBFDFF 75%,
      #FFFFFF 100%);
  color: var(--text);
  padding: 110px 0 100px;
  overflow: hidden;
}
/* グリッドパターン（上下フェード＋中央楕円マスクで境界をぼかす） */
.psj-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,58,95,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,95,0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
/* 中央のうっすらした光（控えめ・特別感だけ残す） */
.psj-cinema::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 90vw);
  height: min(900px, 90vw);
  background: radial-gradient(circle, rgba(147,197,253,0.10) 0%, rgba(147,197,253,0.04) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .psj-cinema { padding: 64px 0 56px; }
}

/* 背景演出：ライト系の柔らかいライト */
.psj-cinema-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(147, 197, 253, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(165, 180, 252, 0.04) 0%, transparent 45%);
  z-index: 0;
}
.psj-cinema-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.psj-cinema-glow-1 {
  width: 480px; height: 480px;
  top: -120px; left: -120px;
  background: rgba(125, 211, 252, 0.12);
  animation: glow-float 12s ease-in-out infinite;
}
.psj-cinema-glow-2 {
  width: 560px; height: 560px;
  bottom: -180px; right: -180px;
  background: rgba(165, 180, 252, 0.10);
  animation: glow-float 15s ease-in-out 2s infinite reverse;
}
@keyframes glow-float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(40px, -30px); }
}

/* ヘッダー */
.psj-cinema-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 72px;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 900px) {
  .psj-cinema-head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
}
.psj-cinema-eyebrow {
  font-family: var(--font-num);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--red);
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}
.psj-cinema-title {
  font-family: var(--font-num);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}
.psj-cinema-title-jp {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.32em;
  font-weight: 500;
  letter-spacing: 0.10em;
  color: var(--text-mid);
  margin-top: 14px;
}
.psj-cinema-head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}
@media (max-width: 900px) {
  .psj-cinema-head-right { align-items: flex-start; }
}
.psj-cinema-lead {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--text-mid);
  max-width: 420px;
  text-align: right;
}
@media (max-width: 900px) {
  .psj-cinema-lead { text-align: left; max-width: 100%; }
}
.psj-cinema-counter {
  font-family: var(--font-num);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  min-width: 140px;
}
.psj-cinema-counter strong {
  font-size: 3rem;
  font-weight: 200;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
}
.psj-cinema-counter span {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  color: var(--text-light);
  margin-top: 6px;
}

/* 旧マーキー：非表示 */
.psj-cinema-flow-wrap, .psj-cinema-flow { display: none !important; }

/* 左ナビ＋右ステージ型（5秒自動進行・Apple風） */
.psj-cinema-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  margin-bottom: 80px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .psj-cinema-tabs {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* スマホ：ナビをステージ下に・横スクロールchip化（縦並び6個の冗長さを解消）
   2026-05-13 */
@media (max-width: 768px) {
  /* 2026-05-14: SP のみ「04 BRANDS」カウンター非表示・上下の余白を詰める */
  .psj-cinema-counter { display: none !important; }
  .psj-cinema-head { margin-bottom: 24px !important; }
  .psj-cinema-head-right { gap: 14px !important; }
  .psj-cinema-eyebrow { margin-bottom: 12px !important; }
  .psj-cinema-title-jp { margin-top: 8px !important; }
  .psj-cinema-lead { font-size: 0.88rem !important; line-height: 1.75 !important; }

  .psj-cinema-tabs {
    display: flex;
    flex-direction: column;  /* 2026-05-14: ナビを上に、ステージを下に */
    gap: 18px;
  }
  /* 2026-05-14: 3列×2行グリッドで6個全部を一度に見せる
     横スクロールchipは「01・02しか見えない」と却下されたためグリッドに変更 */
  .psj-cinema-nav {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    flex-direction: initial !important;
    overflow: visible !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .psj-cinema-nav::-webkit-scrollbar { display: none; }
  .psj-cinema-nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex: initial !important;
    grid-template-columns: none !important;
    gap: 4px !important;
    padding: 12px 4px !important;
    min-height: 74px !important;
    border-top: none !important;
    border-bottom: 2px solid var(--border) !important;
    text-align: center !important;
    transition: border-color 0.3s ease, background 0.3s ease !important;
  }
  .psj-cinema-nav-item:last-child { border-bottom: 2px solid var(--border) !important; }
  .psj-cinema-nav-item.active {
    padding-left: 4px !important;
    border-bottom-color: var(--red) !important;
    background: rgba(198, 40, 40, 0.04);
  }
  .psj-cinema-nav-item:hover:not(.active) { padding-left: 4px !important; }
  .psj-cinema-nav-item::before { display: none !important; }
  .psj-cinema-nav-num {
    font-size: 1.05rem !important;
    min-width: 0 !important;
  }
  .psj-cinema-nav-body {
    align-items: center !important;
    text-align: center !important;
  }
  .psj-cinema-nav-body strong {
    font-size: 0.62rem !important;
    letter-spacing: 0.08em !important;
    line-height: 1.2 !important;
    text-align: center !important;
    white-space: normal !important;
    word-break: keep-all !important;
  }
  .psj-cinema-nav-body small { display: none !important; }
}

/* 左ナビ */
.psj-cinema-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.psj-cinema-nav-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 0 20px 24px;
  border-top: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  transition: padding-left 0.4s ease;
}
.psj-cinema-nav-item:last-child {
  border-bottom: 1px solid var(--border);
}
.psj-cinema-nav-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-50%);
}
.psj-cinema-nav-item.active::before {
  width: 16px;
}
.psj-cinema-nav-item.active {
  padding-left: 32px;
}
.psj-cinema-nav-item:hover:not(.active) {
  padding-left: 28px;
}
.psj-cinema-nav-num {
  font-family: var(--font-num);
  font-size: 1.4rem;
  font-weight: 200;
  color: var(--text-light);
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
  min-width: 32px;
}
.psj-cinema-nav-item.active .psj-cinema-nav-num {
  color: var(--red);
  font-weight: 600;
}
.psj-cinema-nav-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.psj-cinema-nav-body strong {
  font-family: var(--font-num);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--text-mid);
  font-weight: 600;
  transition: color 0.4s ease;
}
.psj-cinema-nav-item.active .psj-cinema-nav-body strong {
  color: var(--navy);
}
.psj-cinema-nav-body small {
  font-family: var(--font-serif);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.5;
  transition: color 0.4s ease;
}
.psj-cinema-nav-item.active .psj-cinema-nav-body small {
  color: var(--navy);
}
.psj-cinema-nav-item:not(.active) .psj-cinema-nav-body small {
  color: var(--text-mid);
}

/* 右ステージ */
.psj-cinema-stage {
  position: relative;
  height: 480px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 31, 51, 0.12);
}
.psj-cinema-stage-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s 0.8s;
}
.psj-cinema-stage-card.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.psj-cinema-stage-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.psj-cinema-stage-card.active .psj-cinema-stage-bg {
  transform: scale(1.12);
}
.psj-cinema-stage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 31, 51, 0.20) 0%, rgba(15, 31, 51, 0.55) 50%, rgba(15, 31, 51, 0.95) 100%);
}
.psj-cinema-stage-content {
  position: absolute;
  inset: 0;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
              opacity 0.7s ease 0.2s;
}
.psj-cinema-stage-card.active .psj-cinema-stage-content {
  transform: translateY(0);
  opacity: 1;
}
.psj-cinema-stage-num {
  position: absolute;
  top: 36px; left: 48px;
  font-family: var(--font-num);
  font-size: 5.5rem;
  font-weight: 200;
  letter-spacing: -0.06em;
  line-height: 1;
  opacity: 0.95;
}
.psj-cinema-stage-tag {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  color: #FCD34D;
  font-weight: 700;
  margin-bottom: 12px;
}
.psj-cinema-stage-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 16px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.psj-cinema-stage-desc {
  font-size: 0.94rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
  max-width: 560px;
}
.psj-cinema-stage-brand {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: #FCD34D;
  padding: 6px 14px;
  background: rgba(252, 211, 77, 0.14);
  border: 1px solid rgba(252, 211, 77, 0.32);
  border-radius: 999px;
  align-self: flex-start;
}

/* プログレスバー */
.psj-cinema-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 3;
}
.psj-cinema-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #FCD34D, var(--red));
}

/* スマホ：ステージは画面幅に追従するアスペクト比で破綻防止
   2026-05-13 修正：固定高さ→aspect-ratio化＋scale(0.92)起因の白枠を解消 */
@media (max-width: 768px) {
  .psj-cinema-stage {
    height: auto;
    aspect-ratio: 4 / 5;     /* 例：幅343→高429・幅360→高450・幅428→高535 */
    min-height: 380px;
    max-height: 560px;
  }
  .psj-cinema-stage-content { padding: 28px 24px; }
  .psj-cinema-stage-num { top: 22px; left: 24px; font-size: 4rem; }
  .psj-cinema-stage-title { font-size: 1.4rem; line-height: 1.35; margin-bottom: 12px; }
  .psj-cinema-stage-desc { font-size: 0.88rem; line-height: 1.75; margin-bottom: 14px; }
  /* 2026-05-14: SPのみオーバーレイをさらに薄くして画像下を明るく
     上 0.05 / 中 0.20 / 下 0.45 まで軽減。テキストはシャドウ強めで視認性を確保 */
  .psj-cinema-stage-overlay {
    background:
      linear-gradient(180deg,
        rgba(15, 31, 51, 0.05) 0%,
        rgba(15, 31, 51, 0.20) 55%,
        rgba(15, 31, 51, 0.45) 100%) !important;
  }
  /* 文字視認性をシャドウ強化でカバー */
  .psj-cinema-stage-title {
    text-shadow:
      0 2px 12px rgba(0, 0, 0, 0.70),
      0 0 4px rgba(0, 0, 0, 0.55) !important;
  }
  .psj-cinema-stage-desc {
    text-shadow:
      0 1px 8px rgba(0, 0, 0, 0.65),
      0 0 3px rgba(0, 0, 0, 0.50);
  }
  .psj-cinema-stage-num {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  }
  /* 背景画像：scale(0.92)で隙間が出ていたのでcoverの本来挙動に戻す */
  .psj-cinema-stage-card .psj-cinema-stage-bg {
    transform: scale(1.02) !important;
    background-position: center center !important;
    background-size: cover !important;
  }
  .psj-cinema-stage-card.active .psj-cinema-stage-bg {
    transform: scale(1.08) !important;   /* 自動進行中の控えめなKen Burns */
  }
  /* SP専用画像差替え：横長画像が縦長ステージ枠でcoverされ左右大幅カットされていた問題を解消
     2026-05-14 SOURCING(Step1)/INSURANCE(Step4)に4:5(720x900)のSP専用画像を充てる */
  .psj-cinema-stage-card[data-step="0"] .psj-cinema-stage-bg,
  .psj-cinema-stage-card:nth-of-type(1) .psj-cinema-stage-bg {
    background-image: url('../img/rental/landcruiser-sp.jpg?v=20260514-tcl-sp') !important;
    background-size: cover !important;
    background-position: center center !important;
  }
  .psj-cinema-stage-card[data-step="3"] .psj-cinema-stage-bg,
  .psj-cinema-stage-card:nth-of-type(4) .psj-cinema-stage-bg {
    background-image: url('../img/rental/solio-sp.jpg?v=20260514-tcl-sp') !important;
    background-size: cover !important;
    background-position: center center !important;
  }
  /* psj-cinema-flow のhover停止もタッチ環境では無効化 */
  .psj-cinema-flow {
    animation-play-state: running !important;
  }
}
@media (max-width: 540px) {
  .psj-cinema-stage {
    aspect-ratio: 3 / 4;     /* よりコンパクト（幅360→高480） */
    min-height: 360px;
  }
  .psj-cinema-stage-content { padding: 24px 20px; }
  .psj-cinema-stage-num { top: 18px; left: 20px; font-size: 3.4rem; }
  .psj-cinema-stage-title { font-size: 1.3rem; }
}
@media (hover: hover) and (pointer: fine) {
  .psj-cinema-flow-wrap:hover .psj-cinema-flow {
    animation-play-state: paused;
  }
}
.psj-cinema-flow {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 24px 28px;
  animation: psj-cinema-marquee 60s linear infinite;
  will-change: transform;
}
/* hover一時停止は (hover: hover) only — touchデバイスでは効かない */
@keyframes psj-cinema-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 8px)); }
}

.psj-cinema-card {
  flex: 0 0 320px;
  position: relative;
  height: 460px;
  border-radius: 4px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.psj-cinema-card:hover {
  transform: translateY(-8px);
}
.psj-cinema-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.0s cubic-bezier(0.4, 0, 0.2, 1);
}
.psj-cinema-card:hover .psj-cinema-card-bg { transform: scale(1.08); }
.psj-cinema-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 31, 51, 0.20) 0%, rgba(15, 31, 51, 0.55) 50%, rgba(15, 31, 51, 0.96) 100%);
  transition: background 0.5s ease;
}
.psj-cinema-card:hover .psj-cinema-card-overlay {
  background:
    linear-gradient(180deg, rgba(15, 31, 51, 0.10) 0%, rgba(15, 31, 51, 0.45) 50%, rgba(15, 31, 51, 0.92) 100%);
}
.psj-cinema-card-content {
  position: absolute;
  inset: 0;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  color: var(--white);
}
.psj-cinema-num {
  position: absolute;
  top: 24px; left: 26px;
  font-family: var(--font-num);
  font-size: 4.5rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--white);
  opacity: 0.95;
}
.psj-cinema-tag {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  color: #FCD34D;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.psj-cinema-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 12px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.psj-cinema-card-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.psj-cinema-card-brand {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #FCD34D;
  padding: 5px 10px;
  background: rgba(252, 211, 77, 0.12);
  border: 1px solid rgba(252, 211, 77, 0.28);
  border-radius: 999px;
  align-self: flex-start;
}

.psj-cinema-scroll-hint {
  text-align: center;
  font-family: var(--font-num);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--text-light);
  margin-top: 8px;
}

/* ============================================================
   4店舗ブランド v2 ── 写真メイン縦長＋ホバーで詳細スライドイン
   ============================================================ */
.psj-brand-section {
  position: relative;
  z-index: 2;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.psj-brand-head {
  margin-bottom: 36px;
  text-align: center;
}
.psj-brand-eyebrow {
  font-family: var(--font-num);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--text-light);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.psj-brand-h {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  color: var(--navy);
}

.psj-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.psj-brand-card {
  position: relative;
  aspect-ratio: 3 / 5;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  display: block;
  cursor: pointer;
  border-radius: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s ease;
  box-shadow: 0 4px 16px rgba(15, 31, 51, 0.12);
}
.psj-brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(15, 31, 51, 0.40);
}

.psj-brand-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(1.12) saturate(1.05);
  transition: transform 1.0s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}
.psj-brand-card:hover .psj-brand-img {
  transform: scale(1.10);
  filter: brightness(1.18) saturate(1.10);
}
.psj-brand-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 31, 51, 0.00) 0%, rgba(15, 31, 51, 0.30) 50%, rgba(15, 31, 51, 0.78) 100%);
  transition: background 0.5s ease;
}
.psj-brand-card:hover .psj-brand-overlay {
  background:
    linear-gradient(180deg, rgba(15, 31, 51, 0.05) 0%, rgba(15, 31, 51, 0.45) 50%, rgba(15, 31, 51, 0.86) 100%);
}

/* 番号 */
.psj-brand-num {
  position: absolute;
  top: 18px; left: 20px;
  z-index: 3;
  font-family: var(--font-num);
  font-size: 2.4rem;
  font-weight: 200;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

/* 通常表示（下部） */
.psj-brand-base {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease;
}
.psj-brand-card:hover .psj-brand-base {
  transform: translateY(-12px);
  opacity: 0.5;
}
.psj-brand-en {
  font-family: var(--font-num);
  font-size: 0.66rem;
  letter-spacing: 0.20em;
  color: #FCD34D;
  font-weight: 700;
  text-transform: uppercase;
}
.psj-brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.psj-brand-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

/* ホバー時に下からスライドアップ */
.psj-brand-detail {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  padding: 22px 22px 26px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 31, 51, 0.90) 30%, #0F1F33 100%);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.psj-brand-card:hover .psj-brand-detail {
  transform: translateY(0);
}
.psj-brand-points {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.psj-brand-points li {
  font-size: 0.76rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
}
.psj-brand-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: #FCD34D;
}
.psj-brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FCD34D;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, gap 0.3s ease;
}
.psj-brand-card:hover .psj-brand-cta {
  background: var(--white);
  gap: 12px;
}

/* 「現在のサイト」カード */
.psj-brand-card-current {
  cursor: default;
  outline: 2px solid #FCD34D;
  outline-offset: -2px;
}
.psj-brand-card-current:hover {
  transform: none;
  box-shadow: 0 4px 16px rgba(15, 31, 51, 0.12);
}
.psj-brand-card-current:hover .psj-brand-img {
  transform: none;
}
.psj-brand-card-current:hover .psj-brand-base {
  transform: none;
  opacity: 1;
}
.psj-brand-card-current .psj-brand-detail {
  /* 現在のサイトは詳細を常時表示しない（タグで強調） */
  transform: translateY(100%);
}
.psj-brand-card-current:hover .psj-brand-detail {
  transform: translateY(100%);
}
.psj-brand-current-tag {
  position: absolute;
  top: 22px; right: 18px;
  z-index: 3;
  background: #FCD34D;
  color: var(--navy);
  font-family: var(--font-num);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  border-radius: 999px;
}
.psj-brand-cta-current {
  background: rgba(252, 211, 77, 0.20);
  color: #FCD34D;
  border: 1px solid rgba(252, 211, 77, 0.40);
}

/* レスポンシブ */
@media (max-width: 900px) {
  .psj-brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  /* PC通り「縦長カード4枚を1列」 構成 */
  .psj-brand-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .psj-brand-card {
    aspect-ratio: 3/4;  /* PC同様の縦長 */
    min-height: 360px;
  }
  /* base：下部に絶対配置の黒帯（PCと同じ） */
  .psj-brand-base {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px 22px;
  }
  /* detail：タップ／フォーカスで表示 */
  .psj-brand-detail {
    transform: translateY(100%);
    position: absolute;
  }
  .psj-brand-card:active .psj-brand-detail,
  .psj-brand-card:focus .psj-brand-detail,
  .psj-brand-card:focus-within .psj-brand-detail {
    transform: translateY(0);
  }
  /* 現在のサイト（プラスパージャパン）は detail を表示しない */
  .psj-brand-card-current .psj-brand-detail,
  .psj-brand-card-current:active .psj-brand-detail,
  .psj-brand-card-current:focus .psj-brand-detail {
    transform: translateY(100%);
  }
}

/* グループ全ブランド下：統合CTA案内 */
.psj-brand-footer-cta {
  margin-top: 48px;
  padding: 36px 28px;
  background: linear-gradient(135deg, #0D2143 0%, #1E3A5F 100%);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(13,33,67,0.18);
}
.psj-brand-footer-text {
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  line-height: 1.85;
  margin: 0 0 24px;
}
.psj-brand-footer-text strong {
  color: #FCD34D;
  font-weight: 700;
}
.psj-brand-footer-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.psj-brand-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.04em;
}
.psj-brand-footer-btn-tel {
  background: #fff;
  color: #C62828;
  box-shadow: 0 8px 20px rgba(255,255,255,0.18);
}
.psj-brand-footer-btn-tel:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,255,255,0.28);
}
.psj-brand-footer-btn-form {
  background: #FCD34D;
  color: #0D2143;
  box-shadow: 0 8px 20px rgba(252,211,77,0.30);
}
.psj-brand-footer-btn-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(252,211,77,0.45);
}
@media (max-width: 768px) {
  .psj-brand-footer-cta {
    margin-top: 32px;
    padding: 26px 18px;
    border-radius: 14px;
  }
  .psj-brand-footer-text {
    font-size: 0.84rem;
    line-height: 1.75;
    margin-bottom: 18px;
  }
  .psj-brand-footer-text br { display: none; }
  .psj-brand-footer-btns {
    flex-direction: column;
    gap: 10px;
  }
  .psj-brand-footer-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 0.92rem;
  }
}

/* 旧 4店舗ライト系（非表示） */
.psj-cinema-brands { display: none !important; }

/* 4店舗ブランド（ライト系・旧版・参照のみ） */
.psj-cinema-brands-old-stash {
  position: relative;
  z-index: 2;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.psj-cinema-brands-head {
  margin-bottom: 32px;
}
.psj-cinema-brands-eyebrow {
  font-family: var(--font-num);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--text-light);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
.psj-cinema-brands-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--navy);
}
.psj-cinema-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.06);
}
.psj-cinema-brand {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 26px 24px;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  text-decoration: none;
  color: var(--text);
  transition: background 0.4s ease;
}
.psj-cinema-brand:nth-child(4n) { border-right: none; }
.psj-cinema-brand:hover {
  background: var(--red-light);
}
.psj-cinema-brand-en {
  font-family: var(--font-num);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.06em;
}
.psj-cinema-brand-name {
  font-family: var(--font-serif);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  display: block;
}
.psj-cinema-brand-desc {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-mid);
  display: block;
  margin-top: 2px;
}
.psj-cinema-brand-arrow {
  font-family: var(--font-num);
  font-size: 1rem;
  color: var(--text-light);
  transition: transform 0.3s ease, color 0.3s ease;
}
.psj-cinema-brand:hover .psj-cinema-brand-arrow {
  color: var(--red);
  transform: translateX(6px);
}
.psj-cinema-brand-current {
  background: var(--navy);
  cursor: default;
}
.psj-cinema-brand-current .psj-cinema-brand-name { color: #FCD34D; }
.psj-cinema-brand-current .psj-cinema-brand-en { color: rgba(255, 255, 255, 0.6); }
.psj-cinema-brand-current .psj-cinema-brand-desc { color: rgba(255, 255, 255, 0.78); }
.psj-cinema-brand-current-mark {
  color: #FCD34D !important;
  animation: brand-blink 2s ease-in-out infinite;
}
@keyframes brand-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.psj-cinema-brand-current:hover {
  background: var(--navy);
}

@media (max-width: 900px) {
  .psj-cinema-brands-grid { grid-template-columns: repeat(2, 1fr); }
  .psj-cinema-brand:nth-child(4n) { border-right: 1px solid rgba(255,255,255,0.10); }
  .psj-cinema-brand:nth-child(2n) { border-right: none; }
}
@media (max-width: 540px) {
  .psj-cinema-brands-grid { grid-template-columns: 1fr; }
  .psj-cinema-brand { border-right: none !important; }
  .psj-cinema-card { flex: 0 0 76vw; height: 380px; }
  .psj-cinema-flow { gap: 12px; }
  .psj-cinema-num { font-size: 3.6rem; top: 20px; left: 20px; }
  .psj-cinema-card-content { padding: 22px 20px; }
  .psj-cinema-card-title { font-size: 1.2rem; }
  .psj-cinema-flow { animation-duration: 45s; }
}
@media (prefers-reduced-motion: reduce) {
  .psj-cinema-flow { animation: none; }
}

/* 旧版PSJ完全非表示 */
.psj-urban { display: none !important; }
.psj-stores { display: none !important; }
.psj-eco { display: none !important; }

/* ============================================================
   PSJ Group Ecosystem v11.0（旧URBAN HOME風・非表示）
   ============================================================ */
.psj-urban {
  position: relative;
  background: var(--white);
  padding: 110px 0 100px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .psj-urban { padding: 64px 0 56px; }
}
.psj-urban-container { position: relative; }

/* 装飾SVG曲線（破線・ブロンズベージュアクセント） */
.psj-urban-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

/* ヘッダー */
.psj-urban-head {
  text-align: center;
  margin-bottom: 96px;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.psj-urban-eyebrow {
  font-family: var(--font-num);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 22px;
}
.psj-urban-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 32px;
}
.psj-urban-divider {
  width: 64px;
  height: 1px;
  background: var(--mid-gray);
  margin: 0 auto 36px;
}
.psj-urban-lead {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--text-mid);
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 6ステップ・フロー */
.psj-urban-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}
.psj-urban-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.psj-urban-step-up   { transform: translateY(48px); }
.psj-urban-step-down { transform: translateY(-48px); }
.psj-urban-step:hover {
  transform: translateY(-8px);
}

/* 円形アイコンエリア（ガラスモーフィズム風） */
.psj-urban-icon-wrap {
  position: relative;
  width: 112px; height: 112px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.psj-urban-step:hover .psj-urban-icon-wrap {
  background: var(--white);
  border-color: var(--mid-gray);
  box-shadow: 0 12px 32px -8px rgba(196, 167, 125, 0.30);
}
.psj-urban-icon {
  width: 56px; height: 56px;
  color: var(--navy);
  transition: color 0.5s ease;
}
.psj-urban-step:hover .psj-urban-icon {
  color: #C4A77D; /* ブロンズベージュ */
}
.psj-urban-num {
  position: absolute;
  top: -16px; right: -14px;
  font-family: var(--font-num);
  font-size: 3rem;
  font-weight: 200;
  color: var(--light-gray);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 0.5s ease;
}
.psj-urban-step:hover .psj-urban-num {
  color: var(--mid-gray);
}

.psj-urban-h {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 12px;
  min-height: 2.8em;
}
.psj-urban-desc {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 0 8px;
}

/* 4店舗ダイレクトリンク */
.psj-urban-stores {
  text-align: center;
  margin: 100px 0 40px;
  position: relative;
  z-index: 2;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.psj-urban-stores-label {
  font-family: var(--font-num);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.psj-urban-stores-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.psj-urban-store {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s ease;
}
.psj-urban-store:hover {
  border-color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(30, 58, 95, 0.18);
}
.psj-urban-store strong {
  font-family: var(--font-serif);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
}
.psj-urban-store span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}
.psj-urban-store-current {
  background: var(--text);
  border-color: var(--text);
  cursor: default;
}
.psj-urban-store-current strong { color: #C4A77D; }
.psj-urban-store-current span { color: rgba(255,255,255,0.72); }
.psj-urban-store-current:hover { transform: none; box-shadow: none; }

/* CTA */
.psj-urban-cta {
  text-align: center;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}
.psj-urban-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 56px;
  background: #1A2D44;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #1A2D44;
}
.psj-urban-btn:hover {
  background: #2A3E5A;
  border-color: #2A3E5A;
}
.psj-urban-btn svg {
  transition: transform 0.5s ease;
}
.psj-urban-btn:hover svg {
  transform: translateX(8px);
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .psj-urban-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 16px;
  }
  .psj-urban-step-up,
  .psj-urban-step-down {
    transform: none;
  }
  .psj-urban-stores-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .psj-urban-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 12px;
  }
  .psj-urban-icon-wrap { width: 92px; height: 92px; margin-bottom: 20px; }
  .psj-urban-icon { width: 44px; height: 44px; }
  .psj-urban-num { font-size: 2.2rem; top: -12px; right: -10px; }
  .psj-urban-h { font-size: 0.94rem; }
  .psj-urban-desc { font-size: 0.78rem; }
  .psj-urban-btn { padding: 14px 32px; font-size: 0.78rem; letter-spacing: 0.18em; }
}

/* 旧版 完全非表示 */
.psj-stores, .psj-eco { display: none !important; }

/* ============================================================
   PSJ Group v10.0 ── 4店舗 写真メイン横並び（旧版・非表示）
   ============================================================ */
.psj-stores {
  background: var(--off-white);
  padding: 110px 0 100px;
}
@media (max-width: 768px) {
  .psj-stores { padding: 64px 0 56px; }
}

.psj-stores-head {
  text-align: center;
  margin-bottom: 72px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.psj-stores-eyebrow {
  font-family: var(--font-num);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 18px;
}
.psj-stores-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 28px;
}
.psj-stores-divider {
  width: 48px;
  height: 1px;
  background: var(--mid-gray);
  margin: 0 auto 28px;
}
.psj-stores-lead {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

/* グリッド：4列 */
.psj-stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

/* 店舗カード */
.psj-store-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s ease,
              border-color 0.4s ease;
  overflow: hidden;
}
.psj-store-card:hover {
  transform: translateY(-6px);
  border-color: var(--navy);
  box-shadow: 0 20px 44px -12px rgba(30, 58, 95, 0.20);
}
.psj-store-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light-gray);
}
.psj-store-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.0s cubic-bezier(0.4, 0, 0.2, 1);
}
.psj-store-card:hover .psj-store-img img { transform: scale(1.06); }

/* 「現在のサイト」バッジ */
.psj-store-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--navy);
  color: #FCD34D;
  padding: 5px 12px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 999px;
  z-index: 2;
}

/* カード本文 */
.psj-store-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.psj-store-en {
  font-family: var(--font-num);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.psj-store-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 6px;
}
.psj-store-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.psj-store-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  flex: 1;
}
.psj-store-points li {
  font-size: 0.76rem;
  color: var(--text-mid);
  padding-left: 14px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.65;
}
.psj-store-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--red);
}

.psj-store-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}
.psj-store-card:hover .psj-store-cta {
  color: var(--red);
  border-color: var(--red);
  gap: 12px;
}
.psj-store-cta svg {
  transition: transform 0.3s ease;
}
.psj-store-card:hover .psj-store-cta svg {
  transform: translateX(4px);
}

/* 「現在のサイト」カード（アンカー無し） */
.psj-store-current {
  border-color: var(--navy);
  border-width: 2px;
  cursor: default;
}
.psj-store-current:hover {
  transform: none;
  box-shadow: none;
}
.psj-store-current:hover .psj-store-img img {
  transform: none;
}
.psj-store-cta-current {
  background: var(--navy);
  color: #FCD34D;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.78rem;
}
.psj-store-card:hover .psj-store-cta-current {
  color: #FCD34D;
  border: none;
  gap: 6px;
}

/* フッター文 */
.psj-stores-foot {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.psj-stores-foot p {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--text-mid);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .psj-stores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 540px) {
  .psj-stores-grid {
    grid-template-columns: 1fr;
  }
  .psj-store-img { aspect-ratio: 16 / 10; }
}

/* ============================================================
   PSJ Group Ecosystem v9.0（旧版・非表示）
   ============================================================ */
.psj-eco { display: none !important; }
.psj-eco {
  position: relative;
  background: var(--off-white);
  padding: 110px 0 100px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .psj-eco { padding: 64px 0 56px; }
}
.psj-eco-container { position: relative; }

/* 装飾SVG曲線 */
.psj-eco-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

/* ヘッダー */
.psj-eco-head {
  text-align: center;
  margin-bottom: 88px;
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.psj-eco-eyebrow {
  font-family: var(--font-num);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 18px;
}
.psj-eco-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 28px;
}
.psj-eco-divider {
  width: 48px;
  height: 1px;
  background: var(--mid-gray);
  margin: 0 auto 28px;
}
.psj-eco-lead {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto;
}

/* 6ステップ・フロー */
.psj-eco-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.psj-eco-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.psj-eco-step-up   { transform: translateY(28px); }
.psj-eco-step-down { transform: translateY(-28px); }
.psj-eco-step:hover {
  transform: translateY(0) scale(1.04);
}

.psj-eco-icon-wrap {
  position: relative;
  width: 92px; height: 92px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.psj-eco-icon {
  width: 100%; height: 100%;
  color: var(--navy);
  transition: color 0.4s ease;
}
.psj-eco-step:hover .psj-eco-icon {
  color: var(--red);
}
.psj-eco-num {
  position: absolute;
  top: -10px; right: -8px;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--mid-gray);
  line-height: 1;
  transition: color 0.4s ease;
}
.psj-eco-step:hover .psj-eco-num {
  color: var(--navy);
}

.psj-eco-h {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 8px;
  min-height: 2.8em;
}
.psj-eco-desc {
  font-size: 0.74rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 10px;
  padding: 0 4px;
}
.psj-eco-tag {
  font-family: var(--font-num);
  font-size: 0.66rem;
  color: var(--red);
  letter-spacing: 0.06em;
  background: var(--red-light);
  padding: 4px 10px;
  border-radius: 4px;
  line-height: 1.5;
  display: inline-block;
}

/* 4店舗ダイレクトリンク */
.psj-eco-stores {
  text-align: center;
  margin: 80px 0 40px;
  position: relative;
  z-index: 2;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.psj-eco-stores-label {
  font-family: var(--font-num);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.psj-eco-stores-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.psj-eco-store {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s ease;
}
.psj-eco-store:hover {
  border-color: var(--navy);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(30, 58, 95, 0.20);
}
.psj-eco-store strong {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.psj-eco-store span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-mid);
}
.psj-eco-store-current {
  background: var(--navy);
  border-color: var(--navy);
  cursor: default;
}
.psj-eco-store-current strong { color: #FCD34D; }
.psj-eco-store-current span { color: rgba(255,255,255,0.78); }
.psj-eco-store-current:hover { transform: none; box-shadow: none; }

/* CTA */
.psj-eco-cta {
  text-align: center;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}
.psj-eco-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 48px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: all 0.4s ease;
  border: 1px solid var(--navy);
}
.psj-eco-btn:hover {
  background: var(--text);
  border-color: var(--text);
}
.psj-eco-btn svg {
  transition: transform 0.4s ease;
}
.psj-eco-btn:hover svg {
  transform: translateX(8px);
}

/* レスポンシブ */
@media (max-width: 900px) {
  .psj-eco-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 12px;
  }
  .psj-eco-step-up,
  .psj-eco-step-down {
    transform: none;
  }
  .psj-eco-stores-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .psj-eco-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 8px;
  }
  .psj-eco-icon-wrap { width: 72px; height: 72px; margin-bottom: 16px; }
  .psj-eco-num { font-size: 1.7rem; }
  .psj-eco-h { font-size: 0.86rem; }
  .psj-eco-desc { font-size: 0.7rem; }
}

/* ============================================================
   選ばれる理由 v8.0 縦長ストーリー型（Geminiコード採用・格式重視）
   ============================================================ */
.reason-story {
  padding: 110px 0 130px;
  background: var(--white);
}
@media (max-width: 768px) {
  .reason-story { padding: 64px 0 72px; }
}

.reason-story-head {
  text-align: center;
  margin-bottom: 96px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.reason-story-eyebrow {
  font-family: var(--font-num);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 18px;
}
.reason-story-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 28px;
}
.reason-story-divider {
  width: 48px;
  height: 1px;
  background: var(--mid-gray);
  margin: 0 auto 32px;
}
.reason-story-lead {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto;
}

/* リスト：縦に積まれる */
.reason-story-list {
  display: flex;
  flex-direction: column;
  gap: 110px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .reason-story-list { gap: 72px; }
}

/* 各行：grid 12分割（テキスト7・画像5） */
.reason-story-row {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 72px;
  align-items: center;
}
.reason-story-row-rev {
  grid-template-columns: 5fr 7fr;
}
.reason-story-row-rev .reason-story-text {
  order: 2;
}
.reason-story-row-rev .reason-story-img {
  order: 1;
}

/* 数字＋見出し */
.reason-story-num-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}
.reason-story-num {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--mid-gray);
  letter-spacing: -0.02em;
  transition: color 0.6s ease;
  flex-shrink: 0;
}
.reason-story-row:hover .reason-story-num {
  color: var(--navy);
}
.reason-story-num-body { padding-top: 12px; }
.reason-story-h {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 8px;
}
.reason-story-en {
  font-family: var(--font-num);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reason-story-desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--text-mid);
  text-align: justify;
  margin-bottom: 24px;
  word-break: break-all;
}

/* 下線：ホバーで長くなる */
.reason-story-line {
  width: 80px;
  height: 1px;
  background: var(--mid-gray);
  margin-top: 32px;
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s ease;
}
.reason-story-row:hover .reason-story-line {
  width: 100%;
  background: var(--navy);
}

/* 画像 */
.reason-story-img {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 1px 4px rgba(15, 31, 51, 0.06);
}
.reason-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.0s cubic-bezier(0.4, 0, 0.2, 1);
}
.reason-story-row:hover .reason-story-img img {
  transform: scale(1.05);
}

/* 最下部CTA */
.reason-story-cta {
  text-align: center;
  margin-top: 96px;
}
.reason-story-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 48px;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.reason-story-btn:hover {
  background: var(--text);
  color: var(--white);
}
.reason-story-btn svg {
  transition: transform 0.4s ease;
}
.reason-story-btn:hover svg {
  transform: translateX(8px);
}

/* レスポンシブ */
@media (max-width: 900px) {
  .reason-story-row,
  .reason-story-row-rev {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .reason-story-row-rev .reason-story-text { order: 2; }
  .reason-story-row-rev .reason-story-img { order: 1; }
  .reason-story-row .reason-story-text { order: 2; }
  .reason-story-row .reason-story-img { order: 1; }
  .reason-story-num-row { gap: 16px; margin-bottom: 20px; }
}

/* ---------- 統計バー（数字で見るプラスパー） ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat-item {
  text-align: center;
  padding: 28px 16px 22px;
  position: relative;
  border-right: 1px solid var(--border-light);
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--red);
}
.stat-num {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-suffix {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-left: 4px;
  font-weight: 600;
}
.stat-cap {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  color: var(--text-mid);
  margin-top: 8px;
  line-height: 1.5;
}

/* ---------- 理由カルーセル ---------- */
.reason-carousel {
  position: relative;
  padding: 0 56px;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.carousel-track > .reason-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 5;
  box-shadow: var(--shadow-sm);
  padding: 0;
  line-height: 1;
}
.carousel-nav:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}
.carousel-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: translateY(-50%);
}
.carousel-nav.prev { left: 0; }
.carousel-nav.next { right: 0; }

@media (max-width: 900px) {
  .carousel-track > .reason-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 600px) {
  .reason-carousel { padding: 0 36px; }
  .carousel-track > .reason-card { flex: 0 0 100%; }
  .carousel-nav { width: 36px; height: 36px; font-size: 1.3rem; }
}

/* ---------- 外部在庫リンク（グーネット/カーセンサー） ---------- */
.external-stock {
  margin-top: 36px;
  text-align: center;
}
.external-stock-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  padding: 0 18px;
}
.external-stock-label::before,
.external-stock-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px; height: 1px;
  background: var(--border);
}
.external-stock-label::before { right: 100%; }
.external-stock-label::after  { left: 100%; }
.external-stock-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.external-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 18px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.external-btn .ext-logo {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}
.external-btn-goo .ext-logo {
  background: #FF6F00;
  color: var(--white);
}
.external-btn-cs .ext-logo {
  background: #D32F2F;
  color: var(--white);
}
.external-btn .ext-text { color: var(--text); }
.external-btn .ext-arrow {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  transition: transform var(--transition), color var(--transition);
}
.external-btn:hover {
  border-color: var(--navy);
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.external-btn:hover .ext-arrow {
  transform: translate(2px, -2px);
  color: var(--red);
}

/* ---------- 理由セクション ---------- */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .reason-grid { grid-template-columns: 1fr; gap: 16px; }
}
.reason-card {
  text-align: left;
  padding: 0;
  /* 下部に車のシルエットを薄く配置 */
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E3A5F' stroke-opacity='0.06' stroke-width='0.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2'/%3E%3Ccircle cx='7' cy='17' r='2'/%3E%3Cpath d='M9 17h6'/%3E%3Ccircle cx='17' cy='17' r='2'/%3E%3C/svg%3E") no-repeat right -30px bottom -20px / 240px auto,
    var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s ease,
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
/* カード上部の画像エリア */
.reason-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.reason-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(30, 58, 95, 0.20) 100%);
  transition: opacity 0.4s ease;
}
.reason-card:hover .reason-img::after { opacity: 0.6; }
.reason-img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reason-card:hover .reason-img {
  transform: scale(1.04);
}
/* 画像下のテキスト部分 */
.reason-card > .reason-icon,
.reason-card > .reason-num,
.reason-card > .reason-title,
.reason-card > .reason-desc {
  margin-left: 24px;
  margin-right: 24px;
}
.reason-card > .reason-icon { margin-top: -32px; margin-bottom: 14px; }
.reason-card > .reason-desc { padding-bottom: 24px; }
/* 巨大番号を背景にデコレーション */
.reason-card::before {
  content: attr(data-num);
  position: absolute;
  top: -24px;
  right: -8px;
  font-family: var(--font-num);
  font-size: 9rem;
  font-weight: 800;
  color: var(--red-light);
  line-height: 1;
  letter-spacing: -0.04em;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), color var(--transition);
}
.reason-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--navy));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.reason-card > * { position: relative; z-index: 1; }
.reason-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 1px 3px rgba(30, 58, 95, 0.04),
    0 18px 40px -12px rgba(30, 58, 95, 0.20);
  border-color: var(--red);
}
.reason-card:hover::before {
  transform: scale(1.15) rotate(-6deg);
  color: rgba(91, 155, 213, 0.30);
}
.reason-card:hover::after {
  transform: scaleY(1);
}
/* 四角背景完全撤廃・アイコンシルエットのみ */
.reason-card .reason-icon,
div.reason-icon {
  width: 64px !important; height: 64px !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reason-icon img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  filter: brightness(0) saturate(100%) invert(20%) sepia(40%) saturate(1500%) hue-rotate(190deg) brightness(85%) contrast(95%)
          drop-shadow(0 4px 8px rgba(30, 58, 95, 0.15));
  transition: filter var(--transition), transform 0.5s ease;
}
.reason-card:hover .reason-icon {
  transform: translateX(6px) rotate(-6deg) scale(1.12);
}
.reason-card:hover .reason-icon img {
  filter: brightness(0) saturate(100%) invert(40%) sepia(70%) saturate(1700%) hue-rotate(180deg) brightness(95%)
          drop-shadow(0 6px 12px rgba(91, 155, 213, 0.40));
}
.reason-num {
  font-family: var(--font-num);
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--red);
}
.reason-title {
  font-family: var(--font-serif);
  font-weight: 700;
}
.reason-num {
  font-family: 'Roboto', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.16em;
  margin-bottom: 9px;
  text-transform: uppercase;
}
.reason-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 9px;
  letter-spacing: 0.01em;
}
.reason-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.8; }

/* ============================================================
   サービス紹介 v7.0 格式・伝統路線（国分グループ風・端正3列）
   ============================================================ */
.srv-formal {
  padding: 96px 0 110px;
  background: var(--white);
}
@media (max-width: 768px) {
  .srv-formal { padding: 64px 0 72px; }
}
.srv-formal-head {
  text-align: center;
  margin-bottom: 72px;
}
.srv-formal-eyebrow {
  font-family: var(--font-num);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 18px;
}
.srv-formal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.10em;
  line-height: 1.7;
  margin-bottom: 28px;
}
.srv-formal-divider {
  width: 48px;
  height: 1px;
  background: var(--text-light);
  margin: 0 auto;
}
.srv-only-sp { display: none; }
@media (max-width: 768px) {
  .srv-only-sp { display: inline; }
}

/* グリッド：均等3列、ゆったり余白 */
.srv-formal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.srv-formal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.srv-formal-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 28px;
  display: block;
}
.srv-formal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.0s cubic-bezier(0.4, 0, 0.2, 1);
}
.srv-formal-card:hover .srv-formal-img-wrap img {
  transform: scale(1.05);
}
.srv-formal-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.10em;
  margin-bottom: 14px;
  line-height: 1.6;
}
.srv-formal-card-desc {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  line-height: 1.95;
  color: var(--text-mid);
  text-align: justify;
  margin-bottom: 22px;
  padding: 0 8px;
  /* 行揃え */
  text-justify: inter-ideograph;
  word-break: break-all;
}
.srv-formal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--text);
  padding-bottom: 4px;
  transition: color 0.4s ease, border-color 0.4s ease, gap 0.3s ease;
}
.srv-formal-link:hover {
  color: var(--text-light);
  border-color: var(--text-light);
  gap: 14px;
}
.srv-formal-link svg {
  transition: transform 0.4s ease;
}
.srv-formal-link:hover svg {
  transform: translateX(4px);
}

/* レスポンシブ */
@media (max-width: 900px) {
  .srv-formal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
}
@media (max-width: 540px) {
  .srv-formal-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .srv-formal-card-desc { padding: 0 16px; }
}

/* ============================================================
   サービス Bento（写真背景・ホバーで詳細展開・Geminiコード採用）— 旧版（非表示）
   ============================================================ */
.section-services-bento, .services-bento-grid { display: none; }
.section-services-bento {
  background: var(--off-white);
  padding: 96px 0;
}
@media (max-width: 768px) {
  .section-services-bento { padding: 56px 0; }
}
.services-head {
  text-align: center;
  margin-bottom: 52px;
}
.services-eyebrow {
  font-family: var(--font-num);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.services-bento-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.services-lead {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* Bento Grid: 3列 × 3行（大1 + 小5）*/
.services-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px 280px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-bento-grid .srv-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

/* カード共通 */
.srv-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(15, 31, 51, 0.06);
  transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  cursor: pointer;
}
.srv-card:hover {
  box-shadow: 0 24px 48px -12px rgba(15, 31, 51, 0.30);
  transform: translateY(-4px);
}
.srv-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.srv-card:hover .srv-card-bg {
  transform: scale(1.10);
}
.srv-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 31, 51, 0.92) 0%, rgba(15, 31, 51, 0.45) 50%, rgba(15, 31, 51, 0.10) 100%);
  transition: opacity 0.5s ease;
}
.srv-card-overlay-gold {
  background: linear-gradient(to top, rgba(146, 100, 30, 0.92) 0%, rgba(217, 167, 66, 0.50) 50%, rgba(252, 211, 77, 0.15) 100%);
}
.srv-card-content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  z-index: 2;
}
.srv-card-large .srv-card-content {
  padding: 36px;
}
.srv-eyebrow {
  font-family: var(--font-num);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #FCD34D;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.srv-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.40);
}
.srv-card-large .srv-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.srv-desc {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  line-height: 1.7;
  opacity: 0;
  max-height: 0;
  margin: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, max-height 0.4s ease, transform 0.5s ease, margin 0.4s ease;
  overflow: hidden;
}
.srv-card:hover .srv-desc {
  opacity: 0.9;
  max-height: 200px;
  margin-top: 8px;
  margin-bottom: 14px;
  transform: translateY(0);
}
.srv-card-large .srv-desc {
  font-size: 0.94rem;
}
/* スマホでは説明文を常時表示 */
@media (max-width: 768px) {
  .srv-desc {
    opacity: 0.9;
    max-height: 200px;
    margin-top: 6px;
    margin-bottom: 12px;
    transform: none;
  }
}
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  color: #FCD34D;
  letter-spacing: 0.04em;
  transition: color 0.3s ease, gap 0.3s ease;
}
.srv-card:hover .srv-link {
  color: var(--white);
  gap: 14px;
}
.srv-link svg {
  transition: transform 0.3s ease;
}
.srv-card:hover .srv-link svg {
  transform: translateX(4px);
}

/* レスポンシブ */
@media (max-width: 900px) {
  .services-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 280px 220px 220px 220px;
  }
  .services-bento-grid .srv-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 540px) {
  .services-bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px;
    grid-auto-rows: 200px;
  }
  .services-bento-grid .srv-card-large {
    grid-column: span 1;
  }
}

/* ---------- サービス（最終確定版・シンプル四角カード） ---------- */
.service-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 18px !important;
}
/* 5要素時のバランス調整（PC：3+2 中央寄せ） */
@media (min-width: 980px) {
  .service-list {
    grid-template-columns: repeat(6, 1fr) !important;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .service-list > .service-item:nth-child(1) { grid-column: 1 / span 2; }
  .service-list > .service-item:nth-child(2) { grid-column: 3 / span 2; }
  .service-list > .service-item:nth-child(3) { grid-column: 5 / span 2; }
  .service-list > .service-item:nth-child(4) { grid-column: 2 / span 2; }
  .service-list > .service-item:nth-child(5) { grid-column: 4 / span 2; }
}
@media (max-width: 979px) and (min-width: 640px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.service-item {
  display: flex !important;
  gap: 18px !important;
  align-items: flex-start !important;
  padding: 28px 24px !important;
  background: var(--white) !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--border) !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: default !important;
  /* 強制可視化（過去のCSSが透明にしないように） */
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
  aspect-ratio: auto !important;
  clip-path: none !important;
  min-height: 90px !important;
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
}
.service-item:hover {
  transform: translateY(-4px) !important;
  border-color: var(--red);
  box-shadow:
    0 1px 3px rgba(30, 58, 95, 0.04),
    0 16px 36px -12px rgba(91, 155, 213, 0.25);
}
.service-item::before, .service-item::after { content: none !important; display: none !important; }
.service-item-body { flex: 1 !important; min-width: 0 !important; }
.service-item-body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-item-body p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.85;
}
/* 装飾：右下に大きい透かし円 */
.service-item::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-light) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}
/* 左から伸びる赤バー */
.service-item::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 0;
  background: linear-gradient(180deg, var(--red), var(--navy));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.service-item > * { position: relative; z-index: 1; }
.service-item:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--red);
  box-shadow:
    0 1px 3px rgba(30, 58, 95, 0.04),
    0 18px 36px -12px rgba(91, 155, 213, 0.30);
}
.service-item:hover::after {
  opacity: 1;
  transform: scale(1);
}
.service-item:hover::before { width: 4px; }
/* 四角の枠を撤廃し、車のシルエット自体をアイコンに（!importantで他CSSに勝つ） */
.service-list .service-item-icon,
.service-item .service-item-icon,
div.service-item-icon {
  width: 64px !important;
  height: 64px !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* 車のシルエットを大きく */
.service-item-icon img {
  width: 100%; height: 100%;
  display: block;
  filter: var(--tone-icon, brightness(0) saturate(100%) invert(20%) sepia(40%) saturate(1500%) hue-rotate(190deg) brightness(85%) contrast(95%));
  transition: filter var(--transition), transform 0.5s ease;
  /* ふんわり影で立体感 */
  filter: var(--tone-icon, brightness(0) saturate(100%) invert(20%) sepia(40%) saturate(1500%) hue-rotate(190deg) brightness(85%) contrast(95%))
          drop-shadow(0 4px 8px rgba(30, 58, 95, 0.12));
}
/* サービスごとのトーン（車アイコン共通でも色で区別） */
.service-item[data-tone="blue"]   { --tone-bg-1: #E8F1FA; --tone-bg-2: #FFFFFF; --tone-icon: brightness(0) saturate(100%) invert(40%) sepia(70%) saturate(900%) hue-rotate(180deg) brightness(85%); --tone-accent: #5B9BD5; }
.service-item[data-tone="navy"]   { --tone-bg-1: #DDE8F2; --tone-bg-2: #FFFFFF; --tone-icon: brightness(0) saturate(100%) invert(15%) sepia(45%) saturate(1500%) hue-rotate(200deg) brightness(40%); --tone-accent: #1E3A5F; }
.service-item[data-tone="gold"]   { --tone-bg-1: #FFF4D6; --tone-bg-2: #FFFFFF; --tone-icon: brightness(0) saturate(100%) invert(60%) sepia(80%) saturate(900%) hue-rotate(15deg) brightness(85%); --tone-accent: #D9A742; }
.service-item[data-tone="teal"]   { --tone-bg-1: #D8F0EF; --tone-bg-2: #FFFFFF; --tone-icon: brightness(0) saturate(100%) invert(35%) sepia(80%) saturate(800%) hue-rotate(140deg) brightness(75%); --tone-accent: #2BAFA5; }
.service-item[data-tone="coral"]  { --tone-bg-1: #FFE3DC; --tone-bg-2: #FFFFFF; --tone-icon: brightness(0) saturate(100%) invert(40%) sepia(60%) saturate(1700%) hue-rotate(330deg) brightness(85%); --tone-accent: #FF8B7B; }
.service-item[data-tone="purple"] { --tone-bg-1: #EAE0F2; --tone-bg-2: #FFFFFF; --tone-icon: brightness(0) saturate(100%) invert(30%) sepia(50%) saturate(1100%) hue-rotate(255deg) brightness(75%); --tone-accent: #8B5CF6; }

.service-item:hover .service-item-icon {
  transform: translateX(8px) rotate(-4deg) scale(1.1);
}
/* ホバー時：車本体の色をトーンアクセント色に変える＋走り出すような動き */
.service-item:hover .service-item-icon img {
  transform: translateX(0);
}
/* tone別 ホバー色（より濃く・鮮やかに） */
.service-item[data-tone="blue"]:hover .service-item-icon img   { filter: brightness(0) saturate(100%) invert(40%) sepia(70%) saturate(1700%) hue-rotate(180deg) brightness(95%) drop-shadow(0 6px 12px rgba(91, 155, 213, 0.40)); }
.service-item[data-tone="navy"]:hover .service-item-icon img   { filter: brightness(0) saturate(100%) invert(15%) sepia(45%) saturate(2200%) hue-rotate(200deg) brightness(50%) drop-shadow(0 6px 12px rgba(30, 58, 95, 0.40)); }
.service-item[data-tone="gold"]:hover .service-item-icon img   { filter: brightness(0) saturate(100%) invert(60%) sepia(80%) saturate(1500%) hue-rotate(15deg) brightness(95%) drop-shadow(0 6px 12px rgba(217, 167, 66, 0.40)); }
.service-item[data-tone="teal"]:hover .service-item-icon img   { filter: brightness(0) saturate(100%) invert(35%) sepia(80%) saturate(1300%) hue-rotate(140deg) brightness(85%) drop-shadow(0 6px 12px rgba(43, 175, 165, 0.40)); }
.service-item[data-tone="coral"]:hover .service-item-icon img  { filter: brightness(0) saturate(100%) invert(40%) sepia(60%) saturate(2200%) hue-rotate(330deg) brightness(95%) drop-shadow(0 6px 12px rgba(255, 139, 123, 0.40)); }
.service-item[data-tone="purple"]:hover .service-item-icon img { filter: brightness(0) saturate(100%) invert(30%) sepia(50%) saturate(1700%) hue-rotate(255deg) brightness(85%) drop-shadow(0 6px 12px rgba(139, 92, 246, 0.40)); }
.service-item:hover { border-color: var(--tone-accent, var(--red)); }
.service-item:hover::before { background: linear-gradient(180deg, var(--tone-accent, var(--red)), var(--navy)); }
.service-item-body { flex: 1; min-width: 0; }
.service-item-body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition), gap var(--transition);
}
.service-item-body h3::after {
  content: '→';
  font-family: var(--font-num);
  font-size: 0.9rem;
  color: var(--red);
  opacity: 0;
  margin-left: -4px;
  transform: translateX(-4px);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-item:hover .service-item-body h3 {
  color: var(--red);
  gap: 12px;
}
.service-item:hover .service-item-body h3::after {
  opacity: 1;
  transform: translateX(0);
}
.service-item-body p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.85; }

/* ---------- お知らせ ---------- */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.news-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 22px;
  background: var(--white);
  border-radius: 0;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition);
}
.news-item:first-child { border-top: 1px solid var(--border-light); }
.news-item:hover {
  background: var(--off-white);
}
.news-date {
  font-family: 'Roboto', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
  min-width: 6.5em;
  letter-spacing: 0.02em;
}
.news-title { font-size: 1rem; color: var(--text); line-height: 1.65; font-weight: 500; }
.news-title a:hover { color: var(--navy); text-decoration: underline; }
.news-list .badge {
  font-size: 0.78rem !important;
  padding: 5px 12px !important;
  font-weight: 700 !important;
}

/* ---------- フォーム ---------- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-label .required {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  padding: 2px 7px;
  border-radius: var(--radius);
  margin-left: 8px;
  vertical-align: middle;
}
.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  color: var(--text);
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 33, 67, 0.10);
}
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23555555'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--white);
}

/* ---------- アクセス ---------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

.access-table { width: 100%; border-collapse: collapse; }
.access-table th,
.access-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
  vertical-align: top;
  text-align: left;
}
.access-table th {
  width: 32%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  background: var(--off-white);
}

/* ---------- グループ紹介 ---------- */
.group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.group-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px 26px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  /* 車のシルエットを背景にデカく配置 */
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E3A5F' stroke-opacity='0.08' stroke-width='0.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2'/%3E%3Ccircle cx='7' cy='17' r='2'/%3E%3Cpath d='M9 17h6'/%3E%3Ccircle cx='17' cy='17' r='2'/%3E%3C/svg%3E") no-repeat center 60% / 80% auto,
    var(--white);
  position: relative;
  overflow: hidden;
}
.group-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.group-card.current {
  border-color: var(--red);
  border-width: 2px;
  background: var(--red-light);
}
.group-card h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin: 14px 0 6px;
}
.group-card p  { font-size: 0.75rem; color: var(--text-mid); }

/* グループカードのアイコン：四角の枠なし・車のシルエットのみ */
.group-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.group-icon img {
  width: 100%;
  height: 100%;
  display: block;
  filter: brightness(0) saturate(100%) invert(40%) sepia(70%) saturate(900%) hue-rotate(180deg) brightness(85%)
          drop-shadow(0 4px 8px rgba(30, 58, 95, 0.12));
  transition: filter var(--transition), transform 0.5s ease;
}
.group-card:hover .group-icon { transform: translateX(8px) rotate(-4deg) scale(1.12); }

/* トーン別色 */
.group-card[data-group-tone="blue"] .group-icon img  { filter: brightness(0) saturate(100%) invert(40%) sepia(70%) saturate(1700%) hue-rotate(180deg) brightness(95%) drop-shadow(0 4px 10px rgba(91,155,213,0.30)); }
.group-card[data-group-tone="red"] .group-icon img   { filter: brightness(0) saturate(100%) invert(20%) sepia(80%) saturate(2200%) hue-rotate(330deg) brightness(95%) drop-shadow(0 4px 10px rgba(255,107,107,0.30)); }
.group-card[data-group-tone="gold"] .group-icon img  { filter: brightness(0) saturate(100%) invert(60%) sepia(80%) saturate(1500%) hue-rotate(15deg) brightness(85%) drop-shadow(0 4px 10px rgba(217,167,66,0.35)); }
.group-card[data-group-tone="teal"] .group-icon img  { filter: brightness(0) saturate(100%) invert(35%) sepia(80%) saturate(1300%) hue-rotate(140deg) brightness(75%) drop-shadow(0 4px 10px rgba(43,175,165,0.30)); }

/* ---------- 固定フッター CTA ---------- */
#footer-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  padding: 10px 0;
  box-shadow: 0 -1px 0 var(--border), 0 -4px 16px rgba(0,0,0,0.08);
  border-top: 3px solid var(--navy);
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer-cta-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.footer-cta-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}
.footer-cta-btn.tel {
  background: var(--red);
}
.footer-cta-btn.line { background: #06C755; }
.footer-cta-btn.form {
  background: var(--navy);
}

/* ---------- フッター本体（白基調・ライトグレー） ---------- */
#footer {
  background: var(--off-white);
  color: var(--text-mid);
  padding: 60px 0 112px;
  border-top: 4px solid var(--red);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.footer-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.77rem;
  line-height: 1.9;
  color: var(--text-mid);
}
.footer-nav h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  color: var(--text-mid);
  transition: color var(--transition);
  display: inline-block;
}
.footer-nav ul li a:hover { color: var(--navy); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  color: var(--text-light);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 0.72rem;
  color: var(--text-mid);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--navy); }

/* ---------- ページヒーロー（内部ページ用・白基調） ---------- */
.page-hero {
  background: var(--white);
  color: var(--text);
  padding: 56px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--red);
  border-top: 1px solid var(--border-light);
}
.page-hero::before,
.page-hero::after { display: none; }
.page-hero h1 {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  position: relative; z-index: 1;
  color: var(--navy);
}
.page-hero p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  position: relative; z-index: 1;
}
.page-hero .en {
  font-family: 'Roboto', sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
  position: relative; z-index: 1;
  font-weight: 600;
}

/* ---------- テーブル共通 ---------- */
.table-basic { width: 100%; border-collapse: collapse; }
.table-basic th,
.table-basic td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
  text-align: left;
  vertical-align: top;
}
.table-basic th {
  background: var(--off-white);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  color: var(--navy);
  width: 30%;
}

/* ---------- スタッフカード ---------- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.staff-card {
  text-align: center;
  padding: 28px 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.staff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.staff-avatar {
  /* TODO: スタッフ写真は正方形・自然な笑顔 推奨 */
  width: 88px; height: 88px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid var(--border);
}
.staff-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.staff-role { font-size: 0.73rem; color: var(--text-light); margin-bottom: 8px; }
.staff-msg  { font-size: 0.78rem; color: var(--text-mid); line-height: 1.7; }

/* ---------- タイムライン ---------- */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
}
.timeline-item { position: relative; padding-bottom: 30px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}
.timeline-year {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.timeline-content { font-size: 0.86rem; color: var(--text-mid); line-height: 1.8; }

/* ---------- 採用 ---------- */
.recruit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.recruit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.recruit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.recruit-card-header {
  background: var(--off-white);
  color: var(--navy);
  padding: 20px 24px;
  border-left: 4px solid var(--red);
  border-bottom: 1px solid var(--border);
}
.recruit-card-header h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.recruit-card-body { padding: 24px; }
.recruit-detail { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.recruit-detail-row { display: flex; gap: 12px; font-size: 0.85rem; }
.recruit-detail-label {
  width: 76px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  color: var(--navy);
  flex-shrink: 0;
}

/* ---------- 買取フロー ---------- */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.flow-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.flow-step:last-child { border-bottom: none; }
.flow-step-num {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--red);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.flow-step-body h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.flow-step-body p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.8; }

/* ---------- 保証テーブル ---------- */
.warranty-table { width: 100%; border-collapse: collapse; }
.warranty-table th,
.warranty-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  text-align: center;
}
.warranty-table th {
  background: var(--off-white);
  color: var(--navy);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  border-bottom: 2px solid var(--red);
}
.warranty-table tr:nth-child(even) td { background: var(--off-white); }
.warranty-table td.check { color: #388E3C; font-size: 1.2rem; font-weight: 700; }
.warranty-table td.cross { color: var(--text-muted); }

/* ---------- 詳細ページ 写真ギャラリー ---------- */
.gallery-main {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.gallery-thumb {
  width: 80px; height: 58px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--navy); }

/* 装備一覧 */
.equipment-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.equipment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  padding: 9px 12px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: background var(--transition), border-color var(--transition);
}
.equipment-item:hover {
  background: var(--light-gray);
  border-color: var(--border);
}
.equipment-item::before { content: '✓'; color: var(--navy); font-weight: 700; font-size: 0.9rem; }

/* ============================================================
   夏キャンペーン誘導セクション（白基調・赤アクセント）
   ============================================================ */
.summer-cta {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.summer-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.summer-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.summer-cta-en {
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.20em;
  color: var(--red);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}
.summer-cta-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  color: var(--navy);
}
.summer-cta-title span {
  color: var(--red);
}
.summer-cta-period {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.summer-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   「初めての方へ」バナー
   ============================================================ */
.first-visit-banner {
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.first-visit-banner .icon { font-size: 2.4rem; flex-shrink: 0; }
.first-visit-banner h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.first-visit-banner p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.75; }

/* ============================================================
   「お子さま連れ歓迎」バッジ
   ============================================================ */
.kids-welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #E8F5E9;
  border: 1.5px solid #66BB6A;
  border-radius: var(--radius);
  padding: 6px 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2E7D32;
}

/* ============================================================
   区切り線（シンプルに）
   ============================================================ */
.divider-wave {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}
.divider-dot {
  border: none;
  border-top: 1px dashed var(--border);
  margin: 20px 0;
}

/* ============================================================
   写真プレースホルダ
   ============================================================ */
.photo-placeholder {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 44px 20px;
  color: var(--text-light);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.83rem;
  border: 1.5px dashed var(--mid-gray);
  text-align: center;
}
.photo-placeholder .ph-icon { font-size: 2.6rem; opacity: 0.5; }
.photo-placeholder p { line-height: 1.7; }

/* ============================================================
   ヘッダーリンク「在庫をみる」ボタン
   ============================================================ */
#gnav a.btn { color: var(--white); }
#gnav a.btn-primary:hover { color: var(--white); background: var(--red-dark); }

/* ============================================================
   インラインカラー上書き（旧コーラル→濃紺 / 旧ターコイズ→濃紺）
   ============================================================ */
/* 住所・電話のインラインリンク */
a[href*="maps.google"],
a[href*="tel:"],
a[href*="lin.ee"] {
  color: var(--navy);
  font-weight: 600;
}
a[href*="maps.google"]:hover,
a[href*="tel:"]:hover { color: var(--red); }

/* グループカード「現在のサイト」バッジ */
.group-card.current span[style*="background"] {
  background: var(--red) !important;
  border-radius: var(--radius) !important;
}

/* グループカード・アクセステーブル内インラインカラー上書き */
.group-card a[style*="color"],
.access-table a[style*="color"],
#contact-form div[style*="color"] {
  color: var(--navy) !important;
}
.group-card a[style*="color"]:hover {
  color: var(--red) !important;
}

/* インライングラデーション（コーラル系）上書き */
[style*="#E8705F"],
[style*="#FF8B7B"] {
  /* 個別要素は直下プロパティを書けないため、セレクタ別に対応 */
}
/* キャンペーンセクションのLPリンクボタン */
a.btn[style*="color:#E8705F"] {
  color: var(--red) !important;
}

/* ============================================================
   スクロールバー（Webkit）
   ============================================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--mid-gray); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy); }

/* ============================================================
   数字アクセント（統計・在庫台数等）
   ============================================================ */
.stat-number {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-left: 4px;
}
.stat-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============================================================
   信頼バー（古物商許可・会社情報を横並び）
   ============================================================ */
.trust-bar {
  background: var(--light-gray);
  color: var(--text-mid);
  padding: 10px 0;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-bar-inner span { display: flex; align-items: center; gap: 6px; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-slider {
    min-height: 300px;
    order: -1;
  }
  .hero-text {
    padding: 44px 24px 56px;
  }
  .hero-content { max-width: 100%; }
  .slider-dots { bottom: 14px; }
  .hero-scroll { display: none; }
}

@media (max-width: 768px) {
  body { padding-top: 56px; }
  .section  { padding: 56px 0; }
  #gnav, .header-tel { display: none; }
  #hamburger { display: flex; }
  #sp-nav { display: block; }
  .hero-slider { min-height: 240px; }
  .hero-title { font-size: 1.55rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-cta-btn { padding: 9px 14px; font-size: 0.76rem; }
  .flow-step { flex-direction: row; }
  .stock-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 7px 14px; font-size: 0.8rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; max-width: 300px; }
  .first-visit-banner { padding: 20px 22px; }
  .header-inner { height: 56px; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }
  .hero-slider { min-height: 200px; }
  .slider-nav { width: 34px; height: 34px; font-size: 1.2rem; }
  .slider-nav.prev { left: 8px; }
  .slider-nav.next { right: 8px; }
  .stock-grid { grid-template-columns: 1fr; }
  .reason-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .footer-cta-btn .label { display: none; }
  .map-wrap iframe { height: 240px; }
  .group-grid { grid-template-columns: 1fr 1fr; }
  .staff-grid { grid-template-columns: 1fr 1fr; }
  .first-visit-banner { flex-direction: column; text-align: center; }
  .trust-bar-inner { flex-direction: column; gap: 8px; }
}

/* ---------- アニメーション ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.btn:active { opacity: 0.85; }

/* ============================================================
   グループカード（リンク化対応）
   ============================================================ */
a.group-card { display: block; text-decoration: none; }
.group-link {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.76rem;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
a.group-card:hover .group-link {
  color: var(--red);
  border-color: var(--red);
}
.group-current-badge {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.74rem;
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius);
  font-weight: 600;
}

/* ============================================================
   レンタカーセクション
   ============================================================ */
.section-rental {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  position: relative;
}
.rental-hero {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 48px 48px 40px;
  box-shadow: var(--shadow-sm);
}

/* メイン画像付きレンタカーヒーロー（左：画像／右：テキスト） */
.rental-hero-with-image {
  max-width: 1100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
  padding: 40px;
}
.rental-hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(14,23,38,0.18);
  transition: transform var(--transition);
}
.rental-hero-image:hover {
  transform: translateY(-4px);
}
.rental-hero-image a {
  display: block;
  position: relative;
  line-height: 0;
}
.rental-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1000 / 667;
  object-fit: cover;
}
.rental-hero-image-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
@media (max-width: 900px) {
  .rental-hero-with-image {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
  .rental-hero-image img { aspect-ratio: 16/10; }
}
.rental-en {
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.rental-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.rental-title span { color: var(--red); }
.rental-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 32px;
}
.rental-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.rental-feature {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: all var(--transition);
}
.rental-feature:hover {
  background: var(--white);
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.rental-feature-icon {
  font-size: 1.8rem;
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all var(--transition);
}
.rental-feature-icon img {
  width: 22px; height: 22px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(86%) saturate(3490%) hue-rotate(353deg) brightness(94%) contrast(85%);
}
.rental-feature:hover .rental-feature-icon {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
}
.rental-feature:hover .rental-feature-icon img {
  filter: brightness(0) saturate(100%) invert(100%);
}
.rental-feature h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.rental-feature p {
  font-size: 0.74rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.rental-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 14px;
}
.rental-note {
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .rental-hero { padding: 32px 24px; }
  .rental-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .rental-features { grid-template-columns: 1fr 1fr; }
}

/* レンタカー画像流動スライダー */
.rental-flow-wrapper {
  margin-top: 36px;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.rental-flow-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: rental-flow 50s linear infinite;
  will-change: transform;
}
.rental-flow-wrapper:hover .rental-flow-track {
  animation-play-state: paused;
}
.rental-flow-tile {
  flex: 0 0 280px;
  height: 200px;
  display: block;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.14);
  transition: transform var(--transition);
}
.rental-flow-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  transition: background var(--transition);
}
.rental-flow-tile:hover {
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.rental-flow-tile:hover::after {
  background: linear-gradient(180deg, rgba(13,33,67,0.10) 0%, rgba(13,33,67,0.65) 100%);
}
.rental-flow-cap {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 1;
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
@keyframes rental-flow {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 6px)); }
}
@media (max-width: 768px) {
  .rental-flow-tile { flex: 0 0 220px; height: 160px; }
  .rental-flow-track { animation-duration: 38s; }
}
@media (max-width: 480px) {
  .rental-flow-tile { flex: 0 0 180px; height: 130px; }
}
@media (prefers-reduced-motion: reduce) {
  .rental-flow-track { animation: none; }
}

/* ============================================================
   SNSセクション（X / Instagram）
   ============================================================ */
.sns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sns-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.sns-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.sns-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}
.sns-icon-ig {
  background: linear-gradient(135deg,#FCAF45 0%,#FD1D1D 50%,#833AB4 100%);
  font-size: 1.2rem;
}
.sns-card-header > div {
  flex: 1;
  min-width: 0;
}
.sns-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}
.sns-card-header a {
  font-family: 'Roboto', sans-serif;
  font-size: 0.76rem;
  color: var(--text-mid);
}
.sns-follow {
  background: #000;
  color: var(--white);
  padding: 7px 16px;
  border-radius: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.sns-follow:hover { opacity: 0.85; }
.sns-follow-ig {
  background: linear-gradient(135deg,#FCAF45 0%,#FD1D1D 50%,#833AB4 100%);
  color: var(--white) !important;
}
.sns-card-body {
  padding: 16px 20px;
  flex: 1;
}
.sns-timeline { padding: 0 20px; min-height: 480px; }
/* Instagram 横スクロール マーキー */
.sns-ig-flow {
  padding: 12px 0;
  overflow: hidden;
}
.ig-flow-wrapper {
  position: relative;
  overflow: hidden;
  /* 左右にうっすらフェード（流れて消えていく感を出す） */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.ig-flow-track {
  display: flex;
  gap: 0;  /* flex gap廃止：シームレスループのため margin-right 方式に統一 */
  width: max-content;
  animation: ig-flow 60s linear infinite;
  will-change: transform;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
}
.ig-flow-track > .ig-flow-tile {
  margin-right: 8px;  /* 各タイルの右に均一の余白（最後のタイルも残す→セット境界がシームレス） */
}
@media (hover: hover) and (pointer: fine) {
  .ig-flow-wrapper:hover .ig-flow-track {
    animation-play-state: paused;
  }
}
.ig-flow-tile {
  flex: 0 0 156px;
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ig-flow-tile span { display: block; line-height: 1.35; padding: 8px; }
/* 大型タイル（写真のみ・枠なしブロック用） */
.ig-flow-large .ig-flow-tile {
  flex: 0 0 240px;
  height: 240px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.ig-flow-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.ig-flow-tile:hover { transform: scale(1.03); z-index: 2; }
.ig-flow-tile:hover::after { background: rgba(0,0,0,0.10); }

@keyframes ig-flow {
  /* JavaScript が --ig-scroll を実測値で設定（pxベース絶対値・サブピクセル誤差ゼロ） */
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-1 * var(--ig-scroll, 50%)), 0, 0); }
}

@media (max-width: 768px) {
  .ig-flow-tile { flex: 0 0 130px; height: 130px; font-size: 0.72rem; }
  .ig-flow-track { animation-duration: 40s; }
}
@media (prefers-reduced-motion: reduce) {
  .ig-flow-track { animation: none; }
}
.sns-card-footer {
  padding: 14px 20px 18px;
  border-top: 1px solid var(--border-light);
}

.sns-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.sns-extra-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
}
.sns-extra-btn:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.sns-extra-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.sns-extra-yt .sns-extra-icon {
  background: #FF0000;
  color: var(--white);
}
.sns-extra-line .sns-extra-icon {
  background: #06C755;
  color: var(--white);
}
.sns-extra-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sns-extra-text strong {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.sns-extra-text small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  color: var(--text-light);
}
.sns-extra-arrow {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  flex-shrink: 0;
}

/* ============================================================
   メディア掲載 大型バナー（カーセンサー／グーネット）
   ============================================================ */
.section-media-big {
  background: var(--white);
}

/* ===== 超大型キャッチコピー ===== */
.pj-strong-title {
  text-align: center;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: clamp(1.6rem, 4.2vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 18px;
}
.pj-strong-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 4px;
  background: var(--red);
  border-radius: 2px;
}
.pj-strong-em {
  display: inline-block;
  color: var(--red);
  font-size: 1.35em;
  font-weight: 700;
  letter-spacing: 0.06em;
  position: relative;
  padding: 0 6px;
}
.pj-strong-em::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 14px;
  background: rgba(198, 40, 40, 0.15);
  z-index: -1;
}
.pj-strong-sub {
  text-align: center;
  color: var(--text-mid);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 48px;
}

/* PC：pj-strong-br-sp（スマホ用2段目改行）は非表示 */
.pj-strong-br-sp { display: none; }

/* スマホ：プラスパージャパンの中古車は、で確実に改行＋クオリティショーケース縦並び */
@media (max-width: 768px) {
  .pj-strong-br-sp { display: inline !important; }
  .pj-strong-title {
    font-size: clamp(1.25rem, 5.2vw, 1.75rem);
    line-height: 1.45;
    letter-spacing: 0.02em;
    padding-bottom: 16px;
    margin-bottom: 14px;
  }
  .pj-strong-title br { display: inline !important; }
  .pj-strong-em { font-size: 1.25em; }
  .pj-strong-sub {
    font-size: 0.86rem;
    line-height: 1.75;
    margin-bottom: 32px;
    padding: 0 4px;
  }
  /* HTMLの <br> を維持して「クオリティの高い仕上げ。」 で改行 */
  .pj-strong-sub br { display: inline !important; }

  /* クオリティショーケース：写真上・テキスト下の縦並び */
  .quality-showcase {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin: 24px 0 32px !important;
    padding: 0 !important;
    max-width: none !important;
  }
  .quality-showcase-photo {
    aspect-ratio: 4 / 5 !important;
    width: 100% !important;
    max-width: 100% !important;     /* 画面横幅いっぱい */
    max-height: 580px !important;
    margin: 0 !important;
    border-radius: 14px !important;
    background: transparent;
    box-shadow: 0 14px 36px rgba(15,31,51,0.20);
    overflow: hidden !important;    /* scale拡大時のはみ出し対策 */
  }
  .quality-showcase-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 60% !important;
    transform: scale(1.35) !important;        /* 車を大きくクローズアップ */
    transform-origin: center 55% !important;  /* 車体中央を基準にズーム */
  }
  .quality-showcase-text {
    padding: 8px 12px 4px !important;
    text-align: center !important;
  }
  .quality-showcase-eyebrow {
    font-size: 10.5px !important;
    padding: 4px 12px !important;
    letter-spacing: 0.24em !important;
    margin-bottom: 14px;
  }
  .quality-showcase-title {
    font-size: 1.35rem !important;
    line-height: 1.45 !important;
    margin: 14px 0 14px !important;
    letter-spacing: 0.02em;
  }
  .quality-showcase-title br { display: inline !important; }
  .quality-showcase-desc {
    font-size: 0.86rem !important;
    line-height: 1.85 !important;
    letter-spacing: 0 !important;
    color: #475569;
    margin-bottom: 18px !important;
    /* 日本語の単語境界を尊重・末尾の単独文字発生を抑制 */
    word-break: keep-all !important;
    line-break: strict !important;
    overflow-wrap: break-word;
  }
  /* PCと同じ3行構造を維持 → 「す。」 が単独になる問題を解消 */
  .quality-showcase-desc br { display: inline !important; }
  .quality-showcase-list {
    text-align: left;
    margin-top: 18px;
    padding-left: 8px;
  }
  .quality-showcase-list li {
    font-size: 0.86rem !important;
    line-height: 1.7;
    padding: 6px 0;
  }
}

.media-big-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
/* XL版（ロゴが画面を支配する超大型） */
.media-big-grid-xl {
  max-width: 1200px;
  gap: 28px;
}
.media-big-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.media-big-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.22);
  border-color: transparent;
}
.media-big-card-cs:hover  { box-shadow: 0 24px 56px rgba(255,96,16,0.32); }
.media-big-card-goo:hover { box-shadow: 0 24px 56px rgba(230,62,41,0.32); }
/* バナー（ロゴ主役・ブランド色の太い上帯＋放射状光） */
.media-big-banner {
  padding: 72px 40px 64px;
  text-align: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 10px solid #C62828;
}
.media-big-card-cs .media-big-banner {
  border-top-color: #FF6010;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,96,16,0.16) 0%, rgba(255,96,16,0.06) 35%, transparent 70%),
    linear-gradient(180deg, #FFF8F4 0%, #FFFFFF 100%);
}
.media-big-card-goo .media-big-banner {
  border-top-color: #E63E29;
  background:
    radial-gradient(circle at 50% 35%, rgba(230,62,41,0.16) 0%, rgba(230,62,41,0.06) 35%, transparent 70%),
    linear-gradient(180deg, #FFF5F4 0%, #FFFFFF 100%);
}

/* バナー：ホバー時のシマー（光沢）スイープ */
.media-big-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.7) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 1;
}
.media-big-card:hover .media-big-banner::after {
  left: 125%;
}

/* 「正規加盟店 掲載中」スタンプ */
.media-big-stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 14px;
  background: #FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 0;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  white-space: nowrap;
}
.media-big-card-cs .media-big-stamp {
  color: #FF6010;
  border: 2px solid #FF6010;
}
.media-big-card-goo .media-big-stamp {
  color: #E63E29;
  border: 2px solid #E63E29;
}

/* 下部CTAバンド（ブランド色ベタ） */
.media-big-bottom-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.0rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, padding 0.3s ease;
}
.media-big-card-cs .media-big-bottom-band  { background: #FF6010; }
.media-big-card-goo .media-big-bottom-band { background: #E63E29; }
.media-big-card-cs:hover .media-big-bottom-band  { background: #D94A00; }
.media-big-card-goo:hover .media-big-bottom-band { background: #C53420; }

.media-big-bottom-arrow {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.media-big-card:hover .media-big-bottom-arrow {
  transform: translateX(8px);
}

/* 公式ロゴ画像 */
.media-big-logo-img {
  display: block;
  height: 140px;
  width: auto;
  max-width: 92%;
  object-fit: contain;
  transition: transform var(--transition);
}
.media-big-card:hover .media-big-logo-img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .media-big-logo-img { height: 110px; }
  .media-big-banner { min-height: 220px; padding: 60px 32px 52px; }
}
@media (max-width: 768px) {
  .media-big-logo-img { height: 88px; }
  .media-big-banner { padding: 48px 24px 40px; min-height: 180px; border-top-width: 8px; }
  .media-big-stamp { font-size: 0.7rem; padding: 5px 10px; top: 12px; right: 12px; }
  .media-big-bottom-band { padding: 14px 18px; font-size: 0.88rem; }
  .media-big-bottom-arrow { font-size: 1.1rem; }
}
/* バナー下部本体 */
.media-big-body {
  padding: 28px 28px 32px;
}
.media-big-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.media-big-title span {
  color: var(--navy);
  font-size: 1.3rem;
  display: inline-block;
  margin-top: 4px;
}
.media-big-card-cs:hover .media-big-title span { color: #D32F2F; }
.media-big-card-goo:hover .media-big-title span { color: #FF6F00; }

.media-big-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.media-big-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-light);
}
.media-big-points li:last-child { border-bottom: none; }
.media-big-points .check {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.media-big-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  color: var(--white);
  transition: all var(--transition);
}
.media-big-card-cs .media-big-cta { background: #D32F2F; }
.media-big-card-cs:hover .media-big-cta { background: #B71C1C; }
.media-big-card-goo .media-big-cta { background: #FF6F00; }
.media-big-card-goo:hover .media-big-cta { background: #E65100; }
.media-big-cta .cta-arrow {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  transition: transform var(--transition);
}
.media-big-card:hover .media-big-cta .cta-arrow { transform: translateX(6px); }

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

/* ============================================================
   Instagram ブロック（枠なし・写真のみ大スライド）
   ============================================================ */
.ig-block {
  margin-bottom: 48px;
}
.ig-block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
  padding: 0 4px;
}
.ig-block-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg,#FCAF45 0%,#FD1D1D 50%,#833AB4 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.ig-block-text {
  flex: 1;
  min-width: 0;
}
.ig-block-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.ig-block-handle {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.ig-block-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.74rem;
  color: var(--text-light);
  margin: 0 4px 14px;
  text-align: right;
}

/* ============================================================
   X ブロック（IGと同じ枠なし大型流動スライド）
   ============================================================ */
.x-block-flow {
  margin-top: 36px;
}
.ig-block-icon-x {
  background: #000 !important;
  font-size: 1.6rem;
}
/* X は逆方向に流す（IGと反対方向で動きにバリエーション） */
.ig-flow-track-reverse {
  animation: ig-flow-reverse 60s linear infinite;
}
@media (hover: hover) and (pointer: fine) {
  .ig-flow-wrapper:hover .ig-flow-track-reverse {
    animation-play-state: paused;
  }
}
@keyframes ig-flow-reverse {
  from { transform: translate3d(calc(-1 * var(--ig-scroll, 50%)), 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

/* SNS extras single（LINEのみ） */
.sns-extras-single {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.sns-extras-single .sns-extra-btn {
  max-width: 580px;
  width: 100%;
}

/* ============================================================
   メディア掲載カード（旧・互換用に残す）
   ============================================================ */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.media-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.media-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.media-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.media-card:hover::before { transform: scaleX(1); }
.media-logo {
  display: inline-block;
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.media-card-goo .media-logo { background: #FF6F00; color: var(--white); }
.media-card-cs  .media-logo { background: #D32F2F; color: var(--white); }
.media-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.media-desc {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}
.media-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  transition: gap var(--transition);
}
.media-card:hover .media-link { gap: 12px; }

/* サービス紹介の重複定義は全て削除済（上の単一定義で完結） */

@media (max-width: 768px) {
  .sns-grid, .sns-extras, .media-grid {
    grid-template-columns: 1fr;
  }
  .sns-timeline { min-height: 360px; }
}

/* ============================================================
   Lucideアイコン共通（btn内・フッターCTA内）
   ============================================================ */
.btn-icon {
  width: 18px; height: 18px;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(100%);
  transition: transform var(--transition);
}
.btn-icon-r { margin-left: 6px; }
.btn-outline .btn-icon,
.btn-outline-red .btn-icon {
  filter: brightness(0) saturate(100%) invert(11%) sepia(45%) saturate(2447%) hue-rotate(204deg) brightness(95%) contrast(98%);
}
.btn-outline:hover .btn-icon {
  filter: brightness(0) saturate(100%) invert(100%);
}
.btn:hover .btn-icon-r { transform: translateX(4px); }

.footer-cta-btn .cta-icon {
  width: 18px; height: 18px;
  filter: brightness(0) saturate(100%) invert(100%);
}

/* ============================================================
   Phase 2: shadcn/ui 風 モダンカード装飾
   ============================================================ */

/* カード共通：滑らかな影＋グラデーション境界 */
.reason-card,
.service-item,
.media-big-card,
.group-card,
.rental-feature {
  position: relative;
  isolation: isolate;
}
.reason-card::before,
.service-item::after,
.media-big-card::before,
.group-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 0%, transparent 50%, rgba(198, 40, 40, 0.0) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  transition: background 0.4s ease;
}
.reason-card:hover::before,
.media-big-card:hover::before,
.group-card:hover::before {
  background: linear-gradient(135deg, rgba(13,33,67,0.4) 0%, transparent 50%, rgba(198, 40, 40, 0.4) 100%);
}

/* 上品なシャドウグロウ（hover） */
.reason-card,
.service-item,
.group-card,
.rental-feature {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.reason-card:hover,
.service-item:hover,
.group-card:hover,
.rental-feature:hover {
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px -8px rgba(13, 33, 67, 0.18),
    0 16px 48px -16px rgba(198, 40, 40, 0.12);
}

/* ============================================================
   Phase 4: スクロール連動アニメ強化
   ============================================================ */

/* fade-in：JS未実行でも見える初期状態（安全策） */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.5s ease-out;
}
/* JSが動いている場合のみ初期状態を非表示にし、visible で表示 */
.js-anim .fade-in:not(.visible) {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* スマホでは fade-in アニメを無効化（古め Safari で「二重」 に見える問題対策） */
@media (max-width: 768px) {
  .fade-in,
  .js-anim .fade-in:not(.visible),
  .fade-in.visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* stagger：兄弟要素を時差で出す */
.stock-grid > .fade-in:nth-child(1).visible { transition-delay: 0.05s; }
.stock-grid > .fade-in:nth-child(2).visible { transition-delay: 0.12s; }
.stock-grid > .fade-in:nth-child(3).visible { transition-delay: 0.19s; }
.stock-grid > .fade-in:nth-child(4).visible { transition-delay: 0.26s; }
.stock-grid > .fade-in:nth-child(5).visible { transition-delay: 0.33s; }
.stock-grid > .fade-in:nth-child(6).visible { transition-delay: 0.40s; }

.service-list > .fade-in:nth-child(1).visible { transition-delay: 0.05s; }
.service-list > .fade-in:nth-child(2).visible { transition-delay: 0.12s; }
.service-list > .fade-in:nth-child(3).visible { transition-delay: 0.19s; }
.service-list > .fade-in:nth-child(4).visible { transition-delay: 0.26s; }
.service-list > .fade-in:nth-child(5).visible { transition-delay: 0.33s; }
.service-list > .fade-in:nth-child(6).visible { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in.visible {
    opacity: 1; transform: none; filter: none; transition: none;
  }
}

/* ============================================================
   セクションタイトルにモダンなアンダーライン演出
   ============================================================ */
.section-title {
  position: relative;
}

/* ============================================================
   オープニング演出（大阪王将採用サイト風・SVG線画→タグライン）
   ============================================================ */
.opening-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  /* ピュアホワイト背景＋うっすらペールブルーのライト */
  background:
    radial-gradient(circle at 30% 30%, rgba(91, 155, 213, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(91, 155, 213, 0.10) 0%, transparent 50%),
    #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* デフォルトは非表示。JSで .show を付与した時だけ表示 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* 控えめな浮遊ライト（ふんわり青） */
.opening-screen::before,
.opening-screen::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}
.opening-screen::before {
  width: 280px; height: 280px;
  background: rgba(91, 155, 213, 0.22);
  top: 12%; left: 8%;
  animation: opening-bubble 9s ease-in-out infinite;
}
.opening-screen::after {
  width: 360px; height: 360px;
  background: rgba(61, 123, 178, 0.12);
  bottom: 8%; right: 6%;
  animation: opening-bubble 12s ease-in-out 1s infinite reverse;
}
@keyframes opening-bubble {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(14px, -10px) scale(1.04); }
}
.opening-screen.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: opening-fadeout 0.7s cubic-bezier(0.4, 0, 0.2, 1) 3.6s forwards;
}
@keyframes opening-fadeout {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

.opening-inner {
  text-align: center;
  color: var(--text);
  padding: 0 24px;
  max-width: 640px;
  position: relative;
  z-index: 2;
}

/* SKIPボタン（明るい背景用） */
.opening-skip {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  border: 1px solid rgba(31, 27, 22, 0.20);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-num);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  opacity: 0;
  animation: opening-skip-in 0.4s ease 0.4s forwards;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.opening-skip:hover {
  background: var(--white);
  border-color: var(--navy);
  transform: scale(1.04);
}
@keyframes opening-skip-in {
  to { opacity: 1; }
}

/* PSJ本物の車（青背景透過済み）・大回転で登場 */
.opening-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 38px;
  padding: 0;
}

.opening-psj-car {
  display: block;
  width: clamp(260px, 64vw, 420px);
  height: auto;
  margin: 0 auto;
  /* 明るい背景でも黄色が映える濃い影＋ダーク輪郭 */
  filter:
    drop-shadow(0 0 0 #1F1B16)
    drop-shadow(0 8px 24px rgba(31, 27, 22, 0.20))
    drop-shadow(0 2px 6px rgba(31, 27, 22, 0.15));
  opacity: 0;
  transform: scale(0) rotate(-720deg);
  animation: opening-car-in 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}
@keyframes opening-car-in {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-720deg);
  }
  55% {
    opacity: 1;
    transform: scale(1.20) rotate(30deg);
  }
  75% {
    transform: scale(0.94) rotate(-8deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* テキストフェードイン（時差・明るい背景用にダーク色） */
.opening-brand {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.18em;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(12px);
  animation: opening-text-in 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
}
.opening-sub {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  letter-spacing: 0.36em;
  color: var(--text-mid);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(12px);
  animation: opening-text-in 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.8s forwards;
}
.opening-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
  opacity: 0;
  animation: opening-divider-in 0.5s ease 2.0s forwards;
}
.opening-divider span {
  display: block;
  width: 0; height: 2px;
  background: var(--navy);
  border-radius: 1px;
  animation: opening-divider-grow 0.6s cubic-bezier(0.4, 0, 0.2, 1) 2.0s forwards;
}
@keyframes opening-divider-in {
  to { opacity: 1; }
}
@keyframes opening-divider-grow {
  from { width: 0; }
  to   { width: 60px; }
}
.opening-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 3vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--navy);
  opacity: 0;
  transform: translateY(12px);
  animation: opening-text-in 0.9s cubic-bezier(0.4, 0, 0.2, 1) 2.3s forwards;
}
@keyframes opening-text-in {
  to { opacity: 1; transform: translateY(0); }
}

/* スキップ時：即フェードアウト */
.opening-screen.skipped {
  animation: opening-fadeout-fast 0.3s ease forwards !important;
}
@keyframes opening-fadeout-fast {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* prefers-reduced-motion：完全スキップ */
@media (prefers-reduced-motion: reduce) {
  .opening-screen.show {
    animation: none;
    opacity: 0; visibility: hidden; pointer-events: none;
  }
}

/* ---------- 印刷 ---------- */
@media print {
  #header, #footer-cta, #hamburger, #sp-nav, #sp-overlay,
  .hero-slider, .slider-dots, .slider-nav, .hero-scroll { display: none !important; }
  body { padding-top: 0; }
  .hero {
    background: var(--white) !important;
    color: var(--text) !important;
    border-bottom: 2px solid var(--navy);
    padding: 24px 0;
  }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 24px; }
  .hero-title { color: var(--navy) !important; }
}

/* ============================================================
   RECRUIT セクション（採用情報・Bento Grid版・2026-05-10）
   ============================================================ */
.recruit-section {
  position: relative;
  padding: 80px 0 90px;
  background: #F8FAFC;
  overflow: hidden;
}
.recruit-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
}
.recruit-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 44px;
}
.recruit-eyebrow {
  display: inline-block;
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: #5B9BD5;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.recruit-title {
  font-family: "Noto Sans JP", "Noto Serif JP", sans-serif;
  font-size: clamp(24px, 3.8vw, 38px);
  font-weight: 800;
  line-height: 1.38;
  color: #0F172A;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.recruit-lead {
  font-size: 14px;
  line-height: 1.95;
  color: #475569;
  margin: 0;
}
.recruit-lead strong {
  color: var(--navy, #1E3A5F);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 60%, rgba(252,211,77,0.40) 60%);
  padding: 0 3px;
}

/* ---- Bento Grid ---- */
.recruit-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-bottom: 56px;
  min-height: 340px;
}
.recruit-bento-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.recruit-bento-card:hover {
  box-shadow: 0 12px 28px rgba(15,23,42,0.10);
}

/* A：チーム写真大カード（2x2） */
.recruit-bento-team {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 280px;
}
.recruit-bento-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.10) saturate(1.06) contrast(1.00);
  transition: transform 0.7s ease, filter 0.5s ease;
}
.recruit-bento-team:hover .recruit-bento-img {
  transform: scale(1.05);
  filter: brightness(1.14) saturate(1.10) contrast(1.00);
}
.recruit-bento-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.55) 0%, rgba(15,23,42,0.05) 50%, transparent 100%);
}
.recruit-bento-team-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 26px;
  z-index: 2;
  color: #FFFFFF;
}
.recruit-bento-team-text h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(17px, 2.1vw, 21px);
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 6px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.recruit-bento-team-text p {
  font-size: 12px;
  line-height: 1.75;
  margin: 0;
  color: rgba(255,255,255,0.90);
  max-width: 380px;
}

/* B：青カード（未経験スタート） */
/* B：写真背景カード */
.recruit-bento-photo {
  grid-column: span 1;
  grid-row: span 1;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}
.recruit-bento-photo:hover { transform: translateY(-3px); }
.recruit-bento-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) saturate(1.10);
  transition: transform 0.7s ease;
}
.recruit-bento-photo:hover .recruit-bento-photo-img {
  transform: scale(1.06);
}
.recruit-bento-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(198,40,40,0.55) 0%, rgba(15,31,51,0.78) 100%);
}
.recruit-bento-photo-content {
  position: relative;
  z-index: 2;
  padding: 22px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.recruit-bento-photo-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  padding: 3px 9px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.recruit-bento-photo h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

/* C：白カード（数字） */
/* C：ゴールド数字カード */
.recruit-bento-gold {
  grid-column: span 1;
  grid-row: span 1;
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 50%, #C62828 100%);
  color: #FFFFFF;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(245,158,11,0.30);
}
.recruit-bento-gold:hover { transform: translateY(-3px); }
.recruit-bento-gold-shine {
  position: absolute;
  top: -40%; left: -30%;
  width: 90%; height: 200%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.30) 50%, transparent 100%);
  transform: rotate(20deg);
  opacity: 0;
  transition: opacity 0.6s ease, left 0.8s cubic-bezier(0.4,0,0.2,1);
}
.recruit-bento-gold:hover .recruit-bento-gold-shine {
  opacity: 1;
  left: 80%;
}
.recruit-bento-gold-label {
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: rgba(255,255,255,0.92);
  margin: 0 0 6px;
}
.recruit-bento-gold-num {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 8px;
}
.recruit-bento-gold-big {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.recruit-bento-gold-unit {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.01em;
}
.recruit-bento-gold-desc {
  position: relative;
  z-index: 2;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

/* D：紺カード（4業態） */
/* D：4業態アイコンカード */
.recruit-bento-brands {
  grid-column: span 2;
  grid-row: span 1;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.recruit-bento-brands::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FCD34D 0%, #C62828 50%, #1E3A5F 100%);
}
.recruit-bento-brands:hover { transform: translateY(-3px); }
.recruit-bento-brands-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.recruit-bento-brands-tag {
  font-family: "Inter", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red, #C62828);
  padding: 3px 10px;
  border: 1px solid var(--red, #C62828);
  border-radius: 4px;
  flex-shrink: 0;
}
.recruit-bento-brands-head h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  line-height: 1.4;
}
.recruit-bento-brands-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  flex: 1;
}
.recruit-bento-brands-list li {
  background: linear-gradient(180deg, #F8FAFC 0%, #F0F6FC 100%);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  text-align: center;
}
.recruit-bento-brands-list li:hover {
  transform: translateY(-3px);
  border-color: #5B9BD5;
  background: linear-gradient(180deg, #FFFFFF 0%, #E0EBF5 100%);
}
.recruit-bento-brands-list li:nth-child(1) .recruit-bento-brand-icon { color: #1E3A5F; }
.recruit-bento-brands-list li:nth-child(2) .recruit-bento-brand-icon { color: #C62828; }
.recruit-bento-brands-list li:nth-child(3) .recruit-bento-brand-icon { color: #B45309; }
.recruit-bento-brands-list li:nth-child(4) .recruit-bento-brand-icon { color: #2563EB; }
.recruit-bento-brand-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit-bento-brand-icon svg {
  width: 100%;
  height: 100%;
}
.recruit-bento-brand-label {
  font-size: 12.5px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.005em;
  margin-top: 1px;
}
.recruit-bento-brands-list li small {
  font-size: 9.5px;
  color: #64748B;
  font-weight: 500;
}

/* ---- 募集職種カード ---- */
.recruit-jobs-head {
  text-align: center;
  margin-bottom: 20px;
}
.recruit-jobs-head h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 4px;
}
.recruit-jobs-head p {
  font-size: 12.5px;
  color: #64748B;
  margin: 0;
}
.recruit-jobs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}
.recruit-job {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 0;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.recruit-job:hover {
  border-color: #5B9BD5;
  box-shadow: 0 10px 24px rgba(15,23,42,0.08);
  transform: translateY(-2px);
}
.recruit-job-photo {
  flex-shrink: 0;
  width: 130px;
  position: relative;
  overflow: hidden;
}
.recruit-job-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.05) contrast(1.00);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.recruit-job:hover .recruit-job-photo img {
  transform: scale(1.08);
  filter: brightness(1.12) saturate(1.10) contrast(1.00);
}
.recruit-job-body {
  flex: 1;
  padding: 16px 16px 16px 18px;
  display: flex;
  flex-direction: column;
}
.recruit-job-tags {
  display: flex;
  gap: 5px;
  margin-bottom: 6px;
}
.recruit-job-tag {
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.recruit-job-tag-blue {
  background: #DBEAFE;
  color: #1D4ED8;
}
.recruit-job-tag-green {
  background: #D1FAE5;
  color: #047857;
}
.recruit-job-tag-gray {
  background: #F1F5F9;
  color: #64748B;
}
.recruit-job-title {
  font-family: "Noto Serif JP", serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 2px;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.recruit-job:hover .recruit-job-title { color: #1D4ED8; }
.recruit-job-sub {
  font-size: 11.5px;
  color: #64748B;
  line-height: 1.55;
  margin: 0 0 10px;
}
.recruit-job-meta {
  margin: 0;
  padding: 10px 0 0;
  border-top: 1px dashed #E2E8F0;
}
.recruit-job-meta > div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 3px 0;
}
.recruit-job-meta dt {
  flex-shrink: 0;
  width: 34px;
  font-size: 9.5px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.06em;
  padding-top: 1px;
}
.recruit-job-meta dd {
  margin: 0;
  flex: 1;
  font-size: 11.5px;
  line-height: 1.5;
  color: #0F172A;
  font-weight: 500;
}
.recruit-job-meta dd small {
  display: block;
  font-size: 9.5px;
  color: #94A3B8;
  margin-top: 0;
}
.recruit-job-arrow {
  flex-shrink: 0;
  align-self: center;
  width: 34px;
  height: 34px;
  margin-right: 14px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.recruit-job-arrow svg {
  width: 14px;
  height: 14px;
}
.recruit-job:hover .recruit-job-arrow {
  background: var(--red, #C62828);
  color: #FFFFFF;
}

.recruit-benefits {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 28px;
  box-shadow: 0 2px 10px rgba(15,23,42,0.04);
}
.recruit-benefits-title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 14px;
  padding-bottom: 0;
  border-bottom: none;
  position: relative;
}
.recruit-benefits-title::after { display: none; }
.recruit-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
}
.recruit-benefits-list li {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 4px 0;
}
.recruit-benefits-list strong {
  font-size: 12.5px;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.005em;
}
.recruit-benefits-list span {
  font-size: 10.5px;
  color: #94A3B8;
  line-height: 1.5;
}

.recruit-engineer {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #1E3A5F 0%, #2C4F7C 100%);
  color: #FFFFFF;
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 56px;
}
.recruit-engineer-tag {
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  background: var(--red, #C62828);
  padding: 6px 14px;
  border-radius: 4px;
}
.recruit-engineer-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}
.recruit-engineer-body p {
  font-size: 13px;
  margin: 0;
  opacity: 0.85;
  line-height: 1.6;
}

.recruit-cta {
  text-align: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F6FC 100%);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.04);
}
.recruit-cta-push {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--red, #C62828);
  background: rgba(198,40,40,0.08);
  padding: 5px 14px;
  border-radius: 999px;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.recruit-cta-lead {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  color: #0F172A;
  margin: 0 0 20px;
}
.recruit-cta-lead strong {
  color: var(--red, #C62828);
  font-weight: 700;
}
.recruit-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.recruit-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
}
.recruit-cta-tel {
  background: #FFFFFF;
  color: var(--navy, #1E3A5F);
  border: 2px solid var(--navy, #1E3A5F);
}
.recruit-cta-tel:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(30,58,95,0.22);
  background: var(--navy, #1E3A5F);
  color: #FFFFFF;
}
.recruit-cta-btn-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  opacity: 0.85;
}
.recruit-cta-btn-num {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.recruit-cta-form {
  flex-direction: row;
  gap: 6px;
  background: linear-gradient(135deg, var(--red, #C62828), #E53935);
  color: #FFFFFF;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px rgba(198,40,40,0.22);
}
.recruit-cta-form svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}
.recruit-cta-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(198,40,40,0.40);
}
.recruit-cta-form:hover svg { transform: translateX(4px); }
.recruit-cta-detail {
  background: transparent;
  color: var(--navy, #1E3A5F);
  border: 1px solid #CBD5E1;
  font-size: 12px;
  letter-spacing: 0.04em;
  flex-direction: row;
  min-width: 180px;
  padding: 11px 18px;
}
.recruit-cta-detail:hover {
  background: #F0F6FC;
  border-color: var(--navy, #1E3A5F);
  transform: translateY(-2px);
}
.recruit-cta-note {
  font-size: 11.5px;
  color: #64748B;
  margin: 10px 0 0;
}

@media (max-width: 980px) {
  .recruit-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    min-height: auto;
  }
  .recruit-bento-team {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 320px;
  }
  .recruit-bento-photo,
  .recruit-bento-gold { grid-column: span 1; min-height: 180px; }
  .recruit-bento-brands { grid-column: span 2; }
  .recruit-jobs { grid-template-columns: 1fr; }
  .recruit-benefits-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .recruit-section { padding: 80px 0 90px; }
  .recruit-head { margin-bottom: 40px; }
  .recruit-bento {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 60px;
  }
  .recruit-bento-team,
  .recruit-bento-photo,
  .recruit-bento-gold,
  .recruit-bento-brands {
    grid-column: span 1;
    min-height: auto;
  }
  .recruit-bento-team { min-height: 260px; }
  .recruit-bento-team-text { padding: 22px; }
  .recruit-bento-photo { min-height: 200px; }
  .recruit-bento-gold { padding: 22px 20px; min-height: 160px; }
  .recruit-bento-brands { padding: 18px 18px; }
  .recruit-bento-brands-list { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .recruit-bento-brands-list li { padding: 10px 4px; }
  .recruit-bento-brand-icon { width: 22px; height: 22px; }
  .recruit-bento-brand-label { font-size: 11.5px; }
  .recruit-bento-brands-list li small { font-size: 9px; }
  .recruit-job { flex-direction: column; }
  .recruit-job-photo {
    width: 100%;
    height: 160px;
  }
  .recruit-job-arrow {
    margin: 0 16px 16px auto;
  }
  .recruit-cta { padding: 32px 20px; }
  .recruit-cta-btn { width: 100%; min-width: 0; }
}

/* ============================================================
   SEARCH & BACK ORDER v3 — Spatial Premium（2026-05-10 採用）
   ※旧 .psj-search-order CSSは下に残置・class名変更で無効化
   ============================================================ */
:root {
  --psj-so-bg: #ffffff;
  --psj-so-card-bg: rgba(255, 255, 255, 0.8);
  --psj-so-border: rgba(15, 23, 42, 0.06);
  --psj-so-text-main: #0f172a;
  --psj-so-text-sub: #64748b;
  --psj-so-accent: #c4a77d;
  --psj-so-transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.psj-so--premium {
  position: relative;
  background-color: var(--psj-so-bg);
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 12px,
    rgba(30, 58, 95, 0.05) 12px,
    rgba(30, 58, 95, 0.05) 13px
  );
  color: var(--psj-so-text-main);
  padding: clamp(6rem, 10vw, 12rem) 1.5rem;
  overflow: hidden;
  font-family: "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}

/* 空間的な背景演出（淡いブロンズの霞 + コンター用フェード） */
.psj-so--premium::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(196, 167, 125, 0.10) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

/* 上下フェード＋中央ハイライト（セクション境界を白に溶け込ませる） */
.psj-so--premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      #ffffff 0%,
      rgba(255,255,255,0) 14%,
      rgba(255,255,255,0) 86%,
      #ffffff 100%),
    radial-gradient(ellipse 70% 50% at 50% 50%,
      rgba(255,255,255,0.55) 0%,
      rgba(255,255,255,0) 70%);
  pointer-events: none;
  z-index: 1;
}

.psj-so--premium .psj-so-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* ヘッダー */
.psj-so--premium .psj-so-header {
  text-align: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}
.psj-so--premium .psj-so-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--psj-so-bg);
  border: 1px solid var(--psj-so-border);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--psj-so-text-sub);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.psj-so--premium .psj-so-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  font-family: "Noto Serif JP", serif;
  color: var(--psj-so-text-main);
}
.psj-so--premium .psj-so-desc {
  color: var(--psj-so-text-sub);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* グリッド */
.psj-so--premium .psj-so-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 0;
}

/* カード（Spatial Glassmorphism） */
.psj-so-card--spatial {
  position: relative;
  background: var(--psj-so-card-bg);
  border: 1px solid var(--psj-so-border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--psj-so-transition), box-shadow var(--psj-so-transition), border-color var(--psj-so-transition);
  transform-style: preserve-3d;
  perspective: 1000px;
  box-sizing: border-box;
  /* 旧.psj-so-cardの上端ボーダー無効化 */
  border-top: 1px solid var(--psj-so-border);
}
.psj-so-card--spatial:hover {
  transform: translateY(-8px) rotateX(0.5deg) rotateY(0.5deg);
  border-color: rgba(15, 23, 42, 0.10);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

/* イラスト枠 */
.psj-so-card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 7 / 5;
  overflow: hidden;
  background-color: var(--psj-so-bg);
  border-bottom: 1px solid var(--psj-so-border);
}
.psj-so-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  transition: transform var(--psj-so-transition);
  transform: translateZ(20px);
  display: block;
  box-sizing: border-box;
}
.psj-so-card--spatial:hover .psj-so-illustration {
  transform: translateZ(40px) scale(1.04);
}

/* カード本文 */
.psj-so-card-content {
  padding: 2.5rem 2rem 3rem;
}
.psj-so-step-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.psj-so--premium .psj-so-step {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--psj-so-accent);
  font-family: "Roboto Mono", "Courier New", monospace;
  /* 旧グラデを無効化 */
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  display: inline;
}
.psj-so-icon {
  color: var(--psj-so-text-sub);
  width: 28px;
  height: 28px;
  transition: color var(--psj-so-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.psj-so-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.psj-so-card--spatial:hover .psj-so-icon {
  color: var(--psj-so-text-main);
}
.psj-so--premium .psj-so-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--psj-so-text-main);
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}
.psj-so--premium .psj-so-card-text {
  color: var(--psj-so-text-sub);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin: 0;
}

/* CTA（Tailwind置換・素CSS） */
.psj-so--premium .psj-so-cta-wrapper {
  text-align: center;
  margin-top: 6rem;
  position: relative;
  z-index: 10;
}
.psj-so-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 3rem;
  background: #030712;
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  font-family: "Helvetica Neue", Arial, sans-serif;
  transition: background 0.3s ease;
}
.psj-so-cta-btn:hover {
  background: #1f2937;
}
.psj-so-cta-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}
.psj-so-cta-btn:hover svg {
  transform: translateX(0.375rem);
}

/* フェードイン演出 */
@keyframes psjSoFadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.psj-so--premium .animate-fade-in-up {
  opacity: 0;
  animation: psjSoFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.psj-so--premium .psj-so-grid > .animate-fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.psj-so--premium .psj-so-grid > .animate-fade-in-up:nth-child(2) { animation-delay: 0.25s; }
.psj-so--premium .psj-so-grid > .animate-fade-in-up:nth-child(3) { animation-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .psj-so--premium .animate-fade-in-up { opacity: 1; animation: none; }
}

/* PC：お探しオーダー3カードの縦を詰める（2026-05-14 野村さん指示・2回目さらに詰め） */
@media (min-width: 881px) {
  .psj-so--premium .psj-so-card-visual { aspect-ratio: 2 / 1; }
  .psj-so--premium .psj-so-card-content { padding: 1.15rem 1.5rem 1.4rem; }
  .psj-so--premium .psj-so-step-wrapper { margin-bottom: 0.5rem; }
  .psj-so--premium .psj-so-card-title { margin: 0 0 0.5rem; font-size: 1.15rem; line-height: 1.35; }
  .psj-so--premium .psj-so-card-text { line-height: 1.5; font-size: 0.875rem; }
  .psj-so--premium .psj-so-cta-wrapper { margin-top: 2.75rem; }
}

@media (max-width: 880px) {
  .psj-so--premium { padding: 4rem 1.25rem 5rem; }
  .psj-so-card-content { padding: 1.75rem 1.5rem 2rem; }
  .psj-so--premium .psj-so-cta-wrapper { margin-top: 3rem; }
  .psj-so-cta-btn { padding: 0.875rem 2rem; font-size: 0.8125rem; width: 100%; max-width: 360px; justify-content: center; }
}

/* スマホ：お探しオーダーカードの縦幅を縮める（3カード共通） */
@media (max-width: 768px) {
  .psj-so--premium { padding: 3rem 1rem 3.5rem !important; }
  .psj-so-card-visual { aspect-ratio: 16 / 9 !important; }
  .psj-so-card-content { padding: 1.1rem 1.2rem 1.4rem !important; }
  .psj-so-step-wrapper { margin-bottom: 0.7rem !important; }
  .psj-so--premium .psj-so-card-title {
    font-size: 1.08rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.4 !important;
  }
  .psj-so--premium .psj-so-card-text {
    font-size: 0.85rem !important;
    line-height: 1.65 !important;
  }
  .psj-so--premium .psj-so-step { font-size: 0.95rem !important; }
  .psj-so-icon { width: 26px !important; height: 26px !important; }
  .psj-so-grid { gap: 14px !important; }
  .psj-so--premium .psj-so-cta-wrapper { margin-top: 2rem !important; }
}

/* ============================================================
   ↓ 旧 SEARCH & BACK ORDER v2（Gemini版・無効化済・互換維持のため残置）
   ============================================================ */
.psj-search-order {
  padding: 96px 0 110px;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
.psj-search-order::before {
  content: "";
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 960px; height: 480px;
  background: radial-gradient(ellipse, rgba(91,155,213,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.psj-so-container {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.psj-so-header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.psj-so-badge {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.10em;
  font-weight: 700;
  color: #C62828;
  border: 1px solid rgba(198,40,40,0.45);
  background: rgba(198,40,40,0.06);
  padding: 6px 16px;
  border-radius: 0;
  margin-bottom: 22px;
}
.psj-so-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.4;
  color: #0F172A;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.psj-so-desc {
  font-size: 15px;
  line-height: 2;
  color: #475569;
  margin: 0;
}

/* お客様の声タグ（中古車屋らしい身近さ） */
.psj-so-examples {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 920px;
  padding: 24px 20px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-left: 4px solid #C62828;
  border-radius: 0;
}
.psj-so-examples-label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #94A3B8;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.psj-so-example-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.psj-so-example-tags li {
  display: inline-block;
  padding: 8px 14px;
  background: #F8FAFC;
  border: 1px solid #DCE6F0;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1E3A5F;
  letter-spacing: 0.02em;
  line-height: 1.4;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.psj-so-example-tags li:hover {
  background: rgba(198,40,40,0.06);
  border-color: rgba(198,40,40,0.45);
  color: #C62828;
  transform: translateY(-1px);
}
.psj-so-tag-br { display: none; }

/* 3ステップグリッド */
.psj-so-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.psj-so-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-top: 4px solid #C62828;
  border-radius: 0;
  padding: 36px 28px 32px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 4px 14px rgba(15,31,51,0.04);
}
.psj-so-card:nth-child(2) { border-top-color: #1E3A5F; }
.psj-so-card:nth-child(3) { border-top-color: #5B9BD5; }
.psj-so-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15,31,51,0.10);
  border-color: rgba(198,40,40,0.30);
}
.psj-so-card-bg {
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(198,40,40,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.psj-so-card:hover .psj-so-card-bg {
  transform: scale(1.4);
  opacity: 0.85;
}
.psj-so-card:nth-child(2) .psj-so-card-bg {
  background: radial-gradient(circle, rgba(91,155,213,0.10) 0%, transparent 70%);
}
.psj-so-card:nth-child(3) .psj-so-card-bg {
  background: radial-gradient(circle, rgba(91,155,213,0.12) 0%, transparent 70%);
}
.psj-so-illust {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 240px;
  margin: 0 auto 12px;
  aspect-ratio: 7 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.psj-so-illust img,
.psj-so-illust svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.psj-so-card:hover .psj-so-illust {
  transform: translateY(-3px);
}

.psj-so-step {
  position: relative;
  z-index: 2;
  font-family: "Inter", "Roboto Mono", monospace;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #C62828 0%, #FB923C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.psj-so-card:nth-child(2) .psj-so-step {
  background: linear-gradient(135deg, #1E3A5F 0%, #5B9BD5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.psj-so-card:nth-child(3) .psj-so-step {
  background: linear-gradient(135deg, #1E3A5F 0%, #5B9BD5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.psj-so-card-title {
  position: relative;
  z-index: 2;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 12px;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.psj-so-card-text {
  position: relative;
  z-index: 2;
  font-size: 13px;
  line-height: 1.85;
  color: #475569;
  margin: 0;
}

/* CTA */
.psj-so-cta-wrapper {
  text-align: center;
}
.psj-so-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  background: #C62828;
  padding: 18px 36px;
  border-radius: 0;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 32px rgba(198,40,40,0.30);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.psj-so-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.psj-so-button:hover {
  transform: translateY(-3px);
  background: #0D2143;
  box-shadow: 0 18px 40px rgba(13,33,67,0.50);
}
.psj-so-button:hover svg {
  transform: translateX(6px);
}
.psj-so-sublinks {
  margin: 22px 0 0;
  font-size: 13px;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.psj-so-sublink {
  color: #1E3A5F;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(30,58,95,0.40);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.psj-so-sublink:hover {
  color: #C62828;
  border-bottom-color: #C62828;
}
.psj-so-sublink-line {
  color: #06C755;
  border-bottom-color: rgba(6,199,85,0.40);
}
.psj-so-sublink-line:hover {
  color: #05a644;
  border-bottom-color: #05a644;
}
.psj-so-sep {
  color: #CBD5E1;
}

@media (max-width: 880px) {
  .psj-search-order { padding: 64px 0 80px; }
  .psj-so-header { margin-bottom: 40px; }
  .psj-so-grid { grid-template-columns: 1fr; gap: 14px; }
  .psj-so-card { padding: 28px 22px 24px; }
  .psj-so-step { font-size: 44px; }
  .psj-so-card-title { font-size: 16px; }
  .psj-so-button { padding: 14px 26px; font-size: 14px; width: 100%; max-width: 360px; justify-content: center; }
  .psj-so-sublinks { flex-direction: column; gap: 6px; }
  .psj-so-sep { display: none; }
}

/* (旧 .search-order-section スタイルは未使用化・削除予定) */
.search-order-section {
  padding: 0;
  background: transparent;
}

/* ============================================================
   NEWS リッチカード版（タイプ別カラー・幅640px・2026-05-10）
   ============================================================ */
.news-rich {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-rich-item {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.news-rich-item::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 5px;
  background: var(--news-accent, #94A3B8);
  transition: width 0.3s ease;
}
.news-rich-item:hover {
  transform: translateY(-3px);
  border-color: var(--news-accent, rgba(198,40,40,0.3));
  box-shadow: 0 12px 28px rgba(15,31,51,0.10);
}
.news-rich-item:hover::before {
  width: 7px;
}
/* タイプ別カラー */
.news-rich-vehicle    { --news-accent: #F97316; --news-accent-bg: rgba(251,146,60,0.06); --news-icon-bg: linear-gradient(135deg, #FB923C, #F97316); }
.news-rich-info       { --news-accent: #1E3A5F; --news-accent-bg: rgba(30,58,95,0.05);   --news-icon-bg: linear-gradient(135deg, #1E3A5F, #2C4F7C); }
.news-rich-campaign   { --news-accent: #C62828; --news-accent-bg: rgba(252,211,77,0.10); --news-icon-bg: linear-gradient(135deg, #FCD34D, #C62828); }
.news-rich-sns        { --news-accent: #06C755; --news-accent-bg: rgba(6,199,85,0.06);   --news-icon-bg: linear-gradient(135deg, #06C755, #05a644); }

.news-rich-link {
  display: grid;
  grid-template-columns: 48px 1fr 16px;
  gap: 16px;
  align-items: center;
  padding: 16px 18px 16px 22px;
  text-decoration: none;
  color: inherit;
  position: relative;
  background: var(--news-accent-bg, transparent);
  transition: background 0.3s ease;
}
.news-rich-link::after {
  content: "→";
  font-size: 15px;
  font-weight: 700;
  color: #CBD5E1;
  transition: color 0.3s ease, transform 0.3s ease;
  justify-self: end;
}
.news-rich-item:hover .news-rich-link::after {
  color: var(--news-accent, #C62828);
  transform: translateX(4px);
}

/* アイコン（円形） */
.news-rich-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--news-icon-bg, linear-gradient(135deg, #94A3B8, #64748B));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(15,31,51,0.10);
}

.news-rich-body {
  min-width: 0;
}
.news-rich-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.news-rich-date {
  font-family: "Inter", "Roboto Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #94A3B8;
  white-space: nowrap;
}
.news-rich-cat {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
  background: var(--news-icon-bg, linear-gradient(135deg, #94A3B8, #64748B));
  color: #FFFFFF;
}
.news-rich-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 3px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-rich-item:hover .news-rich-title {
  color: var(--news-accent, #C62828);
}
.news-rich-desc {
  font-size: 11px;
  line-height: 1.6;
  color: #64748B;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-rich-footer {
  text-align: center;
  margin-top: 24px;
}

@media (max-width: 540px) {
  .news-rich-link {
    grid-template-columns: 38px 1fr 14px;
    gap: 12px;
    padding: 14px 14px 14px 18px;
  }
  .news-rich-icon { width: 38px; height: 38px; font-size: 17px; }
  .news-rich-title { font-size: 12.5px; }
  .news-rich-desc { font-size: 10.5px; }
  .news-rich-meta { gap: 6px; }
}
.news-rich-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1E3A5F;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding: 4px 2px;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}
.news-rich-more svg {
  width: 14px; height: 14px;
  transition: transform 0.25s ease;
}
.news-rich-more:hover {
  color: #C62828;
  border-bottom-color: #C62828;
  gap: 12px;
}
.news-rich-more:hover svg { transform: translateX(4px); }

@media (max-width: 640px) {
  .news-rich-link { padding: 14px 16px; }
  .news-rich-link::after { right: 14px; font-size: 14px; }
  .news-rich-title { font-size: 13px; padding-right: 24px; }
  .news-rich-desc { font-size: 11px; padding-right: 24px; }
}

/* ============================================================
   NEWS コンパクト版（元構造維持・幅制限・行ホバー追加・現在は未使用）
   ============================================================ */
.news-list.news-list-compact {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid #E2E8F0;
}
.news-list.news-list-compact .news-item {
  border-bottom: 1px solid #E2E8F0;
  padding: 14px 16px;
  background: transparent;
  border-radius: 0;
  transition: background 0.25s ease;
}
.news-list.news-list-compact .news-item:hover {
  background: #F8FAFC;
}
.news-list.news-list-compact .news-item .news-date {
  font-family: "Inter", "Roboto Mono", monospace;
  font-size: 12.5px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.04em;
}
.news-list.news-list-compact .news-item .news-title {
  flex: 1;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 500;
}
.news-list.news-list-compact .news-item .news-title a {
  color: #0F172A;
  text-decoration: none;
  transition: color 0.25s ease;
}
.news-list.news-list-compact .news-item .news-title a:hover {
  color: #C62828;
}
.news-list.news-list-compact .news-item .badge {
  font-size: 10.5px;
  padding: 4px 10px;
  font-weight: 700;
}

/* ============================================================
   NEWS モダン版（行型ミニマル・2026-05-10・現在は未使用）
   ============================================================ */
.news-modern {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
  border-top: 1px solid #E2E8F0;
}
.news-modern-item {
  border-bottom: 1px solid #E2E8F0;
  transition: background 0.25s ease;
}
.news-modern-item:hover {
  background: #F8FAFC;
}
.news-modern-link {
  display: grid;
  grid-template-columns: 110px 80px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 14px;
  text-decoration: none;
  color: #0F172A;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  transition: color 0.25s ease;
}
.news-modern-link:hover {
  color: #C62828;
}
.news-modern-date {
  font-family: "Inter", "Roboto Mono", monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #94A3B8;
  white-space: nowrap;
}
.news-modern-cat {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.news-modern-cat-new {
  background: linear-gradient(135deg, #FB923C, #F97316);
  color: #FFFFFF;
}
.news-modern-cat-info {
  background: #F1F5F9;
  color: #475569;
  border: 1px solid #E2E8F0;
}
.news-modern-arrow {
  width: 16px; height: 16px;
  color: #CBD5E1;
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.news-modern-item:hover .news-modern-arrow {
  color: #C62828;
  transform: translateX(4px);
}
.news-modern-footer {
  text-align: center;
  margin-top: 28px;
}
.news-modern-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1E3A5F;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding: 4px 2px;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}
.news-modern-more svg {
  width: 14px; height: 14px;
  transition: transform 0.25s ease;
}
.news-modern-more:hover {
  color: #C62828;
  border-bottom-color: #C62828;
  gap: 12px;
}
.news-modern-more:hover svg { transform: translateX(4px); }

@media (max-width: 640px) {
  .news-modern-link {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 14px 10px;
  }
  .news-modern-date {
    font-size: 11px;
    grid-row: 1;
    grid-column: 1;
  }
  .news-modern-cat {
    font-size: 9.5px;
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
  }
  .news-modern-link > a, .news-modern-link {
    font-size: 13px;
  }
  .news-modern-arrow {
    grid-row: 2;
    grid-column: 2;
  }
  .news-modern-link {
    grid-template-rows: auto auto;
  }
  .news-modern-link > :nth-last-child(2) {
    grid-row: 2;
    grid-column: 1;
  }
}

/* ============================================================
   CONTACT v2（Gemini採用：情報サイドバー＋フォーム・2026-05-10）
   ============================================================ */
.psj-contact {
  padding: 88px 0 100px;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 60%, #F0F6FC 100%);
  position: relative;
  overflow: hidden;
}
.psj-contact::before {
  content: "";
  position: absolute;
  top: -100px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(91,155,213,0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.psj-contact-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.psj-contact-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.psj-contact-badge {
  display: inline-block;
  font-family: "Inter", "Roboto Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: #C62828;
  border: 1px solid rgba(198,40,40,0.40);
  background: rgba(255,255,255,0.85);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.psj-contact-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.4;
  color: #0F172A;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.psj-contact-desc {
  font-size: 15px;
  line-height: 1.95;
  color: #475569;
  margin: 0;
}

/* ---- 2カラムグリッド ---- */
.psj-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 32px;
  align-items: start;
}

/* ---- 左：情報サイドバー ---- */
.psj-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.psj-info-card {
  background: #FFFFFF;
  color: #0F172A;
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 24px rgba(15,31,51,0.06);
  position: relative;
  overflow: hidden;
}
.psj-info-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, #C62828 0%, #FB923C 100%);
  pointer-events: none;
}
.psj-info-card::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(252,211,77,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.psj-info-eyebrow {
  display: inline-block;
  font-family: "Inter", monospace;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: #C62828;
  margin-bottom: 8px;
  position: relative;
}
.psj-info-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #475569;
  margin: 0 0 6px;
  position: relative;
}
.psj-info-tel {
  margin: 0 0 12px;
  position: relative;
}
.psj-info-tel a {
  font-family: "Inter", "Roboto Mono", monospace;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #1E3A5F;
  text-decoration: none;
  transition: color 0.2s ease;
}
.psj-info-tel a:hover { color: #C62828; }
.psj-info-hours {
  font-size: 12px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
  position: relative;
}
.psj-info-hours strong {
  color: #C62828;
  font-weight: 800;
  font-size: 13px;
}
.psj-info-hours small {
  font-size: 10.5px;
  color: #94A3B8;
}

/* LINEカード */
.psj-info-line {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #06C755 0%, #05a644 100%);
  color: #FFFFFF;
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(6,199,85,0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.psj-info-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(6,199,85,0.40);
}
.psj-info-line-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.psj-info-line-icon svg { width: 22px; height: 22px; }
.psj-info-line-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.psj-info-line-tag {
  font-family: "Inter", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.psj-info-line-title {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
}
.psj-info-line-body small {
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.psj-info-line-arrow {
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.3s ease;
}
.psj-info-line:hover .psj-info-line-arrow { transform: translateX(4px); }

/* 特徴リスト */
.psj-feature-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 16px 18px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.psj-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #1E3A5F;
  line-height: 1.6;
}
.psj-feature-list li svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: #C62828;
}

/* ---- 右：フォーム ---- */
.psj-contact-form {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 32px 30px;
  box-shadow: 0 12px 32px rgba(15,31,51,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.psj-form-group { margin: 0; }
.psj-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.psj-type-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  border: none;
  padding: 0;
}
.psj-radio-card {
  display: block;
  cursor: pointer;
  position: relative;
}
.psj-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.psj-radio-content {
  display: block;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  color: #475569;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  padding: 12px 10px;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.psj-radio-card:hover .psj-radio-content {
  border-color: #C62828;
  color: #C62828;
}
.psj-radio-card input:checked + .psj-radio-content {
  background: linear-gradient(135deg, #C62828, #E53935);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(198,40,40,0.25);
}

/* Floating Label */
.psj-floating-group {
  position: relative;
}
.psj-input {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #0F172A;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  padding: 18px 14px 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.psj-input:focus {
  outline: none;
  border-color: #C62828;
  box-shadow: 0 0 0 3px rgba(198,40,40,0.12);
}
.psj-textarea {
  resize: vertical;
  min-height: 100px;
  padding-top: 24px;
}
.psj-label {
  position: absolute;
  left: 14px;
  top: 16px;
  font-size: 13px;
  color: #94A3B8;
  pointer-events: none;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  background: #FFFFFF;
  padding: 0 4px;
}
.psj-floating-group .psj-input:focus + .psj-label,
.psj-floating-group .psj-input:not(:placeholder-shown) + .psj-label {
  top: -8px;
  font-size: 10.5px;
  color: #C62828;
  font-weight: 700;
}
.psj-req {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  color: #FFFFFF;
  background: #C62828;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 4px;
  letter-spacing: 0.04em;
}

/* 送信エリア */
.psj-form-submit-wrapper {
  margin-top: 8px;
}
.psj-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  background: #1E3A5F;
  padding: 16px 28px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 22px rgba(30,58,95,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.psj-submit-btn svg {
  width: 16px; height: 16px;
  transition: transform 0.3s ease;
}
.psj-submit-btn:hover {
  transform: translateY(-2px);
  background: #0F172A;
  box-shadow: 0 14px 32px rgba(30,58,95,0.40);
}
.psj-submit-btn:hover svg { transform: translateX(4px); }
.psj-privacy-note {
  font-size: 11px;
  color: #94A3B8;
  text-align: center;
  margin: 12px 0 0;
  line-height: 1.6;
}
.psj-privacy-note a {
  color: #1E3A5F;
  text-decoration: underline;
}

@media (max-width: 880px) {
  .psj-contact { padding: 64px 0 80px; }
  .psj-contact-grid { grid-template-columns: 1fr; gap: 22px; }
  .psj-contact-form { padding: 24px 20px; }
  .psj-type-group { grid-template-columns: 1fr 1fr; }
}
.so-card {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 18px 48px rgba(15,31,51,0.10);
  overflow: hidden;
  border: 1px solid rgba(252,211,77,0.40);
}
.so-deco {
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(252,211,77,0.45) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.so-card::before {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(198,40,40,0.20) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.so-inner { position: relative; z-index: 2; text-align: center; }

.so-eyebrow {
  display: inline-block;
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: #C62828;
  border: 1px solid #C62828;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.so-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 700;
  line-height: 1.4;
  color: #0F172A;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.so-title-em {
  background: linear-gradient(135deg, #C62828 0%, #FB923C 50%, #FCD34D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}
.so-title-em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 4px;
  background: linear-gradient(90deg, #C62828, #FCD34D);
  border-radius: 2px;
}
.so-lead {
  font-size: 15px;
  line-height: 2;
  color: #475569;
  margin: 0 0 36px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.so-lead strong {
  color: #0F172A;
  font-weight: 700;
}
.so-em {
  background: linear-gradient(180deg, transparent 60%, rgba(252,211,77,0.55) 60%);
  padding: 0 4px;
  font-weight: 800;
  color: #C62828;
}

/* 3ステップ */
.so-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.so-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.so-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15,31,51,0.08);
}
.so-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #FFFFFF;
  background: linear-gradient(135deg, #C62828, #E53935);
  border-radius: 8px;
  letter-spacing: 0;
  box-shadow: 0 4px 10px rgba(198,40,40,0.30);
}
.so-list li h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 700;
  color: #1E3A5F;
  margin: 0 0 4px;
}
.so-list li p {
  font-size: 11.5px;
  line-height: 1.65;
  color: #64748B;
  margin: 0;
}

/* CTA */
.so-cta-area {
  border-top: 1px dashed #E2E8F0;
  padding-top: 28px;
  margin-top: 8px;
}
.so-cta-text {
  font-size: 15px;
  color: #0F172A;
  margin: 0 0 18px;
  font-weight: 500;
}
.so-cta-text strong {
  color: #C62828;
  font-weight: 800;
}
.so-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.so-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.so-cta-tel {
  background: #FFFFFF;
  color: #1E3A5F;
  border: 2px solid #1E3A5F;
}
.so-cta-tel:hover {
  transform: translateY(-2px);
  background: #1E3A5F;
  color: #FFFFFF;
  box-shadow: 0 10px 22px rgba(30,58,95,0.25);
}
.so-cta-btn-label {
  font-size: 10px;
  letter-spacing: 0.10em;
  margin-bottom: 2px;
  opacity: 0.85;
}
.so-cta-btn-num {
  font-family: "Inter", "Roboto Mono", monospace;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.so-cta-form {
  flex-direction: row;
  font-size: 13px;
  background: linear-gradient(135deg, #C62828, #E53935);
  color: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(198,40,40,0.30);
  letter-spacing: 0.02em;
}
.so-cta-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(198,40,40,0.50);
}
.so-cta-line {
  flex-direction: row;
  font-size: 13px;
  background: #06C755;
  color: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(6,199,85,0.30);
}
.so-cta-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6,199,85,0.50);
  background: #05a644;
}

@media (max-width: 880px) {
  .search-order-section { padding: 60px 0 70px; }
  .so-card { padding: 36px 22px; border-radius: 18px; }
  .so-list { grid-template-columns: 1fr; gap: 12px; }
  .so-cta-btn { width: 100%; min-width: 0; }
}

/* ============================================================
   NATIONWIDE DELIVERY（全国納車対応・2026-05-10）
   ============================================================ */
.nationwide-section {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FD 100%);
}
.nw-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.nw-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15,31,51,0.14);
  aspect-ratio: 4 / 3;
}
.nw-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.04) saturate(1.06);
  transition: transform 0.6s ease;
}
.nw-photo:hover img { transform: scale(1.04); }
.nw-photo-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: "Inter", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: #FFFFFF;
  background: linear-gradient(135deg, rgba(15,31,51,0.85), rgba(198,40,40,0.85));
  padding: 6px 12px;
  border-radius: 6px;
  line-height: 1.3;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nw-text { padding: 4px 0; }
.nw-eyebrow {
  display: inline-block;
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: #C62828;
  border: 1px solid #C62828;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.nw-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  color: #1E3A5F;
  margin: 0 0 16px;
  word-break: keep-all;
  letter-spacing: -0.01em;
}
.nw-desc {
  font-size: 14px;
  line-height: 1.95;
  color: #475569;
  margin: 0 0 20px;
}
.nw-desc strong {
  color: #C62828;
  font-weight: 700;
  background: linear-gradient(180deg, transparent 60%, rgba(252,211,77,0.45) 60%);
  padding: 0 4px;
}
.nw-points {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nw-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #1E3A5F;
}
.nw-points li span {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E3A5F, #5B9BD5);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}
.nw-cta-text {
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  margin: 0 0 14px;
}
.nw-cta-text strong {
  color: #C62828;
  font-weight: 800;
}
.nw-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nw-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  min-width: 260px;
}
.nw-cta-tel {
  background: #FFFFFF;
  color: #1E3A5F;
  border: 2px solid #1E3A5F;
}
.nw-cta-tel:hover {
  transform: translateY(-2px);
  background: #1E3A5F;
  color: #FFFFFF;
  box-shadow: 0 10px 22px rgba(30,58,95,0.25);
}
.nw-cta-btn-label {
  font-size: 12px;
  letter-spacing: 0.10em;
  margin-bottom: 4px;
  opacity: 0.9;
  font-weight: 600;
}
.nw-cta-btn-num {
  font-family: "Inter", "Roboto Mono", monospace;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.nw-cta-form {
  flex-direction: row;
  font-size: 16px;
  background: linear-gradient(135deg, #C62828, #E53935);
  color: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(198,40,40,0.30);
  letter-spacing: 0.05em;
}
.nw-cta-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(198,40,40,0.50);
}

@media (max-width: 880px) {
  .nationwide-section { padding: 56px 0 64px; }
  .nw-grid { grid-template-columns: 1fr; gap: 24px; }
  .nw-photo { aspect-ratio: 16 / 11; }
  .nw-cta-btn { width: 100%; min-width: 0; }
}

/* ============================================================
   NATIONWIDE MAP BADGE（積載車写真＋直下の日本地図帯 2026-05-10）
   ============================================================ */
.nw-photo-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nw-map-inset {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 6px 16px rgba(13,33,67,0.06);
}
.nw-map-inset-mapwrap {
  position: relative;
  width: 200px;
  flex-shrink: 0;
  line-height: 0;
}
.nw-map-inset-img {
  width: 100%;
  height: auto;
  display: block;
  /* 緑→PSJ濃紺寄りに色相シフト */
  filter: hue-rotate(195deg) saturate(0.55) brightness(0.85);
}
.nw-map-routes-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.nw-deliv-origin-pulse {
  fill: rgba(198, 40, 40, 0.35);
  transform-origin: 217px 239px;
  animation: nw-deliv-pulse 2s ease-out infinite;
}
@keyframes nw-deliv-pulse {
  0%   { transform: scale(0.6); opacity: 0.7; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .nw-deliv-origin-pulse { animation: none; }
}
.nw-map-inset-caption {
  display: flex;
  flex-direction: column;
  line-height: 1;
  border-left: 3px solid #C62828;
  padding-left: 16px;
  flex-shrink: 0;
}
.nw-map-inset-num {
  font-family: "Inter", "Roboto", monospace;
  font-size: 72px;
  font-weight: 900;
  color: #C62828;
  letter-spacing: -0.04em;
  line-height: 1;
}
.nw-map-inset-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0D2143;
  letter-spacing: 0.06em;
  margin-top: 10px;
  line-height: 1.35;
}
.nw-map-inset-tail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid #E2E8F0;
  padding-left: 22px;
  margin-left: 6px;
  flex: 1 1 280px;
  min-width: 240px;
}
.nw-map-inset-tail-en {
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #C62828;
  text-transform: uppercase;
}
.nw-map-inset-tail-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1E3A5F;
  line-height: 1.85;
  letter-spacing: 0.03em;
}
.nw-map-inset-tail-meta {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #DCE6F0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: #64748B;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.nw-map-inset-tail-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nw-map-inset-tail-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #1E3A5F;
  line-height: 1.5;
}
.nw-map-inset-tail-list li span {
  color: #C62828;
  font-size: 7px;
  line-height: 1.7;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 880px) {
  .nw-map-inset { padding: 20px 18px; gap: 18px; flex-wrap: wrap; }
  .nw-map-inset-mapwrap { width: 180px; }
  .nw-map-inset-num { font-size: 56px; }
  .nw-map-inset-label { font-size: 12px; }
  .nw-map-inset-tail { border-left: none; padding-left: 0; margin-left: 0; padding-top: 12px; border-top: 1px solid #E2E8F0; flex-basis: 100%; min-width: 0; }
  .nw-map-inset-tail-jp { font-size: 13px; }
}

/* ============================================================
   QUALITY SHOWCASE（仕上げ品質ショーケース・2026-05-10）
   「ここが違う！」セクション内の縦長写真＋説明
   ============================================================ */
.quality-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  max-width: 1040px;
  margin: 32px auto 40px;
}
.quality-showcase-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15,31,51,0.16);
}
.quality-showcase-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(15,31,51,0.18) 100%);
  pointer-events: none;
}
.quality-showcase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.04) saturate(1.05);
  transition: transform 0.6s ease;
}
.quality-showcase-photo:hover img {
  transform: scale(1.04);
}
.quality-showcase-text { padding: 8px 0; }
.quality-showcase-eyebrow {
  display: inline-block;
  font-family: "Inter", "Roboto Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: var(--red, #C62828);
  border: 1px solid var(--red, #C62828);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.quality-showcase-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy, #1E3A5F);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.quality-showcase-desc {
  font-size: 13.5px;
  line-height: 1.95;
  color: #475569;
  margin: 0 0 22px;
}
.quality-showcase-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quality-showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: #1E3A5F;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.quality-showcase-list li:hover {
  border-color: rgba(198,40,40,0.30);
  transform: translateX(4px);
}
.quality-showcase-list li span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", monospace;
  font-size: 11px;
  font-weight: 800;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--red, #C62828), #E53935);
  border-radius: 6px;
  letter-spacing: 0;
}
.quality-showcase-note {
  margin: 16px 0 0;
  padding: 14px 16px;
  font-size: 12px;
  line-height: 1.85;
  color: #475569;
  background: linear-gradient(135deg, rgba(252,211,77,0.14) 0%, rgba(252,165,165,0.12) 100%);
  border-left: 3px solid #FCD34D;
  border-radius: 6px;
}
.quality-showcase-note strong {
  color: var(--navy, #1E3A5F);
  font-weight: 700;
}
.quality-showcase-note strong:first-of-type {
  color: var(--red, #C62828);
  font-size: 12.5px;
}

/* divider：「And — 大手中古車情報サイト2社…」 */
.quality-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 720px;
  margin: 24px auto 28px;
  padding: 14px 22px;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}
.quality-divider span {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  color: var(--red, #C62828);
  letter-spacing: 0.04em;
}
.quality-divider p {
  margin: 0;
  font-size: 12.5px;
  color: #64748B;
  font-weight: 500;
}

@media (max-width: 880px) {
  .quality-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 24px auto 28px;
  }
  .quality-showcase-photo {
    max-width: 380px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    max-height: 420px;
  }
  .quality-showcase-text { text-align: center; }
  .quality-showcase-list li { text-align: left; }
  .quality-divider { flex-direction: column; gap: 4px; padding: 12px 18px; }
  .quality-divider p { text-align: center; font-size: 11.5px; }
}

/* ============================================================
   PARTNERS セクション（提携金融機関・2026-05-10 追加）
   ============================================================ */
.partners-section {
  padding: 100px 0 110px;
  background: #FFFFFF;
  position: relative;
}
.partners-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #DCE6F0 50%, transparent 100%);
}
.partners-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.partners-eyebrow {
  display: inline-block;
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: var(--red, #C62828);
  padding: 6px 16px;
  border: 1px solid var(--red, #C62828);
  border-radius: 999px;
  margin-bottom: 24px;
}
.partners-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy, #1E3A5F);
  margin: 0 0 24px;
}
.partners-title-em {
  background: linear-gradient(90deg, var(--navy, #1E3A5F) 0%, #5B9BD5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.partners-title-em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 3px;
  background: var(--red, #C62828);
}
.partners-lead {
  font-size: 15px;
  line-height: 1.95;
  color: #555;
  margin: 0;
}
.partners-lead strong {
  color: var(--navy, #1E3A5F);
  font-weight: 700;
}
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.partners-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #DCE6F0;
  border-radius: 0;
  padding: 36px 32px;
  box-shadow: 0 8px 24px rgba(30,58,95,0.05);
  transition: box-shadow 0.3s ease;
}
.partners-card:hover {
  box-shadow: 0 16px 32px rgba(30,58,95,0.12);
}
.partners-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--navy, #1E3A5F), #5B9BD5);
}
.partners-loan::before { background: linear-gradient(90deg, var(--red, #C62828), #E53935); }

.partners-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  padding-bottom: 18px;
  border-bottom: 1px dashed #DCE6F0;
}
.partners-card-num {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--navy, #1E3A5F);
  opacity: 0.6;
  line-height: 1;
}
.partners-card-en {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: var(--red, #C62828);
  margin: 0 0 4px;
}
.partners-card-jp {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy, #1E3A5F);
  margin: 0;
}
.partners-card-desc {
  font-size: 13px;
  line-height: 1.85;
  color: #555;
  margin: 0 0 22px;
}
.partners-card-desc strong {
  color: var(--red, #C62828);
  font-weight: 700;
}
.partners-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.partners-list-4 { grid-template-columns: 1fr 1fr; }
.partners-list-3 { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
/* 3カラム時はセル内も縦スタック・中央揃え（ロゴ／社名／グループ） */
.partners-list-3 li {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 14px 6px;
}
.partners-list-3 .partners-logo {
  width: 100%;
  height: 56px;
}
.partners-list-3 li strong {
  font-size: 10.5px;
  line-height: 1.55;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.partners-list-3 li small {
  font-size: 9.5px;
  line-height: 1.4;
  word-break: keep-all;
}
.partners-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #F8FAFC;
  border: 1px solid #DCE6F0;
  border-radius: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.partners-list li:hover {
  background: #F0F6FC;
  border-color: #5B9BD5;
}
.partners-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  background: linear-gradient(135deg, var(--navy, #1E3A5F), #2C4F7C);
  color: #FFFFFF;
  letter-spacing: 0;
}
.partners-loan .partners-mark {
  background: linear-gradient(135deg, var(--red, #C62828), #E53935);
}

/* 提携会社の実ロゴ画像（A/S/O/M/Pマークの代わり） */
.partners-logo {
  flex-shrink: 0;
  width: 76px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 0;
  padding: 4px 8px;
}
.partners-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.partners-list li strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy, #1E3A5F);
  line-height: 1.4;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.partners-list li small {
  display: block;
  font-size: 10px;
  color: #94A3B8;
  line-height: 1.3;
}
.partners-banks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 18px 24px;
  background: linear-gradient(180deg, #F8FAFC 0%, #F0F6FC 100%);
  border: 1px solid #DCE6F0;
  border-radius: 0;
  max-width: 640px;
  margin: 0 auto;
}
.partners-banks-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #94A3B8;
}
.partners-banks-list {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy, #1E3A5F);
}
.partners-banks-sep {
  color: #DCE6F0;
}

@media (max-width: 880px) {
  .partners-grid { grid-template-columns: 1fr; gap: 18px; }
  .partners-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .partners-section { padding: 70px 0 80px; }
  .partners-head { margin-bottom: 40px; }
  .partners-card { padding: 28px 22px; }
  .partners-card-jp { font-size: 16px; }
  .partners-banks { flex-direction: column; gap: 8px; padding: 14px 20px; }
}

/* ============================================================
   RECRUIT 2026 — Aurora / Glassmorphism / Editorial（最重要オーバーライド）
   既存 .recruit-* スタイルを完全上書き。HTML側で .recruit-r26 を併用。
   ============================================================ */
.recruit-section.recruit-r26 {
  position: relative;
  padding: 64px 0 72px;
  background: linear-gradient(180deg, #FFF9F2 0%, #F4F8FD 50%, #E8F0F9 100%);
  color: #0F172A;
  overflow: hidden;
}
.r26-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.r26-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  mix-blend-mode: normal;
  opacity: 0.68;
}
.r26-orb-1 {
  top: -14%; left: -8%;
  width: 38vw; height: 38vw;
  background: rgba(165,180,252,0.55);
  animation: r26-pulse 9s ease-in-out infinite;
}
.r26-orb-2 {
  top: 18%; right: -10%;
  width: 32vw; height: 32vw;
  background: rgba(125,211,252,0.55);
  animation: r26-pulse 13s ease-in-out infinite reverse;
}
.r26-orb-3 {
  bottom: 5%; left: 6%;
  width: 26vw; height: 26vw;
  background: rgba(147,197,253,0.50);
  filter: blur(95px);
  animation: r26-pulse 14s ease-in-out infinite;
}
.r26-orb-4 {
  bottom: -8%; right: 18%;
  width: 24vw; height: 24vw;
  background: rgba(253,224,71,0.40);
  filter: blur(95px);
  animation: r26-pulse 17s ease-in-out infinite reverse;
}
@keyframes r26-pulse {
  0%, 100% { opacity: 0.78; transform: scale(1); }
  50%      { opacity: 1.0;  transform: scale(1.10); }
}
.r26-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,31,51,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,31,51,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 40%, transparent 100%);
  opacity: 0.85;
}
.r26-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  opacity: 0.10;
  mix-blend-mode: multiply;
}

.r26-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

/* ---- Header（圧縮版） ---- */
.r26-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 36px;
}
.r26-head-left { max-width: 720px; }
.r26-eyebrow {
  display: inline-block;
  font-family: "Inter", "Roboto Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: #6366F1;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(99,102,241,0.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.r26-title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(32px, 5.4vw, 64px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.r26-title-line {
  display: block;
  background: linear-gradient(180deg, #0F172A 0%, rgba(15,23,42,0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.r26-title-em {
  background: linear-gradient(135deg, #38BDF8 0%, #6366F1 50%, #F97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.r26-subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 500;
  color: #1E3A5F;
  line-height: 1.55;
  margin: 0;
}
.r26-head-right {
  max-width: 260px;
  font-size: 12px;
  line-height: 1.75;
  font-weight: 400;
  color: #475569;
  margin: 0;
}

/* ---- 2カラム split：左=写真 右=求人 ---- */
.r26-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  margin: 0 auto 28px;
  max-width: 1100px;
  align-items: start;
}

/* ---- Bento（split左カラム・写真小さめ） ---- */
.r26-bento {
  position: relative;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.r26-bento-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15,31,51,0.10);
}
.r26-bento-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1.06) saturate(1.06) contrast(1.0);
  transform: scale(1.03);
  transition: filter 0.8s ease, transform 0.8s ease;
}
.r26-bento-photo:hover img {
  filter: brightness(1.10) saturate(1.10) contrast(1.0);
  transform: scale(1.0);
}
.r26-bento-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,31,51,0.10) 0%, transparent 35%, transparent 70%, rgba(15,31,51,0.45) 100%),
    linear-gradient(to top, rgba(15,31,51,0.65) 0%, rgba(15,31,51,0.08) 50%, transparent 100%);
}
.r26-bento-caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 14px;
  z-index: 2;
  max-width: 380px;
  pointer-events: none;
}
.r26-bento-caption-tag {
  display: inline-block;
  font-family: "Inter", monospace;
  font-size: 8.5px;
  letter-spacing: 0.30em;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  border: 1px solid rgba(255,255,255,0.40);
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.r26-bento-caption h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(14px, 1.7vw, 17px);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 4px;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0,0,0,0.50);
}
.r26-bento-caption p {
  font-size: 10.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.90);
  margin: 0;
  max-width: 320px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

/* ---- Glass Cards（写真下に配置・ライト） ---- */
.r26-glass {
  position: relative;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,31,51,0.08);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 8px 22px rgba(15,31,51,0.08), inset 0 1px 0 rgba(255,255,255,0.7);
  border-radius: 14px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), background 0.4s ease, box-shadow 0.4s ease;
}
.r26-glass:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 32px rgba(15,31,51,0.12);
}
.r26-glass-stat {
  width: 100%;
  padding: 14px 18px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.r26-glass-stat .r26-glass-label {
  margin: 0;
  flex-shrink: 0;
}
.r26-glass-stat .r26-glass-num {
  margin: 0;
  flex-shrink: 0;
}
.r26-glass-stat .r26-glass-desc {
  flex: 1;
  min-width: 160px;
}
.r26-glass-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(99,102,241,0.14);
  border: 1px solid rgba(99,102,241,0.32);
  color: #6366F1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.r26-glass-icon svg {
  width: 14px; height: 14px;
}
.r26-glass-title {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  color: #0F172A;
  margin: 0 0 3px;
  letter-spacing: -0.005em;
}
.r26-glass-desc {
  font-size: 10.5px;
  line-height: 1.55;
  color: #64748B;
  margin: 0;
}
.r26-glass-label {
  font-family: "Inter", monospace;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6366F1;
  margin: 0 0 2px;
}
.r26-glass-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}
.r26-glass-big {
  font-family: "Inter", "Roboto Mono", monospace;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
  background: linear-gradient(135deg, #38BDF8 0%, #6366F1 50%, #F97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.r26-glass-unit {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
}
.r26-glass-tr .r26-glass-desc { font-size: 10px; }

/* ---- OPEN ROLES（split右カラム） ---- */
.r26-roles {
  max-width: none;
  margin: 0;
}
.r26-roles-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(15,31,51,0.10);
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.r26-roles-head-label {
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: #6366F1;
  font-weight: 700;
}
.r26-roles-head-num {
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #94A3B8;
  font-weight: 600;
}
.r26-roles-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.r26-role {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(15,31,51,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  color: inherit;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.r26-role:hover {
  background: #FFFFFF;
  border-color: rgba(99,102,241,0.30);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(15,31,51,0.08);
}
.r26-role-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 2px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.r26-role-en {
  font-family: "Inter", monospace;
  font-size: 10.5px;
  font-weight: 500;
  color: #94A3B8;
  letter-spacing: 0.05em;
  margin-left: 6px;
}
.r26-role-desc {
  font-size: 11px;
  color: #64748B;
  line-height: 1.55;
  margin: 0 0 8px;
  max-width: 520px;
}
.r26-role-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px 18px;
  margin: 0;
}
.r26-role-meta > div {
  display: flex;
  gap: 6px;
  align-items: baseline;
  padding: 1px 0;
}
.r26-role-meta dt {
  flex-shrink: 0;
  font-family: "Inter", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #94A3B8;
}
.r26-role-meta dd {
  margin: 0;
  font-size: 10.5px;
  font-weight: 500;
  color: #1E3A5F;
}

.r26-role-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.r26-role-tags {
  display: flex;
  gap: 5px;
}
.r26-role-tag {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
}
.r26-role-tag:nth-child(1) {
  background: linear-gradient(135deg, #DBEAFE 0%, #E0E7FF 100%);
  color: #4338CA;
  border: 1px solid rgba(99,102,241,0.20);
}
.r26-role-tag:nth-child(2) {
  background: #F1F5F9;
  color: #64748B;
  border: 1px solid rgba(15,31,51,0.08);
}
.r26-role-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(15,31,51,0.15);
  background: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  color: #1E3A5F;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}
.r26-role-arrow svg {
  width: 12px; height: 12px;
  transform: rotate(-45deg);
  transition: transform 0.4s ease;
}
.r26-role:hover .r26-role-arrow {
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  color: #FFFFFF;
  border-color: transparent;
}
.r26-role:hover .r26-role-arrow svg {
  transform: rotate(0deg);
}

/* ---- CTA（圧縮ライト・ポップ） ---- */
.r26-cta {
  text-align: center;
  padding: 24px 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,31,51,0.06);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  max-width: 940px;
  margin: 0 auto;
  box-shadow: 0 8px 22px rgba(15,31,51,0.05);
}
.r26-cta-push {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6366F1;
  background: linear-gradient(135deg, rgba(99,102,241,0.10) 0%, rgba(236,72,153,0.10) 100%);
  border: 1px solid rgba(99,102,241,0.25);
  padding: 4px 12px;
  border-radius: 999px;
  margin: 0 0 8px;
}
.r26-cta-lead {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 600;
  color: #0F172A;
  margin: 0 0 14px;
}
.r26-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.r26-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.r26-cta-tel {
  background: #FFFFFF;
  color: #0F172A;
  border: 1.5px solid rgba(15,31,51,0.12);
}
.r26-cta-tel:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1E3A5F 0%, #6366F1 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(99,102,241,0.30);
}
.r26-cta-btn-label {
  font-size: 9px;
  letter-spacing: 0.10em;
  margin-bottom: 1px;
  opacity: 0.80;
}
.r26-cta-btn-num {
  font-family: "Inter", "Roboto Mono", monospace;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.r26-cta-form {
  flex-direction: row;
  gap: 6px;
  font-size: 12px;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
  color: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(139,92,246,0.30);
  letter-spacing: 0.02em;
}
.r26-cta-form svg {
  width: 13px; height: 13px;
  transition: transform 0.3s ease;
}
.r26-cta-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(236,72,153,0.50);
}
.r26-cta-form:hover svg { transform: translateX(4px); }
.r26-cta-detail {
  flex-direction: row;
  font-size: 11px;
  background: rgba(255,255,255,0.70);
  color: #1E3A5F;
  border: 1px solid rgba(15,31,51,0.10);
  min-width: 170px;
  letter-spacing: 0.02em;
}
.r26-cta-detail:hover {
  background: #FFFFFF;
  color: #6366F1;
  border-color: rgba(99,102,241,0.30);
  transform: translateY(-2px);
}
.r26-cta-note {
  font-size: 10px;
  color: #94A3B8;
  margin: 8px 0 0;
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .r26-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }
  .r26-head-right { max-width: none; }
  .r26-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .r26-bento-photo {
    aspect-ratio: 16 / 9;
    max-height: 220px;
  }
  .r26-role {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: flex-start;
  }
  .r26-role-side {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .recruit-section.recruit-r26 { padding: 56px 0 64px; }
  .r26-bento-photo { aspect-ratio: 3 / 2; max-height: 180px; }
  .r26-bento-caption { left: 14px; right: 14px; bottom: 10px; }
  .r26-bento-caption h3 { font-size: 14px; }
  .r26-bento-caption p { font-size: 10px; }
  .r26-glass-stat { padding: 12px 14px; gap: 10px; }
  .r26-glass-big { font-size: 22px; }
  .r26-role { padding: 14px 16px; }
  .r26-role-meta { grid-template-columns: 1fr; gap: 2px 0; }
  .r26-role-arrow { width: 28px; height: 28px; }
  .r26-cta { padding: 22px 16px; }
  .r26-cta-btn { width: 100%; min-width: 0; }
}

/* ============================================================
   ヒーロー追加調整：明るく ＋ テキスト読みやすさ確保（2026-05-10）
   ============================================================ */
.cinema-text {
  text-shadow: 0 2px 18px rgba(15,31,51,0.55), 0 1px 4px rgba(15,31,51,0.55);
}
.cinema-headline,
.cinema-sub,
.cinema-title,
.cinema-subtitle {
  text-shadow:
    0 2px 24px rgba(15,31,51,0.7),
    0 1px 6px rgba(15,31,51,0.85),
    0 0 2px rgba(15,31,51,0.6);
}

/* ============================================================
   ヒーローテキスト「タイトル以外を小さく＋左下コーナー配置」（2026-05-10）
   ============================================================ */
.hero-cinema {
  align-items: flex-end !important;
}
.cinema-content {
  max-width: 520px !important;
  margin: 0 !important;
  padding-bottom: clamp(20px, 4vh, 40px) !important;
  padding-left: clamp(24px, 5vw, 56px) !important;
  padding-right: 0 !important;
  text-align: left !important;
}
.cinema-cta {
  justify-content: flex-start !important;
}

/* 左上：在庫数バッジ（独立配置） */
.cinema-trust-topleft {
  position: absolute;
  top: clamp(18px, 3vh, 30px);
  left: clamp(20px, 4vw, 48px);
  z-index: 11;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px !important;
  background: rgba(255,255,255,0.92) !important;
  border: 1px solid rgba(15,31,51,0.08) !important;
  border-radius: 999px !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(15,31,51,0.10);
  margin: 0 !important;
}
.cinema-trust-topleft .cinema-trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.20);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(0.85); }
}
.cinema-trust-topleft .cinema-trust-text {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 11.5px !important;
  font-weight: 600;
  color: #0F172A !important;
  letter-spacing: 0.02em;
}
.cinema-trust-topleft .cinema-trust-text strong {
  color: #C62828 !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  margin: 0 2px;
}
.cinema-trust-badge {
  font-size: 11px !important;
  padding: 5px 12px !important;
  margin-bottom: 14px !important;
  gap: 6px !important;
}
.cinema-trust-text {
  font-size: 11px !important;
}
.cinema-trust-text strong { font-size: 12px !important; }

.cinema-eyebrow-h1 {
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  margin-bottom: 8px !important;
  padding: 3px 10px !important;
}

/* タイトル：小さめに調整 */
.cinema-title {
  font-size: clamp(24px, 3.6vw, 38px) !important;
  line-height: 1.32 !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.01em !important;
}
.cinema-title-accent {
  font-size: 1.05em !important;
}

.cinema-subtitle {
  font-size: 12px !important;
  line-height: 1.7 !important;
  margin-bottom: 18px !important;
  max-width: 540px;
}

.cinema-cta {
  gap: 10px !important;
  margin-bottom: 10px !important;
}
.cinema-btn {
  padding: 10px 20px !important;
  font-size: 13px !important;
  border-radius: 8px !important;
}
.cinema-btn svg {
  width: 14px !important;
  height: 14px !important;
}
.cinema-cta-note {
  font-size: 11px !important;
  padding: 0 !important;
}

@media (max-width: 880px) {
  .cinema-content {
    max-width: 100% !important;
    padding: 0 18px clamp(28px, 5vh, 60px) 18px !important;
  }
  .cinema-trust-badge { font-size: 10px !important; padding: 4px 10px !important; }
  .cinema-eyebrow-h1 { font-size: 10px !important; }
  .cinema-subtitle { font-size: 11px !important; }
  .cinema-btn { padding: 9px 16px !important; font-size: 12px !important; }
}

/* ============================================================
   PICKUP STOCK 統一スペックリスト（年式・グレード・走行距離・車検）
   ============================================================ */
.stock-spec-list {
  list-style: none;
  margin: 8px 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px dashed #E2E8F0;
}
.stock-spec-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed #E2E8F0;
}
.stock-spec-list dt {
  flex-shrink: 0;
  width: 64px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.10em;
}
.stock-spec-list dd {
  margin: 0;
  flex: 1;
  font-size: 12.5px;
  font-weight: 600;
  color: #1E3A5F;
  letter-spacing: -0.005em;
}
.stock-spec-list .stock-spec-price {
  background: linear-gradient(180deg, rgba(91,155,213,0.08) 0%, rgba(198,40,40,0.06) 100%);
  border-bottom-color: rgba(198,40,40,0.18);
  padding: 9px 6px;
  margin: 0 -6px;
  border-radius: 4px 4px 0 0;
}
.stock-spec-list .stock-spec-price dt {
  color: #C62828;
}
.stock-spec-list .stock-spec-price dt small,
.stock-spec-list .stock-spec-total dt small {
  display: block;
  font-size: 8.5px;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: 0;
  margin-top: 1px;
}
.stock-spec-list .stock-spec-price dd {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #C62828;
  letter-spacing: -0.02em;
}
.stock-spec-list .stock-spec-total {
  background: linear-gradient(180deg, rgba(91,155,213,0.10) 0%, rgba(198,40,40,0.08) 100%);
  border-bottom: none;
  padding: 12px 6px;
  margin: 0 -6px;
  border-radius: 6px;
}
.stock-spec-list .stock-spec-total dt {
  color: #C62828;
  font-weight: 800;
}
.stock-spec-list .stock-spec-total dt small {
  display: block;
  font-size: 8.5px;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: 0;
  margin-top: 1px;
}
.stock-spec-list .stock-spec-total dd {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 900;
  color: #C62828;
  letter-spacing: -0.025em;
}

/* ============================================================
   ACCESS セクション グリッド（PC 2カラム / SP 1カラム）
   index.html 「店舗情報・アクセス」 用
   ============================================================ */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ============================================================
   ============================================================
   モバイル最適化 全面強化（2026-05-12）
   ヒーロー以外の全セクションをスマホ向けに抜本改善。
   ・タップしやすさ最優先（最小44x44px・間隔8px以上）
   ・横スクロール禁止・要素重なり禁止
   ・可読性最優先（line-height 1.7・余白十分）
   ・在庫を見る/電話/LINE を常に目立たせる
   PCデザイン（>768px）には影響しない @media 内で完結。
   ============================================================
   ============================================================ */

/* ========== 横スクロール完全防止（基本対策） ========== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  /* 全要素のはみ出し防止 */
  img, video, iframe, table {
    max-width: 100%;
  }
}

/* ========== ヘッダー & ハンバーガー ========== */
@media (max-width: 768px) {
  .header-inner {
    height: 56px;
    padding: 0 14px;
    gap: 8px;
  }
  .logo-main {
    font-size: 0.92rem;
    letter-spacing: 0.01em;
  }
  .logo-sub {
    font-size: 0.54rem;
    letter-spacing: 0.06em;
  }
  .logo-badge {
    font-size: 0.5rem;
    padding: 1px 5px;
    margin-left: 4px;
  }
  .header-cta {
    gap: 4px;
  }
  /* スマホでも電話番号表示（タップしやすく） */
  .header-tel {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(198,40,40,0.30);
  }
  .header-tel span {
    display: none;
  }
  .header-tel::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><path d='M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2a15.07 15.07 0 0 1-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01A11.36 11.36 0 0 1 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z'/></svg>") no-repeat center/contain;
  }
  #hamburger {
    width: 44px;
    height: 44px;
    padding: 10px;
    justify-content: center;
    align-items: center;
  }
  /* SP ドロワー：間隔広め・タップしやすく */
  #sp-nav {
    width: min(82vw, 320px);
    padding-top: 72px;
  }
  #sp-nav ul li a {
    padding: 16px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 52px;
    display: flex;
    align-items: center;
  }
  /* SPドロワー内に電話・LINE・お問合せの強調CTA追加感（既存リンクに帯で目立たせ） */
  #sp-nav ul li:last-child a {
    background: var(--red);
    color: #fff;
    margin: 16px 18px 0;
    border-radius: 8px;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(198,40,40,0.25);
  }
  #sp-nav ul li:last-child {
    border-bottom: none;
  }
  body {
    padding-top: 56px;
  }
}

/* ========== セクションタイトル ========== */
@media (max-width: 768px) {
  .section-title {
    font-size: clamp(1.25rem, 5.2vw, 1.55rem);
    padding-bottom: 18px;
    margin-bottom: 36px;
    line-height: 1.55;
    letter-spacing: 0.04em;
  }
  .section-title .sub {
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    margin-bottom: 8px;
  }
  /* セクション直下のリード文も詰め気味に */
  .section > .container > p.text-center {
    font-size: 0.85rem !important;
    line-height: 1.75 !important;
    padding: 0 4px;
  }
}

/* ========== メトリクス v4（数字バナー） ========== */
@media (max-width: 768px) {
  .metrics-v4 {
    padding: 56px 0 48px;
  }
  .metrics-v4-head {
    margin-bottom: 36px;
    padding: 0 4px;
  }
  .metrics-v4-title {
    font-size: clamp(1.05rem, 5vw, 1.45rem);
    line-height: 1.45;
    letter-spacing: -0.02em;
    white-space: normal;
    margin-bottom: 14px;
  }
  .metrics-v4-lead {
    font-size: 0.88rem;
    line-height: 1.85;
  }
  .metrics-v4-lead br {
    display: none;
  }
  .metrics-v4-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 4px;
  }
  .m4-card {
    padding: 14px 14px 14px !important;
    border-top-width: 3px;
  }
  .m4-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.10em;
    margin-bottom: 6px !important;
    gap: 4px;
  }
  .m4-num-row {
    margin-bottom: 4px !important;
    gap: 3px;
  }
  .m4-num {
    font-size: clamp(1.85rem, 8.5vw, 2.6rem) !important;
    line-height: 1.05 !important;
  }
  .m4-suffix {
    font-size: 0.78rem;
  }
  .m4-h {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    margin-bottom: 4px !important;
    letter-spacing: 0;
  }
  .m4-desc {
    font-size: 0.68rem !important;
    line-height: 1.55 !important;
  }
  .m4-desc br {
    display: none;
  }
  .m4-desc small {
    font-size: 0.62rem;
    display: block;
    margin-top: 3px;
    color: var(--text-light);
  }
  .m4-stars {
    font-size: 0.78rem;
  }
}
@media (max-width: 380px) {
  .metrics-v4-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .m4-card {
    padding: 22px 20px 20px;
  }
}

/* ========== 特選車 / Pickup 在庫 ========== */
@media (max-width: 768px) {
  .featured-car-section {
    padding-top: 40px !important;
    padding-bottom: 16px !important;
  }
  #pickup {
    padding: 48px 0 40px;
  }
  #pickup .stock-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 4px;
  }
  /* CTA「在庫をすべてみる」 はフル幅で大きく */
  #pickup .btn-lg {
    width: 100%;
    max-width: 360px;
    padding: 15px 24px;
    font-size: 0.92rem;
    min-height: 52px;
  }
  #pickup .mt-48 {
    margin-top: 28px;
    padding: 0 20px;
  }
}
@media (max-width: 380px) {
  #pickup .stock-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ========== お探しオーダー（psj-so--premium）「理想の一台を、〜」========== */
@media (max-width: 768px) {
  .psj-so--premium {
    padding: 56px 16px 64px;
  }
  .psj-so--premium .psj-so-header {
    margin-bottom: 32px;
    padding: 0 4px;
  }
  .psj-so--premium .psj-so-badge {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    padding: 5px 12px;
    margin-bottom: 14px;
  }
  .psj-so--premium .psj-so-title {
    font-size: clamp(1.35rem, 6.2vw, 1.85rem);
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
  }
  .psj-so--premium .psj-so-title br {
    display: inline;
  }
  .psj-so--premium .psj-so-desc {
    font-size: 0.85rem;
    line-height: 1.85;
    padding: 0 4px;
  }
  .psj-so--premium .psj-so-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .psj-so-card--spatial {
    border-radius: 14px;
    /* モバイルでは3Dホバーなしで重なり防止 */
    transform: none !important;
  }
  .psj-so-card-visual {
    aspect-ratio: 3 / 2 !important;  /* 画像はやや大きめでバランス */
  }
  .psj-so-card-content {
    padding: 12px 14px 14px !important;
  }
  .psj-so--premium .psj-so-card-title {
    font-size: 0.98rem !important;
    margin: 0 0 5px !important;
    line-height: 1.35 !important;
  }
  .psj-so--premium .psj-so-card-text {
    font-size: 0.78rem !important;
    line-height: 1.6 !important;
  }
  .psj-so-step-wrapper {
    margin-bottom: 5px !important;
  }
  .psj-so--premium .psj-so-step {
    font-size: 0.9rem !important;
  }
  .psj-so-icon {
    width: 20px !important;
    height: 20px !important;
  }
  .psj-so--premium .psj-so-cta-wrapper {
    margin-top: 32px !important;
    padding: 0 4px;
  }
  .psj-so-cta-btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px 20px !important;
    font-size: 0.92rem !important;
    min-height: 56px;
    border-radius: 12px;
    justify-content: center;
  }
}

/* ========== 全国納車（21地域矢印・nationwide-section） ========== */
@media (max-width: 768px) {
  .nationwide-section {
    padding: 48px 0 56px;
  }
  .nationwide-section .container {
    padding: 0 14px;
  }
  .nw-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .nw-photo {
    border-radius: 12px;
    overflow: hidden;
  }
  .nw-photo img {
    width: 100%;
    height: auto;
    display: block;
  }
  .nw-photo-tag {
    font-size: 0.62rem !important;
    letter-spacing: 0.12em !important;
    padding: 6px 10px !important;
    line-height: 1.4 !important;
  }
  .nw-map-inset {
    margin-top: 14px;
  }
  .nw-map-inset-mapwrap {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ========== お知らせ（news-list / news-item） ========== */
@media (max-width: 768px) {
  .news-list {
    max-width: 100%;
    margin: 0 -4px;
  }
  /* index.html の <div class="news-item"> （日付・バッジ・タイトルが直下に並ぶ）
     → 子要素を flex-wrap で日付＋バッジを横並び、タイトルを次行に */
  .news-list .news-item {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center !important;
    gap: 8px 10px !important;
    padding: 16px 16px !important;
    min-height: 64px;
  }
  .news-list .news-item .news-date {
    font-size: 0.82rem;
    min-width: 0;
    letter-spacing: 0;
    order: 1;
  }
  .news-list .news-item .badge {
    font-size: 0.7rem !important;
    padding: 3px 9px !important;
    order: 2;
  }
  .news-list .news-item .news-title {
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
    width: 100%;
    order: 3;
    margin-top: 2px;
  }
  .news-list .news-item .news-title a {
    display: block;
    color: var(--navy);
    padding: 4px 0;
    min-height: 32px;
  }
  /* 「お知らせ一覧へ」 ボタン */
  .news-list + .text-center .btn-outline {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    min-height: 52px;
  }
  /* news/index.html の <article class="news-item">（インラインで flex-direction:column 適用済） */
  article.news-item {
    padding: 18px 16px !important;
    border-radius: 0;
  }
  article.news-item > div:first-child {
    width: 100%;
  }
  article.news-item .news-date {
    font-size: 0.82rem;
  }
  article.news-item .badge {
    font-size: 0.7rem;
    padding: 3px 9px !important;
  }
  article.news-item h2 {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    margin: 0;
  }
  article.news-item h2 a {
    display: block;
    padding: 4px 0;
    min-height: 32px;
  }
  article.news-item p {
    font-size: 0.82rem !important;
    line-height: 1.85 !important;
  }
}

/* ========== SNS（Instagram / X ig-flow） ========== */
@media (max-width: 768px) {
  #sns {
    padding: 48px 0 40px;
  }
  #sns .container {
    padding: 0 12px;
  }
  /* SNS紹介文の余白詰め */
  #sns > .container > p.text-center {
    margin-top: -24px !important;
    margin-bottom: 24px !important;
  }
  #sns > .container > p.text-center br {
    display: none;
  }
  .ig-block {
    margin-bottom: 28px;
  }
  .ig-block-head {
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 4px;
    margin-bottom: 6px;
  }
  .ig-block-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 1.2rem;
  }
  .ig-block-name {
    font-size: 0.92rem;
  }
  .ig-block-handle {
    font-size: 0.74rem;
  }
  /* フォローボタンを目立たせる：横幅自動・小さめパディング */
  .sns-follow {
    flex: 0 0 auto;
    font-size: 0.74rem !important;
    padding: 8px 14px !important;
    min-height: 36px;
  }
  .ig-block-note {
    font-size: 0.68rem;
    margin-bottom: 10px;
  }
  /* タイルサイズをやや小さく＋アニメ高速化で「動いてる感」を強める */
  .ig-flow-tile {
    flex: 0 0 124px;
    height: 124px;
    border-radius: 8px;
  }
  .ig-flow-large .ig-flow-tile {
    flex: 0 0 160px;
    height: 160px;
    border-radius: 8px;
  }
  .ig-flow-track {
    gap: 0;  /* gap撤回（margin-right 方式に統一） */
    animation-duration: 40s !important;
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
    perspective: 1000px;
  }
  .ig-flow-track > .ig-flow-tile {
    margin-right: 6px;  /* スマホは少し狭めの間隔 */
  }
  .ig-flow-track-reverse {
    animation-duration: 45s !important;
  }
  .ig-flow-tile {
    transform: translateZ(0);
    backface-visibility: hidden;
  }
  /* hover を強制発火しないように（モバイルではhoverで止まるのを完全防止） */
  .ig-flow-wrapper:hover .ig-flow-track,
  .ig-flow-wrapper:hover .ig-flow-track-reverse {
    animation-play-state: running !important;
  }
}

/* ========== お知らせ直前のセクション（PARTNERS）========== */
@media (max-width: 768px) {
  .partners-section {
    padding: 48px 0 56px;
  }
  .partners-section .container {
    padding: 0 14px;
  }
  .partners-head {
    margin-bottom: 28px;
    padding: 0 4px;
  }
  .partners-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }
  .partners-title {
    font-size: clamp(1.15rem, 5.5vw, 1.55rem);
    line-height: 1.5;
    margin-bottom: 14px;
  }
  .partners-lead {
    font-size: 0.82rem;
    line-height: 1.85;
  }
  .partners-lead br {
    display: none;
  }
  .partners-grid {
    gap: 14px;
  }
  .partners-card {
    padding: 22px 18px !important;
    border-radius: 10px;
  }
  .partners-card-header {
    gap: 12px;
    margin-bottom: 12px;
  }
  .partners-card-num {
    font-size: 1.3rem;
  }
  .partners-card-en {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }
  .partners-card-jp {
    font-size: 1rem !important;
  }
  .partners-card-desc {
    font-size: 0.8rem;
    line-height: 1.85;
    margin-bottom: 16px;
  }
  /* 各社1列縦並びに統一・ロゴ左＋社名右の横並びカード */
  .partners-list-3,
  .partners-list-4 {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .partners-list-3 li,
  .partners-list-4 li {
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    gap: 14px !important;
    padding: 12px 14px !important;
    background: #fff;
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: 10px;
  }
  .partners-list-3 .partners-logo,
  .partners-list-4 .partners-logo {
    width: 84px !important;
    min-width: 84px !important;
    height: 52px !important;
    flex-shrink: 0;
    padding: 4px 6px;
  }
  .partners-list-3 .partners-logo img,
  .partners-list-4 .partners-logo img {
    max-height: 100% !important;
    max-width: 100% !important;
    object-fit: contain;
  }
  .partners-list-3 li strong,
  .partners-list-4 li strong {
    display: block;
    font-size: 12.5px !important;
    line-height: 1.4 !important;
    text-align: left !important;
    color: #0F172A;
  }
  .partners-list-3 li small,
  .partners-list-4 li small {
    display: block;
    font-size: 10px !important;
    text-align: left !important;
    margin-top: 2px;
    color: #64748b;
  }
  /* 社名内の <br> はスマホでは無視（1行に整える） */
  .partners-list-3 li strong br,
  .partners-list-4 li strong br {
    display: none;
  }
  .partners-banks {
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    text-align: center;
  }
  .partners-banks-label {
    font-size: 0.66rem;
  }
  .partners-banks-list {
    font-size: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  /* タイトル＆セクション余白の見直し（大手企業セクション） */
  .partners-section {
    padding: 48px 0 56px !important;
    overflow: hidden;  /* 画面外への突き抜け防止 */
  }
  .partners-section .container {
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .partners-title {
    font-size: clamp(1.35rem, 5.4vw, 1.85rem) !important;
    line-height: 1.5 !important;
    letter-spacing: 0.02em !important;
    max-width: 100%;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .partners-lead {
    font-size: 0.85rem !important;
    line-height: 1.75 !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .partners-lead br { display: none; }
  .partners-grid {
    max-width: 100%;
    box-sizing: border-box;
  }
  .partners-card {
    padding: 20px 16px !important;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .partners-card-header { gap: 12px !important; margin-bottom: 14px !important; }
  .partners-card-num { font-size: 2.2rem !important; }
  .partners-card-jp { font-size: 0.96rem !important; line-height: 1.4 !important; }
  .partners-card-desc {
    font-size: 0.84rem !important;
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
  }
  /* 各社の社名が長くて切れる問題：横並びでも text を必ず収める */
  .partners-list-3 li,
  .partners-list-4 li {
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    min-width: 0;
  }
  .partners-list-3 li > div,
  .partners-list-4 li > div {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    overflow: hidden;
  }
  .partners-list-3 li strong,
  .partners-list-4 li strong,
  .partners-list-3 li small,
  .partners-list-4 li small {
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    white-space: normal !important;
    max-width: 100%;
  }
}

/* 画像切れ対策：cover 系画像のセンター位置を明示 */
@media (max-width: 768px) {
  .psj-brand-img {
    background-position: center center !important;
    background-size: cover !important;
  }
  /* プラスパージャパン (CURRENT SITE) の店舗写真：車を大きく見せるズームを維持 */
  .psj-brand-card-current .psj-brand-img {
    background-size: 175% !important;
    background-position: center 55% !important;
  }
  /* ヒーロー店舗スライド（cinema-bg-3）：SPは9:16専用に切り出した
     縦長画像 hero-1-sp.jpg（360x640）に差替え。サマー画像と同じ思想で
     枠と画像比率を一致させて完全フィットさせる
     2026-05-13 SP専用画像化 */
  .cinema-bg-3 {
    background-image: url('../img/hero-1-sp.jpg?v=20260513-shop-sp-vert') !important;
    background-size: cover !important;
    background-position: center center !important;
  }
  .psj-cinema-stage-bg {
    background-position: center center !important;
    background-size: cover !important;
  }
  .nb-photo img,
  .quality-showcase-photo img,
  .nw-photo img {
    object-position: center center !important;
  }
  /* PSJ HP 全体の cover 系画像で重要要素が中央にくる前提 */
  .pickup-card-image img,
  .featured-card-img img,
  .recruit-photo img,
  .partners-card-visual img {
    object-fit: cover;
    object-position: center center !important;
  }
}

/* ========== 店舗情報・アクセス（access） ========== */
@media (max-width: 768px) {
  #access {
    padding: 48px 0 56px;
  }
  .access-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  /* 地図：高さ抑え気味＋角丸 */
  .map-wrap {
    border-radius: 12px;
  }
  .map-wrap iframe {
    height: 260px;
  }
  .access-grid-map .btn-block {
    padding: 14px 18px;
    font-size: 0.9rem;
    min-height: 52px;
  }
  /* テーブルを「縦カード」 風に再構成（th 上・td 下） */
  .access-table,
  .access-table tbody,
  .access-table tr,
  .access-table th,
  .access-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .access-table tr {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
  }
  .access-table th {
    background: var(--off-white);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 9px 14px;
    border-bottom: 1px solid var(--border-light);
    text-align: left;
  }
  .access-table td {
    background: #fff;
    padding: 12px 14px;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text);
    border-bottom: none;
  }
  .access-table td a {
    word-break: break-all;
  }
}

/* ========== 採用案内（r26） ========== */
@media (max-width: 768px) {
  .r26-cta-btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 18px !important;
    font-size: 0.88rem !important;
    min-height: 52px;
    justify-content: center;
  }
  .r26-cta-note {
    font-size: 0.74rem;
    text-align: center;
    margin-top: 10px;
  }
}

/* ========== フッター固定CTA（最重要：常に目立つ） ========== */
@media (max-width: 768px) {
  #footer-cta {
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    border-top: 2px solid var(--navy);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.14);
  }
  .footer-cta-inner {
    gap: 6px;
    max-width: 100%;
  }
  .footer-cta-btn {
    flex: 1 1 0;
    padding: 11px 6px !important;
    font-size: 0.78rem !important;
    border-radius: 10px;
    flex-direction: column;
    gap: 3px !important;
    min-height: 52px;
    justify-content: center;
    font-weight: 700;
    line-height: 1.2;
  }
  .footer-cta-btn .cta-icon {
    width: 20px !important;
    height: 20px !important;
  }
  .footer-cta-btn .label {
    display: inline-block !important;
    font-size: 0.72rem;
    letter-spacing: 0;
  }
}
@media (max-width: 380px) {
  .footer-cta-btn {
    padding: 10px 4px !important;
    font-size: 0.7rem !important;
  }
  .footer-cta-btn .label {
    font-size: 0.66rem;
  }
}

/* ========== フッター本体 ========== */
@media (max-width: 768px) {
  #footer {
    padding: 48px 0 96px;
  }
  #footer .container {
    padding: 0 18px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 28px;
  }
  .footer-inner > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-logo {
    font-size: 1rem;
  }
  .footer-desc {
    font-size: 0.78rem;
    line-height: 1.85;
  }
  .footer-nav h4 {
    font-size: 0.68rem;
    margin-bottom: 10px;
    padding-bottom: 6px;
  }
  .footer-nav ul li {
    margin-bottom: 8px;
  }
  .footer-nav ul li a {
    font-size: 0.78rem;
    display: inline-block;
    padding: 4px 0;
    min-height: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 18px;
    font-size: 0.72rem;
  }
  .footer-bottom p {
    font-size: 0.72rem;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }
  .footer-links a {
    font-size: 0.72rem;
  }
}
@media (max-width: 380px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ========== ニュース一覧ページ（news/index.html）専用 ========== */
@media (max-width: 768px) {
  .page-hero {
    padding: 32px 0 28px;
  }
  .page-hero .en {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
  }
  .page-hero h1 {
    font-size: 1.45rem;
    line-height: 1.4;
  }
  .page-hero p {
    font-size: 0.85rem;
    line-height: 1.7;
    padding: 0 12px;
  }
  /* news 一覧のカテゴリータブ */
  .filter-tabs {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 0 4px;
  }
  .filter-tab {
    padding: 8px 14px !important;
    font-size: 0.78rem !important;
    min-height: 38px;
    flex: 0 1 auto;
  }
  /* ページネーション */
  .news-list + div [style*="border-radius:8px"],
  body > section .filter-tabs ~ * + div > span,
  body > section .filter-tabs ~ * + div > a {
    /* タップエリア確保 */
    min-width: 44px;
    min-height: 44px;
  }
}

/* ========== その他の細かな調整 ========== */
@media (max-width: 768px) {
  /* container 余白を統一 */
  .container {
    padding: 0 16px;
  }
  /* 「在庫をすべてみる」 系の主要CTAをモバイルで目立たせる */
  .text-center .btn-lg,
  .text-center .btn-primary {
    padding: 15px 28px;
    font-size: 0.92rem;
    min-height: 52px;
    box-shadow: 0 4px 12px rgba(198,40,40,0.20);
  }
  /* quality-showcase の写真は aspect-ratio で枠サイズが決まる → img は枠フィット contain で全体表示 */
  .quality-showcase-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  /* ===== 在庫カード（Pickup・在庫一覧）の縦幅をコンパクト化 ===== */
  #pickup .stock-card .card-img,
  #stock-list-grid .stock-card .card-img,
  .stock-card .card-img {
    aspect-ratio: 4 / 3 !important;
    padding: 4px !important;
  }
  #pickup .stock-card-body,
  #stock-list-grid .stock-card-body,
  .stock-card-body {
    padding: 10px 12px 12px !important;
  }
  .stock-car-name {
    font-size: 0.88rem !important;
    margin-bottom: 4px !important;
  }
  .stock-spec-list {
    font-size: 0.74rem !important;
    line-height: 1.45 !important;
    margin-bottom: 8px !important;
  }
  .stock-spec-list li {
    padding: 2px 0 !important;
  }
  .stock-spec-total dd {
    font-size: 0.95rem !important;
  }
  .stock-card .btn-block,
  .stock-card .btn-sm {
    padding: 8px 10px !important;
    font-size: 0.78rem !important;
    min-height: 38px !important;
  }
  .stock-price-ask {
    font-size: 0.72rem !important;
    margin-bottom: 8px !important;
  }
  .stock-card .badge {
    font-size: 9.5px !important;
    padding: 2px 7px !important;
  }

  /* opening-screen は変更しない（design-trend-specialist 領域に影響しない） */
}

/* ========== 在庫一覧ページ（stock/index.html）スマホ専用 2026-05-12 ========== */
@media (max-width: 768px) {

  /* ---- 在庫グリッド：2列固定（#pickup と同じ扱い） ---- */
  #stock-list-grid.stock-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 2px;
  }

  /* ---- 在庫カード内の文字サイズを詰める（2列で狭いため） ---- */
  #stock-list-grid .stock-car-name {
    font-size: 0.84rem;
    line-height: 1.35;
    margin-bottom: 2px;
  }
  #stock-list-grid .stock-spec-list dt {
    font-size: 9px;
    width: 52px;
  }
  #stock-list-grid .stock-spec-list dd {
    font-size: 11px;
  }
  #stock-list-grid .stock-spec-list .stock-spec-total dd {
    font-size: 15px;
  }
  #stock-list-grid .stock-card-body {
    padding: 12px 12px 14px;
  }

  /* ---- バッジを少し小さく ---- */
  #stock-list-grid .badge {
    font-size: 0.6rem !important;
    padding: 2px 7px !important;
  }

  /* ---- お問合せボタン：最小タップ領域確保 ---- */
  #stock-list-grid .btn-sm.btn-block {
    min-height: 40px;
    font-size: 0.76rem;
    padding: 9px 8px;
  }

  /* ---- 検索バー：入力欄を縦並びにしてタップしやすく ---- */
  .search-bar {
    flex-direction: column;
    gap: 10px;
  }
  .search-bar input {
    width: 100%;
    font-size: 1rem;  /* iOS ズーム防止（16px以上） */
    padding: 13px 16px;
    min-height: 48px;
  }
  .search-bar .btn {
    min-height: 48px;
    width: 100%;
    font-size: 0.9rem;
  }

  /* ---- 価格帯セレクト：幅を広げてタップしやすく ---- */
  #price-filter.form-control {
    max-width: 100% !important;
    width: 100%;
    min-height: 48px;
    font-size: 1rem;  /* iOS ズーム防止 */
    padding: 12px 40px 12px 16px;
  }

  /* ---- 価格帯ラベル＋セレクトを縦並び ---- */
  .stock-filter-price-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  /* ---- 在庫0台の空状態：ボタンをフル幅 ---- */
  .stock-empty .btn {
    display: flex;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    min-height: 48px;
    justify-content: center;
  }

  /* ---- 仮ページネーション：タップ領域 ---- */
  .stock-page-nav span,
  .stock-page-nav a {
    min-width: 44px !important;
    min-height: 44px !important;
  }
}

@media (max-width: 380px) {
  #stock-list-grid.stock-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  #stock-list-grid .stock-car-name {
    font-size: 0.92rem;
  }
  #stock-list-grid .stock-spec-list dt {
    font-size: 10px;
    width: 60px;
  }
  #stock-list-grid .stock-spec-list dd {
    font-size: 12.5px;
  }
}

/* ========== service.html 自社車検センター連携 画像（2026-05-13 引き表示） ========== */
/* 元: aspect-ratio:4/3; object-fit:cover （アップになりすぎ）
   修正: contain で全体表示・濃紺背景でレターボックスを意匠化 */
.service-garage-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: #0D2143;
  border-radius: 0;
  display: block;
}
@media (max-width: 768px) {
  .service-garage-img {
    aspect-ratio: 16 / 11;
  }
}

/* ============================================================
   PC全体・縦余白を引き締め（2026-05-14）
   - スマホ（max-width: 768px）には一切影響しない
   - ヒーロー / MEDIA / ACCESS は対象外（触らない）
   - 既存セクション padding を 75〜85% に圧縮
   ============================================================ */
@media (min-width: 769px) {
  /* 共通基底クラス（.section）104px → 80px */
  .section { padding: 80px 0; }
  .section-sm { padding: 48px 0; }

  /* 数字が証明（metrics-v4）110/100 → 80/72 */
  .metrics-v4 { padding: 80px 0 72px; }

  /* お探しオーダー（psj-so--premium） clamp(6rem,10vw,12rem) → clamp(4.5rem,7vw,8rem) */
  .psj-so--premium { padding: clamp(4.5rem, 7vw, 8rem) 1.5rem; }

  /* TCL シネマ（psj-cinema）110/100 → 88/80（ステージカード内部は据置） */
  .psj-cinema { padding: 88px 0 80px; }
  /* 見出し下マージン 72 → 56（圧縮 約78%） */
  .psj-cinema-head { margin-bottom: 56px; }

  /* グループブランド psj-brand-section（cinema内部のため上0・下のみ圧縮） */
  .psj-brand-section { padding-top: 0; padding-bottom: 56px; }

  /* 全国納車（nationwide-section）72/80 → 56/64 */
  .nationwide-section { padding: 56px 0 64px; }

  /* PARTNERS 提携金融機関（partners-section）100/110 → 80/88 */
  .partners-section { padding: 80px 0 88px; }

  /* 採用 r26（recruit-section.recruit-r26）64/72 → 56/60 */
  .recruit-section.recruit-r26 { padding: 56px 0 60px; }
  /* 採用基底（recruit-section）80/90 → 64/72 */
  .recruit-section { padding: 64px 0 72px; }

  /* サービス Bento（section-services-bento）96 → 76 */
  .section-services-bento { padding: 76px 0; }
}


