/* =========================================================
   めぐり自転車 — 新デザイン プロトタイプ（LP専用 / 独立）
   方向性: 送付モックアップ準拠 = ダークな全面動画ヒーロー + 白文字 +
           グリーン基調のアクセント + 明るい本文。虹はブランドとして継続。
   既存 style.css には影響しない。
   ========================================================= */

:root {
  --paper:     #F4F4F1;   /* 明るい本文の地（クリーン・ニュートラル） */
  --paper-2:   #EAEBEE;   /* 淡ネイビー寄り */
  --card:      #FCFCFB;
  --ink:       #16181D;   /* near-black（ニュートラル） */
  --ink-70:    rgba(22, 24, 29, 0.70);
  --ink-55:    rgba(22, 24, 29, 0.55);
  --ink-40:    rgba(22, 24, 29, 0.40);
  --line-hair: rgba(22, 24, 29, 0.12);

  --accent:    #1E3A5F;   /* ネイビー（旧フォレストグリーン #2E7D50 を全置換） */
  --accent-d:  #162C49;   /* hover 用の暗いネイビー */
  --link:      #1F5FA8;   /* テキストリンク用ブルー */
  --dark-hero: #0C1424;   /* ヒーローの紺黒ベース */

  /* LINE導線 専用色（サイト装飾には使わない＝「緑＝押す場所」を成立させる） */
  --line-green:  #06C755;
  --line-green-d:#05A648;

  /* ブランドの虹（継続・罫線/下線/上端3pxのみ。面塗り禁止） */
  --rainbow: linear-gradient(90deg,#E53935 0%,#FB8C00 18%,#FDD835 38%,#43A047 55%,#1E88E5 74%,#8E24AA 100%);

  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 24px 60px -28px rgba(20, 30, 22, 0.45);
  --shadow-sm: 0 10px 28px -16px rgba(20, 30, 22, 0.28);
  --maxw:      1140px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* フラット方針（§3.3）: 旧フィルムグレイン body::after は廃止した */

/* AI感の典型＝各セクションの英語アイブロウ（Service/Why us…）は撤去。見出しは日本語で自明 */
.section .eyebrow { display: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* ---------- タイポグラフィ ---------- */
.serif { font-family: "Zen Kaku Gothic New", sans-serif; }
.num   { font-family: "Barlow Semi Condensed", sans-serif; font-variant-numeric: tabular-nums; }

h1, h2, h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700; line-height: 1.3; letter-spacing: 0.005em; margin: 0; text-wrap: balance;
}
.eyebrow { font-family: "Barlow Semi Condensed", sans-serif; font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink-40); }
.lead { font-size: 1.04rem; color: var(--ink-70); line-height: 1.9; text-wrap: pretty; }

/* ---------- レイアウト ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; }
.section { padding: clamp(64px, 10vw, 128px) 0; }
.section--alt { background: var(--paper-2); }
.stack > * + * { margin-top: 1.1rem; }
.rainbow-line { width: 128px; height: 4px; border-radius: 99px; background: var(--rainbow); }

/* ---------- ヘッダー ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-hair);
}
.nav::before { content:""; position:absolute; inset:0 0 auto 0; height:3px; background: var(--rainbow); }
.nav__in { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.nav__brand { display: flex; align-items: center; gap: 10px; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.08em; text-decoration: none; }
.nav__brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav__links { display: none; gap: 28px; font-size: 0.86rem; letter-spacing: 0.02em; }
.nav__links a { text-decoration: none; color: var(--ink-70); transition: color .2s; }
.nav__links a:hover { color: var(--accent); }
/* モバイル：ハンバーガー展開パネル */
.nav__links.open {
  display: flex; flex-direction: column; gap: 2px;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--paper); border-bottom: 1px solid var(--line-hair);
  box-shadow: var(--shadow-sm); padding: 10px 24px 16px;
}
.nav__links.open a { padding: 10px 0; border-bottom: 1px solid var(--line-hair); }
.nav__links.open a:last-child { border-bottom: none; }
.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; margin-right: -8px;
  border: none; background: transparent; color: var(--ink);
  font-size: 1.4rem; line-height: 1; cursor: pointer; border-radius: 8px;
}
.nav__toggle:hover { background: rgba(25, 28, 26, 0.06); }
@media (min-width: 860px) {
  .nav__toggle { display: none; }
  .nav__links { display: flex !important; flex-direction: row; position: static; padding: 0; background: none; box-shadow: none; border: none; }
  .nav__links a { padding: 0; border: none; }
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  padding: 0.92em 1.8em; border-radius: 999px;
  transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .2s, background .2s, color .2s, border-color .2s;
  will-change: transform;
}
/* primary = LINE導線専用。サイト内で唯一の緑（「緑＝押す場所」を成立させる） */
.btn--primary { background: var(--line-green); color: #fff; box-shadow: 0 12px 26px -12px rgba(6,199,85,0.55); }
.btn--primary:hover, .btn--primary:focus { background: var(--line-green-d); }
.btn--primary:hover { transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }
/* CTAの文字色は通常・hover・訪問後（visited）で不変にする（コントラスト比 5:1 を担保） */
.btn--primary:link, .btn--primary:visited, .btn--primary:hover, .btn--primary:active, .btn--primary:focus { color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:link, .btn--dark:visited, .btn--dark:hover, .btn--dark:active, .btn--dark:focus { color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-hair); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--light-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.55); }
.btn--light-ghost:link, .btn--light-ghost:visited, .btn--light-ghost:active, .btn--light-ghost:focus { color: #fff; }
.btn--light-ghost:hover { background: rgba(255,255,255,0.16); border-color: #fff; color: #fff; }
.btn--sm { padding: 0.6em 1.2em; font-size: 0.8rem; }

/* ---------- ヒーロー（全面動画・ダーク・白文字） ---------- */
.hero { position: relative; overflow: hidden; min-height: clamp(560px, 84vh, 800px); display: flex; align-items: center; color: #fff; background: var(--dark-hero); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,18,32,0.88) 0%, rgba(10,18,32,0.58) 48%, rgba(10,18,32,0.22) 100%),
    linear-gradient(0deg, rgba(10,18,32,0.58) 0%, rgba(10,18,32,0) 42%);
}
.hero__inner { position: relative; z-index: 2; padding: clamp(96px, 15vh, 160px) 0 clamp(56px, 9vh, 96px); }
.hero__copy { max-width: 660px; }
.hero h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); line-height: 1.2; color: #fff; }
.hero h1 em { font-style: normal; position: relative; }
.hero h1 em::after { content:""; position:absolute; left:0; right:0; bottom:0.02em; height:0.07em; background: var(--rainbow); opacity:0.95; border-radius:99px; z-index:-1; }
.hero .eyebrow { color: rgba(255,255,255,0.65); }
.hero .lead { color: rgba(255,255,255,0.86); }
.hero .lead strong { color: #fff; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-start; margin-top: 0.4rem; }
/* CTA と同じ幅の虹アンダーライン */
.cta-underline { display: inline-flex; flex-direction: column; gap: 10px; align-items: stretch; }
.cta-underline .rainbow-line { width: 100%; height: 3px; margin: 0; }

/* 信頼バッジ（ダーク上） */
.badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 0.42em 0.9em; border-radius: 8px; font-size: 0.76rem; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22); color: #fff; }
.badge b { width: 7px; height: 7px; border-radius: 50%; }
/* 明るい背景のセクションで使うバッジ（白つぶれ防止・文字は濃色） */
.badge--on-light { background: var(--card); border-color: var(--line-hair); color: var(--ink-70); }

/* ---------- カード ---------- */
.card { background: var(--card); border: 1px solid var(--line-hair); border-radius: var(--radius); padding: 1.7rem 1.8rem; box-shadow: var(--shadow-sm); }

/* 2カラム（電動 / ママチャリ の訴求など） */
.duo { display: grid; gap: 20px; }
@media (min-width: 760px) { .duo { grid-template-columns: 1fr 1fr; gap: 22px; } }
.duo .card { display: grid; gap: 0.5rem; position: relative; overflow: hidden; }
.duo .card::before { content:""; position:absolute; left:0; top:0; bottom:0; width:4px; background: var(--accent); }
.duo h3 { font-size: 1.16rem; }
.duo p { color: var(--ink-70); font-size: 0.95rem; }
.types { margin-top: 18px; color: var(--ink-55); font-size: 0.9rem; letter-spacing: 0.02em; }

/* Why：3枚均等カード（AI感）をやめ、左に見出し・右に番号付きエディトリアル */
.why { display: grid; gap: 40px; }
@media (min-width: 900px) { .why { grid-template-columns: 0.82fr 1.18fr; gap: 60px; align-items: start; } }
.why__list { display: grid; }
.why__item { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 26px 4px; border-top: 1px solid var(--line-hair); align-items: baseline; }
.why__item:last-child { border-bottom: 1px solid var(--line-hair); }
.why__n { font-family: "Barlow Semi Condensed", sans-serif; font-weight: 600; font-size: 1.55rem; line-height: 1; color: var(--accent); letter-spacing: 0.02em; }
/* 番号なし・罫線区切りの変種（番号レイアウトの3連続を避ける） */
.why__list--lines .why__item { display: block; border-top: 1px solid var(--line-hair); padding-top: 16px; }
.why__h { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 1.18rem; margin-bottom: 0.45rem; }
.why__p { color: var(--ink-70); font-size: 0.95rem; }

/* ---------- マーキー / カルーセル ---------- */
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; width: max-content; align-items: stretch; animation: marquee var(--speed, 46s) linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.work { flex: 0 0 auto; width: clamp(240px, 34vw, 320px); aspect-ratio: 4 / 3; margin-right: 16px; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--paper-2); }
.work img { width: 100%; height: 100%; object-fit: cover; }
/* キャプション付き変種（画像の下に車種名。画像への被せは禁止パターンのため下置き） */
.work--cap { aspect-ratio: auto; overflow: visible; border-radius: 0; box-shadow: none; background: transparent; }
.work--cap img { aspect-ratio: 4 / 3; height: auto; object-fit: cover; display: block; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.work__cap { display: block; margin-top: 8px; font-size: 0.78rem; color: var(--ink-55); letter-spacing: 0.03em; }

/* 金額付き実績グリッド（静止・カード）。動くカルーセルでは金額が読めないため別立て */
.deals { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: clamp(16px, 3vw, 24px); }
.deal { background: var(--card); border: 1px solid var(--line-hair); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.deal__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--paper-2); }
.deal__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; }
.deal__name { font-weight: 700; font-size: 1.02rem; color: var(--ink); line-height: 1.35; }
.deal__meta { font-size: 0.8rem; color: var(--ink-55); }
.deal__price { margin-top: 4px; font-family: "Barlow Semi Condensed", sans-serif; font-variant-numeric: tabular-nums; font-weight: 600; font-size: 1.5rem; color: var(--accent-d); }
.deal__price--free { font-family: "Zen Kaku Gothic New", sans-serif; font-size: 1.05rem; }
.deal__area { font-size: 0.76rem; color: var(--ink-40); }

