/* ============================================================
   Asada Auto — MJNet 風デザインシステム
   ============================================================ */

:root {
    --red: #CC0000;
    --red-dark: #a30000;
    --red-light: #fff5f5;
    --orange: #E8650A;
    --orange-light: #fff8f0;
    --blue: #0066CC;
    --blue-light: #e8f2fc;
    --green: #1a7c3e;
    --green-light: #e8f5ed;
    --bg: #f4f4f4;
    --surface: #ffffff;
    --line: #e2e2e2;
    --line-light: #efefef;
    --text: #222222;
    --muted: #666666;
    --muted-light: #999999;
    --brand: #CC0000;
    --brand-dark: #a30000;
    --accent: #E8650A;
    --nav-h: 48px;
    --radius: 4px;
    --radius-card: 10px;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .07);
    --shadow: 0 4px 16px rgba(0, 0, 0, .10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .16);
    --shadow-card-hover: 0 16px 40px rgba(0, 0, 0, .18);
    --transition: .22s ease;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f8f9fb;
    color: var(--text);
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 14px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--red);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

/* ============================================================
   レイアウト
   ============================================================ */
.container {
    width: min(1200px, 96vw);
    margin: 0 auto;
}

.container-narrow {
    width: min(640px, 92vw);
    margin: 0 auto;
}

/* ============================================================
   ヘッダー（MJNet スタイル）
   ============================================================ */

/* ユーティリティバー（最上段） */
.site-utility-bar {
    background: #f0f2f6;
    color: #555;
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid #dde0e8;
}

.site-utility-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
}

.site-utility-bar a {
    color: #555;
    text-decoration: none;
    padding: 0 12px;
    border-left: 1px solid #dde0e8;
    line-height: 1;
    font-size: 11px;
    letter-spacing: .03em;
    transition: color .15s, background .15s;
}

.site-utility-bar a:first-child {
    border-left: none;
}

.site-utility-bar a:hover {
    color: var(--red);
    text-decoration: none;
    background: rgba(204, 0, 0, .06);
}

/* メインヘッダー */
.site-header {
    background: #fff;
    border-bottom: 2px solid var(--line-light);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 16px;
}

/* ロゴ部分 */
.site-logo-wrap {
    display: flex;
    flex-direction: column;
}

.site-logo-eyebrow {
    font-size: 10px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: .14em;
    margin-bottom: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-logo-eyebrow::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
}

.site-logo-name {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    text-decoration: none;
    letter-spacing: -.02em;
}

.site-logo-name:hover {
    text-decoration: none;
    color: var(--red);
}

.site-logo-sub {
    font-size: 11px;
    color: var(--muted);
    margin-top: 5px;
    letter-spacing: .03em;
}

/* ヘッダー右：電話・CTA */
.site-header-contact {
    text-align: right;
    border-left: 1px solid var(--line-light);
    padding-left: 20px;
}

.site-header-tel {
    font-size: 24px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: .02em;
    line-height: 1;
}

.site-header-tel::before {
    content: "📞 ";
    font-size: 16px;
    color: var(--text);
}

.site-header-hours {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: .02em;
}

/* グローバルナビ（赤バー） */
.site-nav {
    background: linear-gradient(90deg, #d40010 0%, #cc0000 60%, #c50000 100%);
    box-shadow: 0 3px 12px rgba(180, 0, 0, .3);
    position: sticky;
    top: 0;
    z-index: 200;
    transition: background var(--transition), box-shadow var(--transition);
}

.site-nav--scrolled {
    background: rgba(200, 0, 0, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .28);
}

.site-nav-inner {
    display: flex;
    align-items: stretch;
    height: var(--nav-h);
}

.site-nav-inner a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 0 20px;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, .15);
    letter-spacing: .02em;
}

.site-nav-inner a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.site-nav-inner a:hover {
    background: rgba(255, 255, 255, .15);
    text-decoration: none;
}

.site-nav-inner a.active {
    background: rgba(255, 255, 255, .18);
    text-decoration: none;
    border-bottom: 3px solid #fff;
    font-weight: 900;
}

/* スマホ用ハンバーガー（後述） */
.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 0 16px;
    margin-left: auto;
    min-height: var(--nav-h);
}

/* ============================================================
   ヒーロー / トップバナー
   ============================================================ */
.hero {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 35%, #2a0a0a 70%, #8B0000 100%);
    color: #fff;
    padding: 60px 0 52px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(204, 0, 0, .15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 100, 0, .08) 0%, transparent 50%),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, .012) 60px,
            rgba(255, 255, 255, .012) 120px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    padding: 5px 18px;
    border-radius: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.hero-title {
    margin: 0 0 6px;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
}

.hero-title span {
    color: #ffd700;
}

.hero-subtitle {
    margin: 0 0 22px;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    letter-spacing: .04em;
}

/* ヒーロー統計チップ */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50px;
    padding: 8px 24px;
    margin: 0 0 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-stat {
    display: flex;
    align-items: baseline;
    gap: 5px;
    padding: 0 16px;
}

.hero-stat-val {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
    white-space: nowrap;
}

.hero-stat-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, .2);
    flex-shrink: 0;
}

/* ヒーロー検索ボックス */
.hero-search {
    background: #fff;
    border-radius: 12px;
    border-top: 4px solid var(--red);
    padding: 28px 32px 30px;
    max-width: 940px;
    margin: 0 auto;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .45), 0 2px 0 rgba(204, 0, 0, .4);
}

.hero-search-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--line-light);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .04em;
}

.hero-search-title::before {
    content: '🔍';
    font-size: 16px;
}

.hero-search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.hero-search-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 8px;
    letter-spacing: .04em;
}

.hero-search-field select,
.hero-search-field input {
    width: 100%;
    height: 46px;
    border: 1.5px solid var(--line);
    border-radius: 6px;
    padding: 0 14px;
    font-size: 14px;
    background: #fafafa;
    color: var(--text);
    appearance: auto;
    transition: border-color .18s, background .18s, box-shadow .18s;
}

.hero-search-field select:hover,
.hero-search-field input:hover {
    border-color: #bbb;
    background: #fff;
}

.hero-search-field select:focus,
.hero-search-field input:focus {
    outline: none;
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(204, 0, 0, .10);
}

.hero-search-btn {
    height: 46px;
    background: linear-gradient(135deg, #e00000 0%, #bb0000 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 900;
    padding: 0 32px;
    cursor: pointer;
    white-space: nowrap;
    transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
    letter-spacing: .08em;
    box-shadow: 0 3px 10px rgba(204, 0, 0, .4);
}

.hero-search-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(204, 0, 0, .45);
}

.hero-search-btn:active {
    transform: translateY(0);
    filter: brightness(.95);
}

/* ============================================================
   セクション共通
   ============================================================ */
.section {
    padding: 32px 0;
}

.section-gray {
    background: #f5f6f9;
}

.section-white {
    background: #ffffff;
}

/* セクション見出し（日本語サイト定番 左帯スタイル） */
.section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px;
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    border-left: 5px solid var(--red);
    padding-left: 14px;
    line-height: 1.2;
    letter-spacing: -.01em;
    position: relative;
}

/* 見出し右の区切り線（グラデーション帯） */
.section-heading::after {
    content: '';
    display: block;
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, rgba(180,0,0,.2), transparent);
    margin-left: 10px;
}

.section-heading-sub {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    margin-left: 4px;
}

.section-heading-count {
    font-size: 14px;
    color: var(--muted);
    font-weight: 400;
    margin-left: auto;
}

/* ============================================================
   検索フィルター（在庫一覧ページ）
   ============================================================ */
.filter-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--red);
    border-radius: 0 0 8px 8px;
    padding: 22px 28px 26px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.filter-panel-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 0;
    height: auto;
    min-height: auto;
}

.filter-panel-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 16px;
    background: var(--red);
    border-radius: 2px;
    flex-shrink: 0;
}

.filter-panel-title span {
    flex: 1;
    text-align: left;
    margin-left: 6px;
}

.filter-panel-title:hover {
    background: none;
}

.filter-toggle-icon {
    transition: transform var(--transition);
    color: var(--muted);
    flex-shrink: 0;
}

.filter-toggle-icon.rotated {
    transform: rotate(180deg);
}

.filter-form {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

label {
    display: grid;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: .04em;
}

input,
select {
    border: 1.5px solid #d8d8d8;
    border-radius: 6px;
    height: 42px;
    padding: 0 13px;
    font-size: 14px;
    background: #fafafa;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input:hover,
select:hover {
    border-color: #bbb;
    background: #fff;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(204, 0, 0, .08);
}

.filter-actions {
    display: flex;
    align-items: end;
    gap: 12px;
    padding-top: 6px;
}

button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    padding: 0 24px;
    border: none;
    background: var(--red);
    color: #fff;
    cursor: pointer;
    transition: background .15s;
    letter-spacing: .04em;
}

button:hover {
    background: var(--red-dark);
}

.filter-actions a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    padding: 0 20px;
    color: var(--muted);
    border: 1.5px solid var(--line);
    background: #fff;
    text-decoration: none;
    transition: background .15s, border-color .15s;
}

.filter-actions a:hover {
    background: var(--bg);
    border-color: #bbb;
    text-decoration: none;
}

/* ============================================================
   在庫一覧ヘッダー
   ============================================================ */
.inventory-head {
    margin: 0 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-left: 4px solid var(--red);
    padding-left: 12px;
}

.inventory-head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
}

.inventory-head p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

/* ============================================================
   車両カードグリッド（MJNet スタイル）
   ============================================================ */
.inventory-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.car-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-5px);
    border-color: #d4d4d4;
}

.car-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.car-card-link:hover {
    text-decoration: none;
}

.car-card-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #e8e8e8;
    position: relative;
}

.car-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .30) 38%,
            rgba(0, 0, 0, .05) 65%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.car-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

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

/* カードバッジ（画像の上に重ねる） */
.car-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    z-index: 3;
}

/* 価格オーバーレイ（画像下部） */
.car-card-image-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px 13px;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.car-price-overlay {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin: 0;
    line-height: 1;
}

.cpo-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 1px 6px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    letter-spacing: .04em;
    margin-right: 3px;
    flex-shrink: 0;
}

.cpo-num {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.025em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}

.cpo-unit {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
}

.car-card-status {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 3px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    letter-spacing: .04em;
}

.car-card-body {
    padding: 13px 15px 12px;
    border-top: none;
    flex: 1;
}

/* スペックピルタグ */
.car-card-grade {
    margin: 0 0 8px;
    color: var(--muted-light);
    font-size: 11.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.car-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 9px;
}

.car-card-specs span {
    background: var(--bg);
    border: 1px solid #e4e4e4;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #777;
    white-space: nowrap;
    letter-spacing: .01em;
}

.car-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.stock-no {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .06em;
}

.car-card h3 {
    margin: 0 0 2px;
    font-size: 16px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -.01em;
}

.grade {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price {
    margin: 8px 0 11px;
    color: var(--red);
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price::before {
    content: "総額";
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    background: var(--red-light);
    padding: 1px 5px;
    border-radius: 2px;
    border: 1px solid rgba(204, 0, 0, .2);
    margin-right: 4px;
}

.price::after {
    content: "円";
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    margin-left: 2px;
}

dl {
    margin: 0;
    display: grid;
    gap: 4px;
}

dl div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 6px;
    font-size: 12px;
    border-bottom: 1px dotted var(--line);
    padding-bottom: 4px;
}

dt {
    color: var(--muted);
}

dd {
    margin: 0;
    font-weight: 600;
    color: var(--text);
}

.car-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e4e4e4 100%);
    color: #b0b0b0;
    gap: 8px;
}

.car-no-image span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.description {
    margin: 8px 0 0;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.empty {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 56px 20px;
    color: var(--muted);
    text-align: center;
    grid-column: 1 / -1;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   バッジ
   ============================================================ */
.featured {
    display: inline-block;
    font-size: 11px;
    color: #fff;
    background: var(--accent);
    border-radius: 2px;
    padding: 2px 6px;
    font-weight: 700;
}

.badge-new {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .05em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(204, 0, 0, .4);
}

.badge-featured {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .02em;
    box-shadow: 0 2px 8px rgba(232, 101, 10, .4);
}

/* ============================================================
   ページネーション
   ============================================================ */
.pagination {
    margin: 28px 0 44px;
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: center;
}

.pagination a,
.pagination span {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 16px;
    background: #fff;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-sm);
}

.pagination a:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(204, 0, 0, .3);
}

.pagination .disabled {
    color: #ccc;
    background: #f5f5f5;
    cursor: not-allowed;
    box-shadow: none;
}

/* ============================================================
   共通コンポーネント
   ============================================================ */

/* パネル（汎用） */
.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 20px;
}

