/* =====================================================
   CARLABO 修理版LP（/lp-repair/）追加スタイル
   ・既存 /lp/assets/css/style.css のデザインを最大限尊重
   ・新規セクション（対応エリア／修理統計／footer 3ブロック）と
     新規フィールド（checkbox 複数選・radio 群）のスタイルのみ追記
===================================================== */

:root {
  --lp-area-tier-primary: #1e9986;
  --lp-24hr-bg: linear-gradient(135deg, #1e9986, #0e2e54);
}

/* ------------------------------------------------------
   hidden 属性を優先（.form-group の display:flex に負けないように）
   → Turnstile 未設定時にチェックボックス下に謎の空白が出ていた不具合を修正
------------------------------------------------------ */
[hidden] { display: none !important; }
.form-group[hidden] { display: none !important; }

/* 空の form-error（エラーメッセージ未表示）は高さを持たない */
.form-error:empty { display: none !important; margin: 0 !important; padding: 0 !important; }

/* プライバシーポリシー同意の直下 gap を詰める（Turnstile無設定時の空白除去） */
.form-group--consent + .form-group[hidden] + .form-submit,
.form-group--consent + .form-submit {
  margin-top: 4px;
}

/* 送信ボタン：改行させないフォントサイズ・余白 */
.form-submit {
  white-space: nowrap !important;
  font-size: 15px !important;
  letter-spacing: 0.02em;
  padding: 14px 18px !important;
}
@media (max-width: 380px) {
  .form-submit { font-size: 14px !important; padding: 13px 12px !important; }
}

/* phone-bar 電話番号パネルのフォールバック注記 */
.phone-bar__tel-note {
  margin: 6px 0 0;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}
.phone-bar__tel-note a {
  color: #ffd300;
  font-weight: 700;
  text-decoration: underline;
}

/* ------------------------------------------------------
   フォーム：損傷状況・希望対応のチェックグループ
------------------------------------------------------ */
.form-check-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 10px 12px;
  background: #f7f9fc;
  border-radius: 10px;
  border: 1px solid #e0e8f0;
}
@media (min-width: 640px) {
  .form-check-group { grid-template-columns: 1fr 1fr; }
}
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.form-check:hover {
  background: #f0fbf8;
  border-color: var(--lp-area-tier-primary);
}
.form-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--lp-area-tier-primary);
}
.form-check:has(input:checked) {
  background: #e1f5f2;
  border-color: var(--lp-area-tier-primary);
  font-weight: 600;
}

.form-radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.form-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.form-radio:hover {
  background: #f0fbf8;
  border-color: var(--lp-area-tier-primary);
}
.form-radio input[type="radio"] {
  accent-color: var(--lp-area-tier-primary);
}
.form-radio:has(input:checked) {
  background: #e1f5f2;
  border-color: var(--lp-area-tier-primary);
  font-weight: 600;
}

/* ------------------------------------------------------
   修理実績カードのタグ表示
   ・2タグ横並びだと狭い swiper スライドで折り返しが起きて醜くなるため縦並びに
------------------------------------------------------ */
.car-card__tags {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 4px !important;
}
.car-card__year,
.car-card__brand {
  white-space: nowrap !important;
  width: fit-content;
}