.brandwall { padding: 22px 0; border-top: 1px solid var(--line-hair); border-bottom: 1px solid var(--line-hair); }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; padding: 0 34px; font-family: "Barlow Semi Condensed", sans-serif; font-weight: 600; font-size: clamp(1.05rem, 2.4vw, 1.5rem); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); white-space: nowrap; }
.brand::after { content:""; width: 6px; height: 6px; border-radius:50%; margin-left: 34px; background: var(--ink-40); }
.brandwall .brand:nth-child(6n+1)::after { background:#E53935; }
.brandwall .brand:nth-child(6n+2)::after { background:#FB8C00; }
.brandwall .brand:nth-child(6n+3)::after { background:#FDD835; }
.brandwall .brand:nth-child(6n+4)::after { background:#43A047; }
.brandwall .brand:nth-child(6n+5)::after { background:#1E88E5; }
.brandwall .brand:nth-child(6n+6)::after { background:#8E24AA; }

/* ---------- ブランドウォール：ワードマーク調タイポグラフィ ----------
   実ロゴ画像の代わりに、各ブランドの実際のワードマークの特徴
   （太さ・斜体・セリフ・字間・大文字小文字）を既存＋システムフォントで近似。 */
.bw-black  { font-family: "Arial Black", Arial, sans-serif; font-weight: 900; letter-spacing: 0.02em; }
.bw-blacki { font-family: "Arial Black", Arial, sans-serif; font-weight: 900; font-style: italic; letter-spacing: 0.04em; }
.bw-seri   { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 700; text-transform: none; letter-spacing: 0.02em; }
.bw-serif  { font-family: Georgia, "Times New Roman", serif; font-weight: 600; letter-spacing: 0.14em; }
.bw-cond   { font-family: "Barlow Semi Condensed", sans-serif; font-weight: 600; letter-spacing: 0.3em; }
.bw-wide   { font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif; font-weight: 300; letter-spacing: 0.38em; }
.bw-low    { font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif; font-weight: 700; text-transform: none; letter-spacing: 0.01em; }
.bw-sm { font-size: clamp(0.95rem, 2.1vw, 1.32rem); }
.bw-lg { font-size: clamp(1.15rem, 2.6vw, 1.62rem); }

/* ---------- 対象車種：タイポグラフィ・インデックス（チップ廃止） ---------- */
.genres { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.genre { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px; padding: 18px 12px; border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent); background: color-mix(in srgb, var(--accent) 6%, transparent); border-radius: var(--radius-sm); transition: transform .2s ease, box-shadow .2s ease; }
.genre:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.genre__ic { display: grid; place-items: center; min-height: 66px; }
.genre__jp { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: clamp(1rem, 1.8vw, 1.18rem); line-height: 1.3; color: var(--ink); }
@media (max-width: 640px) { .genres { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ---------- ブランド一覧ページ：カラム・インデックス（チップ廃止） ---------- */
.brandcat h2 { font-size: 1.22rem; color: var(--ink); border-bottom: 1px solid var(--line-hair); padding-bottom: 10px; margin-bottom: 16px; }
.brandix { columns: 3; column-gap: 48px; padding: 0; margin: 0; list-style: none; }
.brandix li { break-inside: avoid; padding: 7px 0; }
.brandix .en { display: block; font-family: "Barlow Semi Condensed", sans-serif; font-weight: 600; font-size: 1.04rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink); line-height: 1.3; }
.brandix .jp { font-size: 0.74rem; color: var(--ink-55); letter-spacing: 0.04em; }
.brandix--2 { columns: 2; max-width: 560px; }
@media (max-width: 820px) { .brandix { columns: 2; column-gap: 28px; } }

/* ---------- 料金テーブル ---------- */
.rate { width: 100%; border-collapse: collapse; }
.rate th, .rate td { text-align: left; padding: 0.85rem 0.4rem; border-bottom: 1px solid var(--line-hair); }
.rate th { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--ink-40); font-weight: 600; text-transform: uppercase; }
.rate td:last-child { font-family: "Barlow Semi Condensed", sans-serif; font-variant-numeric: tabular-nums; font-size: 1.12rem; font-weight: 600; text-align: right; }

/* ---------- 流れ ---------- */
.steps { display: grid; gap: 16px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
/* 縦一列の流れ（罫線区切り）。グリッドだと内容量の差で余白が生まれるため */
.steps--flow { gap: 0; }
.steps--flow .step { padding: 22px 0; border-top: 1px solid var(--line-hair); }
.steps--flow .step:first-child { border-top: 0; padding-top: 0; }
.step__n { font-family: "Barlow Semi Condensed", sans-serif; font-weight: 600; color: #fff; background: var(--accent); width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 1.2rem; }

/* ---------- FAQ ---------- */
.qa { display: grid; gap: 16px; }
.qa__q { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 1.02rem; margin-bottom: 0.35rem; }
.qa__a { color: var(--ink-70); font-size: 0.94rem; }

/* ---------- CTA / フッター ---------- */
.cta { text-align: center; }
.cta h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
.foot { padding: 56px 0 96px; border-top: 1px solid var(--line-hair); color: var(--ink-55); }
.foot__top { display: grid; gap: 36px; }
@media (min-width: 760px) { .foot__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
.foot__logo { font-size: 1.15rem; color: var(--ink); margin-bottom: 10px; }
.foot__logo span { font-size: 0.78rem; color: var(--ink-40); }
.foot__brand p { font-size: 0.85rem; color: var(--ink-55); margin: 0 0 18px; max-width: 320px; line-height: 1.7; }
.foot__social { display: flex; gap: 12px; }
.foot__social a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 11px; border: 1px solid var(--line-hair); background: var(--card); transition: transform .18s cubic-bezier(.2,.7,.2,1), border-color .2s; }
.foot__social a:hover { transform: translateY(-2px); border-color: var(--accent); }
.foot__col h4 { font-family: "Barlow Semi Condensed", sans-serif; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-40); margin: 0 0 14px; font-weight: 600; }
.foot__col a { display: block; font-size: 0.88rem; color: var(--ink-70); text-decoration: none; padding: 6px 0; transition: color .2s; }
.foot__col a:hover { color: var(--accent); }
.foot__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-hair); font-size: 0.78rem; color: var(--ink-40); }

/* スマホ固定CTA */
.dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(8px); border-top: 1px solid var(--line-hair); }
.dock::before { content:""; position:absolute; left:0; right:0; top:0; height:2px; background: var(--rainbow); opacity:0.8; }
.dock__in { max-width: 560px; margin: 0 auto; }
.dock .btn { width: 100%; justify-content: center; min-height: 48px; }
@media (min-width: 860px) { .dock { display: none; } }
/* §6 追従CTAバー: JS が .dock--auto を付与した index のみ、ヒーロー通過後に出現し
   #contact/footer 表示中は退避。全ビューポートで表示（lp.html は付与しないため従来どおり）。 */
.dock--auto { transform: translateY(130%); opacity: 0; pointer-events: none; transition: transform .32s cubic-bezier(.2,.7,.2,1), opacity .28s; }
.dock--auto.dock--show { transform: none; opacity: 1; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { .dock--auto { transition: none; } }
@media (min-width: 860px) { .dock--auto { display: block; } }

/* ---------- 段組み（シングルカラムをやめる） ---------- */
.cols2 { display: grid; gap: clamp(22px, 4vw, 48px); }
@media (min-width: 780px) { .cols2 { grid-template-columns: 1fr 1fr; align-items: start; } }
.cols2-wide { display: grid; gap: clamp(22px, 4vw, 48px); }
@media (min-width: 860px) { .cols2-wide { grid-template-columns: 1.15fr 0.85fr; align-items: start; } }
/* セクション見出しを左に固定、右に本文（非対称の2カラム） */
.split { display: grid; gap: clamp(24px, 4vw, 56px); }
@media (min-width: 900px) { .split { grid-template-columns: 300px 1fr; align-items: start; } .split__head { position: sticky; top: 84px; } }
/* 理由・項目を2カラムのグリッドに */
.grid2 { display: grid; gap: 0 clamp(24px, 4vw, 48px); }
@media (min-width: 680px) { .grid2 { grid-template-columns: 1fr 1fr; } }
/* 理由を2カラムにしたときは罫線をやめ余白で見せる */
.grid2 .why__item { border: none !important; padding: 16px 0; align-items: start; }
/* FAQ 2カラム */
@media (min-width: 760px) { .qa--2 { grid-template-columns: 1fr 1fr; gap: 18px 48px; } }
/* 流れ 2×2 */
@media (min-width: 720px) { .steps--grid { grid-template-columns: 1fr 1fr; gap: 26px 44px; } }

/* ---------- 脱・カードグリッド：サービスは大きな番号＋罫線のエディトリアル ---------- */
/* 2つのサービス：買取（緑）と引取（チャコール）を色分けした対比カード */
.svc { display: grid; gap: 16px; }
@media (min-width: 720px) { .svc { grid-template-columns: 1fr 1fr; } }
.svccard { display: flex; flex-direction: column; border: 1px solid var(--line-hair); border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 38px -22px rgba(25,28,26,0.30); background: var(--card); transition: transform .25s ease, box-shadow .25s ease; }
.svccard:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -24px rgba(25,28,26,0.36); }
.svccard__head { position: relative; padding: clamp(18px,2.6vw,22px) clamp(20px,3vw,24px); color: #fff; display: flex; flex-direction: column; gap: 4px; }
.svccard__head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--rainbow); opacity: 0.85; }
.svccard--buy .svccard__head { background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 70%, #06251a)); }
.svccard--take .svccard__head { background: linear-gradient(135deg, #343935, var(--ink)); }
.svccard__k { font-size: 0.76rem; letter-spacing: 0.1em; font-weight: 600; opacity: 0.9; }
.svccard__h { font-size: clamp(1.4rem,3.4vw,1.7rem); font-weight: 700; line-height: 1.1; }
.svccard__body { padding: clamp(18px,2.5vw,22px) clamp(20px,3vw,24px); display: flex; flex-direction: column; gap: 8px; }
.svccard__lead { font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.svccard__desc { color: var(--ink-70); font-size: 0.94rem; }
.svccard__price { margin-top: 4px; font-weight: 700; font-size: 1.02rem; }
.svccard--buy .svccard__price { color: var(--accent-d); }
.svccard--take .svccard__price { color: var(--ink); }
.svccard__note { font-size: 0.82rem; color: var(--ink-40); }

/* 選ばれる理由：アイコンバッジ付きカードのグリッド */
.whygrid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .whygrid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .whygrid { grid-template-columns: repeat(3, 1fr); } }
.whycard { background: var(--card); border: 1px solid var(--line-hair); border-radius: var(--radius-sm); padding: clamp(20px,2.6vw,26px); box-shadow: 0 12px 32px -22px rgba(25,28,26,0.26); display: flex; flex-direction: column; gap: 8px; transition: transform .25s ease, box-shadow .25s ease; }
.whycard:hover { transform: translateY(-3px); box-shadow: 0 20px 42px -24px rgba(25,28,26,0.32); }
.whycard__mark { display: block; width: 36px; height: 3px; border-radius: 99px; background: var(--rainbow); margin-bottom: 14px; }
.whycard__h { font-weight: 700; color: var(--ink); font-size: 1.02rem; line-height: 1.45; }
.whycard__p { color: var(--ink-70); font-size: 0.9rem; line-height: 1.6; }

/* 脱・カードグリッド：連絡先は罫線＋アイコンの一覧 */
.contact-list { display: grid; }
.contact-row { display: grid; grid-template-columns: 44px 1fr auto; gap: 18px; align-items: center; padding: 20px 2px; border-top: 1px solid var(--line-hair); text-decoration: none; color: inherit; transition: background .2s; }
.contact-row:last-child { border-bottom: 1px solid var(--line-hair); }
.contact-row:hover { background: color-mix(in srgb, var(--accent) 5%, transparent); }
.contact-row__ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; }
.contact-row__t h3 { font-size: 1.02rem; margin-bottom: 2px; }
.contact-row__t p { font-size: 0.84rem; color: var(--ink-55); }
.contact-row__go { color: var(--accent-d); font-weight: 700; font-size: 1.2rem; }
@media (max-width: 520px) { .contact-row { grid-template-columns: 40px 1fr; } .contact-row__go { display: none; } }

/* ---------- ホームページ用 追加コンポーネント ---------- */
.notice { background: color-mix(in srgb, var(--accent) 7%, var(--card)); border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent); border-left: 4px solid var(--accent); border-radius: 12px; padding: 18px 20px; }
.notice h3 { font-size: 1rem; color: var(--accent-d); margin-bottom: 6px; }
.notice p { font-size: 0.9rem; color: var(--ink-70); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-block; padding: 0.42em 0.95em; border-radius: 999px; font-size: 0.85rem; font-weight: 500; background: color-mix(in srgb, var(--accent) 8%, var(--card)); border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent); color: var(--accent-d); }

.imgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .imgrid.cols3 { grid-template-columns: repeat(3, 1fr); } .imgrid.cols4 { grid-template-columns: repeat(4, 1fr); } }
.imgrid img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }

.company { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.company th { text-align: left; color: var(--ink-40); font-weight: 500; padding: 12px 20px 12px 0; vertical-align: top; white-space: nowrap; }
.company td { padding: 12px 0; border-bottom: 1px solid var(--line-hair); }
.company tr:last-child td { border-bottom: none; }

.contact-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card { position: relative; overflow: hidden; }
.contact-card::before { content:""; position:absolute; left:0; top:0; bottom:0; width:4px; background: var(--cc, var(--accent)); }
.contact-card .k { font-family: "Barlow Semi Condensed", sans-serif; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-40); margin-bottom: 6px; }
.contact-card a.contact-link { color: var(--accent-d); font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.contact-card a.contact-link:hover { text-decoration: underline; }

.list-plain { list-style: none; padding: 0; margin: 0; }
.list-plain li { position: relative; padding-left: 1.1em; color: var(--ink-70); font-size: 0.9rem; margin: 7px 0; }
.list-plain li::before { content: "–"; position: absolute; left: 0; color: var(--ink-40); }

/* =========================================================
   電動クラスター（Phase 3 第1弾）追加コンポーネント
   index ヒーロー差替（h1 は文書構造上維持・視覚主役を別要素に）＋
   /dendo/ ・ /column/ 用。既存クラスには影響しない。
   ========================================================= */

/* index ヒーロー v2：視覚主役 .hero__display、h1 は小さなタグラインとして残す */
.hero--v2 .hero__display { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: clamp(2rem, 5.8vw, 3.4rem); line-height: 1.28; color: #fff; margin: 0; text-wrap: balance; }
.hero--v2 .hero__sub { font-size: clamp(1rem, 2.4vw, 1.2rem); color: rgba(255,255,255,0.9); font-weight: 500; margin: 0; }
.hero--v2 h1 { font-size: 0.98rem; font-weight: 600; line-height: 1.6; color: rgba(255,255,255,0.72); letter-spacing: 0.04em; }
.hero--v2 h1 br { display: none; }
.hero--v2 h1 em::after { height: 1px; bottom: -0.15em; opacity: 0.7; }

/* ヒーロー直下の固定バンド（一般車の受け皿。削除不可） */
.band { background: color-mix(in srgb, var(--accent) 7%, var(--paper)); border-top: 1px solid var(--line-hair); border-bottom: 1px solid var(--line-hair); padding: 14px 0; }
.band p { margin: 0; text-align: center; font-size: 0.92rem; color: var(--ink-70); }
.band strong { color: var(--ink); }

/* USP：罫線区切りの4項目（カードグリッドのAI感を避けつつ簡潔に） */
.usp { display: grid; }
@media (min-width: 720px) { .usp { grid-template-columns: 1fr 1fr; gap: 0 clamp(28px, 4vw, 56px); } }
.usp__item { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: baseline; padding: 18px 2px; border-top: 1px solid var(--line-hair); }
.usp__n { font-family: "Barlow Semi Condensed", sans-serif; font-weight: 600; font-size: 1.35rem; line-height: 1; color: var(--accent); }
.usp__t { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 1.06rem; }
.usp__p { grid-column: 2; color: var(--ink-70); font-size: 0.88rem; margin: 2px 0 0; }

/* パンくず */
.crumbs { font-size: 0.78rem; color: var(--ink-40); letter-spacing: 0.02em; margin-bottom: 14px; }
.crumbs a { color: var(--ink-55); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs span[aria-hidden] { margin: 0 6px; }

/* 査定フロー（3ルート）：番号＋左罫線の分岐図 */
.routes { display: grid; gap: 14px; }
@media (min-width: 860px) { .routes { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.route { position: relative; background: var(--card); border: 1px solid var(--line-hair); border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm); overflow: hidden; }
.route::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); }
.route--min::before { background: color-mix(in srgb, var(--accent) 45%, var(--paper-2)); }
.route--off::before { background: var(--ink-40); }
.route__n { font-weight: 700; font-size: 0.76rem; letter-spacing: 0.12em; color: var(--accent-d); margin-bottom: 6px; }
.route h3 { font-size: 1.08rem; margin-bottom: 10px; }
.route dl { margin: 0; display: grid; gap: 10px; }
.route dt { font-size: 0.82rem; letter-spacing: 0.08em; color: var(--ink-55); font-weight: 700; }
.route dd { margin: 2px 0 0; font-size: 0.98rem; line-height: 1.6; color: var(--ink); }
.route .price-tag { display: inline-block; margin-top: 4px; font-weight: 700; color: var(--accent-d); font-size: 1rem; }

/* 電動ページ：査定アップポイント（車体だけでも査定OK、そのうえで加点される要素をカードで） */
.routeflow { display: grid; gap: 12px; }
.rf { display: flex; flex-direction: column; gap: 3px; background: var(--card); border: 1px solid var(--line-hair); border-left: 5px solid var(--accent); border-radius: var(--radius-sm); padding: clamp(16px,2.6vw,20px) clamp(18px,3vw,22px); box-shadow: 0 12px 32px -22px rgba(25,28,26,0.24); }
.rf__body { display: flex; flex-direction: column; gap: 3px; }
.rf__pt { font-weight: 700; color: var(--ink); font-size: clamp(0.98rem,2.4vw,1.06rem); }
.rf__why { color: var(--ink-70); font-size: 0.88rem; line-height: 1.6; }
.routeflow .price-tag { font-weight: 700; color: var(--accent-d); }

/* トップ：ご利用の流れ（横並び4ステップ＋矢印。モバイルは縦＋下向き矢印） */
.flowline { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: stretch; gap: clamp(6px,1.4vw,12px); }
.fstep { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; background: var(--card); border: 1px solid var(--line-hair); border-radius: var(--radius-sm); padding: clamp(16px,2.4vw,24px) clamp(12px,1.8vw,18px); box-shadow: var(--shadow-sm); }
.fstep__n { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; font-family: "Barlow Semi Condensed", sans-serif; font-weight: 600; font-size: 1.25rem; flex: 0 0 auto; }
.fstep__t { font-weight: 700; color: var(--ink); font-size: clamp(0.95rem,2.2vw,1.05rem); }
.fstep__d { color: var(--ink-70); font-size: 0.84rem; line-height: 1.55; }
.fstep__arw { display: flex; align-items: center; justify-content: center; color: var(--accent); flex: 0 0 auto; }
@media (max-width: 760px) {
  .flowline { grid-template-columns: 1fr; gap: 4px; }
  .fstep__arw { transform: rotate(90deg); padding: 4px 0; }
}

/* 図解（診断手順など）：差し替え前提のコンポーネント */
.checkfig { margin: 0; }
.checkfig img, .checkfig svg { width: 100%; height: auto; border-radius: var(--radius-sm); border: 1px solid var(--line-hair); background: var(--card); }
.checkfig figcaption { font-size: 0.78rem; color: var(--ink-40); margin-top: 8px; }

/* コラム本文（インラインstyleの氾濫を避ける共通プローズ） */
.prose { color: var(--ink-70); line-height: 1.9; font-size: 0.94rem; display: grid; gap: clamp(26px, 4vw, 38px); }
.prose section { display: block; }
.prose h2 { font-size: 1.3rem; color: var(--ink); margin-bottom: 12px; }
.prose h3 { font-size: 1.06rem; color: var(--ink); margin: 18px 0 8px; }
.prose p { margin: 0 0 12px; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--accent-d); font-weight: 600; }
.prose ul, .prose ol { margin: 0 0 12px; padding-left: 1.3em; }
.prose li { margin: 6px 0; }

/* 著者ボックス（コラム末尾） */
.author-box { display: grid; gap: 4px; background: var(--card); border: 1px solid var(--line-hair); border-radius: var(--radius); padding: 1.3rem 1.5rem; }
.author-box .k { font-family: "Barlow Semi Condensed", sans-serif; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-40); }
.author-box .n { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.author-box p { margin: 2px 0 0; font-size: 0.86rem; color: var(--ink-70); }

/* 実例の空枠（ダミー禁止。取引発生ごとに追記） */
.empty-slot { border: 1.5px dashed var(--line-hair); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); text-align: center; color: var(--ink-40); font-size: 0.9rem; }

/* ---------- モーション ---------- */
.js-motion .reveal { opacity: 0; transform: translateY(18px); }
.js-motion .reveal.in { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0ms); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-motion .reveal { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none !important; }
  .hero__video { display: none; }
}