/* 大きいカード（詳細ページ用） */
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 28px;
}

.card-lg {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
}

/* 戻るリンク */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 16px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 3px;
    transition: background .15s;
}

.back-link:hover {
    background: var(--bg);
    color: var(--red);
    text-decoration: none;
}

.back-link svg {
    width: 14px;
    height: 14px;
}

/* プライマリボタン */
.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, #e00000 0%, #bb0000 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 3px 10px rgba(204, 0, 0, .35), 0 1px 2px rgba(0, 0, 0, .1);
    letter-spacing: .03em;
}

.btn-primary:hover {
    filter: brightness(1.08);
    text-decoration: none;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(204, 0, 0, .4), 0 2px 4px rgba(0, 0, 0, .12);
}

.btn-primary:active {
    transform: translateY(0);
    filter: brightness(.95);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
}

/* セカンダリボタン */
.btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 28px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: #fff;
    color: var(--text);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s;
}

.btn-secondary:hover {
    background: var(--bg);
    text-decoration: none;
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ステータスバッジ */
.status-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 2px;
    letter-spacing: .04em;
}

.status-badge-available {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge-default {
    background: #f5f5f5;
    color: #616161;
}

/* スペックグリッド（詳細ページ） */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    margin: 16px 0;
}

.spec-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 0;
}

.spec-item:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.spec-label {
    background: #f8f8f8;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    width: 90px;
    flex-shrink: 0;
    border-right: 1px solid var(--line);
}

.spec-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    padding: 8px 12px;
}

/* 価格表示（詳細ページ） */
.detail-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 16px 0 20px;
    padding: 12px 16px;
    background: var(--red-light);
    border-left: 4px solid var(--red);
    border-radius: 0 4px 4px 0;
}

.detail-price-value {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--red);
}

.detail-price-unit {
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
}

/* 車両詳細レイアウト */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.detail-image {
    background: #eee;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--line);
}

.detail-image svg {
    width: 64px;
    height: 64px;
    color: #bbb;
    margin-bottom: 10px;
}

.detail-image span {
    color: var(--muted);
    font-size: 14px;
}

.detail-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.detail-title {
    margin: 0;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1.2;
}

.detail-grade {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
}

/* 車両説明 */
.detail-description {
    padding: 24px;
    background: var(--bg);
    border-top: 1px solid var(--line);
}

.detail-description h3 {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 900;
    color: var(--text);
    border-left: 4px solid var(--red);
    padding-left: 10px;
}

.detail-description-body {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

/* ============================================================
   フォーム系
   ============================================================ */
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.form-label .required {
    color: var(--red);
    margin-left: 4px;
}

.form-label .hint {
    font-weight: 400;
    font-size: 12px;
    color: var(--muted);
    margin-left: 4px;
}

.form-input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 8px 12px;
    font-size: 14px;
    background: #fff;
    transition: border-color .2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(212, 20, 15, .1);
}

.alert-box {
    border: 1px solid #fca5a5;
    border-left: 4px solid var(--red);
    border-radius: 4px;
    background: var(--red-light);
    padding: 14px 16px;
    margin-bottom: 20px;
}

.alert-box-title {
    margin: 0 0 4px;
    font-weight: 700;
    font-size: 13px;
    color: var(--red);
}

.alert-box ul {
    margin: 0;
    padding-left: 16px;
    font-size: 13px;
    color: var(--red-dark);
}

/* 対象車両ボックス */
.car-info-box {
    border: 1px solid var(--red);
    background: var(--red-light);
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 24px;
}

.car-info-box .label {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    margin: 0 0 4px;
}

.car-info-box .name {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    color: var(--text);
}

.car-info-box .stock {
    margin: 2px 0 0;
    font-size: 12px;
    color: var(--muted);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

/* ページタイトル */
.page-title {
    margin: 0 0 20px;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 900;
    color: var(--text);
    border-left: 4px solid var(--red);
    padding-left: 12px;
    line-height: 1.3;
}

.page-title-underline {
    display: inline-block;
    border-bottom: 3px solid var(--red);
    padding-bottom: 4px;
}

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

/* ============================================================
   フッター（MJNet スタイル）
   ============================================================ */
.site-footer {
    background: #262b35;
    color: #aaa;
    margin-top: 0;
    padding: 0;
}

.site-footer-nav {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 36px 0;
    background: #2e3444;
}

.site-footer-nav-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
}

.site-footer-col-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--red);
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-footer-col-title::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 12px;
    background: var(--red);
    border-radius: 2px;
}

.site-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-footer-col ul li a {
    color: #999;
    font-size: 12px;
    text-decoration: none;
    transition: color .15s, padding-left .15s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.site-footer-col ul li a:hover {
    color: #fff;
    text-decoration: none;
    padding-left: 4px;
}

.site-footer-col ul li a::before {
    content: "›";
    color: var(--red);
    font-weight: 900;
}

.site-footer-bottom {
    padding: 18px 0;
    text-align: center;
    font-size: 12px;
    color: #778;
    background: #1e2330;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.site-footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
}

.site-footer-bottom-links a {
    color: #888;
    font-size: 12px;
    text-decoration: none;
}

.site-footer-bottom-links a:hover {
    color: #fff;
    text-decoration: none;
}

/* 旧フッター変数（他ページ互換） */
.site-footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.site-footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 12px;
}

.site-footer-links a:hover {
    color: #fff;
    text-decoration: none;
}

/* ============================================================
   画像ギャラリー（詳細ページ）
   ============================================================ */
[x-cloak] {
    display: none !important;
}

.detail-gallery {
    position: relative;
}

.detail-gallery-main {
    width: 100%;
    height: 420px;
    background: #ddd;
    overflow: hidden;
}

@media (max-width: 640px) {
    .detail-gallery-main {
        height: 240px;
    }
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.gallery-arrow-left {
    left: 10px;
}

.gallery-arrow-right {
    right: 10px;
}

.gallery-counter {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 2px;
}

.detail-gallery-thumbs {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    overflow-x: auto;
    background: #f0f0f0;
}

.gallery-thumb {
    width: 70px;
    height: 52px;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    opacity: .75;
    transition: opacity .15s;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb.thumb-active {
    border-color: var(--red);
    opacity: 1;
}

/* ============================================================
   SNS シェア
   ============================================================ */
.btn-share {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 3px;
    text-decoration: none;
    color: #fff;
}

.btn-share:hover {
    text-decoration: none;
}

.btn-share-x {
    background: #000;
}

.btn-share-x:hover {
    background: #333;
}

.btn-share-line {
    background: #06c755;
}

.btn-share-line:hover {
    background: #05a847;
}

/* ============================================================
   カードアクション（比較・お気に入り）
   ============================================================ */
.car-card-actions {
    display: flex;
    gap: 6px;
    padding: 9px 14px 11px;
    border-top: 1px solid var(--line-light);
    background: #f9f9f9;
    flex-wrap: wrap;
}

.card-action-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11.5px;
    cursor: pointer;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    font-weight: 600;
    letter-spacing: .01em;
}

.card-action-btn:hover {
    background: var(--bg);
    color: var(--text);
    border-color: #bbb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .07);
}

.card-action-btn-active {
    background: var(--red-light);
    border-color: rgba(204, 0, 0, .3);
    color: var(--red);
}

.card-action-btn-active:hover {
    background: #ffe8e8;
}

.card-action-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

/* お気に入りボタン固有スタイル */
.fav-btn:not(.card-action-btn-active):hover {
    background: #fff8f8;
    color: #d44;
    border-color: rgba(204, 0, 0, .2);
    box-shadow: 0 2px 8px rgba(204, 0, 0, .1);
}

.fav-icon {
    flex-shrink: 0;
}

@keyframes fav-pop {
    0% {
        transform: scale(1);
    }

    35% {
        transform: scale(1.6);
    }

    65% {
        transform: scale(0.85);
    }

    100% {
        transform: scale(1);
    }
}

.fav-pop {
    animation: fav-pop 0.35s cubic-bezier(.36, .07, .19, .97) both;
}

/* ============================================================
   比較フローティングバー
   ============================================================ */
.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    z-index: 100;
    padding: 10px 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .3);
}

.compare-bar-inner {
    width: min(1200px, 96vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.compare-bar-label {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.compare-bar-items {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.compare-bar-item {
    background: rgba(255, 255, 255, .15);
    border-radius: 2px;
    padding: 4px 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.compare-bar-remove {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0;
}

.compare-bar-clear {
    background: none;
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    padding: 5px 12px;
    border-radius: 2px;
    font-size: 12px;
    cursor: pointer;
}

/* 比較テーブル */
.compare-table-wrapper {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.compare-table th {
    background: var(--red);
    color: #fff;
    padding: 10px 14px;
    font-size: 13px;
    text-align: left;
}

.compare-table .compare-label-col {
    width: 110px;
    background: #f8f8f8;
    color: var(--text);
}

.compare-table td {
    padding: 9px 14px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    vertical-align: middle;
}

.compare-table .compare-label {
    background: #f8f8f8;
    font-weight: 700;
    font-size: 12px;
    color: var(--muted);
}

.compare-table tr:hover td {
    background: var(--red-light);
}

/* ============================================================
   ナビゲーション（スマホ対応）
   ============================================================ */
.site-header-nav {
    display: none;
}

/* 旧クラス非表示化 */

@media (max-width: 768px) {
    .site-utility-bar {
        display: none;
    }

    .site-header-inner {
        padding: 10px 0;
    }

    .site-logo-name {
        font-size: 1.2rem;
    }

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

    .site-nav-inner a {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .site-nav-inner.open a {
        display: flex;
        flex-direction: column;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .site-nav-inner.open {
        flex-direction: column;
        height: auto;
    }

    .hero {
        padding: 32px 0 28px;
    }

    .hero-stats {
        gap: 0;
        padding: 7px 16px;
    }

    .hero-stat {
        padding: 0 12px;
    }

    .hero-stat-val {
        font-size: 18px;
    }

    .hero-search-form {
        grid-template-columns: 1fr 1fr;
    }

    .hero-search-form>*:last-child {
        grid-column: 1 / -1;
    }

    .home-hero-slides {
        height: 640px;
    }

    .filter-form {
        grid-template-columns: 1fr 1fr;
    }

    .inventory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-image {
        min-height: 220px;
        border-right: none;
    }

    .detail-content {
        padding: 16px;
    }

    .detail-description {
        padding: 16px;
    }

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

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

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

    .hero-search-form {
        grid-template-columns: 1fr;
    }

    .hero-search-overlay .hero-search-form {
        grid-template-columns: 1fr 1fr;
    }

    .filter-form {
        grid-template-columns: 1fr;
    }

    .home-hero-slides {
        height: 640px;
    }
}

/* パンくず */
.breadcrumb {
    padding: 10px 0;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--red);
    text-decoration: none;
}

.breadcrumb span+span::before {
    content: " › ";
    color: #bbb;
}

/* ============================================================
   ホームページ専用スタイル
   ============================================================ */

/* ============================================================
   新ヒーロー（カーセンサー風 明るい左右分割）
   ============================================================ */
.home-hero-v2 {
    background:
        linear-gradient(120deg, rgba(255, 245, 245, .82) 0%, rgba(255, 255, 255, .42) 50%, rgba(240, 245, 255, .78) 100%),
        url('/images/hero-bg.jpg') center / cover no-repeat;
    padding: 48px 0 52px;
    border-bottom: 1px solid #ece8e8;
    position: relative;
    overflow: hidden;
}

.home-hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cc0000 0%, #E8650A 100%);
}

.home-hero-v2::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 0, 0, .04) 0%, transparent 70%);
    pointer-events: none;
}

.home-hero-v2-inner {
    display: grid;
    grid-template-columns: 1fr 280px 380px;
    gap: 32px;
    align-items: center;
}

/* 車画像カラム */
.home-hero-v2-car {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
    position: relative;
    min-height: 260px;
}

.home-hero-v2-car-img {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .18));
    animation: heroCarIn .6s ease both;
    animation-delay: .2s;
}

@keyframes heroCarIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 左カラム */
.home-hero-v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    color: var(--red);
    text-transform: uppercase;
    margin: 0 0 16px;
}

.home-hero-v2-title {
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text);
    margin: 0 0 14px;
    letter-spacing: -.02em;
}

