/* =========================================================
   お客様の声 詳細ページ (single-voice.php)
   プレフィックス: vc-
   ========================================================= */

.vc-container {
    display: block;
    color: #222;
    line-height: 1.8;
}

/* ---- ヒーローヘッダー（基本情報カード／在庫詳細ページ風: 全幅アイキャッチ＋狭インセット） ---- */
.vc-hero-block {
    width: 100%;
    padding: 24px 16px 0;
}
.vc-hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
/* PC: アイキャッチを左、情報を右に */
.vc-hero-photo {
    flex: 0 0 44%;
    max-width: 44%;
}
.vc-hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vc-hero-body {
    flex: 1 1 auto;
    min-width: 0;
    padding: 32px 34px;
}

/* カテゴリ（ハッシュタグ風） */
.vc-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.vc-cat {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #e00923;
    background: #fdeef0;
    border-radius: 999px;
    padding: 5px 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.vc-cat:hover {
    background: #e00923;
    color: #fff;
}
.vc-eyebrow {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.12em;
    color: #e00923;
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 12px;
}
.vc-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 14px;
    color: #1a1a1a;
}
.vc-customer {
    font-size: 17px;
    font-weight: 600;
    color: #444;
    margin: 0 0 20px;
}

/* ---- 星評価 ---- */
.vc-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
}
.vc-stars {
    position: relative;
    display: inline-block;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 2px;
    white-space: nowrap;
}
.vc-stars-bg {
    color: #d9d9d9;
}
.vc-stars-fg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
}
/* 評価帯ごとの色 */
.vc-stars--gold .vc-stars-fg { color: #f5a623; }
.vc-stars--high .vc-stars-fg { color: #f5862a; }
.vc-stars--mid  .vc-stars-fg { color: #f4c430; }
.vc-stars--low  .vc-stars-fg { color: #9aa0a6; }

.vc-rating-num {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1a1a1a;
}
.vc-rating-src {
    font-size: 12px;
    color: #888;
}

/* ---- 属性 ---- */
.vc-attrs {
    margin: 0;
    border-top: 1px solid #e2e2e2;
}
.vc-attr {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e2e2;
    margin: 0;
}
.vc-attr dt {
    flex: 0 0 110px;
    font-weight: 600;
    color: #777;
    font-size: 14px;
    margin: 0;
}
.vc-attr dd {
    margin: 0;
    font-size: 15px;
    color: #222;
}
.vc-attr dd a {
    color: #e00923;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

/* ---- 本文（ヒーローとは独立した別カード／背景はサイト地） ---- */
.vc-article-block {
    width: 100%;
    padding: 20px 16px 48px;
}
.vc-article-inner {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    padding: 44px 48px;
}
.vc-article {
    font-size: 16px;
    color: #2a2a2a;
}
/* 浮動画像のクリアフィックス */
.vc-article::after {
    content: "";
    display: block;
    clear: both;
}
.vc-article h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 44px 0 18px;
    padding-left: 14px;
    border-left: 5px solid #e00923;
    line-height: 1.5;
}
.vc-article h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 32px 0 12px;
    color: #333;
}
.vc-article p {
    margin: 0 0 20px;
}
/* === 本文中の画像（WPエディタの各種挿入方法に対応） === */
.vc-article img {
    max-width: 100%;
    height: auto;
}
/* 単体画像 / figure（既定=中央） */
.vc-article figure,
.vc-article .wp-block-image {
    margin: 30px auto;
    text-align: center;
}
.vc-article figure img,
.vc-article .wp-block-image img {
    display: inline-block;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.vc-article img.aligncenter,
.vc-article .aligncenter img {
    margin-left: auto;
    margin-right: auto;
}
/* 左寄せ・右寄せ（本文が回り込む） */
.vc-article .wp-block-image.alignleft,
.vc-article figure.alignleft,
.vc-article img.alignleft {
    float: left;
    margin: 6px 30px 18px 0;
    max-width: 48%;
}
.vc-article .wp-block-image.alignright,
.vc-article figure.alignright,
.vc-article img.alignright {
    float: right;
    margin: 6px 0 18px 30px;
    max-width: 48%;
}
/* 幅広・全幅（カードの内側余白を越えて広げる） */
.vc-article .alignwide {
    margin-left: -32px;
    margin-right: -32px;
    max-width: calc(100% + 64px);
}
.vc-article .alignfull {
    margin-left: -56px;
    margin-right: -56px;
    max-width: calc(100% + 112px);
}
.vc-article .alignwide img,
.vc-article .alignfull img {
    width: 100%;
    border-radius: 0;
}
/* キャプション */
.vc-article figcaption,
.vc-article .wp-caption-text {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 8px;
    line-height: 1.6;
}
/* ギャラリーブロック */
.vc-article .wp-block-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
    list-style: none;
    text-align: left;
}
.vc-article .wp-block-gallery .wp-block-image,
.vc-article .wp-block-gallery figure {
    margin: 0;
    flex: 1 1 30%;
}
.vc-article .wp-block-gallery img {
    width: 100%;
    border-radius: 6px;
}
/* 動画埋め込み（YouTube等）16:9 */
.vc-article .wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}
.vc-article .wp-block-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.vc-article blockquote {
    margin: 24px 0;
    padding: 16px 20px;
    background: #f6f6f6;
    border-left: 4px solid #ccc;
    color: #555;
    font-style: italic;
}

/* ---- 関連: お客様の声 ---- */
.vc-related-block {
    width: 100%;
    margin-bottom: clamp(40px, 6vw, 72px);
}
.vc-related-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 0;
}
.vc-related-head {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 30px;
    text-align: center;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 16px;
}
.vc-related-head::before {
    content: "OTHER VOICES";
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #e00923;
    margin-bottom: 6px;
}
.vc-related-head::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: #e00923;
    border-radius: 2px;
}
.vc-related-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* 横型カード（左: 画像 / 右: 顧客情報） */
.vc-related-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vc-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.vc-related-thumb {
    flex: 0 0 300px;
    align-self: stretch;
    background: #f2f2f2;
}
.vc-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vc-related-thumb .vc-noimage--sm {
    height: 100%;
    min-height: 130px;
}
.vc-related-info {
    flex: 1 1 auto;
    min-width: 0;
    padding: 16px 20px 16px 0;
}
.vc-related-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vc-related-name {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin: 0 0 8px;
}
.vc-related-attrs {
    margin: 0;
    border-top: 1px solid #ececec;
}
.vc-related-attr {
    display: flex;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid #ececec;
    margin: 0;
}
.vc-related-attr dt {
    flex: 0 0 84px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    margin: 0;
}
.vc-related-attr dd {
    margin: 0;
    font-size: 13px;
    color: #222;
}
.vc-related-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}
.vc-related-cat {
    font-size: 12px;
    font-weight: 700;
    color: #e00923;
    background: #fdeef0;
    border-radius: 999px;
    padding: 3px 10px;
}