/* スマホ：縦の余白を圧縮してスクロール量を軽減（文章・画像は変更しない） */
@media (max-width: 640px) {
  .section { padding-top: 44px; padding-bottom: 44px; }
  /* ヒーロー：中央寄せをやめて上寄せ＋上の空きを圧縮（文字の上の余白を解消） */
  .hero { min-height: 62vh; align-items: flex-start; }
  .hero__inner { padding-top: clamp(36px, 6vh, 56px); padding-bottom: clamp(36px, 6vh, 56px); }
  .steps--flow .step { margin-bottom: 20px; }
  .work { width: clamp(200px, 62vw, 260px); }
}

/* =========================================================
   図解（§5）共通 + 図解A 距離帯図（#price）
   静的SVG・JS不要。地図ではなく同心円のコンセプト図。
   ========================================================= */
.distmap { display: grid; gap: clamp(20px, 4vw, 44px); align-items: center; }
@media (min-width: 760px) { .distmap { grid-template-columns: minmax(260px, 360px) 1fr; } }
.distmap__fig { margin: 0; max-width: 360px; width: 100%; justify-self: center; }
.band-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.band-row { display: grid; grid-template-columns: 14px 4.4em auto 1fr; gap: 14px; align-items: baseline; padding: 13px 2px; border-top: 1px solid var(--line-hair); }
.band-row:last-child { border-bottom: 1px solid var(--line-hair); }
.band-row__dot { width: 12px; height: 12px; border-radius: 50%; align-self: center; border: 1px solid rgba(22,24,29,0.14); }
.band-row__km { font-size: 0.86rem; color: var(--ink-55); font-weight: 500; white-space: nowrap; }
.band-row__yen { font-weight: 600; font-size: 1.32rem; color: var(--accent); line-height: 1; white-space: nowrap; }
.band-row__yen--sm { font-size: 0.98rem; color: var(--ink-70); }
.band-row__area { font-size: 0.9rem; color: var(--ink); line-height: 1.5; }
@media (max-width: 460px) {
  .band-row { grid-template-columns: 12px 3.8em 1fr; row-gap: 3px; column-gap: 12px; }
  .band-row__area { grid-column: 2 / -1; color: var(--ink-70); font-size: 0.86rem; }
}