.home-hero-v2-title span {
    color: var(--red);
}

.home-hero-v2-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 28px;
}

.home-hero-v2-count {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #f0d8d8;
    border-left: 4px solid var(--red);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(204, 0, 0, .07);
    display: inline-flex;
    flex-direction: column;
}

.home-hero-v2-count-inner {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.home-hero-v2-count-num {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    letter-spacing: -.04em;
}

.home-hero-v2-count-unit {
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
}

.home-hero-v2-count-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    margin: 0;
    letter-spacing: .04em;
}

.home-hero-v2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    color: var(--text);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.hero-tag:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-light);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(204, 0, 0, .15);
}

.hero-tag-new {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-light);
}

.hero-tag-new:hover {
    border-color: var(--orange);
    color: #fff;
    background: var(--orange);
}

.home-hero-v2-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* 右カラム: 検索カード */
.home-hero-search-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .13), 0 2px 8px rgba(0, 0, 0, .06);
    overflow: hidden;
    border: 1px solid #f0e0e0;
}

.home-hero-search-card-head {
    background: linear-gradient(135deg, #d40010 0%, #cc0000 60%, #c40000 100%);
    color: #fff;
    padding: 20px 28px;
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: .06em;
}

.search-card-count {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    letter-spacing: .02em;
}

.home-hero-search-card-body {
    padding: 28px 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-hero-search-card-body form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-form-field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .06em;
    display: block;
    margin: 0;
    height: auto;
    min-height: auto;
}

.hero-form-field select {
    width: 100%;
    height: 50px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 14px;
    color: var(--text);
    background: #fafafa;
    transition: border-color .18s, box-shadow .18s, background .18s;
    appearance: auto;
}

.hero-form-field select:hover {
    border-color: #bbb;
    background: #fff;
}

.hero-form-field select:focus {
    outline: none;
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(204, 0, 0, .10);
}

.hero-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-search-submit {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #e60010 0%, #cc0000 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    letter-spacing: .05em;
    box-shadow: 0 4px 16px rgba(204, 0, 0, .4);
    transition: filter .15s, transform .15s, box-shadow .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 2px;
}

.hero-search-submit:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(204, 0, 0, .45);
}

.hero-search-submit:active {
    transform: translateY(0);
}

.hero-search-shortcuts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
    border-top: 1px solid var(--line-light);
    padding-top: 14px;
    margin-top: 0;
}

.hero-search-shortcuts span {
    font-weight: 600;
}

.hero-search-shortcuts a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    padding: 2px 8px;
    background: var(--blue-light);
    border-radius: 10px;
    transition: background .15s;
}

.hero-search-shortcuts a:hover {
    background: #c8dff7;
    text-decoration: none;
}

/* レスポンシブ */
@media (max-width: 960px) {
    .home-hero-v2-inner {
        grid-template-columns: 1fr 380px;
        gap: 28px;
    }

    .home-hero-v2-car {
        display: none;
    }

    .home-hero-search-card {
        max-width: 380px;
    }
}

@media (max-width: 720px) {
    .home-hero-v2-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-hero-search-card {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .home-hero-v2 {
        padding: 32px 0 36px;
    }

    .home-hero-v2-title {
        font-size: 1.8rem;
    }

    .hero-form-row {
        grid-template-columns: 1fr;
    }
}

/* ヒーロースライダー（旧） */
.home-hero {
    position: relative;
    overflow: hidden;
}

.home-hero-slides {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    color: #fff;
    padding: 80px 0 48px;
}

.home-hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 600px;
    animation: heroContentIn .55s ease both;
    animation-delay: .28s;
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-hero-title {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
    letter-spacing: -.01em;
}

.home-hero-title span {
    color: #FFD600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.home-hero-sub {
    margin: 0 0 28px;
    font-size: 15px;
    color: rgba(255, 255, 255, .88);
    letter-spacing: .06em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}

.home-hero-btns {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 46px;
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, .7);
    border-radius: 3px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background .15s, border-color .15s;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, .15);
    text-decoration: none;
    color: #fff;
    border-color: #fff;
}

/* プログレスバー（検索オーバーレイ最上部） */
.home-hero-progress {
    height: 3px;
    background: rgba(255, 255, 255, .12);
}

.home-hero-progress-bar {
    height: 100%;
    background: var(--red);
    transition: width .1s linear;
    border-radius: 0 2px 2px 0;
}

/* 検索 & コントロール オーバーレイ */
.hero-search-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 3px solid var(--red);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .12);
}

.hero-search-panel {
    padding: 14px 0 18px;
}

.hero-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 12px;
}

.hero-search-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.hero-search-overlay .hero-search-title {
    color: var(--text);
    border-bottom: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 900;
}

.hero-search-overlay .hero-search-title::before {
    display: none;
}

.hero-search-overlay .hero-search-title span {
    color: var(--muted);
    font-weight: 400;
    font-size: 11px;
}

.hero-search-overlay .hero-search-field label {
    color: var(--muted);
}

.hero-search-overlay .hero-search-field select,
.hero-search-overlay .hero-search-field input {
    background: #fff;
    border-color: var(--line);
    color: var(--text);
}

.hero-search-overlay .hero-search-field select:focus,
.hero-search-overlay .hero-search-field input:focus {
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(204, 0, 0, .1);
    outline: none;
}

.hero-search-overlay .hero-dot {
    background: rgba(0, 0, 0, .2);
}

.hero-search-overlay .hero-dot.dot-active {
    background: var(--red);
    width: 24px;
}

.hero-search-overlay .hero-dot:hover:not(.dot-active) {
    background: rgba(0, 0, 0, .4);
}

.hero-search-overlay .home-hero-counter {
    color: var(--muted);
}

.hero-search-overlay .home-hero-counter strong {
    color: var(--text);
}

/* Prev / Next 矢印 */
.home-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(0, 0, 0, .28);
    border: 1.5px solid rgba(255, 255, 255, .3);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, border-color .15s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    min-height: unset;
    padding: 0;
}

.home-hero-nav:hover {
    background: rgba(0, 0, 0, .52);
    border-color: rgba(255, 255, 255, .65);
}

.home-hero-prev {
    left: 16px;
}

.home-hero-next {
    right: 16px;
}

/* ドット + カウンター */
.home-hero-controls {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 20;
    white-space: nowrap;
}

.home-hero-dots {
    display: flex;
    gap: 6px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    border: none;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    padding: 0;
    transition: background .2s, width .25s ease;
    min-height: unset;
}

.hero-dot.dot-active {
    background: #fff;
    width: 24px;
}

.hero-dot:hover:not(.dot-active) {
    background: rgba(255, 255, 255, .7);
}

.home-hero-counter {
    font-size: 11px;
    color: rgba(255, 255, 255, .65);
    font-weight: 600;
    letter-spacing: .1em;
    font-variant-numeric: tabular-nums;
}

.home-hero-counter strong {
    color: #fff;
    font-weight: 700;
}

/* ============================================================
   在庫カウンターバナー
   ============================================================ */
.home-count-banner {
    background: linear-gradient(135deg, #CC0000 0%, #a30000 100%);
    color: #fff;
    padding: 20px 0;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .15);
}

.home-count-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.home-count-left {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.home-count-label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
}

.home-count-num {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.02em;
}

.home-count-unit {
    font-size: 16px;
    font-weight: 700;
}

.home-count-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.home-count-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s;
}

.home-count-link:hover {
    background: rgba(255, 255, 255, .15);
    text-decoration: none;
    color: #fff;
}

/* ============================================================
   ボディタイプグリッド
   ============================================================ */
.body-type-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.body-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 18px 8px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: box-shadow .2s, border-color .2s, transform .15s;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.body-type-card:hover {
    box-shadow: 0 4px 16px rgba(204, 0, 0, .15);
    border-color: var(--red);
    text-decoration: none;
    color: var(--red);
    transform: translateY(-2px);
}

.body-type-card-all {
    border-color: var(--red);
    background: var(--red-light);
    color: var(--red);
}

.body-type-icon {
    font-size: 30px;
    line-height: 1;
}

.body-type-name {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .01em;
}

.body-type-count {
    font-size: 12px;
    color: var(--red);
    font-weight: 700;
}

/* ============================================================
   メーカーリンク
   ============================================================ */
.make-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.make-link-btn {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
    box-shadow: var(--shadow-sm);
}

.make-link-btn:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-light);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(204, 0, 0, .15);
}

/* ============================================================
   選ばれる理由 ポイントカード
   ============================================================ */
.point-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.point-card {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--red);
    border-radius: 6px;
    padding: 26px 18px 22px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .15s;
}

.point-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.point-num {
    position: absolute;
    top: -1px;
    right: 12px;
    font-size: 11px;
    font-weight: 900;
    color: #fff;
    background: var(--red);
    padding: 2px 8px;
    border-radius: 0 0 4px 4px;
    letter-spacing: .08em;
}

.point-icon {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1;
}

.point-title {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.3;
}

.point-body {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================================
   ランキング
   ============================================================ */
.ranking-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.ranking-tab {
    min-height: unset;
    height: 34px;
    padding: 0 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 3px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}

.ranking-tab:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-light);
}

.ranking-tab-active {
    background: var(--red) !important;
    color: #fff !important;
    border-color: var(--red) !important;
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.ranking-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 10px;
    text-decoration: none;
    color: var(--text);
    transition: box-shadow .2s;
    position: relative;
}

.ranking-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    text-decoration: none;
}

.ranking-num {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--muted);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.ranking-num-1 {
    background: #d4af37;
}

.ranking-num-2 {
    background: #aaa;
}

.ranking-num-3 {
    background: #c87533;
}

.ranking-num-other {
    background: var(--muted);
}

.ranking-img {
    width: 80px;
    height: 60px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eee;
    margin-left: 4px;
}

.ranking-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ranking-body {
    flex: 1;
    min-width: 0;
}

.ranking-name {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ranking-price {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 900;
    color: var(--red);
}

.ranking-spec {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
}

/* ============================================================
   おすすめ特集
   ============================================================ */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.special-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}

.special-block-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px 12px;
    border-bottom: 2px solid var(--red);
    background: var(--red-light);
}

.special-block-title {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    color: var(--text);
}

.special-block-more {
    font-size: 12px;
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
}

.special-block-more:hover {
    text-decoration: underline;
}

.special-cars {
    display: flex;
    flex-direction: column;
}

.special-car-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--text);
    transition: background .15s;
}

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

.special-car-item:hover {
    background: var(--bg);
    text-decoration: none;
}

.special-car-img {
    width: 72px;
    height: 54px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eee;
}

.special-car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.special-car-body {
    flex: 1;
    min-width: 0;
}

.special-car-name {
    margin: 0 0 2px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.special-car-price {
    margin: 0 0 2px;
    font-size: 14px;
    font-weight: 900;
    color: var(--red);
}

.special-car-spec {
    margin: 0;
    font-size: 11px;
    color: var(--muted);
}

/* ============================================================
   お知らせ
   ============================================================ */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px dotted var(--line);
    font-size: 15px;
}

.news-item:first-child {
    border-top: 1px dotted var(--line);
}

.news-date {
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
    min-width: 80px;
}

.news-cat {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.news-cat-info {
    background: #e3f2fd;
    color: #1565c0;
}

.news-cat-event {
    background: #fce4ec;
    color: #c62828;
}

.news-item a {
    color: var(--text);
    text-decoration: none;
}

.news-item a:hover {
    color: var(--red);
    text-decoration: underline;
}

/* ============================================================
   店舗情報テーブル
   ============================================================ */
.store-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.store-table tr {
    border-bottom: 1px solid var(--line);
}

.store-table th {
    padding: 8px 12px 8px 0;
    text-align: left;
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
    width: 72px;
    vertical-align: top;
}

.store-table td {
    padding: 8px 0;
    color: var(--text);
    line-height: 1.6;
}

/* ============================================================
   オーナーズボイス
   ============================================================ */
.owners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.owner-card {
    background: #fff;
    border: 1px solid var(--line-light);
    border-radius: 14px;
    overflow: hidden;
    padding: 24px 22px;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    transition: box-shadow .2s, transform .2s;
}

.owner-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
    transform: translateY(-3px);
}

.owner-car-img {
    width: 100%;
    height: 140px;
    background: #f0f0f0;
    overflow: hidden;
}

.owner-car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.owner-body {
    padding: 16px;
}

.owner-car {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
}

.owner-comment {
    margin: 0 0 16px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.85;
}

.owner-name {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    font-weight: 700;
}