/* ---- 関連: 厳選在庫（トップ「今すぐ買える厳選在庫」風・背景やカードに収めない） ---- */
.vc-stock-block {
    width: 100%;
    padding: 64px 16px 72px;
    overflow: hidden;
}
.vc-stock-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.vc-stock-head {
    text-align: center;
    margin-bottom: 44px;
}
.vc-stock-sub {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.18em;
    font-weight: 700;
    font-size: 14px;
    color: #e00923;
    margin-bottom: 12px;
}
.vc-stock-title {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 900;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.vc-stock-lead {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}

/* 在庫カードは横スクロール（収まる時は中央寄せ／はみ出す時は左から） */
/* PC: 3列グリッドで折り返し（縦に積む） */
.vc-stock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.vc-stock-grid::-webkit-scrollbar { height: 8px; }
.vc-stock-grid::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.18); border-radius: 4px; }

/* sl-card 風（トップから移植・vc- 名前空間） */
.vc-stock-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.vc-stock-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.vc-stock-card a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}
.vc-stock-image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.vc-stock-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.vc-stock-card:hover .vc-stock-image img { transform: scale(1.05); }
.vc-stock-price {
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 9, 35, 0.95) 0%, rgba(160, 2, 14, 0.95) 100%);
    color: #fff;
    padding: 10px 15px;
    border-top-left-radius: 10px;
    text-align: right;
    box-shadow: -2px -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.vc-stock-price-label {
    display: block;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 2px;
}
.vc-stock-price-value {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    line-height: 1;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 500 !important;
    font-style: italic !important;
}
.vc-stock-price-value .num {
    font-size: 42px;
    border-bottom: 4px solid #ffeb3b;
    padding-bottom: 2px;
    font-family: 'Oswald', sans-serif !important;
}
.vc-stock-price-value .unit {
    font-size: 16px;
    margin-left: 2px;
    font-family: 'Oswald', sans-serif !important;
}
.vc-stock-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.vc-stock-name {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0 0 8px;
}
.vc-stock-grade {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 12px;
}
.vc-stock-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}
.vc-stock-tag {
    font-size: 11px;
    font-weight: 700;
    color: #555;
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid #ddd;
}

