/* みんくる HP プロトタイプ — デザインシステム
   方針: スマホファースト / Buddica DIRECT風 / みんくる赤ブランド
   ※ ブランドレッドのHEXは暫定（正式ロゴ入手後に確定） */

:root {
  --brand: #e60012;        /* みんくる レッド（暫定） */
  --brand-dark: #b3000e;
  --brand-soft: #fdecee;
  --line: #06c755;         /* LINE 公式グリーン */
  --line-dark: #05a948;
  --ink: #1a1a1a;
  --muted: #6b7280;
  --bg: #ffffff;
  --surface: #f5f6f7;
  --border: #e5e7eb;
  --gold: #f5a623;         /* 評価点など */
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 10px rgba(0, 0, 0, .08);
  --shadow-lg: 0 6px 24px rgba(0, 0, 0, .12);
  --maxw: 480px;           /* スマホ基準のコンテンツ幅 */
  --header-h: 56px;
  --servicebar-h: 44px;
  --bottombar-h: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN",
    "Yu Gothic", Meiryo, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  font-size: 15px;
  padding-bottom: var(--bottombar-h);
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* レイアウト枠（スマホ幅でセンタリング、PCは余白） */
.app { max-width: var(--maxw); margin: 0 auto; background: var(--bg); min-height: 100vh; position: relative; }

.section { padding: 22px 16px; }
.section + .section { border-top: 8px solid var(--surface); }
.section__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.section__title { font-size: 18px; font-weight: 700; letter-spacing: .02em; }
.section__title small { display: block; font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: .08em; }
.section__more { font-size: 13px; color: var(--brand); font-weight: 600; white-space: nowrap; }

/* ===== ヘッダー ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 32px; width: auto; display: block; }
.header__actions { display: flex; align-items: center; gap: 14px; color: var(--ink); }
.header__actions .icon { background: none; border: 0; padding: 0; line-height: 1; color: var(--ink); display: grid; place-items: center; }
.header__actions .icon svg { width: 23px; height: 23px; display: block; }

/* ===== 下部固定アクションバー（LINE集約・電話なし） ===== */
.bottombar {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--maxw); z-index: 60;
  height: var(--bottombar-h);
  background: var(--bg); border-top: 1px solid var(--border);
  display: flex; gap: 10px; align-items: center; padding: 8px 12px;
  box-shadow: 0 -2px 12px rgba(0,0,0,.06);
}
.bottombar .btn { height: 46px; }
.bottombar .btn-stock { flex: 0 0 38%; }
.bottombar .btn-line { flex: 1; font-size: 16px; }