/* ============================================================
   CTAバナー
   ============================================================ */
.home-cta-banner {
    background:
        linear-gradient(120deg, rgba(180, 0, 0, .92) 0%, rgba(220, 60, 10, .88) 100%),
        url('/images/buy-cta-bg.jpg') center / cover no-repeat;
    padding: 36px 0;
    color: #fff;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .15);
}

.home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.home-cta-title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
}

.home-cta-sub {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
}

.home-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================================
   ホームページ レスポンシブ
   ============================================================ */
@media (max-width: 960px) {
    .body-type-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .point-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ranking-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .owners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .home-hero-slides {
        height: 600px;
    }

    .home-hero-slide {
        padding: 48px 0 0;
    }

    .home-hero-nav {
        display: none;
    }

    .hero-search-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .body-type-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

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

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

    .home-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .home-count-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   買取査定ページ専用スタイル（CV最適化版）
   ============================================================ */

/* ======== ヒーロー ======== */
.buy-hero {
    background:
        linear-gradient(155deg, rgba(5,10,22,.93) 0%, rgba(10,18,38,.85) 45%, rgba(5,10,22,.95) 100%),
        url('/images/buy-hero-bg.jpg') center / cover no-repeat;
    color: #fff;
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}

.buy-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px,
        rgba(255,255,255,.010) 40px, rgba(255,255,255,.010) 80px);
}

/* 左上に赤いアクセントグロー */
.buy-hero::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180,0,0,.25) 0%, transparent 70%);
    pointer-events: none;
}

.buy-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 52px;
    align-items: center;
}

/* ── 左テキスト ── */
.buy-hero-text {}

.buy-hero-title {
    margin: 10px 0 12px;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -.01em;
}

.buy-hero-title span {
    color: #ffd700;
    display: block;
    font-size: 1.15em;
}

.buy-hero-sub {
    margin: 0 0 24px;
    font-size: 17px;
    color: rgba(255,255,255,.78);
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.7;
}

/* 4つの安心グリッド */
.buy-hero-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    margin: 0 0 24px;
}

.buy-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255,255,255,.9);
    font-weight: 500;
}

.buy-hero-trust-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffd700;
    color: #1a1a1a;
    flex-shrink: 0;
    font-size: 11px;
}

.buy-hero-trust-item strong {
    color: #ffd700;
}

/* 電話番号 */
.buy-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    padding: 10px 18px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 20px;
    transition: background .15s;
    backdrop-filter: blur(4px);
}

.buy-hero-phone:hover {
    background: rgba(255,255,255,.16);
    text-decoration: none;
    color: #fff;
}

.buy-hero-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(180,0,0,.4);
}

.buy-hero-phone-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.buy-hero-phone-label {
    font-size: 12px;
    color: rgba(255,255,255,.7);
    letter-spacing: .06em;
}

.buy-hero-phone-num {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: .02em;
}

.buy-hero-phone-hours {
    font-size: 11px;
    color: rgba(255,255,255,.65);
}

/* 実績数字 */
.buy-hero-nums {
    display: flex;
    align-items: center;
    gap: 0;
}

.buy-hero-num-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0 20px 0 0;
    text-align: center;
}

.buy-hero-num-item:first-child { padding-left: 0; }

.buy-hero-num-item strong {
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 900;
    color: #ffd700;
    line-height: 1;
}

.buy-hero-num-item em {
    font-style: normal;
    font-size: .65em;
}

.buy-hero-num-item > span {
    font-size: 13px;
    color: rgba(255,255,255,.65);
}

.buy-hero-num-div {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
    margin: 0 20px 0 0;
}

/* ── 右フォームカード ── */
.buy-hero-form-wrap { }

.buy-hero-form-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(0,0,0,.36), 0 4px 16px rgba(0,0,0,.18);
    overflow: hidden;
}

/* カードヘッダー */
.buy-mini-header {
    background: var(--red);
    padding: 16px 20px 14px;
}

.buy-mini-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: .03em;
}

/* ステップインジケーター */
.buy-mini-steps {
    display: flex;
    align-items: center;
    gap: 0;
}

.buy-mini-step {
    display: flex;
    align-items: center;
    gap: 7px;
}

.buy-mini-step-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}

.buy-mini-step.is-active .buy-mini-step-dot {
    background: #fff;
    color: var(--red);
}

.buy-mini-step.is-active .buy-mini-step-dot.is-done {
    background: #4ade80;
    color: #fff;
}

.buy-mini-step-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.65);
    transition: color .2s;
}

.buy-mini-step.is-active .buy-mini-step-label {
    color: #fff;
}

.buy-mini-step-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,.25);
    margin: 0 10px;
    transition: background .2s;
    min-width: 24px;
}

.buy-mini-step-line.is-done {
    background: #4ade80;
}

/* エラー */
.buy-mini-errors {
    background: #fef2f2;
    border-bottom: 1px solid #fecaca;
    padding: 10px 18px;
}

.buy-mini-errors p {
    font-size: 12px;
    font-weight: 700;
    color: #dc2626;
    margin: 0 0 4px;
}

.buy-mini-errors ul {
    margin: 0;
    padding-left: 16px;
}

.buy-mini-errors li {
    font-size: 11px;
    color: #dc2626;
}

/* フォーム本体 */
.buy-mini-body {
    padding: 18px 20px 4px;
}

.buy-mini-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.buy-mini-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.buy-mini-field--full {
    grid-column: 1 / -1;
    margin-bottom: 10px;
}

.buy-mini-field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 2px;
}

.buy-mini-field .required {
    display: inline;
    color: var(--red);
    font-size: 12px;
    line-height: 1;
}

.buy-mini-field input,
.buy-mini-field select {
    height: 42px;
    padding: 0 12px;
    border: 1.5px solid var(--line);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text);
    background: #fff;
    font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
}

.buy-mini-field input:focus,
.buy-mini-field select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(180,0,0,.1);
    outline: none;
}

.buy-mini-field input.is-error,
.buy-mini-field select.is-error {
    border-color: #dc2626;
}

.buy-mini-note {
    font-size: 12px;
    color: var(--muted);
    margin: -4px 0 12px;
    text-align: center;
}

/* 次へボタン */
.buy-mini-next-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    margin: 4px 0 18px;
    transition: opacity .15s, transform .1s, box-shadow .15s;
    box-shadow: 0 4px 16px rgba(180,0,0,.4);
    font-family: inherit;
    letter-spacing: .02em;
}

.buy-mini-next-btn:hover {
    background: #a80000;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(180,0,0,.45);
}

/* 戻るボタン */
.buy-mini-back-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    margin-bottom: 14px;
    font-family: inherit;
    transition: color .15s;
}

.buy-mini-back-btn:hover { color: var(--text); }

/* 送信ボタン */
.buy-mini-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    margin: 6px 0 4px;
    transition: opacity .15s, transform .1s, box-shadow .15s;
    box-shadow: 0 4px 18px rgba(180,0,0,.45);
    font-family: inherit;
    letter-spacing: .02em;
}

.buy-mini-submit-btn:hover {
    background: #a80000;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(180,0,0,.5);
}

.buy-mini-submit-note {
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    margin: 6px 0 16px;
}

/* カードフッター */
.buy-mini-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
    padding: 12px 20px 16px;
    border-top: 1px solid var(--line-light);
    background: #fafafa;
}

/* ======== 緊急性ストリップ ======== */
.buy-urgency-strip {
    background: linear-gradient(90deg, #5a0000 0%, #b00000 30%, #cc2200 50%, #b00000 70%, #5a0000 100%);
    padding: 12px 0;
    box-shadow: 0 2px 12px rgba(180,0,0,.3);
}

.buy-urgency-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 15px;
    color: rgba(255,255,255,.95);
    text-align: center;
    font-weight: 500;
}

.buy-urgency-icon {
    font-size: 15px;
}

.buy-urgency-inner strong {
    color: #ffd700;
}

.buy-urgency-btn {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 18px;
    background: #fff;
    color: var(--red);
    border-radius: 17px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .15s;
    flex-shrink: 0;
}

.buy-urgency-btn:hover {
    opacity: .85;
    text-decoration: none;
    color: var(--red);
}

/* ======== セクション共通 ======== */

.buy-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    color: #fff;
    background: linear-gradient(90deg, var(--red) 0%, #d44000 100%);
    padding: 5px 18px;
    border-radius: 3px;
    margin: 0 0 16px;
    box-shadow: 0 3px 10px rgba(180,0,0,.3);
    text-transform: uppercase;
    position: relative;
}

/* 右下の折り返し風アクセント */
.buy-section-eyebrow::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 5px solid #d44000;
}

.buy-any-section .buy-section-eyebrow {
    background: linear-gradient(90deg, #9a7000 0%, #c8960a 100%);
    box-shadow: 0 3px 10px rgba(160,110,0,.4);
}
.buy-any-section .buy-section-eyebrow::after {
    border-top-color: #9a7000;
}

.buy-section-title {
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: 900;
    color: var(--text);
    margin: 0 0 0;
    line-height: 1.25;
    letter-spacing: -.01em;
    padding-bottom: 20px;
    position: relative;
}

/* 日本語サイト定番：2色アンダーライン装飾 */
.buy-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, #ff6a00 100%);
    border-radius: 2px;
}

.buy-any-section .buy-section-title::after {
    background: linear-gradient(90deg, #ffd700 0%, #ffb700 100%);
}

.buy-section-title em {
    font-style: normal;
    color: var(--red);
}

.buy-section-sub {
    font-size: 16px;
    color: var(--muted);
    margin: 0;
    line-height: 1.85;
    margin-top: 18px;
}

.buy-section-head {
    text-align: center;
    margin-bottom: 52px;
}

/* ======== 強みカード ======== */
.buy-strengths {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.buy-strength-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--line-light);
    border-radius: 16px;
    padding: 28px 28px 24px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    transition: box-shadow .25s, transform .25s;
    position: relative;
    overflow: hidden;
}

.buy-strength-card:hover {
    box-shadow: 0 10px 32px rgba(0,0,0,.12);
    transform: translateY(-3px);
}

.buy-strength-num {
    position: absolute;
    bottom: -10px;
    right: 14px;
    font-size: 96px;
    font-weight: 900;
    color: rgba(0,0,0,.045);
    letter-spacing: -.04em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.buy-strength-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    flex-shrink: 0;
}

.buy-strength-icon-wrap--gold {
    background: linear-gradient(135deg, #fff8e1, #fff3c4);
    color: #b45309;
    box-shadow: 0 4px 12px rgba(180,83,9,.15);
}

.buy-strength-icon-wrap--blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(29,78,216,.15);
}

.buy-strength-icon-wrap--green {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #15803d;
    box-shadow: 0 4px 12px rgba(21,128,61,.12);
}

.buy-strength-body { flex: 1; }

.buy-strength-body h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 900;
    color: var(--text);
}

.buy-strength-body p {
    margin: 0;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.9;
}

/* カード上部の色帯 */
.buy-strength-card:nth-child(1) { border-top: 5px solid #b8860b; }
.buy-strength-card:nth-child(2) { border-top: 5px solid #1d4ed8; }
.buy-strength-card:nth-child(3) { border-top: 5px solid #15803d; }

/* ======== どんな車でも ======== */
.buy-any-section {
    background: linear-gradient(160deg, #0f1c3a 0%, #1a2e50 100%);
}

.buy-any-section .buy-section-eyebrow { color: #ffd700; }
.buy-any-section .buy-section-title { color: #fff; }
.buy-any-section .buy-section-title em { color: #ffd700; }
.buy-any-section .buy-section-sub { color: rgba(255,255,255,.65); }

.buy-any-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
}

.buy-any-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    padding: 18px 20px;
    color: rgba(255,255,255,.95);
    font-size: 15px;
    font-weight: 700;
    transition: background .15s;
}

.buy-any-item:hover {
    background: rgba(255,255,255,.16);
}

.buy-any-icon { font-size: 26px; flex-shrink: 0; }

.buy-any-note {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,.5);
    margin: 24px 0 0;
}

/* ======== 売却の流れ ======== */
.buy-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.buy-steps::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(180deg, var(--red) 0%, #e5e7eb 100%);
}

.buy-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    position: relative;
}

.buy-step + .buy-step {
    border-top: 1px dashed var(--line-light);
}

.buy-step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red) 0%, #c53030 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(180,0,0,.45);
    position: relative;
    z-index: 1;
    font-size: 20px;
}

.buy-step-circle--final {
    background: linear-gradient(135deg, #15803d, #16a34a);
    box-shadow: 0 4px 12px rgba(21,128,61,.3);
}

.buy-step-body { flex: 1; padding-top: 6px; }

.buy-step-num {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--red);
    margin-bottom: 5px;
}

.buy-step-title {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 900;
    color: var(--text);
}

.buy-step-desc {
    margin: 0;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
}

/* ======== フォーム ======== */
.buy-form-wrap { max-width: 760px; margin: 0 auto; }

.buy-form-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
}