/* ------------------------------------------------------
   修理実績：統計カード
------------------------------------------------------ */
.repair-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 680px;
  margin: 20px auto 24px;
  padding: 0 20px;
}
@media (min-width: 640px) {
  .repair-stats { grid-template-columns: repeat(4, 1fr); }
}
.repair-stats__item {
  background: var(--lp-24hr-bg);
  color: #fff;
  padding: 16px 12px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.repair-stats__num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.repair-stats__unit {
  font-size: 14px;
  font-weight: 700;
  margin-left: 2px;
}
.repair-stats__label {
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 500;
  opacity: 0.9;
}

/* 修理 vs 買取の対比メッセージ */
.repair-vs-buyout {
  max-width: 720px;
  margin: 18px auto 0;
  padding: 16px 20px;
  background: #fef9e7;
  border-left: 4px solid #ffd300;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.8;
  color: #5c4b00;
}
.repair-vs-buyout strong { color: #0e2e54; }

/* ------------------------------------------------------
   対応エリアセクション
------------------------------------------------------ */
.area-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(14, 46, 84, 0.08);
}
.area-section__head { text-align: center; margin-bottom: 24px; }
.area-section__title {
  font-size: 24px;
  font-weight: 800;
  color: #0e2e54;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}
.area-section__lead { font-size: 14px; color: #475569; line-height: 1.7; }
.area-tier {
  background: #f7f9fc;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-left: 4px solid #c0cfe0;
}
.area-tier--primary {
  background: linear-gradient(135deg, #e1f5f2 0%, #f7f9fc 100%);
  border-left-color: var(--lp-area-tier-primary);
  box-shadow: 0 3px 8px rgba(30, 153, 134, 0.15);
}
.area-tier__label {
  font-size: 14px;
  font-weight: 700;
  color: #0e2e54;
  margin-bottom: 8px;
}
.area-tier--primary .area-tier__label { color: var(--lp-area-tier-primary); }
.area-tier__list {
  display: flex; flex-wrap: wrap; gap: 6px 8px;
  list-style: none; padding: 0; margin: 0;
}
.area-tier__list li {
  display: inline-block;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #c0cfe0;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #0e2e54;
}
.area-tier--primary .area-tier__list li {
  background: var(--lp-area-tier-primary);
  color: #fff;
  border-color: var(--lp-area-tier-primary);
}
.area-section__note {
  margin-top: 14px;
  padding: 10px 14px;
  background: #fef9e7;
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.7;
  color: #5c4b00;
  text-align: center;
}

/* 10市の固有情報アコーディオン */
.area-cities { margin-top: 22px; }
.area-cities__title {
  font-size: 17px;
  font-weight: 800;
  color: #0e2e54;
  margin: 0 0 8px;
  text-align: center;
}
.area-cities__lead {
  font-size: 13px;
  color: #475569;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 14px;
}
.area-city {
  background: #fff;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  margin-bottom: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.area-city[open] {
  border-color: var(--lp-area-tier-primary);
  box-shadow: 0 2px 8px rgba(30, 153, 134, 0.1);
}
.area-city__q {
  position: relative;
  padding: 11px 40px 11px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #0e2e54;
  cursor: pointer;
  list-style: none;
}
.area-city__q::-webkit-details-marker { display: none; }
.area-city__q::after {
  content: '＋';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lp-area-tier-primary);
  font-size: 16px;
  font-weight: 700;
}
.area-city[open] .area-city__q::after { content: '−'; }
.area-city__a {
  padding: 4px 14px 14px;
  font-size: 13px;
  line-height: 1.85;
  color: #334155;
  border-top: 1px solid #eef2f6;
}
.area-city__a p { margin: 4px 0; }
.area-city__a strong { color: #0e2e54; }

/* ------------------------------------------------------
   FAQ セクション（LLMO対応・アコーディオン形式）
------------------------------------------------------ */
.faq-section {
  max-width: 820px;
  margin: 40px auto 30px;
  padding: 30px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(14, 46, 84, 0.08);
}
.faq-section__head { text-align: center; margin-bottom: 20px; }
.faq-section__title {
  font-size: 26px;
  font-weight: 800;
  color: #0e2e54;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}
.faq-section__lead {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.faq-item {
  background: #f7f9fc;
  border: 1px solid #e0e8f0;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] {
  background: #fff;
  border-color: var(--lp-area-tier-primary);
  box-shadow: 0 3px 12px rgba(30, 153, 134, 0.12);
}
.faq-item__q {
  position: relative;
  padding: 14px 46px 14px 46px;
  font-size: 15px;
  font-weight: 700;
  color: #0e2e54;
  line-height: 1.55;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::before {
  content: 'Q';
  position: absolute;
  left: 14px; top: 14px;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--lp-area-tier-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
}
.faq-item__q::after {
  content: '＋';
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-area-tier-primary);
  transition: transform 0.2s;
}
.faq-item[open] .faq-item__q::after {
  content: '−';
}
.faq-item__a {
  position: relative;
  padding: 4px 20px 18px 46px;
  font-size: 14px;
  line-height: 1.85;
  color: #334155;
}
.faq-item__a::before {
  content: 'A';
  position: absolute;
  left: 14px; top: 4px;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 2px solid var(--lp-area-tier-primary);
  color: var(--lp-area-tier-primary);
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
}
.faq-item__a a {
  color: var(--lp-area-tier-primary);
  font-weight: 700;
  text-decoration: underline;
}
@media (max-width: 480px) {
  .faq-section {
    margin: 30px 12px;
    padding: 20px 14px;
  }
  .faq-section__title { font-size: 22px; }
  .faq-item__q { padding: 12px 40px 12px 40px; font-size: 14px; }
  .faq-item__a { padding: 4px 16px 14px 40px; font-size: 13.5px; }
}

/* ------------------------------------------------------
   Footer（修理版：会社情報3ブロック）
------------------------------------------------------ */
.site-footer--repair {
  padding: 40px 20px 30px;
  background: #0e2e54;
  color: rgba(255, 255, 255, 0.88);
}
.site-footer--repair .site-footer__brand {
  justify-content: center;
  margin-bottom: 24px;
}
.footer-company {
  max-width: 720px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.footer-company__block {
  padding: 15px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.75;
}
.footer-company__label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 6px;
  letter-spacing: 0.05em;
}
.footer-company__name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.footer-company a { color: #7fc7b6; text-decoration: underline; }
.site-footer--repair .site-footer__copy {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
  letter-spacing: 0.03em;
}

/* ------------------------------------------------------
   SP調整
------------------------------------------------------ */
@media (max-width: 480px) {
  .area-section { margin: 30px 12px; padding: 20px 14px; }
  .area-section__title { font-size: 20px; }
  .repair-stats__num { font-size: 22px; }
  .repair-stats__label { font-size: 10.5px; }
}

/* ----- 対応保険会社（テキストバナー） ----- */
.insurance-banner {
  margin: 24px 16px;
  padding: 24px 20px;
  background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
  border: 2px solid #0e2e54;
  border-radius: 12px;
  position: relative;
}
.insurance-banner__inner {
  max-width: 600px;
  margin: 0 auto;
}
.insurance-banner__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: #0e2e54;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.insurance-banner__title-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: #1e9986;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}
.insurance-banner__lead {
  margin: 0 0 8px;
  font-size: 13px;
  color: #334155;
  line-height: 1.75;
}
.insurance-banner__lead strong {
  color: #0e2e54;
  font-weight: 700;
}
.insurance-banner__lead--em {
  margin-top: 10px;
  padding: 10px 12px;
  background: #fef9e7;
  border-left: 3px solid #b79b3e;
  border-radius: 4px;
  font-size: 13px;
}
@media (min-width: 600px) {
  .insurance-banner { padding: 28px 32px; }
  .insurance-banner__title { font-size: 22px; }
  .insurance-banner__lead { font-size: 14px; }
}

/* ----- 修理実績：before/after写真の準備ができるまで隠す ----- */
/* 中間CTA (#section_cta_results) はセクション内にあるので、ヘッダーとスワイパーだけ非表示にする */
#section_results > .results-header,
#section_results > .swiper.results-swiper {
  display: none !important;
}

/* ----- 1タップ発信化：buttonをaタグに置換した分のみ最小調整 ----- */
.phone-bar__micro-btn--direct {
  display: inline-block;
}
.phone-bar__micro-btn--direct [data-company="phone"] {
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ----- ヒーロー背景を実写化したのに伴うコントラスト調整 ----- */
.hero--repair .hero__bg {
  object-fit: cover;
  object-position: 50% 50%; /* 顔が中央に来るようクロップ済み */
  height: 100%;
}
/* 灰色のジオメトリ・オーバーレイは背景写真と相性が悪いので非表示 */
.hero--repair .hero__overlay {
  display: none;
}
/* グリーンバナー右上のクリップボード（hand-icon）は写真背景と相性が悪いので非表示 */
.hero--repair .green-banner__hand {
  display: none;
}
/* 上：ロゴ可読性のため白薄ベール、下：見出し可読性のためダーク・グラデーション */
.hero--repair::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(255, 255, 255, 0.20) 14%,
    rgba(255, 255, 255, 0.00) 28%,
    rgba(14, 46, 84, 0.00) 55%,
    rgba(14, 46, 84, 0.40) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero--repair .header,
.hero--repair .hero__content {
  z-index: 2;
}
/* ロゴ・ブランド名に光沢シャドウで視認性UP */
.hero--repair .header__logo {
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.9));
}
.hero--repair .header__name {
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.95), 0 0 8px rgba(255, 255, 255, 0.6);
}
/* 見出しサブ（白）に強いシャドウで視認性UP */
.hero--repair .hero__heading-sub {
  color: #ffffff;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.85),
    0 0 12px rgba(0, 0, 0, 0.6),
    0 0 3px rgba(0, 0, 0, 0.9);
}

/* ----- 緑帯撤去：ピュアテキスト＋強いシャドウ（Approach A） ----- */
/* "即日修理" の緑帯を撤去 */
.hero--repair .hero__heading-main {
  background: transparent;
  transform: none;
  padding: 0;
}
.hero--repair .hero__heading-main span {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow:
    0 3px 8px rgba(0, 0, 0, 0.9),
    0 0 18px rgba(0, 0, 0, 0.7),
    0 0 4px rgba(0, 0, 0, 0.95),
    0 0 1px rgba(0, 0, 0, 1);
}
/* グリーンバナーの背景も撤去 */
.hero--repair .green-banner {
  background: transparent;
  padding: 12px 20px;
}
.hero--repair .green-banner__title-top,
.hero--repair .green-banner__title-bottom {
  color: #ffffff;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.9),
    0 0 12px rgba(0, 0, 0, 0.6),
    0 0 3px rgba(0, 0, 0, 0.95);
}
/* "全力で" だけゴールドアクセント */
.hero--repair .green-banner__title-bottom .highlight {
  color: var(--gold, #b79b3e);
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.95),
    0 0 10px rgba(0, 0, 0, 0.6),
    0 0 3px rgba(0, 0, 0, 1);
}
/* タグは半透明白で淡く浮かせる */
.hero--repair .tag {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy, #0e2e54);
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

/* ----- 写真→次セクション(#CDEEE8) のシームレス遷移 ----- */
/* 元の .hero { height: 460px } では絶対配置の子(hero__content)を押し下げられないため、
   ヒーロー自体の高さを拡張してタグとフェードの間に空間を作る */
.hero.hero--repair {
  height: 580px !important;
}
.hero--repair::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  /* S字カーブで自然なフェード（ease-in-out 風の多段ストップ） */
  background: linear-gradient(
    180deg,
    rgba(205, 238, 232, 0)    0%,
    rgba(205, 238, 232, 0.02) 10%,
    rgba(205, 238, 232, 0.06) 20%,
    rgba(205, 238, 232, 0.13) 30%,
    rgba(205, 238, 232, 0.24) 40%,
    rgba(205, 238, 232, 0.40) 50%,
    rgba(205, 238, 232, 0.58) 60%,
    rgba(205, 238, 232, 0.74) 70%,
    rgba(205, 238, 232, 0.86) 80%,
    rgba(205, 238, 232, 0.95) 90%,
    rgba(205, 238, 232, 1)    100%
  );
  z-index: 4; /* 写真とコンテンツの上、フェード優先 */
  pointer-events: none;
}

/* =========================================================
   ヒーロースライダー（3枚自動切替） 2026-05-15 追加
   既存の .hero--repair の固定高さ580pxと装飾を上書き
   ========================================================= */
.hero.hero--repair.hero--slider {
  height: auto !important;
  padding: 0;
  background: #0e2e54;
  position: relative;
  overflow: hidden;
}
.hero--slider::before,
.hero--slider::after {
  display: none !important; /* 既存のグラデフェード・オーバーレイ撤去 */
}
.hero--slider .hero__bg,
.hero--slider .hero__overlay,
.hero--slider .hero__person,
.hero--slider .header,
.hero--slider .hero__content {
  display: none !important;
}
.hero__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-swiper {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  position: relative;
  background: #0e2e54;
}
.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-swiper__pagination {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
}
.hero-swiper__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #ffffff;
  opacity: 0.55;
  margin: 0 4px;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
}
.hero-swiper__pagination .swiper-pagination-bullet-active {
  background: #FFD166;
  opacity: 1;
  transform: scale(1.15);
}

/* =========================================================
   参考価格表（ヒーロー直下） 2026-05-15 追加
   ========================================================= */
.price-section {
  background: linear-gradient(180deg, #cdeee8 0%, #ffffff 100%);
  padding: 20px 16px 28px;
  margin: 0;
  position: relative;
  z-index: 2;
}
.price-section__head {
  text-align: center;
  margin-bottom: 14px;
}
.price-section__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #0e2e54;
  letter-spacing: 0.04em;
}
.price-section__lead small {
  font-size: 11px;
  font-weight: 600;
  color: rgba(14, 46, 84, 0.65);
  margin-left: 6px;
}
.price-section__sub {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(14, 46, 84, 0.7);
}
.price-section__grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.price-section__item {
  background: #fff;
  border: 1px solid #cfe7dc;
  border-radius: 10px;
  padding: 12px 12px 11px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(14, 46, 84, 0.05);
  transition: transform 0.15s, box-shadow 0.15s;
}
.price-section__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 46, 84, 0.1);
}
.price-section__name {
  font-size: 12px;
  font-weight: 700;
  color: #0e2e54;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-section__name small {
  font-size: 10px;
  font-weight: 600;
  color: rgba(14, 46, 84, 0.55);
}
.price-section__val {
  font-size: 20px;
  font-weight: 900;
  color: #0a6a3a;
  letter-spacing: 0.01em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.price-section__val small {
  font-size: 12px;
  font-weight: 700;
  color: rgba(10, 106, 58, 0.85);
  margin-left: 1px;
}
.price-section__note {
  margin: 14px auto 0;
  max-width: 520px;
  font-size: 11px;
  color: rgba(14, 46, 84, 0.7);
  line-height: 1.7;
  text-align: center;
}
.price-section__note strong {
  color: #0a6a3a;
  font-weight: 800;
}
@media (min-width: 640px) {
  .price-section { padding: 28px 24px 36px; }
  .price-section__lead { font-size: 18px; }
  .price-section__grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 920px;
    gap: 12px;
  }
  .price-section__item { padding: 14px; }
  .price-section__name { font-size: 13px; }
  .price-section__val { font-size: 22px; }
}

/* =========================================================
   CROSS店舗・スタッフ紹介スライダー（フォーム直前）2026-05-15 追加
   ========================================================= */
.shop-gallery {
  background: #f4f8f8;
  padding: 24px 0 28px;
  margin: 0;
}
.shop-gallery__head {
  text-align: center;
  padding: 0 16px 14px;
}
.shop-gallery__lead {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0e2e54;
  line-height: 1.5;
}
.shop-gallery__lead strong {
  color: #0a6a3a;
  font-weight: 900;
}
.shop-gallery__sub {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(14, 46, 84, 0.65);
}
.shop-swiper {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 0 28px 0; /* centeredSlides 用に左右対称（パディングなし）*/
  overflow: hidden;
  box-sizing: border-box;
}
.shop-swiper .swiper-slide {
  box-sizing: border-box;
}
.shop-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(14, 46, 84, 0.16);
  display: block;
}
.shop-swiper__pagination {
  text-align: center;
  margin-top: 6px;
}
.shop-swiper__pagination .swiper-pagination-bullet {
  background: #b0c7d9;
  opacity: 1;
}
.shop-swiper__pagination .swiper-pagination-bullet-active {
  background: #0a6a3a;
}
@media (min-width: 640px) {
  .shop-gallery { padding: 32px 0 36px; }
  .shop-gallery__lead { font-size: 16px; }
  .shop-swiper { max-width: 640px; padding: 0 0 30px 0; }
}