/* フッターのボタン */
.vc-stock-footer {
    text-align: center;
    margin-top: 8px;
}
.vc-btn-stock-all {
    display: inline-block;
    padding: 18px 56px;
    background: linear-gradient(135deg, #e00923 0%, #a0020e 100%);
    color: #fff;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(224, 9, 35, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.vc-btn-stock-all i { margin-left: 12px; transition: transform 0.3s; }
.vc-btn-stock-all:hover {
    background: linear-gradient(135deg, #ff0000 0%, #e00923 100%);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(224, 9, 35, 0.5);
}
.vc-btn-stock-all:hover i { transform: translateX(5px); }
.vc-stock-contact {
    display: block;
    width: fit-content;
    margin: 18px auto 0;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}
.vc-stock-contact:hover { color: #e00923; }

/* ---- NO IMAGE プレースホルダ ---- */
.vc-noimage {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #e3e3e3;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 10px;
}
.vc-noimage--sm {
    border-radius: 0;
    font-size: 14px;
}

/* =========================================================
   車選び相談（BACK ORDER）セクション
   トップページ (top.css .top-bo-block / .bo-*) を vc-bo- 名前空間へ移植
   ========================================================= */
.vc-bo-block {
    padding: clamp(70px, 9vw, 120px) 0;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.vc-bo-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 大カード1枚 */
.vc-bo-card {
    background: #fff;
    border-radius: 14px;
    padding: clamp(32px, 4.5vw, 56px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    position: relative;
}

/* ヘッダー */
.vc-bo-head {
    text-align: center;
    margin-bottom: clamp(30px, 4vw, 48px);
}
.vc-bo-head .vc-bo-eyebrow { margin: 0 0 18px; }
.vc-bo-head-title {
    font-size: clamp(22px, 3.2vw, 34px);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.55;
    margin: 0;
}
.vc-bo-head-title .vc-bo-head-sub { font-size: 0.88em; }
.vc-bo-head-title .vc-bo-head-main { font-size: 1.18em; }
.vc-bo-hl-yellow {
    background: linear-gradient(transparent 65%, rgba(255, 235, 59, 0.75) 65%);
    padding: 0 4px;
    font-weight: 900;
}
.vc-bo-eyebrow {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(135deg, #e70314 0%, #8b1102 100%);
    padding: 6px 14px;
    border-radius: 4px;
}

/* 2カラム（PC）/ 1カラム（SP） */
.vc-bo-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 3.5vw, 48px);
    align-items: stretch;
}
.vc-bo-col {
    display: flex;
    flex-direction: column;
}
.vc-bo-col-visual { justify-content: center; }

/* 漫画ビジュアル ＋ 黄色オーバーレイタグ */
.vc-bo-manga {
    position: relative;
    margin: 0;
    border-radius: 12px;
    background: #fff;
    border: 4px solid #fff;
    transform: rotate(-1deg);
}
.vc-bo-manga img { display: block; width: 100%; height: auto; }
.vc-bo-manga-tag {
    position: absolute;
    left: -20px;
    bottom: 18px;
    background: linear-gradient(135deg, #e70314 0%, #8b1102 100%);
    color: #fff;
    padding: 14px 32px 22px;
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.3;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.vc-bo-manga-tag .vc-bo-tag-sub { font-size: 0.75em; font-weight: 700; }
.vc-bo-manga-tag .vc-bo-hl-yellow {
    background: linear-gradient(transparent 88%, #fff000 88%);
    padding: 0 3px;
    font-weight: 900;
    font-size: 1.3em;
}

/* 悩み見出し */
.vc-bo-worries-title {
    display: flex; align-items: center; gap: 10px;
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 14px;
}
.vc-bo-worries-title i { color: #e70314; font-size: 0.95em; }
.vc-bo-worries {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 20px 22px;
    margin: 0 0 26px;
}
.vc-bo-worries-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.vc-bo-worries-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 17px; font-weight: 700; color: #333; line-height: 1.6;
}
.vc-bo-worries-list li i {
    color: #e70314; width: 20px; text-align: center; flex-shrink: 0; margin-top: 4px;
}

/* 解決見出し */
.vc-bo-solve-title {
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 18px;
    font-size: clamp(22px, 2.6vw, 28px);
}
.vc-bo-hl {
    background: linear-gradient(135deg, #e70314 0%, #8b1102 100%);
    color: #fff;
    padding: 0.05em 0.28em 0.14em;
    display: inline-block;
    line-height: 1;
    margin: 0.15em 0.06em 0;
    border-radius: 3px;
    transform: translateY(0.04em);
}
.vc-bo-solve-lead {
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin: 0 0 22px;
}
.vc-bo-solve-lead strong { color: #1a1a1a; }

/* 5ステップ */
.vc-bo-method {
    background: #fff6f6;
    border-left: 4px solid #e70314;
    border-radius: 0 10px 10px 0;
    padding: 16px 18px;
    margin: 0;
}
.vc-bo-method-head {
    font-size: 14px; font-weight: 900; color: #e70314; margin: 0 0 12px;
}
.vc-bo-method-head strong { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 17px; }
.vc-bo-steps {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 6px 4px;
}
.vc-bo-steps > li:not(.vc-bo-step-arrow) {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    background: #fff; border: 1px solid #f0d2d4;
    border-radius: 8px; padding: 8px 6px;
    flex: 1 1 0; min-width: 0;
}
.vc-bo-step-num { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 18px; color: #e70314; line-height: 1; }
.vc-bo-step-label { font-size: 12px; font-weight: 700; color: #333; white-space: nowrap; }
.vc-bo-step-arrow { color: #ccc; font-size: 11px; display: flex; align-items: center; }

/* まとめ ＋ 社長チャット ＋ CTA */
.vc-bo-summary {
    margin-top: clamp(36px, 4.5vw, 56px);
    padding-top: clamp(28px, 4vw, 40px);
    border-top: 1px dashed #e0e0e0;
}
.vc-bo-summary-text {
    text-align: center;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.9;
    color: #333;
    margin: 0 auto 28px;
    max-width: 760px;
}
.vc-bo-summary-text strong { color: #e70314; font-weight: 900; font-size: 1.8em; line-height: 1.4; display: inline-block; margin: 0.15em 0; }
.vc-bo-chat-item {
    display: flex; gap: 14px; align-items: flex-start;
    margin: 0 auto 28px; max-width: 720px;
}
.vc-bo-chat-icon { flex-shrink: 0; width: 72px; text-align: center; }
.vc-bo-chat-icon img,
.vc-bo-chat-icon .vc-bo-ph-icon {
    display: block; width: 72px; height: 72px;
    border-radius: 50%; object-fit: cover; background: #f0f0f0; overflow: hidden;
}
.vc-bo-chat-icon .vc-bo-ph-icon {
    display: flex; align-items: center; justify-content: center; color: #999; font-size: 28px;
}
.vc-bo-icon-label {
    display: block; font-size: 11px; font-weight: 900; color: #555; margin-top: 4px; letter-spacing: 0.05em;
}
.vc-bo-chat-bubble {
    position: relative;
    background: #fff6f6;
    border: 1px solid #f0d2d4;
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 15px; line-height: 1.75; color: #333;
    flex: 1;
}
.vc-bo-chat-bubble::before,
.vc-bo-chat-bubble::after {
    content: ''; position: absolute; top: 22px; width: 0; height: 0; border-style: solid;
}
.vc-bo-chat-bubble::before {
    left: -10px; border-width: 8px 10px 8px 0; border-color: transparent #f0d2d4 transparent transparent;
}
.vc-bo-chat-bubble::after {
    left: -8px; border-width: 8px 10px 8px 0; border-color: transparent #fff6f6 transparent transparent;
}
.vc-bo-cta-group {
    display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; max-width: 720px; margin: 0 auto;
}
.vc-bo-btn-detail,
.vc-bo-btn-line {
    flex: 1 1 240px;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 900; font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    box-sizing: border-box;
}
.vc-bo-btn-detail {
    background: linear-gradient(135deg, #e70314 0%, #8b1102 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(231, 3, 20, 0.30);
}
.vc-bo-btn-detail:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(231, 3, 20, 0.45); color: #fff; }
.vc-bo-btn-line {
    background: #06C755;
    color: #fff;
    box-shadow: 0 10px 24px rgba(6, 199, 85, 0.30);
}
.vc-bo-btn-line:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(6, 199, 85, 0.45); color: #fff; }
.vc-bo-btn-line i { font-size: 1.2em; }

/* =========================================================
   レスポンシブ（640px 境界）
   ========================================================= */
@media screen and (max-width: 639px) {
    /* SP: ヒーローは縦積み（画像上→情報下）。左右マージンは親 .wrap-in の15pxのみ。 */
    .vc-hero-block { padding: 12px 0 0; }
    .vc-hero-inner { flex-direction: column; }
    .vc-hero-photo { flex: none; max-width: 100%; }
    .vc-hero-photo img { height: auto; }
    .vc-hero-body { padding: 20px 16px 24px; }
    .vc-title {
        font-size: clamp(20px, 6vw, 26px);
    }
    .vc-customer {
        font-size: clamp(15px, 4.2vw, 17px);
    }
    .vc-stars { font-size: clamp(18px, 5.5vw, 22px); }
    .vc-rating-num { font-size: clamp(18px, 5.5vw, 22px); }

    .vc-attr {
        flex-direction: column;
        gap: 2px;
    }
    .vc-attr dt { flex: none; }

    .vc-article-block { padding: 12px 0 36px; }
    .vc-article-inner { padding: 24px 16px; }
    .vc-article { font-size: clamp(15px, 4.2vw, 16px); }
    .vc-article h2 { font-size: clamp(19px, 5.4vw, 22px); }
    /* スマホでは回り込みを解除して縦積み */
    .vc-article .wp-block-image.alignleft,
    .vc-article figure.alignleft,
    .vc-article img.alignleft,
    .vc-article .wp-block-image.alignright,
    .vc-article figure.alignright,
    .vc-article img.alignright {
        float: none;
        max-width: 100%;
        margin: 24px auto;
    }
    .vc-article .alignwide,
    .vc-article .alignfull {
        margin-left: -18px;
        margin-right: -18px;
        max-width: calc(100% + 36px);
    }

    /* 関連の声（SP）: 横型カードのまま画像を小さく */
    .vc-related-list { gap: 12px; }
    .vc-related-thumb { flex: 0 0 116px; }
    .vc-related-info { padding: 12px 14px 12px 0; }
    .vc-related-title { font-size: 14px; }
    .vc-related-name { font-size: 12px; }
    .vc-related-attr dt { flex-basis: 72px; }
    .vc-related-inner { padding: 34px 0; }
    .vc-related-head { font-size: 21px; }

    /* 厳選在庫セクション（SP）: 親 .wrap-in の左右15px paddingを打ち消して全幅。
       見出し・ボタン・カードは内側で16pxインセット、カードは右端へスクロールして消える。 */
    .vc-stock-block {
        width: auto;
        margin-left: -15px;
        margin-right: -15px;
        padding: 40px 0 48px;
    }
    .vc-stock-head { margin-bottom: 30px; padding: 0 16px; }
    /* SP: 横スクロールに戻す */
    .vc-stock-grid {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        margin: 0 0 28px;
        padding: 0 16px 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .vc-stock-grid::-webkit-scrollbar { display: none; }
    .vc-stock-card { flex: 0 0 280px; scroll-snap-align: center; }
    .vc-stock-footer { padding: 0 16px; }
    .vc-btn-stock-all { width: 100%; padding: 16px 24px; }

    /* 車選び相談（BACK ORDER）セクション SP */
    .vc-bo-inner { padding: 0 14px; }
    .vc-bo-card { padding: 22px 18px; }
    .vc-bo-head { margin-bottom: 24px; }
    .vc-bo-head .vc-bo-eyebrow { margin-bottom: 12px; }
    .vc-bo-head-title { font-size: 19px; line-height: 1.55; }
    .vc-bo-eyebrow { font-size: 12px; padding: 5px 12px; }
    .vc-bo-cols { grid-template-columns: 1fr; gap: 26px; }
    .vc-bo-col-visual { justify-content: flex-start; }
    .vc-bo-manga { transform: rotate(-1.5deg); }
    .vc-bo-manga-tag { left: 0; bottom: 14px; padding: 10px 16px 16px; font-size: 20px; }
    .vc-bo-worries-title { font-size: 19px; margin-bottom: 12px; }
    .vc-bo-worries { padding: 16px 18px; margin-bottom: 20px; }
    .vc-bo-worries-list { gap: 10px; }
    .vc-bo-worries-list li { font-size: 15px; }
    .vc-bo-solve-title { font-size: 19px; margin-bottom: 12px; }
    .vc-bo-solve-lead { font-size: 14px; line-height: 1.75; margin-bottom: 18px; }
    .vc-bo-method { padding: 12px 14px; }
    .vc-bo-steps { gap: 4px 2px; }
    .vc-bo-steps > li:not(.vc-bo-step-arrow) { padding: 6px 2px; }
    .vc-bo-step-num { font-size: 15px; }
    .vc-bo-step-label { font-size: 10.5px; }
    .vc-bo-step-arrow { display: none; }
    .vc-bo-summary { margin-top: 28px; padding-top: 22px; }
    .vc-bo-summary-text { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
    .vc-bo-chat-item { gap: 10px; margin-bottom: 20px; }
    .vc-bo-chat-icon { width: 56px; }
    .vc-bo-chat-icon img, .vc-bo-chat-icon .vc-bo-ph-icon { width: 56px; height: 56px; }
    .vc-bo-chat-icon .vc-bo-ph-icon { font-size: 22px; }
    .vc-bo-icon-label { font-size: 10px; }
    .vc-bo-chat-bubble { font-size: 13.5px; padding: 12px 14px; }
    .vc-bo-chat-bubble::before, .vc-bo-chat-bubble::after { top: 18px; }
    .vc-bo-cta-group { flex-direction: column; gap: 10px; }
    .vc-bo-btn-detail, .vc-bo-btn-line { flex: 1 1 auto; width: 100%; padding: 14px 18px; font-size: 14px; }
}