.buy-form-assurance-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    font-size: 14px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 20px;
}

.buy-form-card {
    background: #fff;
    border: 1px solid var(--line-light);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.05);
    overflow: hidden;
}

.buy-form-section {
    padding: 28px 28px 4px;
}

.buy-form-section + .buy-form-section {
    border-top: 1px solid var(--line-light);
}

.buy-form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 22px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--red);
}

/* 車両状態選択 */
.buy-condition-btns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.buy-condition-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    border: 2px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color .15s, background .15s, box-shadow .15s;
    text-align: center;
}

.buy-condition-label:hover {
    border-color: var(--red);
    background: var(--red-light);
}

.buy-condition-label.selected {
    border-color: var(--red);
    background: var(--red-light);
    box-shadow: 0 0 0 3px rgba(180,0,0,.1);
}

.buy-condition-label input[type="radio"] { display: none; }

.buy-condition-icon { font-size: 26px; line-height: 1; }

.buy-condition-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.buy-condition-text small {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
}

.buy-form-submit {
    padding: 24px 28px 28px;
    background: #fafafa;
    border-top: 1px solid var(--line-light);
    text-align: center;
}

.buy-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 58px;
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    transition: opacity .15s, transform .1s, box-shadow .15s;
    box-shadow: 0 6px 20px rgba(180,0,0,.4);
    letter-spacing: .02em;
    font-family: inherit;
}

.buy-submit-btn:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(180,0,0,.5);
}

.buy-form-note {
    margin: 10px 0 0;
    font-size: 14px;
    color: var(--muted);
    text-align: center;
}

/* ======== 買取実績 ======== */
.buy-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.buy-result-card {
    background: #fff;
    border: 1px solid var(--line-light);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    transition: box-shadow .25s, transform .25s;
}

.buy-result-card:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
    transform: translateY(-4px);
}

.buy-result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.buy-result-type {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    background: var(--blue-light);
    color: var(--blue);
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 4px;
    letter-spacing: .04em;
}

.buy-result-car {
    font-size: 17px;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 3px;
}

.buy-result-year {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

.buy-result-stars {
    display: flex;
    gap: 1px;
    flex-shrink: 0;
    margin-top: 2px;
}

.buy-result-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    background: linear-gradient(90deg, #fef2f2 0%, #fff5f5 100%);
    border-left: 4px solid var(--red);
    padding: 10px 14px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 12px;
}

.buy-result-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    white-space: nowrap;
}

.buy-result-price {
    font-size: 26px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.buy-result-price small { font-size: 12px; margin-left: 2px; }

.buy-result-comment {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    font-style: italic;
}

.buy-results-note {
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    margin: 20px 0 0;
}

/* ======== FAQ ======== */
.buy-faq-wrap { max-width: 720px; margin: 0 auto; }

.buy-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.buy-faq-item {
    border: 1px solid var(--line-light);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.buy-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.buy-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    transition: background .15s;
    min-height: unset;
    font-family: inherit;
    border-radius: 0;
}

.buy-faq-q:hover { background: var(--bg); }

.buy-faq-q-open {
    background: var(--red-light);
    color: var(--red);
}

.buy-faq-badge {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-faq-q-open .buy-faq-badge { background: var(--red-dark, #990000); }

.buy-faq-q span:nth-child(2) { flex: 1; }

.buy-faq-arrow {
    flex-shrink: 0;
    color: var(--muted);
    transition: transform .2s;
}

.buy-faq-arrow-open {
    transform: rotate(180deg);
    color: var(--red);
}

.buy-faq-a {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px 22px;
    background: #f8f9fb;
    border-top: 1px solid var(--line-light);
    font-size: 15px;
    color: var(--text);
    line-height: 1.9;
}

.buy-faq-a-badge {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green-light, #e6f4ea);
    color: var(--green, #1b7e3a);
    font-size: 15px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.buy-faq-a p { margin: 0; }

/* ======== 安心保証セクション ======== */
.buy-guarantee-section {
    background: linear-gradient(160deg, #f0f4ff 0%, #f8f9fb 60%, #fff5f5 100%);
}

.buy-guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.buy-guarantee-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid transparent;
    padding: 32px 20px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}

.buy-guarantee-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: .12;
    pointer-events: none;
}

.buy-guarantee-card:nth-child(1)::before { background: linear-gradient(135deg, #dc2626, transparent 70%); }
.buy-guarantee-card:nth-child(2)::before { background: linear-gradient(135deg, #1d4ed8, transparent 70%); }
.buy-guarantee-card:nth-child(3)::before { background: linear-gradient(135deg, #15803d, transparent 70%); }
.buy-guarantee-card:nth-child(4)::before { background: linear-gradient(135deg, #b45309, transparent 70%); }

.buy-guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,.13);
}

.buy-guarantee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.buy-guarantee-icon--red {
    background: linear-gradient(135deg, #fff5f5, #fee2e2);
    color: var(--red);
    box-shadow: 0 4px 16px rgba(180,0,0,.15);
}

.buy-guarantee-icon--blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1d4ed8;
    box-shadow: 0 4px 16px rgba(29,78,216,.15);
}

.buy-guarantee-icon--green {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #15803d;
    box-shadow: 0 4px 16px rgba(21,128,61,.15);
}

.buy-guarantee-icon--gold {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    color: #b45309;
    box-shadow: 0 4px 16px rgba(180,83,9,.15);
}

.buy-guarantee-card h3 {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.4;
}

.buy-guarantee-card p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.85;
}

/* カード上部の太いカラーバー */
.buy-guarantee-card:nth-child(1) { border-top: 5px solid #dc2626; }
.buy-guarantee-card:nth-child(2) { border-top: 5px solid #1d4ed8; }
.buy-guarantee-card:nth-child(3) { border-top: 5px solid #15803d; }
.buy-guarantee-card:nth-child(4) { border-top: 5px solid #b45309; }

/* ======== 買取実績 CTA ======== */
.buy-results-cta {
    text-align: center;
    margin-top: 28px;
}

.buy-results-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 50px;
    padding: 0 32px;
    background: var(--red);
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(180,0,0,.3);
    transition: background .15s, transform .1s, box-shadow .15s;
}

.buy-results-cta-btn:hover {
    background: #a80000;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(180,0,0,.4);
}

/* ======== 再CTA ======== */
.buy-bottom-cta {
    background:
        linear-gradient(135deg, rgba(180,0,0,.92) 0%, rgba(60,0,0,.97) 100%),
        url('/images/store-cta-bg.jpg') center / cover no-repeat;
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.buy-bottom-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,120,0,.15) 0%, transparent 70%);
    pointer-events: none;
}

.buy-bottom-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.buy-bottom-cta-text { flex: 1; min-width: 200px; }

.buy-bottom-cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    color: rgba(255,255,255,.6);
    margin: 0 0 6px;
    text-transform: uppercase;
}

.buy-bottom-cta-title {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px;
}

.buy-bottom-cta-sub {
    font-size: 15px;
    color: rgba(255,255,255,.8);
    margin: 0;
    line-height: 1.8;
}

.buy-bottom-cta-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.buy-bottom-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 56px;
    padding: 0 28px;
    background: #fff;
    color: var(--red);
    border-radius: 4px;
    font-weight: 900;
    font-size: 16px;
    text-decoration: none;
    transition: box-shadow .15s, transform .1s;
    box-shadow: 0 2px 12px rgba(0,0,0,.2);
    white-space: nowrap;
}

.buy-bottom-cta-main:hover {
    text-decoration: none;
    color: var(--red);
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    transform: translateY(-1px);
}

.buy-bottom-cta-tel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 56px;
    padding: 0 24px;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.55);
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: background .15s, border-color .15s;
    white-space: nowrap;
    letter-spacing: .03em;
}

.buy-bottom-cta-tel:hover {
    background: rgba(255,255,255,.25);
    border-color: #fff;
    text-decoration: none;
    color: #fff;
}

/* ======== スティッキーCTA（スマホ専用）======== */
.buy-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: #fff;
    border-top: 2px solid var(--line);
    box-shadow: 0 -4px 16px rgba(0,0,0,.12);
    gap: 0;
    transform: translateY(100%);
    transition: transform .25s ease;
}

.buy-sticky-cta.is-visible {
    transform: translateY(0);
}

.buy-sticky-cta-form {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 54px;
    background: var(--red);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: .02em;
    transition: background .15s;
}

.buy-sticky-cta-form:hover {
    background: #a80000;
    text-decoration: none;
    color: #fff;
}

.buy-sticky-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 90px;
    height: 54px;
    background: #1a1a2e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .15s;
}

.buy-sticky-cta-phone:hover {
    background: #2a2a3e;
    text-decoration: none;
    color: #fff;
}

/* ======== レスポンシブ ======== */
@media (max-width: 1100px) {
    .buy-hero-inner {
        grid-template-columns: 1fr 380px;
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .buy-hero-inner {
        grid-template-columns: 1fr;
    }

    .buy-hero-form-wrap {
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
    }

    .buy-hero-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .buy-strengths { gap: 12px; }

    .buy-any-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .buy-guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .buy-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .buy-steps::before { display: none; }

    .buy-bottom-cta-inner { flex-direction: column; }

    .buy-bottom-cta-btns { width: 100%; }

    .buy-sticky-cta { display: flex; }
}

@media (max-width: 640px) {
    .buy-hero {
        padding: 36px 0 36px;
    }

    .buy-hero-nums { justify-content: center; }

    .buy-hero-phone {
        width: 100%;
        justify-content: center;
    }

    .buy-urgency-inner { gap: 8px; font-size: 14px; }

    .buy-urgency-btn { font-size: 13px; padding: 0 12px; }

    .buy-any-grid { grid-template-columns: repeat(2, 1fr); }

    .buy-strength-card { flex-direction: column; gap: 14px; }

    .buy-guarantee-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .buy-results-grid { grid-template-columns: 1fr; }

    .buy-condition-btns { grid-template-columns: 1fr; }

    .buy-form-section { padding: 20px 16px 4px; }

    .buy-form-submit { padding: 20px 16px 24px; }

    .buy-bottom-cta-btns { flex-direction: column; }

    .buy-bottom-cta-main,
    .buy-bottom-cta-tel { width: 100%; justify-content: center; }

    .buy-mini-row2 { grid-template-columns: 1fr; }

    .buy-hero-trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px 10px;
    }
}


/* ============================================================
   日本式追加コンポーネント
   ============================================================ */

/* 安心バッジ・信頼性バナー */
.trust-bar {
    background: linear-gradient(90deg, #fff9f9 0%, #ffffff 50%, #fff9f9 100%);
    border-top: 1px solid #f0d0d0;
    border-bottom: 2px solid #f0d0d0;
    padding: 14px 0;
    box-shadow: 0 2px 8px rgba(204, 0, 0, .06);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.trust-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    border: 2px solid rgba(26, 124, 62, .15);
}

.trust-item-icon.trust-red {
    background: var(--red-light);
    color: var(--red);
    border-color: rgba(204, 0, 0, .15);
}

.trust-item-icon.trust-blue {
    background: var(--blue-light);
    color: var(--blue);
    border-color: rgba(0, 102, 204, .15);
}

.trust-divider {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, transparent, #e0d0d0, transparent);
}

/* 日本式スペシャル見出し */
.jp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.jp-section-label::before,
.jp-section-label::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--line);
}

/* 価格タグ - 万円表示 */
.price-man {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    color: var(--red);
    font-weight: 900;
}

.price-man-num {
    font-size: 22px;
}

.price-man-unit {
    font-size: 13px;
    font-weight: 700;
}

/* ランキング番号バッジ改善 */
.ranking-num-1 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #fff;
    box-shadow: 0 2px 4px rgba(255, 165, 0, .4);
}

.ranking-num-2 {
    background: linear-gradient(135deg, #C0C0C0, #999);
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}

.ranking-num-3 {
    background: linear-gradient(135deg, #CD7F32, #a05c20);
    color: #fff;
    box-shadow: 0 2px 4px rgba(160, 92, 32, .3);
}

/* 検索フィールド改善 */
.hero-search-field select,
.hero-search-field input {
    width: 100%;
    height: 46px;
    border: 1.5px solid var(--line);
    border-radius: 6px;
    padding: 0 14px;
    font-size: 14px;
    background: #fafafa;
    color: var(--text);
    font-family: inherit;
    transition: border-color .18s, box-shadow .18s, background .18s;
}

.hero-search-field select:hover,
.hero-search-field input:hover {
    border-color: #bbb;
    background: #fff;
}

.hero-search-field select:focus,
.hero-search-field input:focus {
    outline: none;
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(204, 0, 0, .10);
}

.hero-search-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 8px;
    letter-spacing: .04em;
}

/* 在庫ステータスバッジ */
.status-badge-available {
    background: var(--green-light);
    color: var(--green);
    border: 1px solid rgba(26, 124, 62, .2);
}

.status-badge-default {
    background: #f0f0f0;
    color: #888;
    border: 1px solid #ddd;
}

/* 詳細ページ価格 */
.detail-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 16px 0 20px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #fff5f5, #fff8f8);
    border-left: 4px solid var(--red);
    border-radius: 0 6px 6px 0;
    box-shadow: var(--shadow-sm);
}

/* 検索フィルターパネル改善 */
.filter-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--red);
    border-radius: 0 0 8px 8px;
    padding: 22px 28px 26px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

/* ページネーション改善 */
.pagination a:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(204, 0, 0, .25);
}

.pagination .active,
.pagination [aria-current] {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: 0 2px 6px rgba(204, 0, 0, .25);
}

/* 比較表ヘッダー改善 */
.compare-table th {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    padding: 10px 14px;
    font-size: 13px;
    text-align: left;
    font-weight: 700;
    letter-spacing: .02em;
}

/* スペックグリッド改善 */
.spec-label {
    background: linear-gradient(to right, #f8f8f8, #f4f4f4);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    padding: 9px 12px;
    width: 90px;
    flex-shrink: 0;
    border-right: 1px solid var(--line);
}

/* LINE シェアボタン */
.btn-share-line {
    background: linear-gradient(135deg, #06c755, #05a847);
    color: #fff;
    font-weight: 700;
    letter-spacing: .03em;
}

.btn-share-line:hover {
    background: linear-gradient(135deg, #05b04a, #048a3c);
}

/* お気に入りボタン */
.card-action-btn-active {
    background: var(--red-light);
    border-color: var(--red);
    color: var(--red);
}

/* スクロールバー（Webkit） */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* 選択テキスト */
::selection {
    background: rgba(204, 0, 0, .12);
    color: var(--text);
}

/* レスポンシブ追加 */
@media (max-width: 768px) {
    .trust-bar-inner {
        gap: 16px;
    }

    .trust-divider {
        display: none;
    }

    .body-type-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .body-type-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-item span {
        display: none;
    }
}

/* ============================================================
   店舗情報ページ専用スタイル
   ============================================================ */

/* ヒーロー */
.store-hero {
    background:
        linear-gradient(180deg, rgba(10, 18, 35, .80) 0%, rgba(18, 28, 52, .68) 55%, rgba(10, 18, 35, .86) 100%),
        url('/images/store-hero-bg.png') center / cover no-repeat;
    color: #fff;
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}

.store-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px,
            rgba(255, 255, 255, .012) 40px, rgba(255, 255, 255, .012) 80px);
}

.store-hero .container {
    position: relative;
    z-index: 1;
}

.store-hero .breadcrumb {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 16px;
}

.store-hero .breadcrumb a {
    color: rgba(255, 255, 255, .7);
}

.store-hero .breadcrumb a:hover {
    color: #fff;
}

.store-hero .breadcrumb span+span::before {
    color: rgba(255, 255, 255, .4);
}

.store-hero-content {
    padding-bottom: 8px;
}

.store-hero-title {
    margin: 8px 0 8px;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.store-hero-sub {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    letter-spacing: .04em;
}

.store-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    flex-wrap: wrap;
}

.store-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 24px 0 0;
}

.store-hero-stat strong {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.01em;
    line-height: 1.2;
}

.store-hero-stat span {
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .04em;
}

.store-hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, .2);
    margin: 0 24px 0 0;
    flex-shrink: 0;
    align-self: center;
}