/* ===== ボタン ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border: 0; border-radius: 999px; font-weight: 700; font-size: 15px;
  padding: 0 18px; height: 48px; white-space: nowrap; transition: .15s;
}
.btn-line { background: var(--line); color: #fff; }
.btn-line:active { background: var(--line-dark); }
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:active { background: var(--brand-dark); }
.btn-outline { background: #fff; color: var(--ink); border: 1.5px solid var(--border); }
.btn-block { width: 100%; }
.btn-lg { height: 54px; font-size: 16px; }

/* ===== ヒーロー ===== */
.hero { position: relative; color: #fff; }
.hero__media { aspect-ratio: 16/11; background:
    radial-gradient(120% 100% at 80% 0%, #ff2a39 0%, var(--brand) 42%, var(--brand-dark) 100%);
  position: relative; overflow: hidden; }
.hero__media::after { content: ""; position: absolute; right: -30px; bottom: -40px; width: 280px; height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14l1.5-5A2 2 0 0 1 7.4 7.6h9.2A2 2 0 0 1 18.5 9L20 14'/%3E%3Crect x='3' y='14' width='18' height='4' rx='1.5'/%3E%3Ccircle cx='7' cy='18.5' r='1'/%3E%3Ccircle cx='17' cy='18.5' r='1'/%3E%3C/svg%3E") no-repeat center/contain; opacity: .14; }
.hero__body { position: absolute; inset: 0; padding: 22px 18px; display: flex; flex-direction: column; justify-content: center; }
.hero__copy { font-size: 26px; font-weight: 800; line-height: 1.35; text-shadow: 0 1px 8px rgba(0,0,0,.25); }
.hero__sub { margin-top: 8px; font-size: 13px; opacity: .95; text-shadow: 0 1px 6px rgba(0,0,0,.3); }
.hero__cta { margin-top: 16px; }
.hero__badges { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.hero__badges .tbadge { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.35); color: #fff; backdrop-filter: blur(4px); }

/* ===== 信頼バッジ ===== */
.tbadge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600;
  padding: 4px 9px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--ink); }
.tbadge--brand { background: var(--brand-soft); border-color: #f6c6cc; color: var(--brand-dark); }
.tbadge svg { width: 13px; height: 13px; flex: 0 0 auto; }

/* ===== 検索チップ ===== */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 13px; font-weight: 600; padding: 9px 14px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--border); }
.chip:active { border-color: var(--brand); color: var(--brand); }

/* ===== 車両カード ===== */
.hscroll { display: flex; gap: 12px; overflow-x: auto; padding: 2px 16px 4px; margin: 0 -16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.hscroll::-webkit-scrollbar { display: none; }
.hscroll .car-card { flex: 0 0 70%; scroll-snap-align: start; }

.car-list { display: flex; flex-direction: column; gap: 14px; }

.car-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.car-card__media { position: relative; aspect-ratio: 4/3; background: linear-gradient(135deg,#eef0f2,#dfe3e7); display: grid; place-items: center; }
.car-card__media .ph-car { font: 900 20px/1 "Inter", sans-serif; letter-spacing: .14em; color: #b6bcc3; }
.car-card__fav { position: absolute; top: 8px; right: 8px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: 0; display: grid; place-items: center; font-size: 17px; box-shadow: var(--shadow); }
.car-card__fav.is-on { color: var(--brand); }
.car-card__tag { position: absolute; top: 8px; left: 8px; background: var(--brand); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 6px; letter-spacing: .05em; }
.car-card__sold { position: absolute; inset: 0; background: rgba(0,0,0,.45); display: grid; place-items: center; }
.car-card__sold span { border: 2px solid #fff; color: #fff; font-weight: 800; font-size: 20px; padding: 4px 14px; border-radius: 8px; transform: rotate(-8deg); letter-spacing: .1em; }
.car-card__body { padding: 12px; }
.car-card__name { font-size: 15px; font-weight: 700; }
.car-card__price { margin: 6px 0; }
.car-card__price b { color: var(--brand); font-size: 21px; font-weight: 800; }
.car-card__price .yen { font-size: 13px; }
.car-card__price .ship { font-size: 11px; color: var(--muted); margin-left: 4px; }
.car-card__rate { display: flex; flex-wrap: wrap; gap: 6px; font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.car-card__rate .star { color: var(--gold); font-weight: 700; }
.car-card__specs { font-size: 12px; color: #444; display: flex; flex-wrap: wrap; gap: 4px 10px; padding-top: 8px; border-top: 1px dashed var(--border); }
.car-card__foot { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.car-card__actions { display: flex; gap: 8px; margin-top: 12px; }
.car-card__actions .btn { flex: 1; height: 42px; font-size: 13px; padding: 0 10px; }

/* ===== 選ばれる理由 ===== */
.reasons { display: grid; gap: 10px; }
.reason { display: flex; gap: 12px; align-items: flex-start; background: var(--surface); border-radius: var(--radius); padding: 14px; }
.reason__ic { font-size: 26px; flex: 0 0 auto; color: var(--brand); line-height: 1; }
.reason__ic svg { width: 28px; height: 28px; display: block; }
.reason__t { font-weight: 700; font-size: 14px; }
.reason__d { font-size: 12px; color: var(--muted); }

/* ===== バナー ===== */
.banner { background: linear-gradient(120deg,#1f2937,#374151); color: #fff; border-radius: var(--radius); padding: 18px; }
.banner h3 { font-size: 16px; }
.banner p { font-size: 12px; opacity: .85; margin: 6px 0 14px; }

/* ===== スタッフ ===== */
.staff-card { flex: 0 0 60%; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.staff-card__photo { aspect-ratio: 1/1; background: linear-gradient(135deg,#e7eaee,#cfd5db); display: grid; place-items: center; font-size: 54px; position: relative; }
.staff-card__movie { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,.6); color: #fff; font-size: 10px; padding: 3px 7px; border-radius: 6px; }
.staff-card__body { padding: 10px 12px; }
.staff-card__name { font-weight: 700; font-size: 15px; }
.staff-card__roma { font-size: 10px; color: var(--muted); letter-spacing: .08em; }
.staff-card__role { font-size: 11px; color: var(--brand-dark); margin-top: 4px; }
.staff-card__word { font-size: 12px; color: #444; margin-top: 6px; }

/* ===== フッター ===== */
.footer { background: #1a1a1a; color: #cbd0d6; padding: 26px 16px 30px; font-size: 12px; }
.footer__brand { color: #fff; font-weight: 800; font-size: 17px; margin-bottom: 10px; }
.footer__line { display: inline-flex; margin: 8px 0 14px; }
.footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; margin: 12px 0; }
.footer nav a { color: #cbd0d6; }
.footer__tel { font-size: 11px; color: #9aa1a9; }
.footer__copy { margin-top: 16px; font-size: 10px; color: #7b818a; }

/* ===== アクセス簡易 ===== */
.access { display: flex; gap: 12px; align-items: center; background: var(--surface); border-radius: var(--radius); padding: 14px; }
.access__map { flex: 0 0 84px; height: 64px; border-radius: 8px; background: repeating-linear-gradient(45deg,#dde2e7,#dde2e7 6px,#e9edf1 6px,#e9edf1 12px); display: grid; place-items: center; font-size: 22px; }
.access__info { font-size: 12px; }
.access__actions { display: flex; gap: 8px; margin-top: 8px; }
.access__actions .btn { height: 36px; font-size: 12px; }

/* ===== 在庫一覧：ツールバー＆絞り込み ===== */
.toolbar { position: sticky; top: var(--header-h); z-index: 40; background: var(--bg);
  border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; }
.toolbar__count { font-size: 14px; font-weight: 700; }
.toolbar__count b { color: var(--brand); }
.toolbar__btns { display: flex; gap: 8px; }
.toolbar__btn { font-size: 13px; font-weight: 600; border: 1.5px solid var(--border); background: #fff; border-radius: 999px; padding: 7px 13px; display: inline-flex; gap: 5px; align-items: center; }

.sheet { position: fixed; inset: 0; z-index: 100; display: none; }
.sheet.is-open { display: block; }
.sheet__bg { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.sheet__panel { position: absolute; inset: 0; max-width: var(--maxw); margin: 0 auto; background: #fff; display: flex; flex-direction: column; }
.sheet__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.sheet__title { font-weight: 700; font-size: 16px; }
.sheet__close { background: none; border: 0; font-size: 22px; }
.sheet__body { flex: 1; overflow-y: auto; padding: 6px 16px 16px; }
.sheet__foot { display: flex; gap: 10px; padding: 12px 16px; border-top: 1px solid var(--border); }
.sheet__foot .btn { flex: 1; }
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--border); }
.filter-group__label { font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.filter-range { display: flex; align-items: center; gap: 8px; }
.filter-range input, .filter-select { flex: 1; height: 42px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 0 12px; font-size: 14px; font-family: inherit; background:#fff; }
.seg { display: flex; gap: 8px; flex-wrap: wrap; }
.seg button { border: 1.5px solid var(--border); background: #fff; border-radius: 999px; padding: 8px 14px; font-size: 13px; }
.seg button.is-on { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }

.pager { display: flex; justify-content: center; align-items: center; gap: 14px; padding: 8px 0 4px; font-weight: 700; }
.pager button { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; font-size: 16px; }

/* ===== 車両詳細 ===== */
.gallery { background: #000; position: relative; }
.gallery__main { aspect-ratio: 4/3; background: linear-gradient(135deg,#2a2f36,#454c55); display: grid; place-items: center; color: #aab; font-size: 80px; position: relative; }
.gallery__count { position: absolute; left: 12px; bottom: 12px; background: rgba(0,0,0,.6); color: #fff; font-size: 12px; padding: 3px 10px; border-radius: 999px; }
.gallery__fallback { font: 900 26px/1 "Inter", sans-serif; letter-spacing: .16em; color: #6b7480; }
.gallery__acts { position: absolute; right: 10px; bottom: 10px; display: flex; gap: 8px; }
.gallery__acts button { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.9); border: 0; font-size: 16px; }
.gallery__fav.is-on { color: var(--brand); }
.estimate-toast { position: fixed; left: 50%; bottom: 84px; transform: translateX(-50%); z-index: 60; background: rgba(20,22,26,.94); color: #fff; font-size: 13px; line-height: 1.5; padding: 10px 16px; border-radius: 10px; box-shadow: var(--shadow); max-width: min(92vw, 420px); text-align: center; transition: opacity .4s; }
.estimate-toast.is-hide { opacity: 0; }
.gallery__tabs { display: flex; gap: 8px; padding: 10px 16px; background: #fff; border-bottom: 1px solid var(--border); }
.gallery__tabs button { font-size: 12px; font-weight: 600; border: 1.5px solid var(--border); background: #fff; border-radius: 999px; padding: 6px 14px; }
.gallery__tabs button.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }

.vtitle { padding: 16px; }
.vtitle__name { font-size: 19px; font-weight: 800; }
.vtitle__year { font-size: 13px; color: var(--muted); }
.vtitle__price { margin: 10px 0; }
.vtitle__price b { color: var(--brand); font-size: 30px; font-weight: 800; }
.vtitle__price .yen { font-size: 15px; }
.vtitle__price .ship { font-size: 12px; color: var(--muted); margin-left: 6px; }
.vtitle__monthly { font-size: 12px; color: var(--muted); }
.vtitle__badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }

.spec-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.spec-table th, .spec-table td { text-align: left; padding: 11px 6px; border-bottom: 1px solid var(--border); }
.spec-table th { color: var(--muted); font-weight: 600; width: 38%; }

.cond { display: grid; gap: 8px; }
.cond__row { display: flex; justify-content: space-between; font-size: 13px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.cond__row b.star { color: var(--gold); }
.link-arrow { color: var(--brand); font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; gap: 4px; }

.equip { display: flex; flex-wrap: wrap; gap: 8px; }
.equip span { font-size: 12px; background: var(--surface); border-radius: 8px; padding: 7px 11px; }

/* お見積りフォーム（buddica.jp踏襲） */
.estimate { background: var(--surface); border-radius: var(--radius); padding: 16px; }
.opt { min-width: 0; padding: 14px 0; border: 0; border-bottom: 1px solid var(--border); }
.opt:first-child { padding-top: 0; }
.opt__label { font-size: 13px; font-weight: 700; margin-bottom: 9px; display: flex; justify-content: space-between; }
.opt__req { font-size: 10px; color: #fff; background: var(--brand); padding: 2px 6px; border-radius: 4px; font-weight: 700; }
.opt__choices { display: grid; gap: 8px; }
.opt__choice { display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1.5px solid var(--border); background: #fff; border-radius: var(--radius-sm); padding: 11px 13px; font-size: 13px; }
.opt__choice.is-on { border-color: var(--brand); background: var(--brand-soft); }
.opt__choice .price { font-weight: 700; }
.opt input[type=radio], .opt input[type=checkbox] { accent-color: var(--brand); width: 18px; height: 18px; }
.opt__note { margin-top: 8px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.opt__field { display: flex; gap: 8px; }
.opt__field select, .opt__field input { flex:1; height: 42px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 0 10px; font-size: 14px; font-family: inherit; background:#fff; }

.breakdown { background: #fff; border-radius: var(--radius); padding: 14px 16px; font-size: 13px; }
.breakdown summary { font-weight: 700; cursor: pointer; }
.breakdown__row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--border); }
.total { display: flex; align-items: baseline; justify-content: space-between; padding: 16px; background: var(--ink); color: #fff; border-radius: var(--radius); }
.total b { font-size: 26px; font-weight: 800; }
.total .yen { font-size: 14px; }
.total .ship { font-size: 11px; opacity: .7; }

.cust { display: grid; gap: 10px; }
.cust input { height: 46px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 0 13px; font-size: 14px; font-family: inherit; }
.cust .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.related { display:flex; gap:12px; overflow-x:auto; margin:0 -16px; padding:0 16px; }
.related .car-card { flex: 0 0 60%; }

/* ===== 下層ページ共通ヘッド ===== */
.pagehead { padding: 18px 16px 4px; }
.pagehead h1 { font-size: 20px; font-weight: 800; }
.pagehead p { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ===== サービス導線（LINE入口・リッチメニュー相当） ===== */
.service-list { display: grid; gap: 10px; }
.service { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); }
.service__ic { font-size: 28px; flex: 0 0 auto; }
.service__t { font-weight: 700; font-size: 15px; }
.service__d { font-size: 12px; color: var(--muted); }
.service__arrow { margin-left: auto; color: var(--brand); font-weight: 800; font-size: 18px; }

/* ===== スタッフ グリッド ===== */
.staff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.staff-grid .staff-card { flex: initial; }

/* ===== 売約済み ===== */
.sold-note { background: var(--brand-soft); border-radius: var(--radius); padding: 14px; text-align: center; font-size: 13px; color: var(--brand-dark); }

/* ===== 実画像対応（カード・ギャラリー） ===== */
.car-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__main { overflow: hidden; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__thumbs { display: flex; gap: 8px; overflow-x: auto; padding: 10px 12px; background: #fff; border-bottom: 1px solid var(--border); }
.gallery__thumbs::-webkit-scrollbar { display: none; }
.gallery__thumb { flex: 0 0 64px; height: 48px; border: 2px solid transparent; border-radius: 8px; overflow: hidden; padding: 0; background: #eee; }
.gallery__thumb.is-on { border-color: var(--brand); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ===== 細部の見た目調整（ポリッシュ） ===== */
.toolbar__sort { -webkit-appearance: none; appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23666' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 12px center; padding-right: 30px; color: var(--ink); }
.car-card { transition: box-shadow .18s, transform .18s; }
@media (hover: hover) { .car-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); } .chip:hover, .service:hover { border-color: var(--brand); } .service:hover { box-shadow: var(--shadow-lg); } }
.btn { transition: filter .15s, box-shadow .15s, background .15s; }
@media (hover: hover) { .btn-line:hover { filter: brightness(.96); } .btn-brand:hover { filter: brightness(.96); } }
.car-card__fav { transition: transform .12s; }
.car-card__fav:active { transform: scale(.86); }
:focus-visible { outline: 3px solid rgba(230,0,18,.4); outline-offset: 2px; border-radius: 4px; }
.hero__media::after { font-size: 130px; opacity: .1; }
.section__title small { margin-top: 2px; }
img { max-width: 100%; }

/* ===== 本日の相談バー（Buddica準拠） ===== */
.todaybar { display: flex; align-items: center; gap: 10px; margin: 14px 16px 4px; padding: 10px 14px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); }
.todaybar__status { line-height: 1.3; }
.todaybar__label { font-size: 11px; color: var(--muted); }
.todaybar__time { display: flex; align-items: center; gap: 5px; font-weight: 800; font-size: 15px; color: var(--ink); }
.todaybar__time .dot { width: 8px; height: 8px; border-radius: 50%; background: #18c25a; box-shadow: 0 0 0 3px rgba(24,194,90,.18); }
.todaybar__avatars { display: flex; margin-left: auto; }
.todaybar__avatars span { width: 30px; height: 30px; border-radius: 50%; background: #e7eaee; display: grid; place-items: center; font-size: 15px; margin-left: -8px; border: 2px solid #fff; }
.todaybar__line { height: 38px; font-size: 13px; padding: 0 16px; }

/* ===== クイックナビ（円アイコン・Buddica準拠） ===== */
.quicknav { display: flex; justify-content: space-between; gap: 4px; padding: 12px 12px 18px; }
.quicknav__item { flex: 1 1 0; display: flex; flex-direction: column; align-items: center; gap: 7px; min-width: 0; }
.quicknav__ic { width: 58px; height: 58px; border-radius: 50%; background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow); display: grid; place-items: center; color: var(--brand); transition: .15s; }
.quicknav__ic svg { width: 26px; height: 26px; }
.quicknav__label { font-size: 12px; font-weight: 700; color: var(--ink); white-space: nowrap; }
@media (hover: hover) { .quicknav__item:hover .quicknav__ic { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--brand); } }
.quicknav__item:active .quicknav__ic { transform: scale(.94); }

/* ===== アイコンサイズ統一（ボタン/カード/ギャラリー） ===== */
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.car-card__specs svg { width: 12px; height: 12px; vertical-align: -2px; }
.gallery__acts button svg { width: 16px; height: 16px; color: var(--ink); }
.car-card__fav svg { width: 18px; height: 18px; }
.car-card__fav.is-on { color: var(--brand); }
.car-card__fav.is-on svg { fill: rgba(230, 0, 18, .14); }
.header__actions .icon.is-on { color: var(--brand); }
.header__actions .icon.is-on svg { fill: rgba(230, 0, 18, .14); }
.cond__row svg { width: 16px; height: 16px; color: var(--brand); vertical-align: -3px; }

/* ===== ドロワーメニュー ===== */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__bg { position: absolute; inset: 0; background: rgba(0, 0, 0, .45); opacity: 0; transition: opacity .2s; }
.drawer.is-open .drawer__bg { opacity: 1; }
.drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: 82%; max-width: 320px; background: #fff;
  transform: translateX(100%); transition: transform .25s ease; display: flex; flex-direction: column; box-shadow: -8px 0 24px rgba(0,0,0,.15); }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid var(--border); }
.drawer__title { font-weight: 800; font-size: 16px; }
.drawer__close { background: none; border: 0; font-size: 20px; color: var(--ink); line-height: 1; }
.drawer__nav { display: flex; flex-direction: column; overflow-y: auto; flex: 1; }
.drawer__nav a { display: flex; align-items: center; gap: 10px; padding: 15px 18px; font-weight: 600; font-size: 14px; border-bottom: 1px solid var(--border); }
.drawer__nav a:active { background: var(--surface); }
.drawer__nav a svg { width: 18px; height: 18px; color: var(--brand); flex: 0 0 auto; }
.drawer__section-label { padding: 18px 18px 8px; color: var(--muted); background: #f7f6f3; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.drawer__nav .drawer__primary { padding-block: 17px; font-size: 17px; font-weight: 800; }
.drawer__nav .drawer__primary span { width: 22px; color: var(--brand); font: 800 10px/1 "Inter", sans-serif; }
.drawer__nav .drawer__primary--bc span { color: #f26a16; }
.drawer__nav .drawer__stock { margin: 12px 16px 6px; justify-content: center; color: #fff; background: var(--brand-black); border: 0; }
.drawer__line { margin: 16px; }

/* ========================================================================== */
/* ブランドサイト外枠（HOME / ABOUT / SERVICE / MAINTENANCE / BLOG）          */
/* ========================================================================== */

:root {
  --brand-cream: #f1eee7;
  --brand-orange: #f46816;
  --brand-black: #11100f;
  --brand-max: 1280px;
  /* タイポトークン（序列: トップ > サービスLP > 下層） */
  --fs-h1: clamp(40px, 9vw, 72px);        /* 下層ヒーロー見出し */
  --fs-hero-lp: clamp(44px, 10vw, 80px);  /* サービスLP（販売・整備）ヒーロー見出し */
  --fs-h2: clamp(30px, 7vw, 56px);        /* セクション見出し */
  --fs-h2-s: clamp(24px, 5.5vw, 40px);    /* 小セクション見出し（空き状況等） */
}

.minkuru-brand-wide { background: #fff; }
.minkuru-brand-wide .app { max-width: none; overflow-x: clip; }
.brand-main { background: #fff; }
.brand-container { width: min(calc(100% - 40px), var(--brand-max)); margin-inline: auto; }
.brand-kicker { font-family: "Inter", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .18em; color: var(--brand); text-transform: uppercase; }
.brand-kicker--light { color: rgba(255,255,255,.66); }

.brand-button {
  min-height: 54px; padding: 0 24px; border-radius: 0; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 13px; font-weight: 800; letter-spacing: .02em; transition: transform .2s, background .2s, color .2s;
}
.brand-button span { font: 700 18px/1 "Inter", sans-serif; }
.brand-button svg { width: 20px; height: 20px; flex: 0 0 auto; }
.brand-button--light { color: var(--brand-black); background: #fff; }
.brand-button--dark { color: #fff; background: var(--brand-black); }
.brand-button--line { color: #fff; background: var(--line); }
.brand-arrow-link { display: inline-flex; align-items: center; gap: 12px; border-bottom: 1px solid currentColor; padding-bottom: 6px; font-size: 13px; font-weight: 800; }
.brand-arrow-link::after { content: "↗"; font: 700 16px/1 "Inter", sans-serif; }
@media (hover: hover) {
  .brand-button:hover { transform: translateY(-3px); }
  .brand-button--light:hover { background: var(--brand-black); color: #fff; }
  .brand-button--dark:hover { background: var(--brand); }
}

/* 3サービスとブランド情報を整理した共通ヘッダー */
.header__nav, .header__line, .header__phone { display: none; }
.minkuru-brand-wide .header { height: 68px; padding-inline: 20px; border-color: rgba(17,16,15,.12); }
.minkuru-brand-wide .logo img { height: 28px; }
.minkuru-brand-wide .header__line { color: #fff; background: var(--line); font-size: 13px; font-weight: 800; letter-spacing: .02em; }
.minkuru-brand-wide .header__actions .icon { width: 44px; height: 44px; }
.servicebar { position: sticky; top: var(--header-h); z-index: 49; height: var(--servicebar-h); display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border-bottom: 1px solid var(--border); }
.minkuru-brand-wide .servicebar { top: 68px; }
.servicebar a { display: grid; place-items: center; border-right: 1px solid var(--border); font-size: 12px; font-weight: 800; }
.servicebar a:last-child { border-right: 0; }
.servicebar__bc { color: var(--brand-black); }
@media (min-width: 960px) {
  body { padding-bottom: 0; }
  .header { width: 100vw; max-width: 100vw; height: 78px; margin-left: calc(50% - 50vw); padding-inline: clamp(22px, 3vw, 52px); border-color: rgba(17,16,15,.12); }
  .logo { flex: 0 0 auto; }
  .logo img, .minkuru-brand-wide .logo img { height: 27px; }
  .header__nav { min-width: 0; display: flex; align-items: center; gap: clamp(16px, 1.55vw, 28px); margin-left: auto; margin-right: clamp(16px, 1.8vw, 28px); }
  .header__nav a { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; color: var(--brand-black); font-size: 13px; font-weight: 800; white-space: nowrap; }
  .header__nav a::after { content: ""; position: absolute; right: 0; bottom: 5px; left: 0; height: 2px; background: var(--brand); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
  .header__nav a { position: relative; }
  .header__nav a:hover::after, .header__nav a:focus-visible::after { transform: scaleX(1); }
  .header__nav-bc { gap: 6px; }
  .header__bc-mark { width: 48px; height: 24px; display: grid; place-items: center; overflow: hidden; background: #fff; }
  .header__bc-mark img { width: 100%; max-width: none; transform: scale(1.65); }
  .header__line, .minkuru-brand-wide .header__line { display: inline-flex; align-items: center; gap: 7px; padding: 13px 15px; color: #fff; background: var(--line); border: 0; font-size: 13px; font-weight: 800; }
  .header__line svg { width: 17px; height: 17px; }
  .header__phone, .minkuru-brand-wide .header__phone { display: flex; flex-direction: column; align-items: flex-end; font: 800 14px/1.15 "Inter", sans-serif; }
  .header__phone small, .minkuru-brand-wide .header__phone small { margin-bottom: 4px; color: #77726b; font: 700 9px/1 "Noto Sans JP", sans-serif; }
  .header__actions { gap: 10px; }
  .header__actions .icon, .minkuru-brand-wide .header__actions .icon { display: grid; width: 40px; height: 40px; }
  .servicebar, .bottombar { display: none; }
}
@media (min-width: 960px) and (max-width: 1279px) {
  .header { padding-inline: 24px; }
  .header__nav { gap: 18px; margin-right: 18px; }
  .header__nav-secondary { display: none !important; }
  .header__bc-mark { width: 42px; }
  .header__phone small { display: none; }
  .header__phone { font-size: 13px; }
}

/* 写真主役のファーストビュー */
.brand-hero { position: relative; min-height: calc(100svh - 68px - var(--servicebar-h)); overflow: hidden; color: #fff; background: var(--brand-black); isolation: isolate; }
.brand-hero__media, .brand-hero__slide, .brand-hero__slide img, .brand-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.brand-hero__media { z-index: -3; }
.brand-hero__slide { opacity: 0; animation: brand-hero-cycle 18s infinite; }
.brand-hero__slide--one { animation-delay: 0s; }
.brand-hero__slide--two { animation-delay: -12s; }
.brand-hero__slide--three { animation-delay: -6s; }
.brand-hero__slide img { object-fit: cover; transform: scale(1.035); animation: brand-hero-zoom 18s ease-out infinite; }
.brand-hero__shade { z-index: -2; background: linear-gradient(90deg, rgba(8,8,8,.9) 0%, rgba(15,12,12,.68) 48%, rgba(8,8,8,.26) 100%), linear-gradient(0deg, rgba(0,0,0,.56), transparent 55%); }
.brand-hero__content { min-height: calc(100svh - 68px - var(--servicebar-h)); display: grid; align-content: center; gap: 32px; padding-block: 48px 56px; }
.brand-hero__minkuru { max-width: 720px; }
.brand-hero__eyebrow { font: 800 10px/1 "Inter", sans-serif; letter-spacing: .2em; margin-bottom: 26px; }
.brand-hero h1 { font-size: clamp(44px, 12vw, 72px); line-height: 1.12; letter-spacing: -.06em; font-weight: 900; text-shadow: 0 5px 30px rgba(0,0,0,.22); }
.brand-hero__minkuru > p { margin-top: 24px; font-size: 14px; line-height: 2; color: rgba(255,255,255,.84); }
.brand-hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; margin-top: 34px; }
.brand-text-link { font-size: 12px; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.7); padding-bottom: 5px; }
.brand-hero__purchase { position: relative; display: flex; flex-direction: column; width: min(100%, 460px); padding: 22px 22px 24px; overflow: hidden; color: var(--brand-black); background: rgba(250,247,239,.97); border-top: 8px solid #f26a16; backdrop-filter: blur(10px); box-shadow: 0 20px 70px rgba(0,0,0,.22); }
.brand-hero__purchase::after { content: "BC"; position: absolute; right: -20px; bottom: -34px; z-index: -1; font: 900 150px/.8 "Inter", sans-serif; letter-spacing: -.12em; color: rgba(242,106,22,.08); }
.brand-hero__purchase-label { font: 900 11px/1 "Inter", sans-serif; letter-spacing: .18em; color: #4d4944; }
.brand-hero__purchase-logo { width: min(240px, 74%); margin: 14px 0 16px; background: #fff; }
.brand-hero__purchase-logo img { width: 100%; }
.brand-hero__purchase strong { font-size: clamp(28px, 8vw, 42px); line-height: 1.18; letter-spacing: -.05em; }
.brand-hero__purchase-copy { max-width: 420px; margin-top: 12px; font-size: 13px; font-weight: 600; line-height: 1.75; color: #514d47; }
.brand-hero__purchase-cta { width: fit-content; min-height: 48px; display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; padding: 0 20px; color: #fff; background: var(--brand-black); font-size: 13px; font-weight: 800; }
@keyframes brand-hero-cycle { 0%, 27% { opacity: 1; } 34%, 93% { opacity: 0; } 100% { opacity: 1; } }
@keyframes brand-hero-zoom { from { transform: scale(1.035); } to { transform: scale(1.12); } }

@media (min-width: 960px) {
  .brand-hero { min-height: calc(100svh - 78px); }
  .brand-hero::after { content: ""; position: absolute; inset: 0 0 0 auto; z-index: -1; width: 43%; background: rgba(250,247,239,.98); }
  .brand-hero__shade { background: linear-gradient(90deg, rgba(8,8,8,.92) 0%, rgba(15,12,12,.66) 46%, rgba(8,8,8,.26) 57%, transparent 66%), linear-gradient(0deg, rgba(0,0,0,.48), transparent 55%); }
  .brand-hero__content { min-height: calc(100svh - 78px); grid-template-columns: minmax(0, 57fr) minmax(360px, 43fr); align-items: stretch; gap: 0; padding-block: 0; }
  .brand-hero__minkuru { align-self: center; padding: 80px clamp(42px, 5vw, 86px) 80px 0; }
  .brand-hero h1 { font-size: clamp(56px, 5.2vw, 84px); }
  .brand-hero__actions { flex-direction: row; align-items: center; }
  .brand-hero__purchase { align-self: stretch; justify-self: stretch; justify-content: center; width: auto; margin-right: calc(50% - 50vw); padding: 54px clamp(36px, 4.5vw, 74px); border-top: 0; border-left: 10px solid #f26a16; background: transparent; backdrop-filter: none; box-shadow: none; }
  .brand-hero__purchase-logo { width: min(320px, 88%); margin-block: 26px 30px; }
  .brand-hero__purchase strong { font-size: clamp(34px, 3.2vw, 52px); }
}

/* ブランドトップ共通セクション */
.brand-statement { padding-block: 76px; }
.brand-statement__grid { display: grid; gap: 30px; margin-top: 26px; }
.brand-statement h2, .brand-section-head h2, .brand-contact h2, .maintenance-lead h2, .about-message h2 { font-size: var(--fs-h2); line-height: 1.2; letter-spacing: -.05em; font-weight: 900; }
.brand-statement__grid > div p { color: #5e5a55; line-height: 2.1; }
.brand-statement .brand-arrow-link { margin-top: 30px; }

.brand-services { padding-block: 76px; background: var(--brand-cream); }
.brand-section-head { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.brand-section-head h2 { margin-top: 8px; }
.brand-section-head > p { color: #6f6b65; font-size: 13px; }
.brand-service-grid { display: grid; gap: 12px; }
.brand-service-card { position: relative; min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 28px; color: #fff; isolation: isolate; transition: transform .25s; }
.brand-service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(8,8,8,.9) 0%, rgba(8,8,8,.15) 70%); }
.brand-service-card__media { position: absolute; inset: 0; z-index: -2; }
.brand-service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.brand-service-card__number { position: absolute; top: 24px; left: 28px; font: 800 11px/1 "Inter", sans-serif; letter-spacing: .16em; }
.brand-service-card__meta { font: 800 10px/1 "Inter", sans-serif; letter-spacing: .2em; color: rgba(255,255,255,.65); }
.brand-service-card strong { margin-top: 12px; font-size: 30px; font-weight: 900; }
.brand-service-card p { margin-top: 12px; max-width: 330px; color: rgba(255,255,255,.73); font-size: 12px; line-height: 1.9; }
@media (hover: hover) { .brand-service-card:hover { transform: translateY(-7px); } .brand-service-card:hover .brand-service-card__media img { transform: scale(1.055); } }

.brand-trust { padding-block: 76px; background: var(--brand-black); color: #fff; }
.brand-trust__grid { display: grid; gap: 50px; }
.brand-trust__intro h2 { margin-top: 16px; font-size: var(--fs-h2); line-height: 1.18; letter-spacing: -.05em; }
.brand-trust__items { border-top: 1px solid #45423e; }
.brand-trust__items > div { display: grid; grid-template-columns: 34px 1fr; gap: 8px 18px; padding: 26px 0; border-bottom: 1px solid #45423e; }
.brand-trust__items span { font: 700 10px/1 "Inter", sans-serif; color: var(--brand); padding-top: 7px; }
.brand-trust__items strong { font-size: 20px; }
.brand-trust__items p { grid-column: 2; font-size: 12px; line-height: 1.8; color: #aaa59e; }

.brand-stock { padding-block: 76px; }
.brand-stock-grid { display: grid; gap: 18px; }
.brand-stock-card { display: block; background: #f6f4ef; }
.brand-stock-card__media { display: block; aspect-ratio: 4/3; overflow: hidden; background: #dedbd4; }
.brand-stock-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.brand-stock-card__fallback { width: 100%; height: 100%; display: grid; place-items: center; font: 900 28px/1 "Inter", sans-serif; letter-spacing: .12em; color: #aaa69f; }
.brand-stock-card__body { display: grid; grid-template-columns: 1fr auto; gap: 6px 16px; padding: 18px; }
.brand-stock-card__name { font-weight: 800; }
.brand-stock-card__spec { font-size: 11px; color: #716d66; }
.brand-stock-card__price { grid-row: 1 / span 2; grid-column: 2; color: var(--brand); font: 900 24px/1.2 "Inter", sans-serif; }
.brand-stock-card__price small { font-family: "Noto Sans JP", sans-serif; font-size: 11px; }
@media (hover: hover) { .brand-stock-card:hover img { transform: scale(1.035); } }
.brand-empty { grid-column: 1/-1; padding: 54px; background: var(--brand-cream); text-align: center; color: #6e6962; }

.brand-people { padding-block: 76px; background: var(--brand-cream); }
.brand-people__grid { display: grid; gap: 40px; }
.brand-people__graphic { position: relative; aspect-ratio: 4/3; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; color: #fff; background: var(--brand-black); isolation: isolate; }
.brand-people__graphic::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(0,0,0,.7), transparent 70%); }
.brand-people__graphic img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.brand-people__graphic span { position: relative; z-index: 1; font: 800 10px/1 "Inter", sans-serif; letter-spacing: .2em; }
.brand-people__graphic b { position: relative; z-index: 1; font-size: clamp(26px, 7vw, 46px); line-height: 1.25; }
@media (hover: hover) { .brand-people__graphic:hover img { transform: scale(1.035); } }
.brand-people__copy { align-self: center; }
.brand-people__copy h2 { margin-top: 12px; font-size: var(--fs-h2); line-height: 1.25; letter-spacing: -.05em; }
.brand-people__copy p { margin-top: 24px; line-height: 2; color: #68645e; }
.brand-people__copy .brand-arrow-link { margin-top: 28px; }

.brand-journal { padding-block: 76px; }
.brand-journal-grid { border-top: 1px solid #c9c5bd; }
.brand-journal-card { display: grid; grid-template-columns: 94px 1fr auto; gap: 18px; align-items: center; padding: 24px 0; border-bottom: 1px solid #c9c5bd; }
.brand-journal-card__date { font: 700 10px/1 "Inter", sans-serif; color: #7c7870; }
.brand-journal-card strong { font-size: 14px; }
.brand-journal-card > span:last-child { font: 700 18px/1 "Inter", sans-serif; }
.brand-journal-card--empty { grid-template-columns: 100px 1fr; }

.brand-contact { position: relative; overflow: hidden; padding-block: 76px; color: #fff; background: var(--brand); }
.brand-contact__word { position: absolute; left: -2vw; bottom: -4vw; color: rgba(255,255,255,.08); font: 900 clamp(70px, 16vw, 240px)/.8 "Inter", sans-serif; white-space: nowrap; }
.brand-contact__inner { position: relative; display: grid; gap: 34px; align-items: end; }
.brand-contact h2 { margin-top: 12px; }
.brand-contact p { margin-top: 18px; color: rgba(255,255,255,.78); }
.brand-contact--compact { padding-block: 70px; }

@media (min-width: 760px) {
  .brand-container { width: min(calc(100% - 80px), var(--brand-max)); }
  .brand-statement, .brand-services, .brand-trust, .brand-stock, .brand-people, .brand-journal { padding-block: 120px; }
  .maintenance-lead, .maintenance-menu, .maintenance-reasons, .maintenance-flow, .maintenance-faq,
  .about-message, .about-values, .about-links, .sales-payment, .brand-contact, .service-index, .blog-index { padding-block: 120px; }
  .availability-wrap { padding-block: 0 120px; }
  .brand-statement__grid { grid-template-columns: 1.2fr .8fr; align-items: end; }
  .brand-section-head { flex-direction: row; align-items: end; justify-content: space-between; }
  .brand-service-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-service-card { min-height: 520px; padding: 34px; }
  .brand-trust__grid { grid-template-columns: .9fr 1.1fr; }
  .brand-stock-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-people__grid { grid-template-columns: 1.1fr .9fr; gap: 8vw; }
  .brand-contact__inner { grid-template-columns: 1fr auto; }
}

/* 軽量なスクロール表示 */
.has-reveal .brand-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.has-reveal .brand-reveal.is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .brand-hero__slide, .brand-hero__slide img { animation: none; }
  .brand-hero__slide--one { opacity: 1; }
  .brand-hero__slide:not(.brand-hero__slide--one) { display: none; }
  .has-reveal .brand-reveal { opacity: 1; transform: none; transition: none; }
}

/* 下層ブランドヒーロー */
.brand-subhero { padding: 72px 0 56px; color: #fff; background: var(--brand-black); }
.brand-subhero .brand-container { display: grid; gap: 20px; }
.brand-subhero h1 { font-size: var(--fs-h1); line-height: 1.12; letter-spacing: -.06em; font-weight: 900; }
.brand-subhero p { max-width: 660px; line-height: 2; color: rgba(255,255,255,.7); }
/* 下層ヒーローは共通の「黒＋右下の赤スライバー」。赤は面で塗らない */
.brand-subhero--service, .brand-subhero--about, .brand-subhero--blog { background: linear-gradient(130deg, #11100f 0 88%, var(--brand) 88%); }
@media (min-width: 760px) { .brand-subhero { padding: 110px 0 80px; } .brand-subhero .brand-container { grid-template-columns: 1fr .55fr; align-items: end; } .brand-subhero .brand-kicker { grid-column: 1/-1; } }

/* サービスハブ */
.service-index { padding-block: 76px; display: grid; gap: 20px; }
.service-index__item { position: relative; overflow: hidden; display: grid; gap: 28px; padding: 30px; background: var(--brand-cream); }
.service-index__item[id] { scroll-margin-top: 96px; }
.service-index__number { font: 900 clamp(28px, 5vw, 40px)/1 "Inter", sans-serif; letter-spacing: -.02em; color: var(--brand); }
.service-index__body > span { font: 800 10px/1 "Inter", sans-serif; letter-spacing: .18em; color: #77726a; }
.service-index__body h2 { margin-top: 8px; font-size: var(--fs-h2); letter-spacing: -.05em; }
.service-index__body p { max-width: 580px; margin-top: 18px; color: #67635d; line-height: 2; }
.service-index__links { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 28px; }
.service-index__visual { position: relative; min-height: 220px; overflow: hidden; display: flex; justify-content: flex-start; align-items: end; padding: 24px; color: #fff; background: var(--brand); isolation: isolate; }
.service-index__visual::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(0,0,0,.66), rgba(0,0,0,.05) 75%); }
.service-index__visual img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.service-index__visual small { font: 800 12px/1.5 "Inter", sans-serif; letter-spacing: .18em; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.service-index__item--maintenance .service-index__visual { background: var(--brand-black); }
@media (hover: hover) { .service-index__item:hover .service-index__visual img { transform: scale(1.04); } }
.service-index__item--loan .service-index__visual { background: #0a2943; }
@media (min-width: 850px) { .service-index { padding-block: 120px; } .service-index__item { grid-template-columns: 50px 1fr 38%; align-items: center; padding: 42px; } .service-index__visual { min-height: 320px; } }

/* 車検・整備LP */
.maintenance-hero { padding-block: 52px; color: var(--brand-black); background: var(--brand-cream); }
.maintenance-hero__inner { display: grid; gap: 44px; }
.maintenance-hero h1 { margin-top: 16px; font-size: var(--fs-hero-lp); line-height: 1.16; letter-spacing: -.06em; }
.maintenance-hero p { max-width: 580px; margin: 24px 0 32px; color: #67635d; line-height: 2; }
.maintenance-hero__graphic { position: relative; min-height: 220px; overflow: hidden; padding: 30px; color: #fff; background: #d9d5cc; isolation: isolate; }
.maintenance-hero__graphic::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(0,0,0,.62), transparent 72%); }
.maintenance-hero__graphic img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.maintenance-hero__graphic span { position: relative; z-index: 1; font: 800 12px/1 "Inter", sans-serif; letter-spacing: .18em; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.maintenance-lead { padding-block: 76px; }
.maintenance-lead h2 { margin-top: 18px; }
.maintenance-lead p { max-width: 680px; margin-top: 28px; color: #68645e; line-height: 2; }
.maintenance-menu { display: grid; gap: 1px; padding-bottom: 90px; background: #c8c4bc; }
.maintenance-menu article { padding: 30px; background: #fff; }
.maintenance-menu span, .maintenance-reasons b { font: 800 10px/1 "Inter", sans-serif; color: var(--brand); }
.maintenance-menu h3, .maintenance-reasons h3 { margin-top: 28px; font-size: 22px; }
.maintenance-menu p, .maintenance-reasons p { margin-top: 12px; color: #6a665f; font-size: 13px; line-height: 1.9; }
.maintenance-reasons { padding-block: 76px; color: var(--brand-black); background: var(--brand-cream); }
.maintenance-reasons__grid { display: grid; gap: 1px; background: #ddd8cd; }
.maintenance-reasons__grid > div { padding: 30px; background: var(--brand-cream); }
.maintenance-reasons b { color: var(--brand); }
.maintenance-reasons p { color: #6a665f; }
.maintenance-flow, .maintenance-faq { padding-block: 76px; }
.maintenance-flow ol { list-style: none; border-top: 1px solid #cbc7bf; }
.maintenance-flow li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid #cbc7bf; }
.maintenance-flow li > span { font: 800 11px/1 "Inter", sans-serif; color: var(--brand); padding-top: 7px; }
.maintenance-flow h3 { font-size: 20px; }
.maintenance-flow p { margin-top: 8px; color: #6d6962; font-size: 13px; }
.maintenance-faq { padding-top: 0; }
.maintenance-faq details { border-top: 1px solid #cbc7bf; }
.maintenance-faq details:last-child { border-bottom: 1px solid #cbc7bf; }
.maintenance-faq summary { padding: 22px 4px; font-weight: 800; cursor: pointer; }
.maintenance-faq details p { padding: 0 4px 24px; color: #6d6962; line-height: 1.9; }
@media (min-width: 800px) { .maintenance-hero { padding-block: 96px; } .maintenance-hero__inner { grid-template-columns: 1.1fr .9fr; align-items: center; } .maintenance-hero__graphic { min-height: 440px; } .maintenance-menu { grid-template-columns: repeat(3,1fr); } .maintenance-reasons__grid { grid-template-columns: repeat(3,1fr); } }

/* About */
.about-message { padding-block: 76px; }
.about-message__grid { display: grid; gap: 34px; margin-top: 22px; }
.about-message__grid p { color: #67635d; line-height: 2.1; }
.about-message__grid p + p { margin-top: 18px; }
.about-values { padding-block: 76px; color: #fff; background: var(--brand-black); }
.about-values__grid { display: grid; gap: 1px; background: #4a4742; }
.about-values article { padding: 32px; background: var(--brand-black); }
.about-values article span { font: 800 10px/1 "Inter", sans-serif; color: var(--brand); }
.about-values h3 { margin-top: 44px; font-size: 24px; }
.about-values p { margin-top: 12px; color: #a6a19a; line-height: 1.9; }
.about-links { display: grid; gap: 1px; padding-block: 76px; background: #cac6be; }
.about-links a { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 18px; padding: 26px 20px; background: #fff; }
.about-links span { font: 800 9px/1 "Inter", sans-serif; letter-spacing: .14em; color: #77726b; }
.about-links strong { font-size: 16px; }
@media (min-width: 800px) { .about-message__grid { grid-template-columns: 1fr 1fr; } .about-values__grid { grid-template-columns: repeat(3,1fr); } }

/* Blog */
.blog-index { padding-block: 76px; }
.blog-index__grid { display: grid; gap: 28px; }
.blog-card { background: var(--brand-cream); }
.blog-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--brand-black); }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__media span { width: 100%; height: 100%; display: grid; place-items: center; color: #fff; text-align: center; font: 900 24px/1.2 "Inter", sans-serif; letter-spacing: .12em; }
.blog-card__body { padding: 24px; }
.blog-card time { font: 700 10px/1 "Inter", sans-serif; color: #77726b; }
.blog-card h2 { margin-top: 12px; font-size: 20px; line-height: 1.5; }
.blog-card p { margin-top: 12px; color: #68645e; font-size: 13px; line-height: 1.8; }
.blog-card .brand-arrow-link { margin-top: 22px; }
.blog-empty { padding: 80px 24px; background: var(--brand-cream); text-align: center; }
.blog-empty span { font: 800 10px/1 "Inter", sans-serif; letter-spacing: .18em; color: var(--brand); }
.blog-empty h2 { margin-top: 14px; font-size: 28px; }
.blog-empty p { margin-top: 10px; color: #6b6760; }
.brand-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
.brand-pagination .page-numbers { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid #c9c5bd; }
.brand-pagination .current { color: #fff; background: var(--brand); border-color: var(--brand); }
@media (min-width: 760px) { .blog-index { padding-block: 120px; } .blog-index__grid { grid-template-columns: repeat(3,1fr); } }

/* 既存販売・買取ページへの接続 */
.service-breadcrumb { display: flex; align-items: center; gap: 8px; padding: 12px 20px; scroll-margin-top: calc(68px + var(--servicebar-h)); overflow-x: auto; background: #f4f2ed; color: #79756e; font: 700 9px/1 "Inter", sans-serif; letter-spacing: .1em; white-space: nowrap; }
@media (min-width: 760px) { .service-breadcrumb { padding-inline: 40px; } }
@media (min-width: 1280px) { .service-breadcrumb { padding-inline: max(40px, calc(50vw - 640px)); } }
.service-breadcrumb b { color: var(--brand-black); }
.purchase-panel { scroll-margin-top: 72px; margin: 10px 16px 22px; overflow: hidden; border: 1px solid var(--border); background: var(--brand-cream); }
.purchase-panel__logo { display: grid; place-items: center; padding: 6px 24px; background: #fff; }
.purchase-panel__logo img { width: min(280px, 88%); }
.purchase-panel__body { padding: 22px; }
.purchase-panel__body > span { font: 800 9px/1 "Inter", sans-serif; letter-spacing: .14em; color: var(--brand-orange); }
.purchase-panel h2 { margin-top: 10px; font-size: 21px; line-height: 1.45; }
.purchase-panel p { margin: 12px 0 18px; color: #67635c; font-size: 12px; line-height: 1.8; }
.staff-card__photo--initial { overflow: hidden; color: #fff; background: var(--brand-black); }
.staff-card__photo--initial::after { content: ""; position: absolute; width: 120%; height: 34%; left: -10%; bottom: 4%; background: var(--brand); transform: rotate(-12deg); }
.staff-card__initial { position: relative; z-index: 1; font: 900 44px/1 "Inter", sans-serif; letter-spacing: -.08em; }
.access-map-panel { min-height: 180px; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; color: #fff; background: linear-gradient(135deg, #23211e, #11100f); }
.access-map-panel span { font: 800 9px/1 "Inter", sans-serif; letter-spacing: .18em; color: var(--brand); }
.access-map-panel strong { margin-top: 12px; font-size: 21px; }
.access-map-panel small { margin-top: 5px; color: #aaa59e; }

/* 新フッター */
.footer { padding: 54px 20px 26px; background: var(--brand-black); }
.footer__inner { max-width: var(--brand-max); margin-inline: auto; display: grid; gap: 40px; }
.footer__logo { display: inline-block; padding: 8px 10px; background: #fff; }
.footer__logo img { width: 230px; height: auto; }
.footer__identity > p { margin-top: 16px; color: #fff; font-size: 15px; font-weight: 800; }
.footer__address { margin-top: 18px; line-height: 1.9; color: #918c84; }
.footer__navs { display: grid; gap: 24px; }
.footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; }
.footer nav a { display: flex; flex-direction: column; gap: 3px; padding: 12px 0; border-bottom: 1px solid #34322f; color: #fff; font-size: 11px; }
.footer nav a span { font: 800 9px/1 "Inter", sans-serif; letter-spacing: .1em; color: #817c74; }
.footer__service-nav a { color: #aaa59e; }
.footer__bottom { max-width: var(--brand-max); margin: 40px auto 0; padding-top: 20px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid #34322f; color: #77726b; font-size: 10px; }
.footer__copy { margin-left: 16px; }
@media (min-width: 760px) { .footer { padding: 80px 40px 30px; } .footer__inner { grid-template-columns: 1fr 1.2fr; } .footer__navs { grid-template-columns: 1.2fr .8fr; } .footer__bottom { flex-direction: row; justify-content: space-between; } }

/* 2026-07 運用導線・段階公開 */
.btn-call { flex: 0 0 38%; color: #fff; background: var(--brand-black); }
.drawer__phone { margin: 16px 16px 0; }
.brand-coming-soon { width: fit-content; display: inline-flex; padding: 7px 10px; color: #fff; background: var(--brand); font: 800 9px/1 "Inter", sans-serif; letter-spacing: .13em; }
.brand-hero__purchase .brand-coming-soon { margin-top: 14px; color: var(--brand-black); background: #fff; }
.brand-service-card__status { width: fit-content; margin-top: 14px; padding: 6px 9px; color: #fff; border: 1px solid rgba(255,255,255,.6); font: 800 9px/1 "Inter", sans-serif; letter-spacing: .12em; }
.brand-service-secondary, .service-index__secondary { margin-top: 22px; padding: 20px 0; border-top: 1px solid #cbc7bf; color: #67635d; font-size: 13px; }
.brand-service-secondary a, .service-index__secondary a { color: var(--brand); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.brand-contact__actions { display: flex; flex-direction: column; gap: 10px; }
.brand-coming-panel { display: grid; gap: 12px; justify-items: center; }
.brand-coming-panel span { color: var(--brand); font: 800 10px/1 "Inter", sans-serif; letter-spacing: .16em; }
.brand-coming-panel strong { font-size: 22px; }
.brand-coming-panel p { color: #77726b; font-size: 12px; }
.stock-coming { min-height: calc(100svh - var(--header-h)); display: grid; place-items: center; padding: 80px 0; color: #fff; background: var(--brand-black); }
.stock-coming__inner { display: grid; gap: 22px; }
.stock-coming h1 { font-size: var(--fs-h1); line-height: 1.16; letter-spacing: -.06em; }
.stock-coming p { max-width: 620px; color: #aaa59e; line-height: 2; }
.stock-coming__actions { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 760px) { .brand-contact__actions, .stock-coming__actions { flex-direction: row; } }

/* 中古車販売：説明ページと在庫検索の役割を分離 */
.sales-page { color: var(--brand-black); }
.sales-hero { padding: 44px 0 52px; background: var(--brand-cream); }
.sales-hero__grid { display: grid; gap: 36px; }
.sales-hero__copy { align-self: center; }
.sales-hero__copy h1 { margin-top: 16px; font-size: var(--fs-hero-lp); line-height: 1.1; letter-spacing: -.06em; }
.sales-hero__copy > p { max-width: 620px; margin-top: 24px; color: #625e58; line-height: 2; }
.sales-hero__actions { display: flex; flex-direction: column; align-items: stretch; gap: 14px; margin-top: 30px; }
.sales-hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.sales-hero__badges span { display: inline-flex; align-items: center; gap: 6px; padding: 8px 10px; color: #4f4b45; background: #fff; border: 1px solid #d8d3ca; font-size: 11px; font-weight: 700; }
.sales-hero__badges svg { width: 15px; height: 15px; color: var(--brand); }
.sales-hero__visual { position: relative; min-height: 240px; overflow: hidden; background: #d9d5cc; }
.sales-hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.64), transparent 58%); }
.sales-hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.sales-hero__visual > span { position: absolute; left: 24px; bottom: 22px; z-index: 1; color: #fff; font-size: 14px; font-weight: 800; }
.sales-quicknav { border-bottom: 1px solid #d9d5cd; background: #fff; }
.sales-quicknav__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.sales-quicknav a { min-width: 0; display: flex; flex-direction: column; align-items: center; padding: 20px 5px 18px; border-right: 1px solid #e3dfd7; text-align: center; }
.sales-quicknav a:last-child { border-right: 0; }
.sales-quicknav a > span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 9px; color: #fff; background: var(--brand-black); border-radius: 50%; }
.sales-quicknav svg { width: 20px; height: 20px; }
.sales-quicknav strong { font-size: 11px; }
.sales-quicknav small { display: none; color: #88837b; font: 700 8px/1 "Inter", sans-serif; letter-spacing: .08em; }
.sales-search, .sales-stock, .sales-flow, .sales-support, .sales-related { padding-block: 76px; }
.sales-compact-head { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.sales-compact-head h2 { margin-top: 10px; font-size: var(--fs-h2); line-height: 1.18; letter-spacing: -.05em; }
.sales-search { border-bottom: 1px solid #dfdbd3; }
.sales-search__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sales-search__chips a { padding: 10px 14px; border: 1px solid #cbc7bf; background: #fff; font-size: 12px; font-weight: 800; transition: color .2s, border-color .2s, background .2s; }
.sales-stock { scroll-margin-top: calc(68px + var(--servicebar-h)); }
.sales-stock__scroller { display: flex; gap: 14px; margin-right: calc(50% - 50vw); padding-right: 20px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
.sales-stock__scroller::-webkit-scrollbar { display: none; }
.sales-stock__scroller .car-card { flex: 0 0 min(78vw, 330px); scroll-snap-align: start; }
.sales-section-head { display: flex; flex-direction: column; gap: 22px; margin-bottom: 38px; }
.sales-section-head h2 { margin-top: 12px; font-size: var(--fs-h2); line-height: 1.15; letter-spacing: -.05em; }
.sales-section-head > p { max-width: 460px; color: #aaa59e; line-height: 1.9; }
.sales-standard { padding-block: 76px; color: #fff; background: var(--brand-black); }
.sales-standard__grid { display: grid; border-top: 1px solid #45423e; }
.sales-standard__grid article { padding: 28px 0; border-bottom: 1px solid #45423e; }
.sales-standard__grid article > span { color: var(--brand); font: 800 10px/1 "Inter", sans-serif; }
.sales-standard__grid h3 { margin-top: 13px; font-size: 22px; }
.sales-standard__grid p { margin-top: 10px; color: #aaa59e; font-size: 13px; line-height: 1.9; }
.sales-flow__list { list-style: none; border-top: 1px solid #cfcac2; }
.sales-flow__list li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 27px 0; border-bottom: 1px solid #cfcac2; }
.sales-flow__list li > span { padding-top: 7px; color: var(--brand); font: 800 10px/1 "Inter", sans-serif; }
.sales-flow__list h3 { font-size: 20px; }
.sales-flow__list p { margin-top: 8px; color: #6c6861; font-size: 13px; line-height: 1.9; }
/* ===== ブランド共通部品（loan/company/staff＝2ゾーン整理で追加） ===== */
.brand-points { padding-block: 76px; }
.brand-points__grid { display: grid; gap: 14px; margin-top: 8px; }
.brand-points__grid article { padding: 26px 24px; background: var(--brand-cream); }
.brand-points__grid span { font: 800 10px/1 "Inter", sans-serif; color: var(--brand); }
.brand-points__grid h3 { margin-top: 20px; font-size: 19px; }
.brand-points__grid p { margin-top: 10px; color: #6a665f; font-size: 13px; line-height: 1.9; }
.brand-spec { width: 100%; border-collapse: collapse; font-size: 14px; }
.brand-spec th, .brand-spec td { padding: 16px 8px; border-bottom: 1px solid #ddd8cd; text-align: left; vertical-align: top; }
.brand-spec th { width: 32%; color: #8a857d; font-weight: 600; }
.company-profile, .company-access, .staff-index { padding-block: 76px; }
.company-profile { padding-top: 0; }
.company-access__body { display: grid; gap: 18px; justify-items: start; }
.company-access__address { color: #55524c; line-height: 2; }
.sales-store-panel { display: grid; gap: 12px; justify-items: start; padding: 34px 28px; background: var(--brand-cream); }
.sales-store-panel strong { font-size: clamp(22px, 4.5vw, 30px); letter-spacing: -.03em; }
.sales-store-panel p { color: #6a665f; font-size: 13px; line-height: 1.9; max-width: 560px; }
body.minkuru-brand-wide .staff-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 760px) {
  .brand-points__grid { grid-template-columns: repeat(3, 1fr); }
  body.minkuru-brand-wide .staff-grid { grid-template-columns: repeat(4, 1fr); }
  .brand-points, .company-profile, .company-access, .staff-index { padding-block: 120px; }
  .company-profile { padding-top: 0; }
}

.sales-payment { padding-block: 76px; background: var(--brand-cream); }
.sales-payment__grid { display: grid; gap: 30px; align-items: end; }
.sales-payment h2 { margin-top: 12px; font-size: var(--fs-h2); line-height: 1.2; letter-spacing: -.05em; }
.sales-payment p { max-width: 680px; margin-top: 18px; color: #67635d; line-height: 2; }
.sales-support__grid { display: grid; gap: 12px; }
.sales-support__grid a { position: relative; min-height: 210px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 26px; color: #fff; background: var(--brand-black); isolation: isolate; }
.sales-support__grid a:first-child { min-height: 360px; }
.sales-support__grid a:first-child::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(0,0,0,.75), rgba(0,0,0,.06) 72%); }
.sales-support__grid img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.sales-support__grid span { color: rgba(255,255,255,.62); font: 800 9px/1 "Inter", sans-serif; letter-spacing: .16em; }
.sales-support__grid strong { margin-top: 10px; font-size: 22px; line-height: 1.4; }
.sales-support__grid p { margin-top: 9px; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.8; }
.sales-related h2 { font-size: var(--fs-h2); letter-spacing: -.05em; }
.sales-related__grid { display: grid; gap: 12px; margin-top: 34px; }
.sales-related__grid a { min-height: 170px; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; color: #fff; background: var(--brand-black); }
.sales-related__grid .sales-related__bc { background: #d9540a; }
.sales-related__grid span { font-size: 24px; font-weight: 900; }
.sales-related__grid p { margin-top: 8px; color: rgba(255,255,255,.72); font-size: 12px; }
@media (min-width: 760px) {
  .sales-hero { padding-block: 76px; }
  .sales-hero__grid { grid-template-columns: 1fr .9fr; min-height: 560px; align-items: stretch; }
  .sales-hero__actions { flex-direction: row; align-items: center; }
  .sales-hero__actions > * { min-width: 190px; }
  .sales-hero__visual { min-height: 560px; }
  .sales-quicknav a { padding-block: 24px; }
  .sales-quicknav a > span { width: 48px; height: 48px; }
  .sales-quicknav strong { font-size: 13px; }
  .sales-quicknav small { display: block; margin-top: 5px; }
  .sales-search, .sales-stock, .sales-flow, .sales-support, .sales-related, .sales-standard { padding-block: 120px; }
  .sales-compact-head { flex-direction: row; justify-content: space-between; align-items: end; }
  .sales-stock__scroller { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-right: 0; padding-right: 0; overflow: visible; }
  .sales-stock__scroller .car-card { min-width: 0; }
  .sales-section-head { flex-direction: row; justify-content: space-between; align-items: end; }
  .sales-standard__grid { grid-template-columns: repeat(3, 1fr); border-left: 1px solid #45423e; }
  .sales-standard__grid article { padding: 34px; border-right: 1px solid #45423e; }
  .sales-flow__list li { grid-template-columns: 70px 1fr; padding: 34px 0; }
  .sales-payment__grid { grid-template-columns: 1fr auto; }
  .sales-support__grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .sales-support__grid a, .sales-support__grid a:first-child { min-height: 360px; }
  .sales-related__grid { grid-template-columns: 1fr 1fr; }
}
@media (hover: hover) {
  .sales-search__chips a:hover { color: var(--brand); border-color: var(--brand); background: var(--brand-soft); }
  .sales-support__grid a:hover img { transform: scale(1.04); }
}

/* 車両オプション見積もり */
.estimate-intro { margin: -2px 0 14px; color: var(--muted); font-size: 12px; line-height: 1.8; }
.estimate-summary { display: grid; gap: 6px; padding: 8px 0 2px 20px; color: #4e4a45; font-size: 12px; }
.estimate-section .breakdown[open] summary { color: var(--brand); }
.estimate-section .total { position: sticky; bottom: calc(var(--bottombar-h) + 8px); z-index: 4; box-shadow: var(--shadow-lg); }

/* Googleカレンダー空き状況 */
.availability-wrap { padding-block: 0 76px; }
.availability { padding: 28px; color: #fff; background: var(--brand-black); }
.availability__head { display: grid; gap: 18px; }
.availability__head span { color: var(--brand); font: 800 9px/1 "Inter", sans-serif; letter-spacing: .16em; }
.availability__head h2 { margin-top: 9px; font-size: var(--fs-h2-s); }
.availability__head p, .availability__status { color: #aaa59e; font-size: 12px; line-height: 1.8; }
.availability__status { margin-top: 20px; padding: 12px; border-left: 3px solid var(--brand); background: #211f1c; }
.availability__days { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(190px, 1fr); gap: 10px; margin-top: 18px; padding-bottom: 8px; overflow-x: auto; scroll-snap-type: x proximity; }
.availability-day { padding: 14px; background: #211f1c; scroll-snap-align: start; }
.availability-day h3 { margin-bottom: 10px; font-size: 14px; }
.availability-day__slots { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.availability-slot { min-height: 34px; border: 1px solid #4a4742; color: #fff; background: transparent; font-size: 11px; }
.availability-slot--open { border-color: #688f76; color: #c9f5d6; }
.availability-slot--busy { color: #77726b; cursor: not-allowed; }
.availability-slot.is-selected { color: #fff; background: var(--line); border-color: var(--line); }
.availability__actions { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.availability--error .availability__status { border-color: #f0a138; }
.maintenance-hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.maintenance-hero__actions .brand-text-link { color: var(--brand-black); border-bottom: 1px solid rgba(17,16,15,.4); }
@media (min-width: 760px) {
  .availability { padding: 42px; }
  .availability__head { grid-template-columns: 1fr auto; align-items: end; }
  .availability__actions, .maintenance-hero__actions { flex-direction: row; align-items: center; }
}

/* ===== スタッフ詳細プロフィール ===== */
.staff-profiles { display: grid; gap: 28px; }
.staff-profile { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.staff-profile__photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.staff-profile__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.staff-profile__photo--initial { display: grid; place-items: center; color: #fff; background: var(--brand-black); }
.staff-profile__photo--initial::after { content: ""; position: absolute; width: 120%; height: 34%; left: -10%; bottom: 4%; background: var(--brand); transform: rotate(-12deg); }
.staff-profile__initial { position: relative; z-index: 1; font: 900 64px/1 "Inter", sans-serif; letter-spacing: -.08em; }
.staff-profile__body { padding: 22px 20px 26px; display: grid; gap: 14px; align-content: start; }
.staff-profile__roma { font: 800 10px/1 "Inter", sans-serif; letter-spacing: .18em; color: var(--brand); }
.staff-profile__name { font-size: 24px; margin-top: 6px; }
.staff-profile__role { font-size: 13px; font-weight: 700; color: var(--brand-dark); margin-top: 4px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.staff-profile__feature { display: inline-block; background: var(--brand); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .06em; padding: 3px 10px; border-radius: 999px; }
.staff-profile__meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.staff-profile__catch { font-size: 14px; font-weight: 700; line-height: 1.7; }
.staff-profile__promise { background: rgba(230, 0, 18, .06); border-left: 3px solid var(--brand); padding: 10px 14px; font-size: 13px; line-height: 1.8; }
.staff-profile__qa { display: grid; gap: 12px; }
.staff-profile__qa dt { font-size: 11px; font-weight: 800; color: var(--brand); letter-spacing: .04em; }
.staff-profile__qa dd { font-size: 13px; color: #444; line-height: 1.9; margin-top: 2px; }
@media (min-width: 960px) {
  .staff-profile { display: grid; grid-template-columns: 380px 1fr; }
  .staff-profile__photo { aspect-ratio: auto; min-height: 100%; }
  .staff-profile__body { padding: 32px 36px; }
}

/* ===== utility ===== */
.muted { color: var(--muted); }
.center { text-align: center; }
.mt8{margin-top:8px}.mt12{margin-top:12px}.mt16{margin-top:16px}
