/* MotoJP voicecampain.html 専用CSS */
/* 既存style.cssのCSS変数(--mj-*)を継承 */

/* ===== レイアウト ===== */
.vc-main {
  max-width: var(--mj-max-width, 1000px);
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: var(--mj-font-family);
  color: var(--mj-color-text);
}

/* ===== ヒーローセクション ===== */
.vc-hero {
  background: linear-gradient(135deg, #fff 0%, #FFF5F6 100%);
  border-left: 6px solid var(--mj-color-primary, #d4081d);
  border-radius: 8px;
  padding: 2rem 2rem 2.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.vc-hero-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  align-items: center;
  flex-wrap: wrap;
}

.vc-badge-campaign {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.25rem 0.95rem;
  background: var(--mj-color-primary, #d4081d);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.vc-badge-status {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.25rem 0.95rem;
  background: #1D9E75;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.vc-hero h1 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--mj-color-text, #1a1f36);
  font-weight: 700;
  border: none;
  padding: 0;
}

.vc-hero-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.95;
  color: var(--mj-color-text, #1a1f36);
}

.vc-hero-text strong {
  color: var(--mj-color-primary, #d4081d);
  font-weight: 700;
}

@media (max-width: 600px) {
  .vc-hero {
    padding: 1.5rem 1.25rem 1.75rem;
  }
  .vc-hero h1 {
    font-size: 1.5rem;
  }
  .vc-hero-text {
    font-size: 0.92rem;
    line-height: 1.85;
  }
}


/* ===== セクション共通 ===== */
.vc-section {
  margin-bottom: 1.75rem;
}

.vc-section-title {
  font-size: 1.2rem;
  color: var(--mj-color-text, #1a1f36);
  margin: 0 0 1rem;
  padding-left: 0.6rem;
  border-left: 4px solid var(--mj-color-primary, #d4081d);
  font-weight: 700;
}

.vc-section-desc {
  font-size: 0.88rem;
  color: var(--mj-color-text-light, #666);
  margin: 0 0 1rem;
  line-height: 1.7;
}

/* ===== STEP 3カード ===== */
.vc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

@media (max-width: 700px) {
  .vc-steps {
    grid-template-columns: 1fr;
  }
}

.vc-step {
  background: #fff;
  border: 1px solid var(--mj-color-border-section, #e4e4e4);
  border-radius: 8px;
  padding: 1.25rem 1.1rem 1.25rem;
  position: relative;
}

.vc-step-num {
  position: absolute;
  top: -12px;
  left: 14px;
  background: var(--mj-color-primary, #d4081d);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.vc-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mj-color-text, #1a1f36);
  margin: 0.3rem 0 0.5rem;
}

.vc-step-desc {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--mj-color-text-light, #666);
}

/* ===== 対象者カード ===== */
.vc-target {
  background: #fff;
  border: 1px solid #FCE5E8;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.vc-target-title {
  font-size: 1.05rem;
  color: var(--mj-color-text, #1a1f36);
  margin: 0 0 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.vc-target-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--mj-color-primary, #d4081d);
  border-radius: 50%;
}

.vc-target ul {
  margin: 0;
  padding-left: 1.3rem;
  font-size: 0.92rem;
  line-height: 2;
  color: var(--mj-color-text, #1a1f36);
}

/* ===== 投稿例カード ===== */
.vc-samples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 700px) {
  .vc-samples {
    grid-template-columns: 1fr;
  }
}

.vc-sample {
  background: #fff;
  border: 1px solid var(--mj-color-border-section, #e4e4e4);
  border-top: 3px solid var(--mj-color-primary, #d4081d);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  min-height: 110px;
}

.vc-sample-badges {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
  align-items: center;
  flex-wrap: wrap;
}

.vc-sample-make {
  display: inline-block;
  font-size: 0.72rem;
  padding: 0.18rem 0.65rem;
  background: #FCE5E8;
  color: var(--mj-color-primary, #d4081d);
  border-radius: 999px;
  font-weight: 600;
}

.vc-sample-year {
  display: inline-block;
  font-size: 0.72rem;
  padding: 0.18rem 0.65rem;
  background: var(--mj-color-bg-section, #f3f3f3);
  color: var(--mj-color-text-light, #666);
  border-radius: 999px;
}

.vc-sample-title {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--mj-color-text, #1a1f36);
  font-weight: 600;
  margin: 0;
}

/* ===== 最終CTA ===== */
.vc-cta {
  background: linear-gradient(135deg, #d4081d 0%, #b50718 100%);
  color: #fff;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  text-align: center;
  margin-top: 0.5rem;
}

.vc-cta h2 {
  margin: 0 0 0.6rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  padding: 0;
}

.vc-cta p {
  margin: 0 0 1.2rem;
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.95;
  color: #fff;
}

.vc-cta-button {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  background: #fff;
  color: var(--mj-color-primary, #d4081d);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vc-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .vc-cta {
    padding: 1.5rem 1.25rem;
  }
  .vc-cta h2 {
    font-size: 1.15rem;
  }
  .vc-cta-button {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
  }
}

/* ===== ページフッター(News + 戻るリンク) ===== */
.vc-page-foot {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mj-color-border-section, #e4e4e4);
}

.vc-page-foot #new {
  margin-bottom: 1.5rem;
}

.vc-page-foot > p {
  margin: 1rem 0;
  text-align: center;
}

.vc-page-foot > p a {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  color: var(--mj-color-text-light, #666);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.vc-page-foot > p a:hover {
  color: var(--mj-color-primary, #d4081d);
}

/* ===== 注意書き(脚注) ===== */
.vc-notes {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--mj-color-text-light, #666);
  line-height: 1.75;
}

.vc-notes li {
  padding-left: 0;
  margin: 0.2rem 0;
}

.vc-notes li::before {
  content: '※';
  margin-right: 0.3rem;
  color: var(--mj-color-primary, #d4081d);
}

/* 投稿ガイダンス */
.vc-guidance {
  background: #FFF8F8;
  border: 1px dashed #FCE5E8;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--mj-color-text, #1a1f36);
}

.vc-guidance strong {
  color: var(--mj-color-primary, #d4081d);
  font-weight: 700;
}

/* ===== SPECIAL GIFT (キャンペーン特典) ===== */
.vc-gift {
  background: #fff;
  border: 2px solid #FCE5E8;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  margin: 0 0 1.75rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(212, 8, 29, 0.04);
}

.vc-gift-label {
  font-size: 1.5rem;
  color: var(--mj-color-primary, #d4081d);
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
  font-family: var(--mj-font-family);
}

.vc-gift-headline {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mj-color-text, #1a1f36);
  margin-bottom: 0.35rem;
}

.vc-gift-amount {
  color: var(--mj-color-primary, #d4081d);
  font-size: 1.85rem;
  font-weight: 800;
  margin: 0 0.15rem;
  vertical-align: -2px;
}

.vc-gift-sub {
  font-size: 0.85rem;
  color: var(--mj-color-text-light, #666);
  margin-bottom: 1.1rem;
}

.vc-gift-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  max-width: 460px;
  margin: 0 auto;
}

.vc-gift-card {
  border-radius: 6px;
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: transform 0.2s;
}

.vc-gift-card:hover {
  transform: translateY(-1px);
}

.vc-gift-amazon {
  background: #FFF8F0;
  border: 1px solid #FFE0B0;
}

.vc-gift-google {
  background: #F0F7FF;
  border: 1px solid #B8D8E8;
}

.vc-gift-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: #232F3E;
}

.vc-gift-google .vc-gift-card-name {
  color: #1a1f36;
}

.vc-gift-card-type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.vc-gift-amazon .vc-gift-card-type {
  color: #FF9900;
}

.vc-gift-google .vc-gift-card-type {
  color: #34A853;
}

@media (max-width: 600px) {
  .vc-gift {
    padding: 1.5rem 1.1rem;
  }
  .vc-gift-label {
    font-size: 1.2rem;
    letter-spacing: 0.14em;
  }
  .vc-gift-headline {
    font-size: 1.1rem;
  }
  .vc-gift-amount {
    font-size: 1.6rem;
  }
}

/* ===== News見出し(本番.contents h2 スタイル準拠) ===== */
.vc-page-foot #new h2 {
  color: #FFF;
  padding: 5px 15px;
  background: var(--mj-color-primary, #d4081d);
  box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  margin: 0 0 15px;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
}

/* close/open 状態用 (本番準拠) */
.vc-page-foot #new h2.close {
  background: var(--mj-color-primary, #d4081d) url(../images/btn_plus.png) no-repeat right center/34px 34px;
  cursor: pointer;
}

.vc-page-foot #new h2.open {
  background: var(--mj-color-primary, #d4081d) url(../images/btn_minus.png) no-repeat right center/34px 34px;
  cursor: pointer;
}

/* dl の余白 */
.vc-page-foot #newinfo {
  margin: 0;
  padding: 0;
}

/* shadowOya3 / shadow3 (本番のtext.css準拠で本番と同じ見え方に) */
.vc-page-foot .shadowOya3 {
  display: inline-block;
}

/* shadow3 はtext.cssで定義済み(白文字+影) - 赤背景の上で見える */

/* ============================================================
   service-page 専用追加スタイル (Phase 5 共通化開始: 2026-05)
   .sp- プレフィックス = service-page 共通コンポーネント
   既存 .vc- (voicecampain) と並行運用
   ============================================================ */

/* --- 割引率カード (2/3/4名 -> 10/15/20% OFF) --- */
.sp-discount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.sp-discount-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-top: 4px solid #d4081d;
  border-radius: 0 0 8px 8px;
  padding: 24px 16px 20px;
  text-align: center;
}

.sp-discount-card__count {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.sp-discount-card__rate {
  font-size: 36px;
  font-weight: bold;
  color: #d4081d;
  line-height: 1;
  letter-spacing: -0.02em;
}

.sp-discount-card__rate-unit {
  font-size: 18px;
  font-weight: normal;
  margin-left: 2px;
}

.sp-discount-card__label {
  font-size: 12px;
  color: #888;
  margin-top: 8px;
}

/* --- ヒーロー: 横並び (PC) / 縦積み (SP) --- */
.sp-hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fdf2f4 100%);
  border-left: 6px solid #d4081d;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 32px;
  align-items: center;
}

.sp-hero--split .sp-hero__text {
  padding: 28px 24px;
}

.sp-hero--split .sp-hero__image {
  background-size: cover;
  background-position: center;
  min-height: 220px;
  height: 100%;
}

.sp-hero--split .sp-hero__badges {
  margin-bottom: 12px;
}

.sp-hero--split .sp-hero__title {
  font-size: 28px;
  font-weight: bold;
  color: #1a1f36;
  margin: 8px 0 12px;
  line-height: 1.3;
}

.sp-hero--split .sp-hero__lead {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

.sp-hero--split .sp-hero__highlight {
  color: #d4081d;
  font-weight: bold;
}

/* バッジ (CAMPAIGN / 受付中) - .vc-badge と互換、.sp-badge エイリアス */
.sp-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  margin-right: 6px;
}
.sp-badge--campaign {
  background: #d4081d;
  color: #ffffff;
}
.sp-badge--status {
  background: #ffffff;
  color: #d4081d;
  border: 1px solid #d4081d;
}

/* モバイル: 768px 以下で縦積み */
@media screen and (max-width: 768px) {
  .sp-hero--split {
    grid-template-columns: 1fr;
  }
  .sp-hero--split .sp-hero__image {
    min-height: 200px;
    order: -1;
  }
  .sp-discount-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sp-discount-card__rate {
    font-size: 32px;
  }
}

/* タブレット: 600px 以下で2列に圧縮 */
@media screen and (max-width: 600px) {
  .sp-discount-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   service-page 微調整 (Phase 5 B-1 step7: 2026-05-09)
   ============================================================ */

/* インライン強調(赤太字) */
.sp-emphasis {
  color: #d4081d;
  font-weight: bold;
}

/* CTA リード文の強調(font-size up + bold + margin) */
.vc-cta-lead {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 18px;
}

/* CTAセクション下に余白を追加(次セクションとの隙間拡大) */
.vc-cta {
  margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
  .vc-cta-lead {
    font-size: 16px;
  }
  .vc-cta {
    margin-bottom: 36px;
  }
}

/* ============================================================
   service-page Phase 5 B-2 追加 (introductioncampain 用: 2026-05)
   ============================================================ */

/* --- ヒーロー右側 CSS イラスト(2人アイコン↔矢印) --- */
.sp-hero__illust {
  background: linear-gradient(135deg, #fdf2f4 0%, #e8f1fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 20px;
}

.sp-hero__illust-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sp-hero__illust-person {
  text-align: center;
}

.sp-hero__illust-person-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto;
}

.sp-hero__illust-person--giver .sp-hero__illust-person-icon {
  background: #fdf2f4;
  color: #d4081d;
  border: 2px solid #d4081d;
}

.sp-hero__illust-person--receiver .sp-hero__illust-person-icon {
  background: #e8f1fb;
  color: #185fa5;
  border: 2px solid #185fa5;
}

.sp-hero__illust-person-label {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
  font-weight: 500;
}

.sp-hero__illust-arrow {
  font-size: 28px;
  color: #888;
}

/* --- 特典 2カード(紹介者赤 / 紹介先青) --- */
.sp-benefit-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.sp-benefit-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0 0 8px 8px;
  padding: 24px 18px 20px;
  text-align: center;
}

.sp-benefit-card--giver {
  border-top: 4px solid #d4081d;
}

.sp-benefit-card--receiver {
  border-top: 4px solid #185fa5;
}

.sp-benefit-card__role {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.sp-benefit-card--giver .sp-benefit-card__role {
  color: #d4081d;
}

.sp-benefit-card--receiver .sp-benefit-card__role {
  color: #185fa5;
}

.sp-benefit-card__amount {
  font-size: 22px;
  font-weight: bold;
  color: #1a1f36;
  line-height: 1.4;
  margin: 10px 0;
}

.sp-benefit-card__amount-highlight {
  font-size: 32px;
}

.sp-benefit-card--giver .sp-benefit-card__amount-highlight {
  color: #d4081d;
}

.sp-benefit-card--receiver .sp-benefit-card__amount-highlight {
  color: #185fa5;
}

.sp-benefit-card__sub {
  font-size: 12px;
  color: #888;
  margin-top: 8px;
}

/* --- ご紹介の流れ STEP カード(縦並び4段) --- */
.sp-step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.sp-step-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.sp-step-card__num {
  background: #d4081d;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 999px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.sp-step-card__text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* 役割色強調(STEP本文内および対象者カード内で使用) */
.sp-role-giver {
  color: #d4081d;
  font-weight: bold;
}

.sp-role-receiver {
  color: #185fa5;
  font-weight: bold;
}

/* --- 対象者 3カード(紹介者赤 / 紹介先青 / 共通条件グレー) --- */
.sp-role-card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.sp-role-card {
  background: #ffffff;
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
}

.sp-role-card--giver {
  background: #fdf2f4;
  border: 1px solid #f5d6dc;
  border-left: 4px solid #d4081d;
}

.sp-role-card--receiver {
  background: #e8f1fb;
  border: 1px solid #c5dbef;
  border-left: 4px solid #185fa5;
}

.sp-role-card--common {
  background: #f5f5f5;
  border: 1px solid #dcdcdc;
  border-left: 4px solid #666666;
}

.sp-role-card__title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}

.sp-role-card--giver .sp-role-card__title {
  color: #d4081d;
}

.sp-role-card--receiver .sp-role-card__title {
  color: #185fa5;
}

.sp-role-card--common .sp-role-card__title {
  color: #444444;
}

.sp-role-card ul {
  margin: 0;
  padding-left: 1.2em;
}

.sp-role-card ul li {
  font-size: 13px;
  color: #333;
  line-height: 1.9;
}

/* モバイル: 768px 以下 */
@media screen and (max-width: 768px) {
  .sp-hero__illust {
    min-height: 180px;
  }
  .sp-benefit-pair {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sp-benefit-card__amount-highlight {
    font-size: 28px;
  }
  .sp-step-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ============================================================
   service-page Phase 5 B-2 追加 step2: 2カードCTA (2026-05)
   役割色フル活用の紹介者(赤)/紹介先(青)の2カードCTA
   ============================================================ */

/* --- 2カードCTA グリッド --- */
.sp-cta-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 32px;
}

/* --- 2カードCTA 各カード --- */
.sp-cta-dual-card {
  border-radius: 8px;
  padding: 26px 18px 24px;
  text-align: center;
}

.sp-cta-dual-card--giver {
  background: linear-gradient(135deg, #d4081d 0%, #b8071a 100%);
}

.sp-cta-dual-card--receiver {
  background: linear-gradient(135deg, #185fa5 0%, #134a82 100%);
}

/* --- 上部のロール表示(紹介者の方 / 紹介先の方) --- */
.sp-cta-dual-card__role {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

/* --- リード文(白文字) --- */
.sp-cta-dual-card__lead {
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  margin: 0 0 14px;
  line-height: 1.5;
}

/* --- ボタン本体 --- */
.sp-cta-dual-card__button {
  display: inline-block;
  background: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.sp-cta-dual-card__button:hover {
  opacity: 0.85;
}

.sp-cta-dual-card--giver .sp-cta-dual-card__button {
  color: #d4081d;
}

.sp-cta-dual-card--receiver .sp-cta-dual-card__button {
  color: #185fa5;
}

/* --- モバイル: 縦積み --- */
@media screen and (max-width: 768px) {
  .sp-cta-dual {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0 28px;
  }
  .sp-cta-dual-card {
    padding: 22px 16px 20px;
  }
  .sp-cta-dual-card__lead {
    font-size: 14px;
  }
}

/* ============================================================
   service-page Phase 5 B-3 追加 (ecutuninglight 用: 2026-05)
   ============================================================ */

/* --- 料金カード --- */
.sp-pricing-card {
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  border-left: 4px solid #f5a623;
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.sp-pricing-card__amount {
  display: flex;
  flex-direction: column;
}

.sp-pricing-card__amount-label {
  font-size: 12px;
  color: #8b6914;
  margin-bottom: 2px;
}

.sp-pricing-card__amount-value {
  font-size: 28px;
  font-weight: bold;
  color: #1a1f36;
  line-height: 1;
}

.sp-pricing-card__amount-tax {
  font-size: 12px;
  color: #888;
  margin-left: 4px;
  font-weight: normal;
}

.sp-pricing-card__badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sp-pricing-card__badge {
  font-size: 11px;
  font-weight: bold;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
}

.sp-pricing-card__badge--carry { background: #d4081d; }
.sp-pricing-card__badge--postal { background: #f5a623; }
.sp-pricing-card__badge--remote { background: #5cb340; }

/* --- 調整項目アコーディオン (details要素) --- */
.sp-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.sp-feature-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
}

.sp-feature-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: bold;
  color: #1a1f36;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.15s;
}

.sp-feature-item summary::-webkit-details-marker {
  display: none;
}

.sp-feature-item summary:hover {
  background: #fdf2f4;
}

.sp-feature-item summary::after {
  content: "＋";
  font-size: 20px;
  color: #d4081d;
  font-weight: normal;
  transition: transform 0.2s;
}

.sp-feature-item[open] summary::after {
  content: "−";
}

.sp-feature-item__num {
  display: inline-block;
  background: #d4081d;
  color: #ffffff;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 999px;
  margin-right: 10px;
  vertical-align: middle;
}

.sp-feature-item__subtitle {
  font-size: 13px;
  color: #d4081d;
  font-weight: normal;
  margin-left: 8px;
}

.sp-feature-item__body {
  padding: 0 18px 18px;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  border-top: 1px solid #f0f0f0;
}

.sp-feature-item__body p {
  margin: 12px 0 0;
}

.sp-feature-item__body .sp-note {
  font-size: 12px;
  color: #888;
}

/* --- メーカー別車種グループ --- */
.sp-vehicle-group-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.sp-vehicle-group {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 16px 18px;
}

.sp-vehicle-group__maker {
  font-size: 13px;
  color: #444;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.sp-vehicle-group__count {
  font-size: 11px;
  color: #888;
  font-weight: normal;
  margin-left: 6px;
}

.sp-vehicle-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sp-vehicle-pill {
  display: inline-block;
  background: #fdf2f4;
  color: #d4081d;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #f5d6dc;
  text-decoration: none;
  transition: opacity 0.15s;
}

.sp-vehicle-pill:hover {
  opacity: 0.75;
}

.sp-vehicle-pill__year {
  font-size: 10px;
  color: #999;
  margin-left: 4px;
}

/* 開発車両用(ベージュ系) */
.sp-vehicle-group--dev {
  background: #faf7f0;
  border: 1px dashed #d8c89c;
}

.sp-vehicle-group--dev .sp-vehicle-group__maker {
  color: #7a6539;
}

.sp-vehicle-group--dev .sp-vehicle-pill {
  background: #ffffff;
  color: #7a6539;
  border-color: #d8c89c;
  cursor: default;
}

.sp-vehicle-group--dev .sp-vehicle-pill:hover {
  opacity: 1;
}

/* --- CTA 3カード --- */
.sp-cta-triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 32px;
}

.sp-cta-dual-card--postal {
  background: linear-gradient(135deg, #f5a623 0%, #d68a0f 100%);
}

.sp-cta-dual-card--postal .sp-cta-dual-card__button {
  color: #d68a0f;
}

.sp-cta-dual-card--remote {
  background: linear-gradient(135deg, #5cb340 0%, #4a9a31 100%);
}

.sp-cta-dual-card--remote .sp-cta-dual-card__button {
  color: #4a9a31;
}

/* --- 注意事項カード(Ameba装飾廃止版) --- */
.sp-warning-card {
  background: #fff8e1;
  border-left: 4px solid #f5a623;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.sp-warning-card__title {
  font-size: 14px;
  color: #8b6914;
  font-weight: bold;
  margin-bottom: 10px;
}

.sp-warning-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.sp-warning-card li {
  font-size: 13px;
  color: #333;
  line-height: 1.8;
  padding-left: 1.4em;
  text-indent: -1.4em;
  margin-bottom: 6px;
}

.sp-warning-card li::before {
  content: "⚠ ";
  color: #d4081d;
  font-weight: bold;
  margin-right: 4px;
}

.sp-warning-card li .sp-note {
  display: block;
  font-size: 12px;
  color: #888;
  padding-left: 1.4em;
  text-indent: 0;
  margin-top: 2px;
}

/* --- お客様の声サムネイルグリッド --- */
.sp-voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 20px 0 12px;
}

.sp-voice-grid__item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.15s;
}

.sp-voice-grid__item:hover {
  opacity: 0.85;
}

.sp-voice-grid__item img {
  width: 100%;
  height: auto;
  display: block;
}

.sp-voice-grid__more {
  text-align: right;
  margin: 12px 0 24px;
}

.sp-voice-grid__more a {
  font-size: 13px;
  color: #d4081d;
  text-decoration: none;
  font-weight: bold;
}

.sp-voice-grid__more a:hover {
  text-decoration: underline;
}

/* --- 参考ブログ3カード --- */
.sp-blog-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.sp-blog-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 0.15s;
}

.sp-blog-card:hover {
  opacity: 0.85;
}

.sp-blog-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.sp-blog-card__title {
  font-size: 13px;
  color: #1a1f36;
  padding: 10px 12px;
  line-height: 1.5;
  font-weight: 500;
}

/* --- モバイル: 768px 以下 --- */
@media screen and (max-width: 768px) {
  .sp-pricing-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .sp-pricing-card__amount-value {
    font-size: 24px;
  }
  .sp-cta-triple {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .sp-voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sp-blog-card-list {
    grid-template-columns: 1fr;
  }
  .sp-feature-item summary {
    flex-wrap: wrap;
    padding: 14px 16px;
  }
  .sp-feature-item__subtitle {
    margin-left: 0;
    margin-top: 4px;
    display: block;
    flex-basis: 100%;
  }
}

/* ============================================================
   service-page Phase 5 B-3 追加 step2: voice モーダル (2026-05)
   customervoice.html と同等のモーダル体験を共通ページに提供
   .voice-* クラスは customervoice.css と命名一致(同等動作)
   ============================================================ */

/* --- モーダルオーバーレイ --- */
.voice-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.voice-modal-overlay.is-open {
  display: flex;
}

body.voice-modal-locked {
  overflow: hidden;
}

/* --- モーダル本体 --- */
.voice-modal {
  background: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 32px 28px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.voice-modal h2 {
  font-size: 18px;
  font-weight: bold;
  color: #1a1f36;
  margin: 16px 0 16px;
  line-height: 1.5;
}

.voice-modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #888;
  cursor: pointer;
  line-height: 1;
  padding: 6px 12px;
}
.voice-modal-close:hover { color: #d4081d; }

.voice-modal-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.voice-modal-body {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}
.voice-modal-body p {
  margin: 0 0 14px;
  white-space: pre-wrap;
}

.voice-modal-footer {
  text-align: right;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.voice-modal-close-btn {
  background: #d4081d;
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 24px;
  border-radius: 6px;
  cursor: pointer;
}
.voice-modal-close-btn:hover { opacity: 0.85; }

/* --- バッジ(車種・年式) --- */
.voice-badge-make,
.voice-badge-year {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 999px;
}
.voice-badge-make {
  background: #fdf2f4;
  color: #d4081d;
  border: 1px solid #f5d6dc;
}
.voice-badge-year {
  background: #f5f5f5;
  color: #555;
  border: 1px solid #e0e0e0;
}

/* --- カードグリッド(customervoice 同等) --- */
.voice-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin: 20px 0;
}

.voice-card {
  background: #ffffff;
  padding: 18px 20px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.voice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.voice-card h3 {
  font-size: 14px;
  font-weight: bold;
  color: #1a1f36;
  margin: 10px 0 8px;
  line-height: 1.5;
}

.voice-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.voice-preview {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.voice-readmore {
  display: inline-block;
  color: #d4081d;
  font-weight: bold;
  margin-left: 6px;
}

/* --- モバイル --- */
@media screen and (max-width: 768px) {
  .voice-grid {
    grid-template-columns: 1fr;
  }
  .voice-modal {
    padding: 28px 20px 20px;
    max-height: 85vh;
  }
  .voice-modal h2 {
    font-size: 16px;
  }
}

/* ============================================================
   service-page Phase 5 B-4 追加 (whymotojp 用: 2026-05)
   ============================================================ */

/* --- 6つの強みサマリーグリッド --- */
.sp-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.sp-strength-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 18px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sp-strength-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #d4081d;
}

.sp-strength-card__num {
  background: #d4081d;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.sp-strength-card__title {
  font-size: 15px;
  font-weight: bold;
  color: #1a1f36;
  line-height: 1.4;
  margin: 0;
}

.sp-strength-card__desc {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* --- 強み詳細セクション --- */
.sp-strength-detail {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 24px 28px;
  margin: 20px 0;
  scroll-margin-top: 80px;
}

.sp-strength-detail__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #fdf2f4;
}

.sp-strength-detail__num {
  background: #d4081d;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.sp-strength-detail__title {
  font-size: 20px;
  font-weight: bold;
  color: #1a1f36;
  margin: 0;
  line-height: 1.4;
}

.sp-strength-detail__body {
  font-size: 14px;
  color: #333;
  line-height: 1.9;
}

.sp-strength-detail__body p {
  margin: 12px 0;
}

.sp-strength-detail__body strong {
  color: #1a1f36;
  font-weight: bold;
}

.sp-strength-detail__body .sp-highlight {
  color: #d4081d;
  font-weight: bold;
}

.sp-strength-detail__body .sp-note {
  font-size: 12px;
  color: #888;
  display: block;
  margin-top: 8px;
}

/* --- 画像配置(セクション内) --- */
.sp-strength-detail__image {
  margin: 16px auto;
  max-width: 800px;
}

.sp-strength-detail__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.sp-strength-detail__image-caption {
  font-size: 11px;
  color: #888;
  text-align: center;
  margin-top: 6px;
}

/* --- 画像ギャラリー(複数画像並び) --- */
.sp-image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.sp-image-gallery__item {
  display: flex;
  flex-direction: column;
}

.sp-image-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.sp-image-gallery__item-caption {
  font-size: 11px;
  color: #888;
  text-align: center;
  margin-top: 6px;
}

/* --- レース経歴(選手権別グルーピング) --- */
.sp-race-record-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}

.sp-race-record {
  background: #fafafa;
  border-left: 4px solid #d4081d;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
}

.sp-race-record__title {
  font-size: 14px;
  font-weight: bold;
  color: #d4081d;
  margin: 0 0 8px;
}

.sp-race-record__count {
  font-size: 11px;
  color: #888;
  font-weight: normal;
  margin-left: 4px;
}

.sp-race-record__rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sp-race-record__row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 10px;
  font-size: 13px;
  color: #333;
  line-height: 1.7;
  padding: 4px 0;
  align-items: baseline;
}

.sp-race-record__year {
  font-weight: bold;
  color: #1a1f36;
}

.sp-race-record__detail {
  color: #555;
}

.sp-race-record__detail .sp-team {
  font-size: 11px;
  color: #888;
  margin-left: 4px;
}

.sp-race-record__rank {
  font-size: 13px;
  font-weight: bold;
  color: #d4081d;
  white-space: nowrap;
}

.sp-race-record__rank--ongoing {
  font-size: 11px;
  background: #fdf2f4;
  color: #d4081d;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #f5d6dc;
}

/* --- 選手写真ブロック(キャプション付き) --- */
.sp-rider-photo {
  max-width: 600px;
  margin: 16px auto;
}

.sp-rider-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.sp-rider-photo__caption {
  font-size: 12px;
  color: #555;
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

/* --- モバイル: 768px 以下 --- */
@media screen and (max-width: 768px) {
  .sp-strength-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .sp-strength-card {
    padding: 14px 10px;
  }
  .sp-strength-card__title {
    font-size: 13px;
  }
  .sp-strength-card__desc {
    font-size: 10px;
  }
  .sp-strength-detail {
    padding: 18px 16px;
  }
  .sp-strength-detail__title {
    font-size: 17px;
  }
  .sp-strength-detail__body {
    font-size: 13px;
    line-height: 1.8;
  }
  .sp-race-record__row {
    grid-template-columns: 50px 1fr;
    gap: 6px;
    font-size: 12px;
  }
  .sp-race-record__rank {
    grid-column: 2;
    font-size: 12px;
  }
}

/* ============================================================
   service-page Phase C-1 段階2 (distributer 用: 2026-05)
   .sp-dist-* / .dist-modal* プレフィックスで追加
   既存クラスには触れない
   ============================================================ */

/* --- ヒーロー追加スタイル --- */
.sp-dist-hero {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border-left: 4px solid #d4081d;
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin-bottom: 24px;
}

.sp-dist-legend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 20px;
  font-size: 13px;
}

.sp-dist-legend__text {
  color: #555;
}

/* ============================
   Phase C-2 段階B-2: support.html カード+モーダル方式
   ============================ */

/* セクション内のカードリスト(PC 2列 / モバイル 1列) */
.sp-sup-faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .sp-sup-faq-list {
    grid-template-columns: 1fr;
  }
}

/* ミニ目次 (grid 全幅) */
.sp-sup-mini-toc {
  grid-column: 1 / -1;
}

/* ミニ目次見出し非表示(段階B-2) */
.sp-sup-mini-toc__title {
  display: none;
}

/* Q&A カード */
.sp-sup-card {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.1s, box-shadow 0.2s;
}
.sp-sup-card:hover {
  border-color: #c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.sp-sup-card__question {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 12px 0;
  font-size: 1.05em;
  font-weight: 700;
  color: #1a3a8c;
  line-height: 1.4;
}
.sp-sup-card__qmark {
  flex-shrink: 0;
  color: #c00;
  font-weight: 700;
}
.sp-sup-card__text {
  flex: 1;
}
.sp-sup-card__preview {
  flex: 1;
  margin: 0 0 14px 0;
  font-size: 0.95em;
  line-height: 1.7;
  color: #333;
}
.sp-sup-card__more {
  align-self: flex-end;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #c00;
  border-radius: 4px;
  color: #c00;
  font-size: 0.9em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.sp-sup-card__more:hover {
  background: #c00;
  color: #fff;
}

/* モーダル */
.sup-modal__overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}
.sup-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(90%, 720px);
  max-height: 85vh;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  flex-direction: column;
}
.sup-modal__close {
  position: absolute;
  top: 8px; right: 12px;
  width: 32px; height: 32px;
  background: transparent;
  border: none;
  font-size: 1.6em;
  color: #666;
  cursor: pointer;
  line-height: 1;
}
.sup-modal__close:hover { color: #c00; }
.sup-modal__title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 20px 56px 16px 24px;
  font-size: 1.2em;
  font-weight: 700;
  color: #1a3a8c;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}
.sup-modal__qmark {
  flex-shrink: 0;
  color: #c00;
  font-weight: 700;
}
.sup-modal__qtext {
  flex: 1;
  line-height: 1.4;
}
.sup-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px 24px 24px;
  line-height: 1.8;
}
.sup-modal__body p {
  margin: 0 0 14px 0;
}
.sup-modal__body p:last-child {
  margin-bottom: 0;
}
/* モーダル内テーブル(横スクロール対応) */
.sup-modal__table-wrap {
  overflow-x: auto;
  margin: 12px 0;
}
.sup-modal__body table {
  min-width: 100%;
  border-collapse: collapse;
  font-size: 0.9em;
}
/* モーダル内バナー */
.sup-modal__banners {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.sup-modal__banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: border-color 0.2s;
}
.sup-modal__banner:hover {
  border-color: #c00;
}
.sup-modal__banner img {
  width: 64px;
  height: auto;
  flex-shrink: 0;
}
.sup-modal__banner-title {
  font-weight: 600;
}
/* Mobile 調整(モーダル) */
@media (max-width: 600px) {
  .sup-modal {
    width: 95%;
    max-height: 90vh;
  }
  .sup-modal__title {
    padding: 16px 48px 14px 16px;
    font-size: 1.05em;
  }
  .sup-modal__body {
    padding: 16px;
  }
  .sup-modal__banner img {
    width: 48px;
  }
}

/* ヒーロー画像サイズ制限(支援ページ) */
.vc-hero figure img {
  max-width: 100%;
  max-height: 300px;
  height: auto;
  width: auto;
  display: block;
  margin: 16px auto 0;
}
@media (max-width: 600px) {
  .vc-hero figure img {
    max-height: 200px;
  }
}

/* ============================
   Phase C-2 support.html 専用 (sp-sup-*)
   ============================ */

/* トップ目次 */
.sp-sup-toc {
  margin: 24px 0;
  padding: 20px 24px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.sp-sup-toc__title {
  margin: 0 0 12px 0;
  font-size: 1.15em;
  font-weight: 700;
  color: #333;
}
.sp-sup-toc__list {
  margin: 0;
  padding-left: 1.5em;
  list-style: decimal;
}
.sp-sup-toc__list li {
  margin: 8px 0;
}
.sp-sup-toc__list a {
  color: #0070f3;
  text-decoration: none;
}
.sp-sup-toc__list a:hover {
  text-decoration: underline;
}
.sp-sup-toc__count {
  color: #666;
  font-size: 0.9em;
}

/* ミニ目次(各セクション内) */
.sp-sup-mini-toc {
  margin: 16px 0 24px 0;
  padding: 16px 20px;
  background: #fff7f7;
  border-left: 4px solid #c00;
  border-radius: 0 6px 6px 0;
}
.sp-sup-mini-toc__title {
  margin: 0 0 10px 0;
  font-size: 1em;
  font-weight: 700;
  color: #c00;
}
.sp-sup-mini-toc__list {
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
}
.sp-sup-mini-toc__list li {
  margin: 4px 0;
}
.sp-sup-mini-toc__list a {
  color: #333;
  text-decoration: none;
}
.sp-sup-mini-toc__list a:hover {
  color: #c00;
  text-decoration: underline;
}

/* FAQ アコーディオン(details) */
.sp-sup-faq {
  margin: 12px 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}
.sp-sup-faq[open] {
  border-color: #c00;
}
.sp-sup-faq__question {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  background: #f9f9f9;
}
.sp-sup-faq__question::-webkit-details-marker { display: none; }
.sp-sup-faq__question::after {
  content: '+';
  margin-left: auto;
  font-size: 1.4em;
  color: #c00;
  flex-shrink: 0;
  line-height: 1;
}
.sp-sup-faq[open] .sp-sup-faq__question::after {
  content: '−';
}
.sp-sup-faq__qmark {
  flex-shrink: 0;
  color: #c00;
  font-weight: 700;
  font-size: 1.1em;
}
.sp-sup-faq__text {
  flex: 1;
  line-height: 1.5;
}
.sp-sup-faq__answer {
  padding: 16px 18px 18px 18px;
  border-top: 1px solid #e0e0e0;
  line-height: 1.7;
}
.sp-sup-faq__answer p {
  margin: 0 0 12px 0;
}
.sp-sup-faq__answer p:last-child {
  margin-bottom: 0;
}
.sp-sup-faq__lead {
  color: #0070f3;
  font-weight: 600;
}

/* 強調(.underLineYellow の置換先) */
.sp-sup-strong {
  color: #c00;
  font-weight: 700;
}

/* 注釈・お知らせボックス(Q5 の料金体系統一お知らせ等) */
.sp-sup-notice {
  margin: 12px 0;
  padding: 12px 16px;
  background: #fff0f5;
  border: 2px solid #c00;
  border-radius: 6px;
  color: #0070f3;
  font-weight: 700;
}

/* 比較表 */
.sp-sup-table {
  width: 100%;
  margin: 16px 0;
  border-collapse: collapse;
  font-size: 0.95em;
}
.sp-sup-table th,
.sp-sup-table td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  text-align: left;
}
.sp-sup-table thead th {
  background: #c00;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.sp-sup-table tbody th {
  background: #f5f5f5;
  font-weight: 600;
}

/* バナー型誘導カード */
.sp-sup-banner-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}
.sp-sup-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: border-color 0.2s, transform 0.1s;
}
.sp-sup-banner:hover {
  border-color: #c00;
  transform: translateY(-1px);
}
.sp-sup-banner__img {
  width: 120px;
  height: auto;
  flex-shrink: 0;
  border-radius: 4px;
}
.sp-sup-banner__title {
  flex: 1;
  font-weight: 600;
}

/* 配送日数の解説画像 */
.sp-sup-shipping-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 12px auto;
}

/* 注釈の小サイズ表記 */
.sp-sup-small {
  display: block;
  font-size: 0.85em;
  color: #666;
  margin: 4px 0;
}

/* モバイル調整 */
@media (max-width: 600px) {
  .sp-sup-toc { padding: 16px; }
  .sp-sup-mini-toc { padding: 12px 16px; }
  .sp-sup-faq__question { padding: 12px 14px; }
  .sp-sup-faq__answer { padding: 14px; }
  .sp-sup-table { font-size: 0.85em; }
  .sp-sup-table th, .sp-sup-table td { padding: 8px; }
  .sp-sup-banner__img { width: 80px; }
}

/* --- 遠隔フィルタ状態バナー(段階2.8 / 表示制御は段階2.8.1 でクラス toggle 方式に変更) --- */
.sp-dist-filter-banner {
  display: none;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  padding: 10px 16px;
  background: #fff7f7;
  border: 1px solid #f0d0d0;
  border-radius: 6px;
}
.sp-dist-filter-banner.sp-dist-filter-banner--visible {
  display: flex;
}
.sp-dist-filter-banner__icon {
  flex-shrink: 0;
}
.sp-dist-filter-banner__text {
  flex: 1;
  font-weight: 600;
  color: #333;
}
.sp-dist-filter-banner__clear {
  flex-shrink: 0;
  padding: 4px 12px;
  background: #fff;
  border: 1px solid #c00;
  border-radius: 4px;
  color: #c00;
  font-size: 0.9em;
  cursor: pointer;
}
.sp-dist-filter-banner__clear:hover {
  background: #c00;
  color: #fff;
}
@media (max-width: 600px) {
  .sp-dist-filter-banner {
    flex-wrap: wrap;
    padding: 8px 12px;
  }
}

/* --- STEPカード本文の動詞フレーズ強調 --- */
.sp-dist-step-strong {
  color: #c00;
  font-weight: 700;
}

/* --- 安心訴求(STEPセクション直下) --- */
.sp-dist-reassurance {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
  padding: 20px 24px;
  text-align: center;
  background: #fff7f7;
  border: 1px solid #f0d0d0;
  border-radius: 8px;
}
.sp-dist-reassurance__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  color: #c00;
  flex-shrink: 0;
}
.sp-dist-reassurance__text {
  margin: 0;
  font-size: 1.05em;
  font-weight: 600;
  color: #333;
  line-height: 1.7;
}
.sp-dist-reassurance__strong {
  color: #c00;
  font-weight: 700;
}

/* Mobile 調整 */
@media (max-width: 600px) {
  .sp-dist-reassurance {
    padding: 16px;
  }
  .sp-dist-reassurance__icon {
    width: 40px;
    height: 40px;
  }
  .sp-dist-reassurance__text {
    font-size: 1em;
  }
}

/* --- 検索フォーム --- */
.sp-dist-search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin: 16px 0 8px;
}

.sp-dist-select-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 280px;
  min-width: 0;
}

.sp-dist-select-label__text {
  font-size: 13px;
  color: #333;
  flex-shrink: 0;
}

.sp-dist-select {
  flex: 1 1 auto;
  min-width: 0;
  padding: 9px 12px;
  font-size: 14px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  outline: none;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s;
}
.sp-dist-select:focus {
  border-color: #d4081d;
}

.sp-dist-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  user-select: none;
}
.sp-dist-filter input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #d4081d;
  cursor: pointer;
}

.sp-dist-count {
  font-size: 13px;
  color: #555;
  margin: 4px 0 0;
}
.sp-dist-count span {
  font-weight: bold;
  color: #d4081d;
}

/* --- 地図凡例(4段階) --- */
.sp-dist-map-legend {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 12px 0 8px;
  gap: 6px 16px;
  font-size: 12px;
  color: #555;
}
.sp-dist-map-legend li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sp-dist-map-legend__chip {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid #d0d0d0;
}
.sp-dist-map-legend__chip--0 { background: #e0e0e0; }
.sp-dist-map-legend__chip--1 { background: #f5b8b8; }
.sp-dist-map-legend__chip--2 { background: #e06060; }
.sp-dist-map-legend__chip--3 { background: #b00000; }

.sp-dist-map-legend__note {
  width: 100%;
  font-size: 11px;
  color: #888;
  margin-top: 4px;
}

/* --- 都道府県ブロック --- */
.sp-dist-prefecture {
  margin-bottom: 28px;
  scroll-margin-top: 70px;
}

.sp-dist-prefecture__title {
  font-size: 16px;
  font-weight: bold;
  color: #1a1f36;
  margin: 0 0 10px;
  padding: 6px 10px;
  background: #f5f5f5;
  border-left: 3px solid #d4081d;
  border-radius: 0 4px 4px 0;
}

.sp-dist-prefecture__count {
  font-size: 12px;
  color: #888;
  font-weight: normal;
  margin-left: 6px;
}

/* --- 店舗カードグリッド --- */
.sp-dist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sp-dist-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 14px 16px 12px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
.sp-dist-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #d4081d;
}
.sp-dist-card:focus-visible {
  outline: 2px solid #d4081d;
  outline-offset: 2px;
}

.sp-dist-card .redicon {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
}

.sp-dist-card__name {
  font-size: 14px;
  font-weight: bold;
  color: #1a1f36;
  margin: 0 0 6px;
  line-height: 1.4;
  padding-right: 64px;
}

.sp-dist-card__city {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.sp-dist-empty {
  background: #f9f9f9;
  border: 1px dashed #ccc;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 13px;
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .sp-dist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .sp-dist-grid {
    grid-template-columns: 1fr;
  }
  .sp-dist-hero {
    padding: 18px 20px;
  }
  .sp-dist-prefecture__title {
    font-size: 15px;
  }
}

/* --- jmap.js のゼロ県無効化(JSで動的に付与する class) --- */
.jmap-disabled {
  cursor: default !important;
}
.jmap-disabled:hover {
  /* hover色変化なし */
}

/* ============================================================
   .dist-modal* (店舗詳細モーダル、voice-modalと共存)
   ============================================================ */
.dist-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.dist-modal.is-open {
  display: flex;
}

.dist-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.dist-modal__content {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 28px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

body.dist-modal-locked {
  overflow: hidden;
}

.dist-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 26px;
  color: #888;
  cursor: pointer;
  line-height: 1;
  padding: 6px 10px;
}
.dist-modal__close:hover {
  color: #d4081d;
}

.dist-modal__title {
  font-size: 18px;
  font-weight: bold;
  color: #1a1f36;
  margin: 4px 0 14px;
  line-height: 1.5;
  padding-right: 32px;
}
.dist-modal__title .redicon {
  margin-left: 6px;
  font-size: 11px;
  vertical-align: middle;
}

.dist-modal__row {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #333;
  line-height: 1.7;
  margin: 6px 0;
}
.dist-modal__row-label {
  flex-shrink: 0;
  width: 60px;
  font-weight: bold;
  color: #888;
}

.dist-modal__addr {
  word-break: break-all;
}
.dist-modal__tel a {
  color: #d4081d;
  text-decoration: none;
  font-weight: bold;
}
.dist-modal__tel a:hover {
  text-decoration: underline;
}

.dist-modal__map {
  margin: 14px 0 12px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
}
.dist-modal__map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
.dist-modal__map-empty {
  padding: 28px 16px;
  text-align: center;
  font-size: 12px;
  color: #888;
}

.dist-modal__footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.dist-modal__cta {
  display: inline-block;
  background: #d4081d;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.dist-modal__cta:hover {
  opacity: 0.85;
}
.dist-modal__cta--disabled {
  background: #ccc;
  pointer-events: none;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .dist-modal__content {
    padding: 24px 20px 20px;
    max-height: 85vh;
  }
  .dist-modal__title {
    font-size: 16px;
  }
  .dist-modal__map iframe {
    height: 220px;
  }
}