/* クイック情報バー */
.store-quick-bar {
    background: #fff;
    border-bottom: 2px solid var(--line-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.store-quick-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 14px 0;
}

.store-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
    padding: 4px 24px 4px 8px;
}

.store-quick-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.store-quick-label {
    font-size: 11px;
    color: var(--muted);
    margin: 0 0 2px;
    font-weight: 600;
    letter-spacing: .03em;
}

.store-quick-tel {
    font-size: 20px;
    font-weight: 900;
    color: var(--red);
    text-decoration: none;
    letter-spacing: .02em;
}

.store-quick-tel:hover {
    text-decoration: underline;
}

.store-quick-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.store-holiday-badge {
    display: inline-block;
    background: #fff3e0;
    color: #e65100;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 8px;
    border-radius: 10px;
    border: 1px solid #ffcc80;
}

.store-quick-divider {
    width: 1px;
    height: 40px;
    background: var(--line);
    flex-shrink: 0;
    margin: 0 4px;
}

/* メインレイアウト */
.store-main-wrap {
    padding-top: 32px;
    padding-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* カード共通 */
.store-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px 28px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    transition: box-shadow .2s;
}

.store-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .09), 0 1px 3px rgba(0, 0, 0, .06);
}

.store-card-light {
    background: linear-gradient(160deg, #fafafa 0%, #f4f4f5 100%);
    border-color: var(--line-light);
}

.store-card-title {
    font-size: 17px;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -.01em;
}

.store-card-title-icon {
    font-size: 18px;
}

.store-card-title-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--red);
    color: #fff;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(180, 0, 0, .25);
}

/* 2カラムグリッド */
.store-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* 店舗情報テーブル */
.store-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.store-info-table tr {
    border-bottom: 1px solid var(--line-light);
}

.store-info-table tr:last-child {
    border-bottom: none;
}

.store-info-table th {
    padding: 10px 16px 10px 0;
    width: 6em;
    color: var(--muted);
    font-weight: 700;
    vertical-align: top;
    white-space: nowrap;
    font-size: 12px;
}

.store-info-table td {
    padding: 10px 0;
    color: var(--text);
    line-height: 1.7;
}

.store-tel-link {
    font-size: 18px;
    font-weight: 900;
    color: var(--red);
    text-decoration: none;
}

.store-tel-link:hover {
    text-decoration: underline;
}

.store-info-note {
    font-size: 11px;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}

.store-map-link,
.store-link {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
}

.store-map-link:hover,
.store-link:hover {
    text-decoration: underline;
}

/* 営業時間カレンダー */
.store-hours-calendar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.hours-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 4px 8px;
    background: var(--bg);
    border: 1px solid var(--line-light);
    border-radius: 6px;
    text-align: center;
    position: relative;
    transition: box-shadow .15s;
}

.hours-day-today {
    background: var(--red-light);
    border-color: var(--red);
    box-shadow: 0 0 0 1px var(--red);
}

.hours-day-closed {
    background: #f0f0f0;
    opacity: .75;
}

.hours-day-label {
    font-size: 15px;
    font-weight: 900;
    color: var(--text);
}

.hours-today-badge {
    font-size: 9px;
    background: var(--red);
    color: #fff;
    padding: 1px 5px;
    border-radius: 8px;
    font-weight: 700;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.hours-time {
    font-size: 10px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    text-align: center;
}

.hours-time-closed {
    color: #999;
    font-size: 11px;
}

.store-hours-note {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
    background: #fffbf0;
    border: 1px solid #ffe082;
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
}

.store-hours-note-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: #78520a;
    line-height: 1.5;
}

/* 地図 */
#map {
    scroll-margin-top: 80px;
}

.store-map-wrap {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--line);
    margin-bottom: 12px;
}

.store-map-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.store-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .15s, box-shadow .15s;
    box-shadow: var(--shadow-sm);
}

.store-map-btn:hover {
    opacity: .88;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.store-map-btn-google {
    background: #fff;
    border: 1px solid var(--line);
    color: #3c4043;
}

.store-map-btn-apple {
    background: #fff;
    border: 1px solid var(--line);
    color: #1d1d1f;
}

/* アクセス方法 */
.store-access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.store-access-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--line-light);
    border-radius: 10px;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}

.store-access-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
    border-color: var(--red);
}

.store-access-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    margin-top: 2px;
}

.store-access-car {
    background: #fff3e0;
}

.store-access-train {
    background: #e3f2fd;
}

.store-access-bus {
    background: #e8f5e9;
}

.store-access-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 6px;
}

.store-access-text {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

.store-access-text strong {
    color: var(--text);
}

/* スタッフ */
.store-staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.store-staff-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px 20px;
    background: #fff;
    border: 1px solid var(--line-light);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.store-staff-card::before {
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    background: var(--line);
    margin-bottom: 20px;
    border-radius: 0;
    flex-shrink: 0;
}

.store-staff-card--manager::before {
    background: linear-gradient(90deg, #e65100, #ff8f00);
}

.store-staff-card--sub::before {
    background: linear-gradient(90deg, #1565c0, #1e88e5);
}

.store-staff-card--mechanic::before {
    background: linear-gradient(90deg, #1b5e20, #388e3c);
}

.store-staff-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    transform: translateY(-3px);
}

.store-staff-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 3px solid #fff;
    box-shadow: var(--shadow);
}

.store-staff-avatar--manager {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    box-shadow: 0 4px 12px rgba(230, 81, 0, .2);
}

.store-staff-avatar--sub {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    box-shadow: 0 4px 12px rgba(21, 101, 192, .2);
}

.store-staff-avatar--mechanic {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    box-shadow: 0 4px 12px rgba(27, 94, 32, .18);
}

.store-staff-avatar-icon {
    font-size: 36px;
    line-height: 1;
}

.store-staff-role {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    background: var(--red-light);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    margin: 0 0 6px;
    letter-spacing: .06em;
    border: 1px solid rgba(204, 0, 0, .15);
}

.store-staff-name {
    font-size: 16px;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 10px;
}

.store-staff-message {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 12px;
    font-style: italic;
}

.store-staff-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.store-staff-tag {
    font-size: 11px;
    background: var(--blue-light);
    color: var(--blue);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid rgba(0, 102, 204, .15);
}

/* 選ばれる理由 */
.store-appeal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.store-appeal-item {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--red);
    border-radius: 8px;
    padding: 22px 18px 20px;
    text-align: center;
    position: relative;
    transition: box-shadow .2s, transform .2s, border-top-color .2s;
}

.store-appeal-item:hover {
    box-shadow: 0 8px 24px rgba(180, 0, 0, .12);
    transform: translateY(-3px);
    border-top-color: var(--red-dark, #990000);
}

.store-appeal-num {
    position: absolute;
    top: -1px;
    left: 12px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 0 0 4px 4px;
    letter-spacing: .06em;
}

.store-appeal-icon {
    font-size: 36px;
    margin: 10px 0 10px;
    line-height: 1;
    display: block;
}

.store-appeal-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.3;
}

.store-appeal-body {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* FAQ */
.store-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.store-faq-item {
    border-bottom: 1px solid var(--line-light);
}

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

.store-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    transition: background .15s;
    min-height: unset;
    font-family: inherit;
    border-radius: 0;
}

.store-faq-q:hover {
    background: var(--bg);
}

.store-faq-q-open {
    background: var(--red-light);
    color: var(--red);
}

.store-faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-faq-q-open .store-faq-icon {
    background: var(--red-dark);
}

.store-faq-q span:nth-child(2) {
    flex: 1;
}

.store-faq-arrow {
    flex-shrink: 0;
    color: var(--muted);
    transition: transform .2s;
}

.store-faq-arrow-open {
    transform: rotate(180deg);
    color: var(--red);
}

.store-faq-a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px 18px 18px;
    background: #fafafa;
    border-top: 1px solid var(--line-light);
    font-size: 13px;
    color: var(--text);
    line-height: 1.7;
}

.store-faq-a-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.store-faq-a p {
    margin: 0;
}

/* CTA */
.store-cta {
    background:
        linear-gradient(135deg, rgba(180, 0, 0, .88) 0%, rgba(100, 0, 0, .92) 100%),
        url('/images/store-cta-bg.jpg') center / cover no-repeat;
    border-radius: 10px;
    padding: 32px 32px;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.store-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.store-cta-title {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -.01em;
}

.store-cta-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    margin: 0;
    line-height: 1.7;
}