/* 図解C: ご利用の流れ（縦タイムライン・#flow）。番号はBarlow特大＋接続線 */
.timeline { list-style: none; margin: 0; padding: 0; }
.tl { position: relative; display: grid; grid-template-columns: 2.6rem 1fr; gap: clamp(14px,3vw,24px); padding: 0 0 clamp(24px,4vw,34px); }
.tl:last-child { padding-bottom: 0; }
.tl::before { content: ""; position: absolute; left: 1.3rem; top: 2.4rem; bottom: 0; width: 2px; background: var(--line-hair); transform: translateX(-50%); }
.tl:last-child::before { display: none; }
.tl__n { position: relative; z-index: 1; width: 2.6rem; text-align: center; font-family: "Barlow Semi Condensed", sans-serif; font-weight: 600; font-size: clamp(1.8rem,5.5vw,2.4rem); line-height: 1.1; color: var(--accent); }
.tl__body { padding-top: 0.2em; }
.tl__t { font-size: 1.1rem; margin-bottom: 5px; }
.tl__d { color: var(--ink-70); font-size: 0.93rem; line-height: 1.75; }

/* 図解B: 査定の分岐図（#choice）。ノードはHTMLテキスト＋罫線/矢印で分岐 */
.flowtree { max-width: 560px; margin: 0 auto; text-align: center; }
.ftnode { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; border-radius: 12px; padding: 13px 20px; line-height: 1.45; font-weight: 700; }
.ftnode--nav { background: var(--accent); color: #fff; box-shadow: 0 14px 30px -20px rgba(22,24,29,0.5); }
.ftnode--lite { background: #E8EBF0; color: var(--ink); font-weight: 500; font-size: 0.9rem; }
.ftnode--result { padding: 15px 22px; }
.ftnode--result strong { font-size: 1.12rem; }
.ftnode__k { display: inline-grid; place-items: center; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: rgba(255,255,255,0.18); font-family: "Barlow Semi Condensed", sans-serif; font-size: 0.9rem; margin-bottom: 3px; }
.ftnode__sub { font-weight: 500; font-size: 0.82rem; opacity: 0.92; }
.ftnode__sub a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.ftline { display: block; width: 2px; height: 22px; margin: 8px auto; background: color-mix(in srgb, var(--accent) 40%, transparent); }
.ftsplit { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px,4vw,30px); margin-top: 30px; }
.ftsplit__bar { position: absolute; top: -18px; left: 25%; right: 25%; height: 2px; background: color-mix(in srgb, var(--accent) 40%, transparent); }
.ftbranch { position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ftbranch__line { position: absolute; top: -18px; left: 50%; width: 2px; height: 18px; background: color-mix(in srgb, var(--accent) 40%, transparent); transform: translateX(-50%); }
.ftbranch .ftnode { width: 100%; }
.ftarw { color: color-mix(in srgb, var(--accent) 55%, transparent); display: flex; }
.ftclose { text-align: center; margin: 30px auto 0; max-width: 560px; font-weight: 700; color: var(--ink); }
.ftclose__u { background-image: var(--rainbow); background-repeat: no-repeat; background-position: 0 100%; background-size: 100% 2px; padding-bottom: 4px; }

/* §4-11 FAQ アコーディオン（<details>・JS不要） */
.faq-acc { border-top: 1px solid var(--line-hair); }
.faq-item { border-bottom: 1px solid var(--line-hair); }
.faq-item > summary { list-style: none; cursor: pointer; padding: 18px 42px 18px 4px; position: relative; font-weight: 700; color: var(--ink); font-size: 1rem; line-height: 1.55; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: ""; position: absolute; right: 8px; top: 24px; width: 11px; height: 11px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(45deg); transition: transform .22s ease; }
.faq-item[open] > summary::after { transform: rotate(225deg); top: 27px; }
.faq-item__a { padding: 0 4px 20px; }
.faq-item__a p { color: var(--ink-70); font-size: 0.93rem; line-height: 1.8; margin: 0; }

/* 図解G 比較表（§5.5）。自社列のみ淡ネイビーで強調・他社名なし */
.cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-sm); }
.cmp { width: 100%; border-collapse: collapse; min-width: 540px; font-size: 0.9rem; }
.cmp th, .cmp td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line-hair); }
.cmp thead th { font-size: 0.88rem; color: var(--ink-55); font-weight: 700; border-bottom: 2px solid var(--line-hair); }
.cmp tbody th { font-weight: 700; color: var(--ink); white-space: nowrap; }
.cmp td { color: var(--ink-70); line-height: 1.6; }
.cmp .cmp-self { background: color-mix(in srgb, var(--accent) 8%, var(--card)); }
.cmp thead th.cmp-self { color: var(--accent-d); border-bottom: 2px solid var(--accent); }
.cmp tbody td.cmp-self { color: var(--ink); font-weight: 600; }