.store-cta-btns {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.store-cta-tel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    padding: 0 24px;
    background: #fff;
    color: var(--red);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 900;
    font-size: 18px;
    transition: box-shadow .15s, transform .1s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .2);
    white-space: nowrap;
    letter-spacing: .02em;
}

.store-cta-tel-btn span {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.store-cta-tel-btn small {
    font-size: 10px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: .02em;
}

.store-cta-tel-btn:hover {
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
    transform: translateY(-1px);
}

.store-cta .btn-primary {
    height: 54px;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .6);
    font-size: 14px;
}

.store-cta .btn-primary:hover {
    background: rgba(255, 255, 255, .25);
    border-color: #fff;
}

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

    .store-access-grid {
        grid-template-columns: 1fr;
    }

    .store-staff-grid {
        grid-template-columns: 1fr 1fr;
    }

    .store-appeal-grid {
        grid-template-columns: 1fr 1fr;
    }

    .store-main-wrap {
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .store-quick-inner {
        flex-direction: column;
        gap: 12px;
    }

    .store-quick-divider {
        display: none;
    }

    .store-staff-grid {
        grid-template-columns: 1fr;
    }

    .store-appeal-grid {
        grid-template-columns: 1fr;
    }

    .store-card {
        padding: 20px 16px;
        border-radius: 10px;
    }

    .store-access-item {
        flex-direction: row;
    }

    .store-cta {
        padding: 24px 18px;
    }

    .store-cta-inner {
        flex-direction: column;
    }

    .store-cta-btns {
        width: 100%;
        flex-direction: column;
    }

    .store-cta-tel-btn {
        width: 100%;
        justify-content: center;
    }

    .hours-week {
        grid-template-columns: repeat(7, 1fr);
        gap: 4px;
    }

    .hours-time {
        font-size: 9px;
    }

    .store-hero-stats {
        gap: 0;
        margin-top: 18px;
        padding-top: 16px;
    }

    .store-hero-stat {
        padding: 0 16px 0 0;
    }

    .store-hero-stat-divider {
        margin: 0 16px 0 0;
    }
}

/* store補足 */
.store-access-body {
    flex: 1;
}

.store-cta-text {
    flex: 1;
    min-width: 200px;
}

.store-staff-info {
    flex: 1;
    width: 100%;
}

/* ============================================================
   ホームページ追加スタイル（モダン化）
   ============================================================ */

/* セクション共通ユーティリティ */
.section-head-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.section-more-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    white-space: nowrap;
}

.section-more-link:hover {
    text-decoration: underline;
}

.section-sub-text {
    font-size: 15px;
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
}

.section-btn-center {
    text-align: center;
    margin-top: 32px;
}

/* ============================================================
   実績統計バー
   ============================================================ */
.home-stats-bar {
    background: linear-gradient(120deg, #e60012 0%, #cc0000 40%, #e84318 80%, #E8650A 100%);
    color: #fff;
    padding: 28px 0;
    border-bottom: none;
    box-shadow: 0 4px 16px rgba(204, 0, 0, .28);
}

.home-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.home-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 40px;
    gap: 4px;
}

.home-stat-number {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
}

.home-stat-unit {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    margin-left: 3px;
}

.home-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    margin: 0;
    letter-spacing: .04em;
    white-space: nowrap;
}

.home-stat-div {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, .25);
    flex-shrink: 0;
}

/* ============================================================
   ボディタイプグリッド（リデザイン）
   ============================================================ */
.body-type-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.body-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 10px 16px;
    background: #fff;
    border: 1.5px solid var(--line);
    border-top: 3px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s, transform .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    position: relative;
}

.body-type-card:hover {
    border-top-color: var(--red);
    border-color: rgba(230, 0, 16, .25);
    border-top-color: var(--red);
    color: var(--text);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,.10);
    text-decoration: none;
}

.body-type-card:hover .body-type-icon-wrap {
    background: var(--red);
    color: #fff;
}

.body-type-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    transition: background .2s, color .2s;
}

.body-type-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.body-type-name {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    color: var(--text);
}

.body-type-count {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    background: #fff0f0;
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid rgba(230, 0, 16, .18);
}

.body-type-sport .body-type-icon-wrap {
    background: #fff5ec;
    color: var(--orange);
}

.body-type-card-all .body-type-icon-wrap {
    background: #eef4ff;
    color: var(--blue);
}

.body-type-card-all .body-type-count {
    color: var(--blue);
    background: #eef4ff;
    border-color: rgba(59,130,246,.18);
}

/* ============================================================
   選ばれる理由（ポイントカード）
   ============================================================ */
.point-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.point-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 28px 22px 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.point-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red) 0%, var(--orange) 100%);
}

.point-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 12px;
}

.point-num {
    font-size: 12px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: .12em;
    margin-bottom: 8px;
    opacity: .8;
}

.point-title {
    font-size: 17px;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 12px;
    line-height: 1.4;
}

.point-body {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.85;
    margin: 0;
}

/* カード上部の色帯：各カードに個別カラー */
.point-card:nth-child(1)::before { background: linear-gradient(90deg, var(--red), #e84318); }
.point-card:nth-child(2)::before { background: linear-gradient(90deg, #1d4ed8, #2563eb); }
.point-card:nth-child(3)::before { background: linear-gradient(90deg, #15803d, #16a34a); }
.point-card:nth-child(4)::before { background: linear-gradient(90deg, #b45309, #d97706); }

/* ============================================================
   ご購入の流れ
   ============================================================ */
.home-flow .section-sub-text {
    margin-bottom: 0;
}

.flow-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: 32px 0 0;
}

.flow-step {
    flex: 1;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 28px 22px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.flow-step-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted-light);
    letter-spacing: .12em;
    margin-bottom: 14px;
}

.flow-step-num span {
    font-size: 22px;
    font-weight: 900;
    color: var(--red);
    margin-left: 3px;
    letter-spacing: -.01em;
}

.flow-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-light), #fff0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--red);
    box-shadow: 0 4px 12px rgba(180,0,0,.15);
}

.flow-step h3 {
    font-size: 17px;
    font-weight: 900;
    margin: 0 0 12px;
    color: var(--text);
}

.flow-step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.85;
    margin: 0;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 60px;
    opacity: .5;
}

/* ============================================================
   安心のサービス
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 26px 20px 22px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.service-icon-red {
    background: var(--red-light);
    color: var(--red);
}

.service-icon-blue {
    background: var(--blue-light);
    color: var(--blue);
}

.service-icon-green {
    background: var(--green-light);
    color: var(--green);
}

.service-icon-orange {
    background: var(--orange-light);
    color: var(--orange);
}

.service-card h3 {
    font-size: 17px;
    font-weight: 900;
    margin: 0 0 10px;
    color: var(--text);
}

.service-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.85;
    margin: 0 0 14px;
}

.service-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 4px 12px;
    color: var(--muted);
}

/* 上部カラーバー */
.service-card { position: relative; overflow: hidden; }
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}
.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--red), #e84318); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, #1d4ed8, #2563eb); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, #15803d, #16a34a); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, #b45309, #d97706); }

/* ============================================================
   お知らせ＋店舗情報グリッド
   ============================================================ */
.news-store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.store-info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.store-info-row {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--line-light);
    font-size: 13px;
}

.store-info-row:last-of-type {
    border-bottom: none;
}

.store-info-label {
    background: #f7f7f7;
    color: var(--muted);
    font-weight: 700;
    font-size: 12px;
    padding: 11px 14px;
    width: 88px;
    flex-shrink: 0;
    border-right: 1px solid var(--line-light);
}

.store-info-val {
    padding: 11px 14px;
    font-weight: 500;
    color: var(--text);
    flex: 1;
}

.store-info-card .btn-secondary {
    display: block;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--line-light);
    background: #fafafa;
}

.store-info-card .btn-secondary:hover {
    background: var(--bg);
}

/* ============================================================
   オーナーズボイス（リデザイン）
   ============================================================ */
.owners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.owner-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 24px 22px 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
}

.owner-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.owner-card::before {
    content: '\201C';
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 64px;
    color: var(--line-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.owner-stars {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 2px;
}

.owner-comment {
    font-size: 13px;
    color: var(--text);
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

.owner-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line-light);
    margin-top: auto;
}

.owner-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0;
}

.owner-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.owner-car {
    font-size: 11px;
    color: var(--muted);
    margin: 2px 0 0;
}

/* ============================================================
   CTAバナー（リデザイン）
   ============================================================ */
.home-cta-banner {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 40%, #2a0a0a 70%, #8B0000 100%);
}

.home-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(204, 0, 0, .2) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 30%, rgba(255, 100, 0, .1) 0%, transparent 50%);
}

.home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.home-cta-text {
    flex: 1;
}

.home-cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: .2em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.home-cta-title {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
    letter-spacing: -.01em;
}

.home-cta-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    margin: 0;
    line-height: 1.7;
}

.home-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.home-cta-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .8);
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: .02em;
    transition: color var(--transition);
}

.home-cta-tel:hover {
    color: #fff;
    text-decoration: none;
}

/* ============================================================
   レスポンシブ（追加）
   ============================================================ */
@media (max-width: 1024px) {
    .body-type-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .point-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-steps {
        flex-wrap: wrap;
    }

    .flow-step {
        min-width: calc(50% - 40px);
    }

    .flow-arrow {
        display: none;
    }

    .home-stat-item {
        padding: 8px 24px;
    }
}

@media (max-width: 768px) {
    .body-type-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

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

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

    .news-store-grid {
        grid-template-columns: 1fr;
    }

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

    .home-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .home-stat-item {
        padding: 8px 16px;
    }

    .home-stat-number {
        font-size: 30px;
    }

    .home-stats-inner {
        gap: 0;
    }

    .flow-step {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .body-type-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .body-type-card {
        padding: 12px 6px 10px;
    }

    .body-type-icon-wrap {
        width: 40px;
        height: 40px;
    }

    .body-type-icon-wrap svg {
        width: 22px;
        height: 22px;
    }

    .body-type-name {
        font-size: 11px;
    }

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

/* ============================================================
   全ページ共通 モダン化（日本人好みの文字サイズ・デザイン）
   ============================================================ */

/* ---- 共通フォーム要素 ---- */
label {
    font-size: 12px;
    gap: 8px;
    letter-spacing: .04em;
}
input,
select {
    font-size: 14px;
    height: 42px;
    padding: 0 13px;
    border-radius: 6px;
    border-width: 1.5px;
}
textarea.form-input {
    height: auto;
    font-size: 14px;
    font-family: inherit;
}
button {
    font-size: 13px;
    height: 42px;
    padding: 0 24px;
    border-radius: 6px;
    letter-spacing: .04em;
}

/* ---- 在庫一覧ヘッダー ---- */
.inventory-head {
    border-left-width: 5px;
}
.inventory-head h2 {
    font-size: 20px;
}
.inventory-head p {
    font-size: 14px;
}

/* ---- 車両カード ---- */
.car-card h3 {
    font-size: 18px;
}
.car-card-grade {
    font-size: 13px;
}
.car-card-specs span {
    font-size: 12px;
}
.stock-no {
    font-size: 12px;
}
.grade {
    font-size: 13px;
}
dl div {
    font-size: 13px;
}
.cpo-num {
    font-size: 24px;
}

/* ---- ページネーション ---- */
.pagination a,
.pagination span {
    font-size: 14px;
}

/* ---- 詳細ページ ---- */
.spec-label {
    font-size: 13px;
}
.spec-value {
    font-size: 14px;
}
.detail-description h3 {
    font-size: 17px;
    border-left-width: 5px;
}
.detail-description-body {
    font-size: 15px;
    line-height: 1.85;
}
.back-link {
    font-size: 14px;
}

/* ---- 比較テーブル ---- */
.compare-table th {
    font-size: 14px;
    padding: 12px 16px;
}
.compare-table td {
    font-size: 14px;
    padding: 11px 16px;
}
.compare-table .compare-label {
    font-size: 13px;
}

/* ---- フォーム系コンポーネント ---- */
.form-label {
    font-size: 14px;
}
.form-label .hint {
    font-size: 13px;
}
.form-input {
    font-size: 14px;
    padding: 10px 14px;
}
.alert-box-title {
    font-size: 14px;
}
.alert-box ul {
    font-size: 14px;
}
.car-info-box .label {
    font-size: 12px;
}
.car-info-box .name {
    font-size: 17px;
}
.car-info-box .stock {
    font-size: 13px;
}
.page-title {
    border-left-width: 5px;
    padding-left: 14px;
}

/* ---- 比較・お気に入りページ ---- */
.compare-bar .compare-bar-label {
    font-size: 14px;
}
.compare-bar-item {
    font-size: 13px;
}

/* ---- 店舗情報ページ ---- */
.store-hero-sub {
    font-size: 15px;
}
.store-hero-stat strong {
    font-size: clamp(1.1rem, 1.9vw, 1.4rem);
}
.store-hero-stat span {
    font-size: 12px;
}

.store-quick-label {
    font-size: 12px;
}
.store-quick-val {
    font-size: 14px;
}
.store-quick-tel {
    font-size: 23px;
}

.store-card-title {
    font-size: 19px;
}

.store-info-table {
    font-size: 14px;
}
.store-info-table th {
    font-size: 13px;
}
.store-info-table td {
    line-height: 1.8;
}
.store-tel-link {
    font-size: 20px;
}

.store-hours-note-item {
    font-size: 13px;
    line-height: 1.7;
}
.hours-day-label {
    font-size: 16px;
}
.hours-time {
    font-size: 11px;
}

.store-access-title {
    font-size: 16px;
    margin-bottom: 8px;
}
.store-access-text {
    font-size: 13.5px;
    line-height: 1.85;
}

.store-staff-name {
    font-size: 18px;
}
.store-staff-message {
    font-size: 13px;
    line-height: 1.8;
}
.store-staff-tag {
    font-size: 12px;
}

/* 選ばれる理由 — カードごとの色付きトップボーダー */
.store-appeal-item { border-top-width: 4px; }
.store-appeal-item:nth-child(1) { border-top-color: #dc2626; }
.store-appeal-item:nth-child(2) { border-top-color: #1d4ed8; }
.store-appeal-item:nth-child(3) { border-top-color: #15803d; }
.store-appeal-item:nth-child(4) { border-top-color: #b45309; }
.store-appeal-item:nth-child(5) { border-top-color: #7c3aed; }
.store-appeal-item:nth-child(6) { border-top-color: #0e7490; }

.store-appeal-title {
    font-size: 15px;
}
.store-appeal-body {
    font-size: 13px;
    line-height: 1.8;
}

.store-faq-q {
    font-size: 15px;
    padding: 18px 18px;
}
.store-faq-a {
    font-size: 14px;
    line-height: 1.8;
    padding: 16px 20px 20px 20px;
}

.store-cta-sub {
    font-size: 15px;
}

/* ---- 買取査定 thanksページ ---- */
.panel h2 {
    font-size: 16px;
}

/* ---- フィルターパネル ---- */
.filter-panel-title {
    font-size: 15px;
}
.filter-panel-title::before {
    width: 5px;
}

/* ---- 在庫一覧ヒーロー ---- */
.hero-subtitle {
    font-size: 15px;
}
.hero-stat-val {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.hero-stat-lbl {
    font-size: 13px;
}

/* ---- ページ共通 section-heading 強化 ---- */
.section-heading {
    font-size: 22px;
    border-left-width: 5px;
    padding-left: 14px;
}

/* ================================================================
   ホーム FAQ（よくある質問）
   ================================================================ */
.home-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 820px;
}
.home-faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: #fff;
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.home-faq-item[open] {
    box-shadow: var(--shadow);
    border-color: #fca5a5;
}
.home-faq-q {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    user-select: none;
}
.home-faq-q::-webkit-details-marker { display: none; }
.home-faq-q:hover { background: #fafafa; }
.home-faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-faq-arrow {
    margin-left: auto;
    flex-shrink: 0;
    color: var(--muted);
    transition: transform var(--transition);
}
.home-faq-item[open] .home-faq-arrow {
    transform: rotate(180deg);
}
.home-faq-a {
    display: flex;
    gap: 10px;
    padding: 0 18px 18px 18px;
    border-top: 1px solid var(--line-light);
    padding-top: 14px;
}
.home-faq-a-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #555;
    font-size: 13px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.home-faq-a p {
    font-size: 14px;
    line-height: 1.85;
    color: #555;
    margin: 0;
}
.home-faq-a strong { color: var(--text); font-weight: 700; }
.home-faq-a a { color: var(--red); text-decoration: underline; }

/* ================================================================
   SEO ローカルセクション（ホームページ）
   ================================================================ */
.seo-local-section {
    border-top: 1px solid var(--line);
}
.seo-local-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.seo-local-heading {
    font-size: 20px;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 16px;
    padding-left: 14px;
    border-left: 5px solid var(--red);
    line-height: 1.4;
}
.seo-local-text p {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    margin: 0 0 12px;
}
.seo-local-text strong {
    color: var(--text);
    font-weight: 700;
}

/* 対応エリアボックス */
.seo-local-area {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}
.seo-area-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    color: var(--text);
}
.seo-area-block { margin-bottom: 14px; }
.seo-area-pref {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin: 0 0 6px;
}
.seo-area-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.seo-area-city {
    display: inline-block;
    font-size: 12px;
    padding: 3px 10px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    color: #555;
}
.seo-area-main {
    background: #fef2f2;
    color: var(--red);
    border-color: #fecaca;
    font-weight: 700;
}
.seo-area-nationwide {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--muted);
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

/* ---- 在庫一覧 イントロテキスト ---- */
.inventory-intro-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.85;
    padding: 14px 0 0;
}
.inventory-intro-text strong {
    color: var(--text);
    font-weight: 700;
}

@media (max-width: 900px) {
    .seo-local-inner {
        grid-template-columns: 1fr;
    }
    .seo-local-area {
        order: -1;
    }
}


/* ============================================================
   新着車両ページ — 緊急性バナー
   ============================================================ */
.new-urgency-bar {
    background: linear-gradient(90deg, #b91c1c 0%, #dc2626 100%);
    color: #fff;
    padding: 12px 0;
}
.new-urgency-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.new-urgency-icon {
    font-size: 20px;
    flex-shrink: 0;
}
.new-urgency-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}
.new-urgency-text strong {
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.new-urgency-btn {
    display: inline-block;
    background: #fff;
    color: #b91c1c !important;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity .18s;
    text-decoration: none !important;
}
.new-urgency-btn:hover { opacity: .85; text-decoration: none !important; }

/* ============================================================
   新着車両ページ — 注目フィーチャーカードセクション
   ============================================================ */
.new-featured-section {
    background: #fff;
    padding: 40px 0 36px;
    border-bottom: 1px solid var(--line-light);
}
.new-featured-header {
    margin-bottom: 24px;
}
.new-featured-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
}
.new-featured-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    padding: 3px 8px;
    border-radius: 3px;
}
.new-featured-sub {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

/* フィーチャーカードグリッド: 1行3列 → スマホは1列 */
.new-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.new-featured-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.new-featured-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}
.new-featured-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--text);
    text-decoration: none !important;
}
.new-featured-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    background: #f0f0f0;
    overflow: hidden;
}
.new-featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.new-featured-card:hover .new-featured-img-wrap img {
    transform: scale(1.04);
}
/* バッジ */
.new-fc-badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 3px 9px;
    border-radius: 3px;
    z-index: 1;
}
.new-fc-badge-pick {
    position: absolute;
    top: 10px;
    left: 52px;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 3px;
    z-index: 1;
}
.new-fc-badge-sold {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.62);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 0;
    z-index: 1;
}
/* カード本文 */
.new-featured-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.new-fc-no {
    font-size: 10px;
    color: var(--muted-light);
    margin: 0;
}
.new-fc-name {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    color: var(--text);
    line-height: 1.3;
}
.new-fc-grade {
    font-size: 11px;
    color: var(--muted);
    margin: 0;
}
.new-fc-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 6px 0 0;
}
.new-fc-specs span {
    font-size: 11px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    padding: 2px 8px;
    color: var(--muted);
}
.new-fc-price {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.new-fc-price-label {
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
}
.new-fc-price-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: -.02em;
}
.new-fc-price-unit {
    font-size: 12px;
    color: var(--muted);
}
.new-fc-cta {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: .02em;
}

/* ============================================================
   新着車両ページ — 入荷サイクルバー
   ============================================================ */
.new-cycle-bar {
    background: #f8f9fb;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    padding: 20px 0;
}
.new-cycle-inner {
    display: flex;
    align-items: center;
    gap: 0;
}
.new-cycle-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
}
.new-cycle-sep {
    width: 1px;
    height: 40px;
    background: var(--line);
    flex-shrink: 0;
}
.new-cycle-icon { font-size: 22px; flex-shrink: 0; }
.new-cycle-ttl {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 2px;
}
.new-cycle-txt {
    font-size: 11px;
    color: var(--muted);
    margin: 0;
}

/* ============================================================
   新着車両ページ — 通知/入荷希望CTA
   ============================================================ */
.new-notify-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2240 100%);
    padding: 48px 0;
}
.new-notify-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.new-notify-text { flex: 1; min-width: 240px; }
.new-notify-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
}
.new-notify-sub {
    font-size: 14px;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    margin: 0;
}
.new-notify-sub strong { color: #fff; }
.new-notify-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.new-notify-btn {
    font-size: 14px !important;
    padding: 14px 28px !important;
    min-height: 48px !important;
    white-space: nowrap;
}
.new-notify-tel {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff !important;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none !important;
    transition: opacity .18s;
}
.new-notify-tel:hover { opacity: .8; text-decoration: none !important; }

/* ============================================================
   在庫一覧ページ — クイックフィルターバー
   ============================================================ */
.quick-filter-bar {
    background: #fff;
    border-bottom: 1px solid var(--line-light);
    padding: 14px 0;
}
.quick-filter-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.quick-filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.quick-filter-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .04em;
    white-space: nowrap;
    min-width: 74px;
}
.quick-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.quick-chip {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    background: #f4f4f4;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    color: var(--text) !important;
    text-decoration: none !important;
    transition: background .15s, border-color .15s, color .15s;
    white-space: nowrap;
}
.quick-chip:hover {
    background: var(--red-light);
    border-color: var(--red);
    color: var(--red) !important;
    text-decoration: none !important;
}

/* ============================================================
   在庫一覧ページ — クルマ選び相談CTA
   ============================================================ */
.advisor-cta-section {
    background: #fff;
    border-top: 1px solid var(--line-light);
    padding: 48px 0 52px;
}
.advisor-cta-title {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: var(--text);
    margin: 0 0 8px;
}
.advisor-cta-sub {
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    margin: 0 0 32px;
}
.advisor-use-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.advisor-use-card {
    background: #f8f9fb;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 24px 16px;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}
.advisor-use-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.advisor-use-icon {
    display: block;
    font-size: 36px;
    margin-bottom: 10px;
}
.advisor-use-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px;
}
.advisor-use-type {
    font-size: 11px;
    color: var(--muted);
    margin: 0 0 12px;
}
.advisor-use-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--red) !important;
    text-decoration: none !important;
    transition: opacity .15s;
}
.advisor-use-link:hover { opacity: .7; text-decoration: none !important; }
.advisor-cta-consult {
    text-align: center;
    background: #f4f4f4;
    border-radius: var(--radius-card);
    padding: 28px 24px;
}
.advisor-cta-consult p {
    font-size: 15px;
    color: var(--text);
    margin: 0 0 16px;
}
.advisor-cta-consult strong { color: var(--red); }
.advisor-consult-btn {
    font-size: 15px !important;
    padding: 14px 36px !important;
    min-height: 50px !important;
}

/* ============================================================
   レスポンシブ（新着/在庫一覧追加分）
   ============================================================ */
@media (max-width: 900px) {
    .new-featured-grid {
        grid-template-columns: 1fr;
    }
    .new-featured-card-link {
        flex-direction: row;
    }
    .new-featured-img-wrap {
        width: 160px;
        flex-shrink: 0;
        aspect-ratio: auto;
    }
    .new-cycle-inner {
        flex-wrap: wrap;
        gap: 12px;
    }
    .new-cycle-item {
        width: calc(50% - 8px);
        padding: 0 8px;
    }
    .new-cycle-sep { display: none; }
    .new-notify-inner {
        flex-direction: column;
        text-align: center;
    }
    .new-notify-actions {
        justify-content: center;
    }
    .advisor-use-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quick-filter-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .new-urgency-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
@media (max-width: 600px) {
    .new-featured-card-link {
        flex-direction: column;
    }
    .new-featured-img-wrap {
        width: 100%;
        aspect-ratio: 4/3;
    }
    .new-cycle-item {
        width: 100%;
    }
    .advisor-use-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