/* §4-4 選ばれる理由: 罫線区切りの縦積み＋線画SVGアイコン（カードグリッド廃止） */
.whylist { border-top: 1px solid var(--line-hair); max-width: 820px; }
.whyrow { display: grid; grid-template-columns: 44px 1fr; gap: clamp(16px,3vw,24px); align-items: start; padding: clamp(20px,3vw,26px) 0; border-bottom: 1px solid var(--line-hair); }
.whyrow__ic { color: var(--accent); display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: color-mix(in srgb, var(--accent) 8%, transparent); }
.whyrow__h { font-size: 1.08rem; font-weight: 700; margin-bottom: 5px; color: var(--ink); line-height: 1.45; }
.whyrow__p { color: var(--ink-70); font-size: 0.93rem; line-height: 1.75; margin: 0; }


/* §5.4 引取できないもの: ×アイコン付きリスト */
.xlist { list-style: none; padding: 0; margin: 0; }
.xlist li { position: relative; padding-left: 1.6em; color: var(--ink-70); font-size: 0.9rem; line-height: 1.7; margin: 8px 0; }
.xlist li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 12px; height: 12px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B23B3B' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E"); }

/* 実績: 実物写真を大きく見せる2枚組フィーチャー（#works上部） */
.works-feature { display: grid; gap: clamp(16px,3vw,28px); margin-bottom: clamp(30px,4vw,44px); }
@media (min-width: 720px) { .works-feature { grid-template-columns: 1fr 1fr; } }
.wfeat { margin: 0; background: var(--card); border: 1px solid var(--line-hair); border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 40px -26px rgba(22,24,29,0.35); }
.wfeat img { width: 100%; aspect-ratio: 1100 / 505; object-fit: cover; display: block; }
.wfeat__cap { display: flex; flex-direction: column; gap: 5px; padding: 16px 18px; }
.wfeat__row { display: flex; align-items: center; gap: 10px; }
.wfeat__tag { font-weight: 700; font-size: 0.8rem; color: #fff; background: var(--accent); padding: 3px 13px; border-radius: 999px; flex: 0 0 auto; }
.wfeat__tag--take { background: var(--ink); }
.wfeat__t { font-weight: 700; font-size: 1.08rem; color: var(--ink); }
.wfeat__meta { font-size: 0.9rem; color: var(--ink-70); }
.wfeat__price { font-weight: 700; font-size: 0.96rem; color: var(--accent-d); }
.wfeat__area { font-size: 0.82rem; color: var(--ink-55); }

/* 実績カード: 前向きな注記（金額の文脈補足） */
.wfeat__note { font-size: 0.8rem; color: var(--ink-55); line-height: 1.5; }

/* 生成アイコン画像（#target 車種／#why 概念）。透過webp・ネイビー線画 */
.genre__img { width: 66px; height: 66px; object-fit: contain; }
.whyrow__img { width: 34px; height: 34px; object-fit: contain; }

/* コラム一覧（/column/）: 番号＋左罫線のエディトリアル行 */
.collist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-hair); }
.colrow { display: grid; grid-template-columns: 52px 1fr; gap: clamp(14px,3vw,24px); padding: clamp(24px,4vw,34px) 0; border-bottom: 1px solid var(--line-hair); }
.colrow__n { font-family: "Barlow Semi Condensed", sans-serif; font-size: 1.6rem; font-weight: 600; color: var(--accent); line-height: 1; padding-top: 4px; }
.colrow__body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.colrow__meta { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--ink-40); }
.colrow__h { font-size: clamp(1.1rem,2.6vw,1.35rem); line-height: 1.45; margin: 0; }
.colrow__h a { color: var(--ink); text-decoration: none; }
.colrow__h a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }
.colrow__p { color: var(--ink-70); font-size: 0.93rem; line-height: 1.8; margin: 0; }
.colrow__go { align-self: flex-start; font-size: 0.9rem; font-weight: 600; color: var(--accent); text-decoration: none; }
.colrow__go:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 520px) { .colrow { grid-template-columns: 40px 1fr; } .colrow__n { font-size: 1.3rem; } }
