@charset "UTF-8";
/* ============================================
   出張買取・家財整理相談窓口 LP
   カラー設計：
     - ベース：白 / 明るいアイボリー
     - アクセント：深い藍（信頼感・上品）
     - サブ：温かみのあるベージュ
   Build: 20260514-fix2 (Publish再認識用)
   ============================================ */

/* ダークモード環境でもデフォルト白背景を維持する保険 */
html { background: #ffffff; color-scheme: light; }
body { background: #ffffff; color: #2c2a26; }

:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f7f5f0;        /* 明るいアイボリー */
  --color-bg-alt: #faf8f3;
  --color-text: #2c2a26;
  --color-text-sub: #5a5853;
  --color-text-muted: #8a8880;
  --color-border: #e6e1d6;
  --color-border-soft: #efeadd;

  --color-accent: #1f4e6b;          /* 深い藍 */
  --color-accent-dark: #163a51;
  --color-accent-soft: #e9f0f4;

  --color-sub: #b89968;              /* 温かみのあるゴールドベージュ */
  --color-sub-soft: #f4ecdc;

  --color-line: #06c755;
  --color-tel: #1f4e6b;
  --color-form: #2c2a26;

  --color-plus: #2b6f50;             /* 落ち着いた緑 */
  --color-minus: #9c6a3c;            /* 落ち着いた茶 */

  --shadow-sm: 0 2px 8px rgba(30, 40, 50, 0.05);
  --shadow-md: 0 6px 20px rgba(30, 40, 50, 0.08);
  --shadow-lg: 0 12px 32px rgba(30, 40, 50, 0.10);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --font-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  --font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p, dl, dd { margin: 0; }
button { font-family: inherit; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 840px; }

.section {
  padding: 80px 0;
}
.section:nth-of-type(even) {
  background: var(--color-bg-soft);
}

.pc-only { display: inline; }
.sp-only { display: none; }

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .pc-only { display: none; }
  .sp-only { display: inline; }
}

/* ---- Section head ---- */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  color: var(--color-sub);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--color-text);
}
.section-desc {
  margin-top: 20px;
  color: var(--color-text-sub);
  font-size: 1rem;
}
@media (max-width: 720px) {
  .section-head { margin-bottom: 36px; }
  .section-title { font-size: 1.5rem; }
  .section-desc { font-size: 0.95rem; }
  /* 対応エリアセクションの見出しのみ、文言が長いためスマホで少しだけ縮小し、
     行間を整えて2行で読みやすく見せる（他セクションの見出しサイズには影響しない） */
  /* 「買取額と費用の明朗見積り」見出しはスマホで1行表示にしたいので、
     文字サイズと文字間を控えめに調整する（他セクションの見出しには影響しない） */
  .pricing .section-title {
    font-size: 1.32rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  .area .section-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  /* 「千葉市中心の出張買取・家財整理」と「対応エリア」を別グループとして
     扱い、それぞれは内部で改行されない（特に「対応」と「エリア」が分割されない）。
     section-title-sub だけを block 化することで、確実に2行目にまとめる。 */
  .area .section-title .section-title-main {
    display: inline-block;
    white-space: normal;
  }
  .area .section-title .section-title-sub {
    display: block;
    white-space: nowrap;
    margin-top: 2px;
  }
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-soft);
}
/* ヘッダー内部：左端にロゴを寄せる */
.site-header .container.header-inner {
  padding-left: 14px;
  padding-right: 14px;
  max-width: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;                    /* ロゴ1.5倍に合わせて拡大 */
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
/* ロゴ画像：前回46px → 1.5倍で69pxに拡大 */
.brand-logo {
  display: block;
  height: 69px !important;         /* PC ロゴ高さ（前回46px × 1.5） */
  width: auto !important;
  max-width: none;
  max-height: 69px !important;
  object-fit: contain;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--color-accent-dark); transform: translateY(-1px); }

/* ============================================
   Hamburger Menu Button (右上・ドロワー起動) v2
   - 円形青ボタンを廃止し「3本線＋MENUテキスト」へ
   - 背景透明、濃紺の3本線、下に小さく "MENU"
   - タップ領域は 44×44px 以上を確保（見た目はコンパクト）
   ============================================ */
.menu-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;                          /* 3本線とMENUテキストの距離（仕様：6〜8px） */
  min-width: 44px;                   /* タップ領域 44×44px 以上 */
  min-height: 44px;
  padding: 4px 6px;                  /* タップ領域確保 */
  border: none;
  border-radius: 6px;                /* hover/focus時の控えめなフィードバック用（背景は透明） */
  background: transparent;           /* 円形青背景は削除 */
  color: #1f4e6b;                    /* ブランド濃紺 */
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow: none;                  /* 影なし */
}
.menu-btn:hover {
  opacity: 0.72;                     /* 控えめなhover */
  background: transparent;
  transform: none;
}
.menu-btn:active {
  opacity: 0.55;
}
.menu-btn:focus-visible {
  outline: 2px solid #1f4e6b;
  outline-offset: 2px;
}

/* 3本線エリア */
.menu-btn-bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 32px;                       /* 仕様：30〜36px */
  height: 18px;                      /* 線3本(3.5px) + gap2本(3.75px×2) ≒ 18px */
  gap: 4px;                          /* 線間隔 仕様：6〜8px → 視覚的バランスで4px採用 */
}
.menu-btn-bars > span {
  display: block;
  width: 100%;
  height: 3px;                       /* 仕様：3〜4px */
  background: #1f4e6b;               /* 濃紺 */
  border-radius: 2px;                /* 線端を少しだけ丸める */
}

/* MENUテキスト */
.menu-btn-label {
  display: inline-block;
  font-size: 11px;                   /* 仕様：12〜14px → ヘッダー高さ維持のため11pxで上品に */
  font-weight: 600;                  /* 仕様：500〜700 */
  letter-spacing: 0.12em;            /* やや広め */
  color: #1f4e6b;                    /* 3本線と同色 */
  line-height: 1;
  font-family: inherit;
  text-transform: uppercase;
  user-select: none;
}

@media (max-width: 720px) {
  .menu-btn {
    gap: 5px;
    padding: 4px 6px;
  }
  .menu-btn-bars {
    width: 30px;
    height: 17px;
    gap: 3.5px;
  }
  .menu-btn-bars > span {
    height: 2.5px;
  }
  .menu-btn-label {
    font-size: 10.5px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 380px) {
  .menu-btn-bars {
    width: 28px;
    height: 16px;
    gap: 3px;
  }
  .menu-btn-label {
    font-size: 10px;
  }
}

/* ============================================
   Drawer Menu (右側からスライドイン)
   ============================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 25, 35, 0.55);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.28s ease;
  -webkit-tap-highlight-color: transparent;
}
.drawer-overlay[hidden] { display: none; }
.drawer-overlay.is-open { opacity: 1; }

.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 86%;
  max-width: 360px;
  background: #fbfaf6;                 /* 白寄りの明るいアイボリー（清潔感UP） */
  color: var(--color-text);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 20px rgba(30, 40, 50, 0.08);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer-menu.is-open { transform: translateX(0); }

/* ---- ヘッド：ロゴ＋閉じる ---- */
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(31, 78, 107, 0.08);
  flex-shrink: 0;
}
.drawer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.drawer-brand-logo {
  display: block;
  width: 132px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}
.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text-sub);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  -webkit-tap-highlight-color: transparent;
}
.drawer-close:hover { background: rgba(31, 78, 107, 0.06); color: var(--color-accent); }
.drawer-close:focus-visible { outline: 2px solid var(--color-sub); outline-offset: 2px; }

/* ---- メニュー項目 ---- */
.drawer-nav {
  flex: 1 0 auto;
  padding: 4px 0;
}
.drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer-list li + li {
  border-top: 1px solid rgba(31, 78, 107, 0.07);
}
.drawer-link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  position: relative;
  letter-spacing: 0.02em;
}
.drawer-link::after {
  content: "›";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-border);
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.6;
  transition: color 0.18s, transform 0.18s, opacity 0.18s;
}
.drawer-link:hover { background: rgba(255, 255, 255, 0.7); color: var(--color-accent); }
.drawer-link:hover::after { color: var(--color-accent); opacity: 1; transform: translateY(-50%) translateX(2px); }

/* ---- CTAボタン群 ---- */
.drawer-cta {
  padding: 16px 20px 12px;
  border-top: 1px solid rgba(31, 78, 107, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.drawer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(30, 40, 50, 0.06);
  letter-spacing: 0.02em;
}
.drawer-cta-btn i { font-size: 1.05rem; }
.drawer-cta-line {
  background: var(--color-line);
  color: #fff;
}
.drawer-cta-line:hover { background: #05b34c; transform: translateY(-1px); }
.drawer-cta-form {
  background: var(--color-accent);
  color: #fff;
}
.drawer-cta-form:hover { background: var(--color-accent-dark); transform: translateY(-1px); }

/* ---- 法務リンク ---- */
.drawer-legal {
  padding: 8px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 8px;
  text-align: center;
  font-size: 0.74rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
  line-height: 1.6;
}
.drawer-legal a {
  display: inline-block;
  color: var(--color-text-sub);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.drawer-legal a:hover {
  color: var(--color-accent);
  border-bottom-color: rgba(31, 78, 107, 0.3);
}
.drawer-legal-sep {
  color: rgba(31, 78, 107, 0.25);
  font-size: 0.72rem;
  user-select: none;
}

/* メニュー表示中：背景スクロール抑制 */
body.drawer-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 720px) {
  .drawer-menu { width: 84%; max-width: 340px; }
  .drawer-head { padding: 16px 20px; }
  .drawer-link { padding: 13px 20px; font-size: 0.92rem; }
  .drawer-link::after { right: 20px; font-size: 0.78rem; }
  .drawer-cta { padding: 16px 20px 8px; }
  .drawer-legal { padding: 8px 20px 24px; }
}

/* ============================================
   Back to Top Button (トップへ戻る) v2
   - 濃紺塗りつぶし円 → 白半透明円＋濃紺アウトライン＋細矢印＋TOPラベル
   - ヘッダー右上「3本線＋MENU」と統一感を持たせた上品なデザイン
   ============================================ */
.back-to-top {
  position: fixed;
  right: 20px;                       /* 仕様：18〜22px */
  bottom: 24px;
  width: 42px;                       /* 仕様：直径42px */
  height: 42px;
  display: inline-flex;
  flex-direction: column;            /* 矢印 + TOPラベルを縦並び */
  align-items: center;
  justify-content: center;
  gap: 1px;                          /* 矢印とTOPの距離（円内で自然に収まる） */
  background: rgba(255, 255, 255, 0.85);  /* 白85%透過 */
  color: #1f4e6b;                    /* 濃紺（矢印・ラベルの色） */
  border: 1px solid #1f4e6b;         /* 1pxの濃紺アウトライン */
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(30, 40, 50, 0.06);  /* ごく控えめな影 */
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0.24s, background 0.2s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  padding: 0;
}
.back-to-top[hidden] { display: none; }
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0s, background 0.2s ease;
}
.back-to-top:hover {
  background: rgba(255, 255, 255, 0.95);   /* 控えめなhover */
}
.back-to-top:focus-visible {
  outline: 2px solid #1f4e6b;
  outline-offset: 2px;
}

/* 細い上矢印 */
.back-to-top-icon {
  width: 16px;
  height: 11px;
  display: block;
  margin-top: 1px;                   /* 円内の上寄り配置（ラベルとの縦バランス） */
}

/* TOPラベル */
.back-to-top-label {
  display: inline-block;
  font-size: 10px;                   /* 仕様：10〜11px */
  font-weight: 600;
  letter-spacing: 0.1em;             /* やや広め */
  color: #1f4e6b;
  line-height: 1;
  font-family: inherit;
  text-transform: uppercase;
  user-select: none;
}

/* SPでは下部固定CTA（約64px）の上に浮かせる */
@media (max-width: 860px) {
  .back-to-top {
    bottom: 80px;                    /* 下部固定CTAの上18〜24pxの位置を確保 */
    right: 20px;
    width: 42px;                     /* 仕様の直径42pxを維持 */
    height: 42px;
  }
  .back-to-top-icon {
    width: 15px;
    height: 10px;
  }
  .back-to-top-label {
    font-size: 9.5px;
  }
}

@media (max-width: 380px) {
  .back-to-top {
    right: 18px;
  }
}
/* ドロワーメニュー表示中はトップへ戻るボタンを隠す */
body.drawer-open .back-to-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

@media (max-width: 720px) {
  /* メニューボタンの右余白を仕様（20〜24px）に合わせる。左ロゴ側は従来通り */
  .site-header .container.header-inner { padding-left: 10px; padding-right: 20px; }
  .header-inner { height: 72px; gap: 10px; }
  /* スマホでもロゴを1.5倍に拡大（前回42px → 63px） */
  .brand-logo {
    height: 63px !important;
    max-height: 63px !important;
  }
  /* スマホのヘッダーCTAはアイコンのみの丸型ボタンに */
  .header-cta {
    padding: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    justify-content: center;
    font-size: 0;
  }
  .header-cta span { display: none; }
  .header-cta i { font-size: 1rem; }
}
@media (max-width: 360px) {
  .brand-logo {
    height: 57px !important;
    max-height: 57px !important;
  }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 72px 0 96px;
  background:
    linear-gradient(180deg, #fbfaf6 0%, #f4efe4 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(31,78,107,0.06) 0%, rgba(31,78,107,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(184,153,104,0.08) 0%, rgba(184,153,104,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 6px 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: "Noto Serif JP", var(--font-serif);
  font-size: 2.3rem;          /* 少しだけ大きく戻す（主役感を取り戻す） */
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;           /* 少しだけ詰める（2行の一体感） */
  color: #1f1d1a;             /* やわらかい濃色（変更なし） */
  margin-bottom: 28px;
}
.accent-underline {
  background: linear-gradient(transparent 70%, rgba(184,153,104,0.35) 70%);
  padding: 0 4px;
}

/* ============================================================
   ファーストビュー メイン見出し（新構造）
   - 既存 .hero-title / .accent-underline / .hero-highlight-text とは独立
   - 2行目の下線は box-shadow:inset で span 幅 = 文字幅にぴったり一致
   - PC・スマホ共通で使用。見た目（font-family, color, weight）は既存と同等
   ============================================================ */
.hero-title-new {
  font-family: "Noto Serif JP", var(--font-serif);
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #1f1d1a;
  margin: 0 0 28px;
  text-align: center;
}
/* 各行は block で改行（<br> を使わずに行を分ける） */
.hero-title-new .hero-title-line {
  display: block;
}
/* 2行目の文字だけを囲む span：句点「。」まで含めたまま下線を視覚的に短く見せる
   - inline-block ＋ max-width:fit-content で span 自身を文字幅にクロップ
   - 下線は background-size:96% を left bottom に固定（左端は文字頭から、右端だけ約4%短く）
   - 句点を削除せず、文字列はそのまま表示
   - 親の text-align:center により見出し全体の中央配置を維持 */
.hero-title-new .hero-title-highlight {
  display: inline-block;
  width: auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0;
  margin: 0 auto;
  box-shadow: none;
  -webkit-box-shadow: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 96% 0.35em;
  background-image: linear-gradient(
    rgba(184, 153, 104, 0.35),
    rgba(184, 153, 104, 0.35)
  );
  /* 2行目だけ行間を少し広げ、フォントウェイトをほんの少し軽くする
     （1行目 .hero-title-line には影響しない） */
  line-height: 1.7;
  font-weight: 600;
  /* 視覚補正：2行目の文字と下線をセットで 5px だけ右へ移動。
     transform は span 自体に効くため、下線（background）も一緒に動く。
     1行目の位置・下線の長さ・色・太さ・高さは一切変更されない。 */
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
}
.hero-lead {
  font-size: 0.95rem;            /* 少し小さくして上品に */
  color: #6a6862;                /* やわらかい濃色（維持） */
  line-height: 1.95;             /* 間延び感を解消し、自然な行間に */
  letter-spacing: 0.02em;        /* 文字組みをんのわずかだけ上品に */
  margin-bottom: 48px;
  max-width: 560px;              /* 中央にまとまるよう幅を適正化 */
  margin-left: auto;
  margin-right: auto;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto 32px;
}
.hero-points li {
  background: #fff;
  border: 1px solid rgba(31, 78, 107, 0.10);
  border-radius: var(--radius-md);
  padding: 26px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  box-shadow: 0 2px 10px rgba(31, 78, 107, 0.05);
}
.hero-points li > i {
  color: #2c4a63;                       /* 落ち着いたネイビーで実務感を出す */
  font-size: 1.25rem;                   /* やや控えめにしてテンプレ感を低減 */
  width: 48px;                          /* 丸後ろを少し小さく上品に */
  height: 48px;
  border-radius: 50%;
  background: rgba(31, 78, 107, 0.05);  /* 背景をさらに控えめに */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
/* 画像アイコン用（三枚とも深い丸背景が画像内に含まれるため、
   CSS側の丸背景は不要。画像をそのまま上品に見せる */
.hero-points li > .hero-points-icon {
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
/* PC基準：テキスト群（メイン+補足）の最小スタイル。
   スマホでは @media 内で上書きされる。 */
.hero-points li .hero-points-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-points li .hero-points-main {
  display: block;
  font-weight: 600;
  line-height: 1.6;
}
.hero-points li .hero-points-main .em {
  color: var(--color-accent);
  font-weight: 700;
}
.hero-points li .hero-points-sub {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-text-muted, #6f6d67);
  line-height: 1.5;
}

/* CTA直下の安心文（PC基準） */
.hero-cta-assurance {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted, #5b6671);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* CTA直下の対応エリア案内帯（PC基準）
   - 控えめなバッジ風：薄いベージュ背景＋紺系文字
   - 地図ピンアイコンは1行目の「対応エリア：」の左横にインライン配置
     （帯全体の縦中央ではなく、1行目テキストとの水平揃えを優先） */
.hero-area-band {
  margin: 14px auto 0;
  display: inline-block;
  max-width: 100%;
  padding: 8px 18px;
  background: rgba(184, 153, 104, 0.10);
  border: 1px solid rgba(184, 153, 104, 0.22);
  border-radius: 999px;
  color: var(--color-accent, #1f4e6b);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.55;
  text-align: left;
}
/* 外側ラッパーで中央寄せを確実にする */
.hero-area-band-wrap {
  text-align: center;
  margin: 0;
}
/* 1行目左横の地図ピンアイコン：対応エリア：の真横に水平揃え */
.hero-area-band .hero-area-band-icon {
  font-size: 0.86rem;
  color: var(--color-accent, #1f4e6b);
  opacity: 0.85;
  margin-right: 6px;
  vertical-align: baseline;
  position: relative;
  top: 0.05em;
}
.hero-area-band-label {
  font-weight: 600;
  color: var(--color-accent, #1f4e6b);
  margin-right: 2px;
}
.hero-area-band-text {
  color: #4a5360;
  display: block;
  line-height: 1.5;
}
/* 各行を block 化して縦に並べる */
.hero-area-band .hero-area-band-line {
  display: block;
}
/* 1行目：左寄せでアイコン＋「対応エリア：」が水平に並ぶ */
.hero-area-band .hero-area-band-line-1 {
  text-align: left;
}
/* 2行目：少しだけ右に寄せて、帯全体の中央寄りに見えるよう自然なインデントに微調整
   （完全な中央揃えにはせず、1行目のテキスト位置から少し右に内寄せ） */
.hero-area-band .hero-area-band-line-2 {
  text-align: left;
  padding-left: 2.6em;
}
/* ファーストビュー安心文言：エリア帯の直下にサブ情報として控えめに配置 */
.hero-area-band-note {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: #6b7280;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.hero-scenes-label {
  margin: 64px 0 20px;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.08em;
}
.hero-scenes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin-top: 0;
}
.hero-scenes li {
  padding: 8px 18px;
  background: #fff;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}
/* 対応シーンボタン直下の補足文（PC基準）
   - 控えめな本文として、ボタン一覧の下に自然に配置
   - 既存のグレー系（--color-text-sub）に合わせ、目立ちすぎないトーン */
.hero-scenes-note {
  margin: 18px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-text-sub, #6a6862);
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  /* 固定ヘッダー下の上部余白を詰めて、ファーストビュー内で3枚目カードが見えやすく */
  .hero { padding: 32px 0 72px; }
  /* 上部ラベル: 下マージンを少し詰める（22→14） */
  .hero-eyebrow {
    font-size: 0.7rem;
    margin-bottom: 14px;
    padding: 4px 12px;
    letter-spacing: 0.08em;
    font-weight: 500;
    opacity: 0.95;
  }
  /* 旧 .hero-title はスマホでは新構造に置き換えるため最低限のリセットのみ。
     旧 HTML が残っていた場合に備え、関連の背景・疑似要素装飾は完全無効化する。 */
  .hero-title {
    font-size: 1.42rem !important;
    line-height: 1.65 !important;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    padding: 0 4px;
    background: none !important;
  }
  .hero-title::before,
  .hero-title::after,
  .hero-title .accent-underline,
  .hero-title .accent-underline::before,
  .hero-title .accent-underline::after,
  .hero-title .hero-highlight,
  .hero-title .hero-highlight::before,
  .hero-title .hero-highlight::after,
  .hero-title .hero-highlight-text,
  .hero-title .hero-highlight-text::before,
  .hero-title .hero-highlight-text::after {
    background: none !important;
    background-image: none !important;
    box-shadow: none !important;
    content: normal !important;
    width: auto !important;
    height: auto !important;
  }

  /* ============================================================
     ファーストビュー メイン見出し（新構造） — スマホ調整
     - PC基準のフォントサイズ 2.3rem を 1.42rem に縮小
     - 1行目と2行目は <span class="hero-title-line"> で改行
     - 2行目 <span class="hero-title-highlight"> に box-shadow:inset で
       文字幅ぴったりの下線を描画（max-width: fit-content + display:inline-block）
     ============================================================ */
  .hero-title-new {
    font-size: 1.42rem;
    line-height: 1.65;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    padding: 0 4px;
  }
  .hero-title-new .hero-title-line {
    display: block;
  }
  .hero-title-new .hero-title-highlight {
    display: inline-block;
    width: auto;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 0;
    margin: 0 auto;
    /* 句点「。」まで span に含めたまま、下線だけを background-size:96% で
       left bottom に固定。左端は文字頭から始まり、右端だけ約4%短く見えるため、
       視覚的に右側の長さだけが詰まって自然に見える。
       max-width:fit-content と display:inline-block により span 自身は文字幅。 */
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    background-position: left bottom !important;
    background-size: 96% 0.35em !important;
    background-image: linear-gradient(
      rgba(184, 153, 104, 0.35),
      rgba(184, 153, 104, 0.35)
    ) !important;
  }
  /* 説明文: 1枚目カードまでの余白を詰める（36→24）
     参考画像のように「小さめ・上品・中央揃え」でスッキリ見せる */
  .hero-lead {
    font-size: 0.86rem;
    margin-bottom: 24px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 4px;
    color: #6f6d67;
  }
  /* ベネフィットカード: 主見出しとの間に呼吸を確保し、補足として見せる
     ※ ファーストビュー内で3枚目まで見えやすくするため縦余白を圧縮
     ※ さらに3枚目カードが下部固定CTA（高さ約72px）に隠れないよう
        margin-bottom を厚めに確保し、カード間の gap も少しだけ詰める */
  .hero-points {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 8px;
    margin-bottom: 32px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  /* ============================================
     ベネフィットカード（スマホ専用）：
     理想デザイン（添付画像）と同じ「左アイコン円 / 縦線 / 右テキスト」3分割
     - 左：薄い青系の円形背景に大きめアイコン（存在感あり）
     - 区切り：アイコン円とほぼ同じ高さの薄い縦線
     - 右：メイン（重要語を青で強調）+ 小さい補足文
     - 上下中央揃え、3枚でアイコン円・縦線・テキスト位置を完全統一
     ============================================ */
  /* ============================================
     カード内部は元の自然な横並び（flex）に戻し、
     縦線だけを position: absolute でカード内に固定配置する。
     - アイコン: 左、上下中央
     - テキスト: 右、上下中央
     - 縦線: カード左端から約150px、上下中央 (top:50%, translateY(-50%))
     - 3枚すべて同じ left/height/top で揃う
     ============================================ */
  .hero-points li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    /* 上下paddingを 14px → 9px に削減（横余白18pxは維持）
       3枚で合計 約30px の縦方向の情報密度向上 */
    padding: 9px 18px;
    text-align: left;
    font-size: 0.95rem;
    gap: 24px;
    position: relative;
  }
  /* 左：アイコン円形背景（薄い青系） */
  .hero-points li > i {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(31, 78, 107, 0.05);
    color: #2c4a63;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: static;
  }
  /* スマホ：画像アイコンを丸背景越しにそのまま上品に表示 */
  .hero-points li > .hero-points-icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 0;
    background: transparent;
    object-fit: contain;
    display: block;
    position: static;
  }
  /* 旧 ::after 縦線は無効化 */
  .hero-points li > i::after { content: none; }
  /* 縦線：カード自体に対して absolute で固定。
     left:103px はアイコン円右端(=82px)と文字開始位置(=120px)のほぼ中間。
     top:50% + translateY(-50%) で上下中央に配置。3枚すべて同じ値で完全に揃う。
     ※ 微調整：以前は left:98px だったが、テキストブロックを左に詰めた分
        縦線も少しだけ右へ寄せて、左右の余白(アイコン側 / テキスト側)を均等化。 */
  .hero-points li::before {
    content: "";
    position: absolute;
    left: 103px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background: rgba(31, 78, 107, 0.06);
    pointer-events: none;
  }
  /* 右：テキスト群（メイン + 補足）を上下中央揃え
     ※ 3枚すべて行頭を完全に揃えるため、text-align: left と
        align-items: flex-start を強制し、補足文の中央寄せを防ぐ */
  .hero-points li .hero-points-text {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    /* テキストブロックを左に寄せる微調整：以前は 24px → 14px に変更（10px左へ）
       これにより、アイコン・縦線・テキストの左右バランスが均等に見える。
       3枚すべて同じ値が適用されるため、テキスト開始位置は完全に揃う。 */
    padding-left: 14px;
    text-align: left;
  }
  /* メイン文・強調語・補足文すべて左揃えを強制（行頭を完全に揃える） */
  .hero-points li .hero-points-main,
  .hero-points li .hero-points-main .em,
  .hero-points li .hero-points-sub {
    text-align: left;
    align-self: flex-start;
    width: 100%;
  }
  .hero-points li .hero-points-main {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--color-text, #2a2f36);
    letter-spacing: 0.01em;
  }
  /* 重要語のみ青で強調 */
  .hero-points li .hero-points-main .em {
    color: var(--color-accent);
    font-weight: 700;
  }
  /* 3枚目カードの見出しのみ、スマホで1行に収まるように微調整
     （14文字「買取額と必要費用を事前に説明」が標準サイズだと2行折り返しになるため、
       font-size をごくわずかに下げ、letter-spacing をわずかに詰めて1行化する。
       1・2枚目と比べて違和感が出ない範囲の最小調整に留める。
       使用可能幅 195px に対し 14文字を収めるため、約 13.9px/字 にする必要があり、
       font-size 0.88rem（≒14.08px）+ letter-spacing -0.015em の組み合わせで対応。） */
  .hero-points li:nth-child(3) .hero-points-main {
    font-size: 0.88rem;        /* 0.98rem → 0.88rem（約10%減・1〜2px相当） */
    letter-spacing: -0.015em;  /* 0.01em → -0.015em（ごく僅かに字間を詰める） */
  }
  /* 補足文：小さく落ち着いたグレー */
  .hero-points li .hero-points-sub {
    display: block;
    font-size: 0.74rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--color-text-muted, #6f6d67);
    letter-spacing: 0.02em;
  }
  /* CTA直下の安心文（スマホ調整：CTAボタンより目立たせず、見出しとの間隔も詰める） */
  .hero-cta-assurance {
    margin: 14px 0 0;
    font-size: 0.82rem;
    line-height: 1.55;
    letter-spacing: 0.03em;
  }
  /* 対応エリア案内帯（スマホ調整：2行構成／アイコンは1行目左横に配置） */
  .hero-area-band {
    margin: 10px auto 0;
    padding: 8px 16px;
    font-size: 0.78rem;
    line-height: 1.45;
    letter-spacing: 0.01em;
    /* 帯の幅は中身に追従しつつ、スマホで読みやすい範囲に制限 */
    max-width: 340px;
    white-space: normal;
  }
  .hero-area-band .hero-area-band-icon {
    font-size: 0.82rem;
    margin-right: 5px;
  }
  .hero-area-band-label { margin-right: 1px; }
  .hero-area-band .hero-area-band-text { line-height: 1.5; }
  .hero-area-band .hero-area-band-line { display: block; }
  .hero-area-band .hero-area-band-line-1 { text-align: left; }
  /* 2行目を少しだけ右へ寄せて、帯全体の中央寄りに見えるよう自然なインデントに微調整 */
  .hero-area-band .hero-area-band-line-2 {
    text-align: left;
    padding-left: 2.4em;
  }
  /* ファーストビュー安心文言（スマホ調整：詰まり防止・控えめサイズ維持） */
  .hero-area-band-note {
    margin: 8px 8px 0;
    font-size: 0.74rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
  }

  /* 安心文＋エリア案内が入ったため、見出しまでの上余白は少し詰める */
  .hero-cta-assurance + .hero-scenes-label,
  .hero-area-band + .hero-scenes-label { margin-top: 24px; }
  .hero-scenes-label { margin: 36px 0 18px; font-size: 0.9rem; }
  .hero-scenes { margin-top: 0; }
  .hero-scenes li { font-size: 0.78rem; padding: 6px 14px; }
  /* 対応シーン補足文（スマホ調整：2〜3行に収まり目立ちすぎない控えめなトーン） */
  .hero-scenes-note {
    margin: 14px auto 0;
    max-width: 340px;
    font-size: 0.78rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    padding: 0 4px;
  }
}

/* ============================================
   Buttons / CTA group
   ============================================ */
.cta-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.cta-group-large { gap: 16px; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  box-shadow: var(--shadow-md);
  color: #fff;
  min-height: 72px;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn i { font-size: 1.5rem; flex-shrink: 0; }
.btn span { display: flex; flex-direction: column; align-items: flex-start; }
.btn-main { font-size: 1rem; letter-spacing: 0.04em; }
.btn-sub { font-size: 0.72rem; font-weight: 400; opacity: 0.85; letter-spacing: 0.02em; margin-top: 2px; }

.btn-line { background: var(--color-line); }
.btn-line:hover { background: #05a648; }
.btn-tel { background: var(--color-accent); }
.btn-tel:hover { background: var(--color-accent-dark); }
/* 無料見積ボタン：白背景・青枠・青文字 */
.btn-form,
a.btn-form {
  background: #ffffff !important;
  color: var(--color-accent) !important;
  border: 2px solid var(--color-accent) !important;
}
.btn-form:hover,
a.btn-form:hover {
  background: #f3f7fa !important;
  color: var(--color-accent) !important;
}
.btn-form .btn-main,
.btn-form .btn-sub,
.btn-form i {
  color: var(--color-accent) !important;
}

@media (max-width: 860px) {
  .cta-group { grid-template-columns: 1fr; gap: 12px; max-width: 440px; }
  .hero-cta.cta-group .btn,
  .cta-group-large .btn,
  .btn {
    min-height: 64px;
    padding: 12px 20px;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
  }
  .hero-cta.cta-group .btn > i,
  .cta-group-large .btn > i,
  .btn > i {
    font-size: 1.35rem;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    flex-grow: 0;
    line-height: 1;
    margin: 0;
  }
  .hero-cta.cta-group .btn > span,
  .cta-group-large .btn > span,
  .btn > span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.3;
    text-align: left;
    gap: 2px;
  }
  .btn-main { font-size: 0.95rem; line-height: 1.3; margin: 0; }
  .btn-sub { font-size: 0.72rem; line-height: 1.3; margin: 0; }

  /* ============================================
     CTAボタン改善（スマホ専用）：LINE・電話・フォームの3ボタン共通
     理想デザイン（添付画像）と同じレイアウト：
     - flex 横並び：左アイコン / 中央テキスト（折り返し禁止）/ 右矢印
     - space-between でバランス配置
     - アイコンは大きめの白丸、タイトルは太め大きめ
     - 縦書きにならないよう white-space: nowrap で1行確保
     ※ ページ上部 (.hero-cta.cta-group) と
        ページ下部 (.cta-group-large) の両方に同じスタイルを適用
     ============================================ */
  .hero-cta.cta-group .btn.btn-line,
  .hero-cta.cta-group .btn.btn-tel,
  .hero-cta.cta-group .btn.btn-form,
  .cta-group-large .btn.btn-line,
  .cta-group-large .btn.btn-tel,
  .cta-group-large .btn.btn-form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 73px;
    padding: 10px 18px;
    box-shadow: 0 6px 16px rgba(20, 30, 40, 0.18);
    border-radius: 12px;
    position: relative;
  }
  /* 左：メインアイコン（白丸円・縦幅縮小に合わせて約42px）
     ※ 上位の `.btn > i` ルール（28px width/height）と競合するため、
        確実に42pxを適用するため !important を付与 */
  .hero-cta.cta-group .btn.btn-line > i:first-child,
  .hero-cta.cta-group .btn.btn-tel > i:first-child,
  .hero-cta.cta-group .btn.btn-form > i:first-child,
  .cta-group-large .btn.btn-line > i:first-child,
  .cta-group-large .btn.btn-tel > i:first-child,
  .cta-group-large .btn.btn-form > i:first-child {
    font-size: 1.2rem !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: #ffffff;
    flex: 0 0 42px !important;
    margin: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: relative;
  }
  .hero-cta.cta-group .btn.btn-line > i:first-child,
  .cta-group-large .btn.btn-line > i:first-child {
    color: var(--color-line);
  }
  .hero-cta.cta-group .btn.btn-tel > i:first-child,
  .cta-group-large .btn.btn-tel > i:first-child {
    color: var(--color-accent);
  }
  .hero-cta.cta-group .btn.btn-form > i:first-child,
  .cta-group-large .btn.btn-form > i:first-child {
    background: rgba(31, 78, 107, 0.08);
    color: var(--color-accent);
  }
  /* アイコンとテキストの間の薄い縦区切り線（理想画像準拠）
     LINE/電話ボタンは白の半透明、フォームボタンはアクセントの薄色 */
  .hero-cta.cta-group .btn.btn-line > i:first-child::after,
  .hero-cta.cta-group .btn.btn-tel > i:first-child::after,
  .cta-group-large .btn.btn-line > i:first-child::after,
  .cta-group-large .btn.btn-tel > i:first-child::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 14%;
    bottom: 14%;
    width: 1px;
    background: rgba(255, 255, 255, 0.35);
  }
  .hero-cta.cta-group .btn.btn-form > i:first-child::after,
  .cta-group-large .btn.btn-form > i:first-child::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 14%;
    bottom: 14%;
    width: 1px;
    background: rgba(31, 78, 107, 0.18);
  }
  /* 中央：テキスト群（縦書きにならないよう、span/子要素全てに nowrap を強制）
     flex: 1 で余白を埋めつつ、テキスト自身は中央揃え */
  .hero-cta.cta-group .btn.btn-line > span,
  .hero-cta.cta-group .btn.btn-tel > span,
  .hero-cta.cta-group .btn.btn-form > span,
  .cta-group-large .btn.btn-line > span,
  .cta-group-large .btn.btn-tel > span,
  .cta-group-large .btn.btn-form > span {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 0;
    gap: 2px;
    white-space: nowrap;
  }
  /* タイトル：1行強制・縦幅縮小に合わせてサイズ調整 */
  .hero-cta.cta-group .btn.btn-line .btn-main,
  .hero-cta.cta-group .btn.btn-tel .btn-main,
  .hero-cta.cta-group .btn.btn-form .btn-main,
  .cta-group-large .btn.btn-line .btn-main,
  .cta-group-large .btn.btn-tel .btn-main,
  .cta-group-large .btn.btn-form .btn-main {
    display: block;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.03em;
    white-space: nowrap;
    margin: 0;
  }
  /* サブテキスト：1行強制 */
  .hero-cta.cta-group .btn.btn-line .btn-sub,
  .hero-cta.cta-group .btn.btn-tel .btn-sub,
  .hero-cta.cta-group .btn.btn-form .btn-sub,
  .cta-group-large .btn.btn-line .btn-sub,
  .cta-group-large .btn.btn-tel .btn-sub,
  .cta-group-large .btn.btn-form .btn-sub {
    display: block;
    text-align: center;
    font-size: 0.74rem;
    line-height: 1.35;
    opacity: 0.92;
    white-space: nowrap;
    margin: 0;
  }
  /* 右：誘導用の矢印アイコン（理想画像のように細めグレー寄り） */
  .hero-cta.cta-group .btn.btn-line .btn-arrow,
  .hero-cta.cta-group .btn.btn-tel .btn-arrow,
  .hero-cta.cta-group .btn.btn-form .btn-arrow,
  .cta-group-large .btn.btn-line .btn-arrow,
  .cta-group-large .btn.btn-tel .btn-arrow,
  .cta-group-large .btn.btn-form .btn-arrow {
    font-size: 1.15rem;
    width: auto;
    height: auto;
    flex: 0 0 auto;
    opacity: 0.85;
    margin: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    font-weight: 300;
  }
}

/* ============================================
   2. Worries
   ============================================ */
.worry-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.worry-list li {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
}
/* お悩みカード左側アイコン（画像アイコン）：
   円形ディスク付きアイコンを統一サイズで配置。
   従来サイズ56pxから25%縮小して42pxに。テキストと縦中央揃え、左右余白を統一。 */
.worries .worry-list li .worry-icon,
.worry-list li img.worry-icon {
  width: 42px;
  height: 42px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  background: transparent;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
  user-select: none;
  -webkit-user-drag: none;
}
/* 上品な案内カード（白背景＋細いネイビー枠線で全周をやわらかく囲うデザイン）：
   見出しは中央寄せで薄いベージュの細線を左右に添え、本文は左寄せで読みやすさを確保 */
.worry-bridge {
  margin: 36px auto 0;
  max-width: 760px;
  background: #ffffff;
  color: var(--color-text, #2f2d29);
  padding: 26px 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 78, 107, 0.18);
  box-shadow: 0 2px 8px rgba(31, 78, 107, 0.03);
  text-align: left;
}
.worry-bridge-title {
  font-family: "Noto Serif JP", var(--font-serif);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.worry-bridge-title::before,
.worry-bridge-title::after {
  content: "";
  flex: 0 1 40px;
  height: 1px;
  background: rgba(184, 153, 104, 0.45);
}
.worry-bridge-title-text {
  display: inline-block;
  white-space: nowrap;
}
.worry-bridge-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #4a4842;
}
.worry-bridge-text strong {
  color: var(--color-accent);
  font-weight: 600;
  background: linear-gradient(transparent 72%, rgba(184,153,104,0.20) 72%);
  padding: 0 2px;
}
/* 案内カード直下の補足文：誤解防止のための控えめなサブ情報 */
.worry-bridge-note {
  margin: 16px auto 0;
  max-width: 880px;
  text-align: center;
  font-size: 0.82rem;
  color: #6b7280;
  letter-spacing: 0.02em;
  line-height: 1.65;
}
/* よくあるご相談シーン直下の補足文：引越し整理の対応も可能なことを控えめに案内 */
.scenes-note {
  margin: 24px auto 0;
  max-width: 880px;
  text-align: center;
  font-size: 0.82rem;
  color: #6b7280;
  letter-spacing: 0.02em;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .worry-list { grid-template-columns: 1fr; gap: 10px; align-items: stretch; }
  .worry-list li {
    font-size: 0.88rem;
    padding: 12px 14px;
    gap: 12px;
    line-height: 1.6;
    min-height: 72px;
    align-items: center;
  }
  .worry-list li .worry-icon,
  .worries .worry-list li .worry-icon {
    width: 39px;
    height: 39px;
    margin: 0;
    flex-shrink: 0;
  }
  .worry-list li span { display: block; }
  /* 上品な案内カード（スマホ）：白背景＋細いネイビー枠線で全周を囲う */
  .worry-bridge {
    padding: 20px 18px 18px;
    margin-top: 26px;
    text-align: left;
  }
  .worry-bridge-title {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.5;
    gap: 10px;
  }
  .worry-bridge-title::before,
  .worry-bridge-title::after {
    flex: 0 1 24px;
  }
  .worry-bridge-text {
    font-size: 0.88rem;
    line-height: 1.85;
  }
  .worry-bridge-text strong { padding: 0 2px; }
  .worry-bridge-note {
    margin: 14px 8px 0;
    font-size: 0.76rem;
    line-height: 1.65;
  }
  .scenes-note {
    margin: 18px 8px 0;
    font-size: 0.76rem;
    line-height: 1.65;
  }
}

/* ============================================
   3. Service
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.service-card:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: -4px auto 0;
  width: 100%;
}
.service-card:nth-child(3) p {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.service-card {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.15s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-num {
  font-family: var(--font-serif);
  color: var(--color-sub);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-bottom: 12px;
}
.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  overflow: hidden;
}
/* サービスカード内のアイコン画像：72px円形コンテナ内に収め、
   3枚のサイズ・位置・背景円を統一して表示する。
   添付素材は丸背景込みの完成アイコンのため、円内いっぱいに敷き詰めて自然に見せる */
.service-icon .service-icon-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  background: transparent;
  border: 0;
  margin: 0;
  user-select: none;
  -webkit-user-drag: none;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.5;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--color-text-sub);
  line-height: 1.9;
  text-align: left;
}

@media (max-width: 860px) {
  .service-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 22px; }
}

/* ============================================
   4. Scenes
   ============================================ */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.scene-card {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.scene-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--color-sub-soft);
  color: var(--color-sub);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  overflow: hidden;
}
.scene-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.scene-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.scene-card p {
  font-size: 0.82rem;
  color: var(--color-text-sub);
  line-height: 1.7;
}

@media (max-width: 960px) {
  .scene-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .scene-grid { grid-template-columns: 1fr; gap: 12px; }
  .scene-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon title"
      "desc desc";
    column-gap: 14px;
    row-gap: 10px;
    text-align: left;
    padding: 18px 20px;
    align-items: center;
  }
  .scene-icon {
    grid-area: icon;
    margin: 0;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .scene-card h3 {
    grid-area: title;
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.4;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
  .scene-card p {
    grid-area: desc;
    width: 100%;
    font-size: 0.88rem;
    line-height: 1.75;
    margin: 0;
  }
}
@media (max-width: 480px) {
  .scene-card { padding: 16px 18px; }
  .scene-icon { width: 44px; height: 44px; font-size: 1.1rem; }
  .scene-card h3 { font-size: 1rem; }
  .scene-card p { font-size: 0.86rem; }
}

/* ============================================
   6.5 Cases（ご相談事例）
   - ご依頼の流れ と 料金・見積り の間に追加
   - 既存LPの上品なトーン（白カード／薄ベージュ枠線／淡い影／角丸）を踏襲
   - 画像エリアは横長で 180〜220px 程度に収まる高さ
   - 画像未配置 / 読み込み失敗時は .case-image 自体を JS で display:none に
     して、カード本体（タイトル＋本文）の余白で自然に成立するようにする
   ============================================ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case-image {
  width: 100%;
  /* PC: 16/9 をベースに、写真が主張しすぎないよう上限高さを抑える
     （以前 220px → 190px に約 14% 低減） */
  aspect-ratio: 16 / 9;
  max-height: 190px;
  background: var(--color-bg-soft);
  overflow: hidden;
}
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ご相談事例の写真トリミング位置調整
   - 1枚目（実家の片付け前）：主要物が中央やや左、上部空白を詰めるためやや上寄せ
   - 2枚目（空き家売却前 / case-03.jpg：箪笥＋押し入れ寝具＋段ボール）：箪笥と押し入れを両立
   - 3枚目（一軒まるごと / case-02.jpg：古箪笥＋籐家具＋段ボール群＋押し入れ布団）：押し入れ寄りに */
.case-image-01 img { object-position: 52% 42%; }
.case-image-02 img { object-position: 48% 48%; }
.case-image-03 img { object-position: 56% 44%; }
/* img が onerror で消えた / そもそも空のとき、画像枠自体が薄ベージュの
   空白として残らないよう保険として高さを 0 に潰す */
.case-image:empty {
  display: none;
}
.case-body {
  /* 上：写真直下〜CASEラベル間の余白を 18px → 13px に約28%詰め
     下：カード下部を 22px → 18px に少しコンパクト化
     左右：22px は維持して文字が詰まって見えないように */
  padding: 13px 22px 18px;
}
/* CASEラベル：STEPラベルより控えめなトーン
   淡いベージュ背景 + ネイビー文字 + 薄い枠線で上品に */
.case-label {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-soft);
  padding: 3px 10px;
  border-radius: 4px;
  /* ラベル〜タイトル間の余白を 10px → 8px に約20%詰める */
  margin-bottom: 8px;
  line-height: 1.4;
}
.case-title {
  font-family: var(--font-serif);
  /* タイトルが短くなったので 1.02rem → 1.05rem に微増（読みやすさ重視・大きすぎない） */
  font-size: 1.05rem;
  font-weight: 700;
  /* タイトル〜本文の間隔は 10px のまま（詰めすぎず、広げず） */
  margin: 0 0 10px;
  color: var(--color-text);
  line-height: 1.55;
  letter-spacing: -0.005em;
}
.case-desc {
  font-size: 0.88rem;
  color: var(--color-text-sub);
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 960px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  /* タブレット: 写真高さ上限を 200 → 175px に約 12% 低減 */
  .case-image { max-height: 175px; }
}
@media (max-width: 720px) {
  .case-grid { grid-template-columns: 1fr; gap: 14px; }
  /* SP: 1カラムでも写真が主張しすぎないように上限を 200 → 175px に */
  .case-image {
    aspect-ratio: 16 / 9;
    max-height: 175px;
  }
  /* SP: 上 16→12px（約25%減）、下 18→16px（少しコンパクト化）、左右維持 */
  .case-body { padding: 12px 18px 16px; }
  .case-label {
    font-size: 0.7rem;
    padding: 2px 9px;
    /* SP: ラベル〜タイトル 8px → 6px（25%減） */
    margin-bottom: 6px;
    letter-spacing: 0.12em;
  }
  /* タイトル〜本文の 8px は維持（詰めすぎず、広げず） */
  .case-title { font-size: 1rem; margin-bottom: 8px; line-height: 1.55; }
  .case-desc { font-size: 0.86rem; line-height: 1.8; }
}
@media (max-width: 480px) {
  /* 小型SP: さらに 190 → 165px に低減 */
  .case-image { max-height: 165px; }
}

/* ============================================
   5. Reasons
   ============================================ */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.reason-item {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.reason-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.reason-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
}
.reason-body p {
  color: var(--color-text-sub);
  font-size: 0.92rem;
  line-height: 1.8;
}

@media (max-width: 720px) {
  .reason-item {
    grid-template-columns: 42px 1fr;
    padding: 20px 18px;
    gap: 12px;
    align-items: start;
  }
  .reason-num {
    font-size: 1.45rem;
    padding-top: 2px;
  }
  .reason-body h3 {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 10px;
  }
  .reason-body p {
    font-size: 0.88rem;
    line-height: 1.85;
  }
}

/* ============================================
   6. Flow
   ============================================ */
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.flow-step {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 22px 24px 22px 24px;
  display: grid;
  grid-template-columns: 100px 1fr 220px;
  grid-template-areas:
    "num   body  image"
    "num   body  image";
  column-gap: 20px;
  row-gap: 8px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.flow-step .flow-step-num   { grid-area: num; align-self: center; }
.flow-step .flow-step-body  { grid-area: body; }
.flow-step .flow-step-image {
  grid-area: image;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background: #f4efe7;
}
.flow-step .flow-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--color-sub);
  opacity: 0.5;
}
@media (max-width: 720px) {
  /* カード間隔をさらにわずかに詰めて、次STEPがチラ見えする縦リズムへ */
  .flow-list { gap: 18px; }
  /* スマホ：Gridをやめてシンプルなflex縦積みに切り替え。
     STEPラベル → 見出し+本文 → 画像 の3段構成で、各要素の幅崩れを完全に防止。
     ※ PCの grid-template-columns / grid-template-areas を明示的に解除する。 */
  .flow-step {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    /* 上下paddingを微縮（約12%圧縮）してカードをよりコンパクトに */
    padding: 14px 18px 14px !important;
    grid-template-columns: none !important;
    grid-template-areas: none !important;
    column-gap: 0 !important;
    row-gap: 0 !important;
    /* 内部要素間の縦リズムをわずかに詰める */
    gap: 9px !important;
  }
  .flow-step .flow-step-num {
    align-self: flex-start;
    justify-self: flex-start;
    font-size: 0.78rem;
    padding: 5px 12px;
    /* カード上端〜ラベルの空き感を圧縮（gapに任せる） */
    margin-bottom: 0;
    grid-area: auto !important;
  }
  .flow-step .flow-step-body {
    width: 100%;
    grid-area: auto !important;
  }
  .flow-step-body h3 {
    font-size: 1rem;
    /* 見出し→本文を自然につなぐ */
    margin-bottom: 4px;
    line-height: 1.45;
  }
  .flow-step-body p {
    /* 本文をわずかに控えめサイズに（読みやすさ維持） */
    font-size: 0.86rem;
    /* 行間を少しだけ狭めて縦リズムを引き締める */
    line-height: 1.7;
  }
  /* スマホでの画像：16:7 を維持（高さは大きく変えない）。
     本文との距離が空きすぎないよう margin-top を維持。 */
  .flow-step .flow-step-image {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 7 !important;
    border-radius: 8px !important;
    align-self: stretch !important;
    grid-area: auto !important;
    margin-top: 2px;
  }
  .flow-step .flow-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* 下向き三角：中央位置のまま、カード間隔を詰めたぶん位置を微調整 */
  .flow-step:not(:last-child)::after {
    bottom: -16px;
    border-left-width: 8px;
    border-right-width: 8px;
    border-top-width: 9px;
    opacity: 0.7;
  }
  /* 下部固定CTAに最後のSTEPが隠れないよう下余白を確保 */
  .section.flow {
    padding-bottom: 110px;
  }
}
.flow-step-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: var(--color-accent);
  padding: 6px 10px;
  border-radius: 6px;
  text-align: center;
  letter-spacing: 0.1em;
}
.flow-step-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.flow-step-body h3 i { color: var(--color-sub); font-size: 1.1rem; }
/* STEPカード見出し内のアイコン：補助的な視覚要素として統一サイズ
   2026-05-15c: 既存基準から25%拡大（22→28 / 20→25）
   STEP04の四角表示崩れ対策として border-radius:50% でクリップ */
.flow-step .flow-step-body h3 img.flow-step-icon,
.flow-step-body h3 .flow-step-icon {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  object-fit: cover !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  vertical-align: middle !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
@media (max-width: 720px) {
  .flow-step .flow-step-body h3 img.flow-step-icon,
  .flow-step-body h3 .flow-step-icon {
    width: 25px !important;
    height: 25px !important;
    min-width: 25px !important;
    min-height: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
  }
}
/* STEP04個別調整：他STEPと比べて視覚的に小さく見える問題への対応
   元画像の円形背景の外側に白余白が広いため、表示枠を約20%拡大して
   他STEPの円サイズと視覚的に揃える（円形クリップは継承）。
   2026-05-15e */
.flow-step .flow-step-body h3 img.flow-step-icon.flow-step-icon--04,
.flow-step-body h3 .flow-step-icon.flow-step-icon--04 {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
}
@media (max-width: 720px) {
  .flow-step .flow-step-body h3 img.flow-step-icon.flow-step-icon--04,
  .flow-step-body h3 .flow-step-icon.flow-step-icon--04 {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
  }
}
.flow-step-body p {
  color: var(--color-text-sub);
  font-size: 0.92rem;
  line-height: 1.85;
}

@media (max-width: 720px) {
  .flow-step { grid-template-columns: 1fr; }
}

/* ============================================
   7. Pricing
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.pricing-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}
.pricing-tag-plus { background: #e8f1ec; color: var(--color-plus); }
.pricing-tag-minus { background: #f3ebe0; color: var(--color-minus); }
.pricing-tag-total { background: var(--color-accent); color: #fff; }
.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}
.pricing-card p {
  font-size: 0.88rem;
  color: var(--color-text-sub);
  line-height: 1.8;
  margin-bottom: 16px;
}
.pricing-sample {
  border-top: 1px dashed var(--color-border);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.pricing-amount {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
}
.pricing-amount.plus { color: var(--color-plus); }
.pricing-amount.minus { color: var(--color-minus); }

.pricing-total {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #fdfbf6 0%, #f6efdf 100%);
  border: 1px solid var(--color-sub-soft);
}
.pricing-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 20px;
  /* 上下余白の視覚均等化:
     日本語フォント（Noto Serif JP）はベースラインが下寄りで
     タグ内文字の重心が下に偏るため、上パディングを増やし
     下パディングを減らすことで視覚的中央に補正 */
  padding: 32px 20px 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-border);
}
.formula-item {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--color-bg-soft);
}
.formula-item.plus { color: var(--color-plus); background: #e8f1ec; }
.formula-item.minus { color: var(--color-minus); background: #f3ebe0; }
.formula-item.total { color: #fff; background: var(--color-accent); }
.formula-op {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-sub);
}
.pricing-formula-text {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-main);
  line-height: 1;  /* 行ボックスの上下余白をゼロ化し、paddingのみで上下中央を制御 */
  text-align: center;
  letter-spacing: 0.02em;
}
.pricing-formula-text .formula-item {
  display: inline-block;
  margin: 0 2px;
  vertical-align: baseline;
}
/* 全角括弧を含むタグの左右視覚バランス調整（右側が長く見える現象の補正） */
.pricing-formula-text .formula-item.minus {
  padding-left: 18px;
  padding-right: 12px;
}
@media (max-width: 720px) {
  /* 白い式ボックス: 左右余白をしっかり広げて3段のまとまりを明確に */
  .pricing-formula {
    padding: 24px 20px 22px;
    margin-top: 20px;
    gap: 10px;
  }
  /* 3段のまとまりに自然に見えるよう、行間を整える（<br class="sp-only">併用） */
  .pricing-formula-text {
    font-size: 0.9rem;
    line-height: 2.2;
    text-align: left;
    letter-spacing: 0.02em;
  }
  /* ラベルを少しだけコンパクト化し、ラベル右側に明確な余白を確保 */
  .pricing-formula-text .formula-item {
    font-size: 0.8rem;
    padding: 2px 10px;
    margin: 0 6px 0 0;
    line-height: 1.6;
  }
  /* 全角括弧を含む minus ラベルの左右バランス調整（スマホ版） */
  .pricing-formula-text .formula-item.minus {
    padding-left: 10px;
    padding-right: 8px;
    margin: 0 6px 0 0;
  }
}

.pricing-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-sub);
  background: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  overflow-x: auto;
}
.pricing-note i { color: var(--color-plus); margin-right: 8px; }

@media (max-width: 860px) {
  /* 注意文: 「最後に安心感を添えるまとまり」として自然に読める見え方に */
  .pricing-note {
    white-space: normal;
    overflow-x: visible;
    font-size: 0.86rem;
    padding: 18px 20px;
    line-height: 1.85;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 24px;
    letter-spacing: 0.01em;
  }
  .pricing-note i {
    margin-right: 0;
    margin-top: 5px;
    flex-shrink: 0;
    font-size: 0.95rem;
  }
}

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 14px; }
  .pricing-total { grid-column: auto; }
  /* 3つの料金カードを少しコンパクトに */
  .pricing-card { padding: 22px 20px; }
  .pricing-tag { font-size: 0.74rem; padding: 3px 10px; margin-bottom: 12px; letter-spacing: 0.06em; }
  .pricing-card h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.5; }
  .pricing-card p { font-size: 0.86rem; line-height: 1.75; margin-bottom: 12px; }
  .pricing-sample { padding-top: 12px; gap: 4px; font-size: 0.78rem; }
  .pricing-amount { font-size: 0.92rem; }
  /* 最終金額ボックスを少しコンパクトに */
  .pricing-total { padding: 24px 20px; }
  .pricing-total h3 { font-size: 1.05rem; }
  .pricing-total p { font-size: 0.88rem; line-height: 1.85; margin-bottom: 14px; }
  .pricing-formula { padding: 20px 14px 16px; font-size: 0.9rem; margin-top: 16px; }
  .formula-item { font-size: 0.88rem; padding: 4px 11px; }
}

/* ============================================
   8. Services detail
   ============================================ */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.detail-card {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.detail-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-soft);
}
.detail-head i {
  width: 48px;
  height: 48px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
}
.detail-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.detail-head h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
}
.detail-desc {
  color: var(--color-text-sub);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.8;
}
/* ============================================
   対応内容カード内の写真枠（PC基準：2列横並び）
   - 既存LPの上品で落ち着いた雰囲気に合わせる
   - 角丸・薄ベージュ枠線で控えめに馴染ませる
   - 説明文とタグ一覧の間に自然に配置
   ============================================ */
.detail-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 18px;
}
.detail-photo {
  margin: 0;
  border: 1px solid var(--color-border-soft);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-soft);
  aspect-ratio: 4 / 3;
}
.detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 整理・有料引取相談セクションの写真トリミング位置調整
   - 左：押し入れ・古い箪笥・段ボール・収納ケースが全体的に見えるよう、やや上寄り
     （中央の畳の空きスペースが目立ちすぎないように調整）
   - 右：左の木製箪笥と右の食器棚（食器類）が両方バランスよく見えるよう、やや上寄り */
.detail-photo-seiri-01 img { object-position: center 42%; }
.detail-photo-seiri-02 img { object-position: center 45%; }
/* 買取相談セクションの写真トリミング位置調整
   - 左：被写体が中央〜右に集中するため、やや右寄せでカメラ・腕時計2点・財布を確実に表示
   - 右：被写体が下半分に集中するため、やや下寄せでネックレス・指輪・ブレスレットを主役に
   - 右画像のみ、被写体がやや小さく見えるため画像内部で軽く拡大（枠サイズは維持） */
.detail-photo-kaitori-01 img { object-position: 63% 48%; }
.detail-photo-kaitori-02 img {
  object-position: 50% 58%;
  transform: scale(1.08);
  transform-origin: center center;
}
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.detail-tags li {
  padding: 6px 14px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 720px) {
  .detail-grid { grid-template-columns: 1fr; gap: 16px; }
  /* カード内余白を整える */
  .detail-card { padding: 22px 20px; }
  /* カード上部: アイコン＋見出しのまとまり感を強化 */
  .detail-head {
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }
  .detail-head i {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }
  .detail-icon {
    width: 42px;
    height: 42px;
  }
  .detail-head h3 {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  /* 本文の行間とタグ一覧との距離を整える */
  .detail-desc {
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 16px;
  }
  /* 写真枠（スマホ）：2列横並びで自然に配置 */
  .detail-photos {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
  /* タグ一覧: 高さ・内側余白・間隔を揃える */
  .detail-tags {
    gap: 8px 8px;
    align-items: stretch;
  }
  .detail-tags li {
    padding: 7px 14px;
    font-size: 0.82rem;
    line-height: 1.4;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  /* 長いタグは1段下に横長タグとして自然に配置 */
  .detail-tags .detail-tag-wide {
    flex-basis: 100%;
    justify-content: center;
  }
}

/* ============================================
   9. FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item > summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  transition: background 0.2s;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { background: var(--color-bg-alt); }
.faq-q, .faq-a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
/* .faq-q：添付画像（ベージュ円＋「？」吹き出し）を <img> タグで表示。
   2026-05-15f: ::before 擬似要素方式から <img> 方式に切り替え。
   - サイズは32×32（PC）/ 28×28（スマホ）に厳格固定
   - 円形クリップ＋object-fit:coverで外側余白を吸収し、四角・市松模様を防止
   - 他セクションのアイコン実装パターン（scene-icon-img / detail-icon-img 等）と統一 */
.faq-item .faq-q,
.faq-q,
img.faq-q,
img.faq-q-img {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  background-image: none !important;
  background-color: transparent !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  object-fit: cover !important;
  aspect-ratio: 1 / 1 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  border: none !important;
  box-shadow: none !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
/* .faq-a：添付画像（ベージュ円＋✓吹き出し）を <img> タグで表示。
   2026-05-15h: 旧「青背景＋白Aテキスト」方式から <img> 方式に切り替え。
   サイズはQアイコン（PC 38px / SP 34px）の90%基準：PC 34px / SP 31px。
   円形クリップ＋object-fit:coverで外側余白を吸収。 */
.faq-item .faq-a,
.faq-a,
img.faq-a,
img.faq-a-img {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  background: transparent !important;
  background-image: none !important;
  background-color: transparent !important;
  color: transparent !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  object-fit: cover !important;
  aspect-ratio: 1 / 1 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  border: none !important;
  box-shadow: none !important;
  display: inline-block !important;
  vertical-align: middle !important;
  align-self: flex-start !important;
}
.faq-question {
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.6;
}
.faq-toggle {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--color-text-sub);
  border-bottom: 2px solid var(--color-text-sub);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-top: -6px;
}
.faq-item[open] .faq-toggle { transform: rotate(-135deg); margin-top: 4px; }
.faq-answer {
  display: flex;
  gap: 16px;
  padding: 4px 22px 22px;
  border-top: 1px dashed var(--color-border);
  margin-top: -4px;
  padding-top: 20px;
}
.faq-answer p {
  color: var(--color-text-sub);
  font-size: 0.92rem;
  line-height: 1.9;
}

@media (max-width: 720px) {
  .faq-item > summary { padding: 16px 18px; gap: 12px; }
  .faq-question { font-size: 0.92rem; }
  .faq-answer { padding: 16px 18px; gap: 12px; }
  .faq-answer p { font-size: 0.88rem; }
  .faq-q, .faq-a { width: 28px; height: 28px; font-size: 0.85rem; }
  /* スマホ版でも .faq-q を厳格に固定（PC版の!importantを上書き）
     2026-05-15g: 20%拡大 28→34px */
  .faq-item .faq-q,
  .faq-q,
  img.faq-q,
  img.faq-q-img {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    max-width: 34px !important;
    max-height: 34px !important;
  }
  /* スマホ版 .faq-a：Qアイコン34pxの90% = 約31px
     2026-05-15h */
  .faq-item .faq-a,
  .faq-a,
  img.faq-a,
  img.faq-a-img {
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
    min-height: 31px !important;
    max-width: 31px !important;
    max-height: 31px !important;
  }
}

/* ============================================
   10. CTA Section
   ============================================ */
.cta-section {
  background: #f5f1ea;
  color: #1a2a38;
}
.cta-section .section-eyebrow { color: #1f4e6b; }
.cta-box {
  text-align: center;
  padding: 20px 0;
}
.cta-eyebrow {
  color: #1f4e6b;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #14304a;
}
.cta-lead {
  font-size: 1rem;
  line-height: 2;
  max-width: 780px;
  margin: 0 auto 20px;
  color: #4a5660;
  opacity: 1;
}
.cta-lead-emphasis {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}
.cta-lead-emphasis strong {
  background: none;
  padding: 0;
  font-weight: 600;
  color: #2f5b78;
}
.cta-lead strong {
  background: none;
  padding: 0;
  font-weight: 600;
  color: #2f5b78;
}
.cta-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #5a6470;
  opacity: 1;
}

/* ============================================
   問い合わせフォーム（参考画像のUIに寄せた再設計）
   - 白カード一体型
   - ラベル左／入力欄右のgrid配置（PC）
   - 必須：ピンク系薄塗り、任意：グレー系薄塗り
   - 注意文はカード外にチェックマーク箇条書きで補足
   ============================================ */
.contact-form-wrap {
  margin: 40px auto 0;
  max-width: 680px;
  background: #ffffff;
  border: 1px solid #e8e4da;
  border-radius: 14px;
  padding: 40px 40px 44px;
  box-shadow: 0 4px 18px rgba(31, 78, 107, 0.06);
  text-align: left;
  scroll-margin-top: 90px;
  box-sizing: border-box;
}
.contact-form-head {
  margin: 0 0 28px;
  padding: 0;
  border: none;
  text-align: center;
}
.contact-form-title {
  margin: 0 0 14px;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f4e6b;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.contact-form-lead {
  margin: 0 auto;
  max-width: 520px;
  font-size: 0.9rem;
  line-height: 1.85;
  color: #5a5853;
  text-align: center;
}
.contact-form {
  display: block;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: start;
  gap: 16px;
  margin: 0 0 18px;
  text-align: left;
}
.form-row:last-of-type {
  margin-bottom: 0;
}
.form-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 14px 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2c2a26;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.form-label-text {
  flex: 0 1 auto;
}
.form-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 38px;
  height: 20px;
  padding: 0 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 4px;
  line-height: 1;
}
.form-tag-required {
  color: #d06565;
  background: #fce4e4;
}
.form-tag-optional {
  color: #8a8880;
  background: #eeece4;
}
/* 旧クラスも互換維持（安全策） */
.form-required,
.form-optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 20px;
  padding: 0 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 4px;
  line-height: 1;
}
.form-required {
  color: #d06565;
  background: #fce4e4;
}
.form-optional {
  color: #8a8880;
  background: #eeece4;
}
.form-input,
.form-textarea,
.form-select {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: inherit;
  color: #2c2a26;
  background: #ffffff;
  border: 1px solid #d9d4c7;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  text-align: left;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #b8b4a8;
  font-size: 0.92rem;
}
.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: #c2bbad;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #1f4e6b;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(31, 78, 107, 0.12);
}
.form-textarea {
  height: auto;
  min-height: 130px;
  padding: 12px 14px;
  line-height: 1.75;
  resize: vertical;
}
.form-select-wrap {
  position: relative;
  display: block;
}
.form-select-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.form-select {
  padding-right: 40px;
  cursor: pointer;
  background: #ffffff;
  color: #2c2a26;
}
.form-select:invalid {
  color: #b8b4a8;
}
/* 未選択（value="" が選ばれている）状態は、required 有無に関係なく薄いグレーで表示 */
.form-select.is-empty,
.form-select:has(option[value=""]:checked) {
  color: #b8b4a8;
}
/* プルダウンを開いたときの選択肢文字は常に濃い色で読みやすく */
.form-select option {
  color: #2c2a26;
}
.form-select option[value=""] {
  color: #b8b4a8;
}
/* 選択不可（他方で選択済みなど）の option は薄いグレーで視認できるようにする */
.form-select option:disabled {
  color: #b8b4a8;
  background: #f5f2ea;
}
.form-row-check {
  display: block;
  grid-column: 1 / -1;
  margin: 36px 0 0;
  padding: 0;
  background: transparent;
  border: none;
  text-align: center;
}

/* ============================================
   訪問希望日時ブロック（第一希望／第二希望のまとまり）
   ============================================ */
.form-row-visit {
  align-items: start;
  margin-bottom: 12px;
}
.form-label-visit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-top: 14px;
}
.form-label-visit .form-label-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.form-label-visit .form-tag {
  margin: 0;
}
.form-label-note {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.8;
  color: #8a8880;
  letter-spacing: 0;
}
/* 必須/任意タグをラベルテキストと横並びに戻す */
.form-label-visit > .form-tag {
  align-self: flex-start;
  margin: 0;
}
/* 訪問希望日時ブロック全体（背景色なし・薄い枠線でまとまりだけ出す） */
.form-visit-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 18px;
  background: transparent;
  border: 1px solid #ece8de;
  border-radius: 8px;
}
/* 第一希望・第二希望のセット内は詰め、セット間だけ余白で軽くまとまり感を出す（枠線なし） */
.form-visit-set {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-visit-set + .form-visit-set {
  margin-top: 10px;
  padding-top: 0;
  border-top: none;
}
.form-visit-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 12px;
}
/* 日付と時間帯の入力幅・高さを揃える */
.form-visit-row .form-date-wrap,
.form-visit-row .form-select-wrap {
  width: 100%;
}
.form-visit-row .form-date-btn,
.form-visit-row .form-select {
  width: 100%;
  height: 48px;
  box-sizing: border-box;
}
/* 訪問希望日時ラベル側の左側スペーシング微調整（テキストは変更しない） */
.form-label-visit {
  padding-left: 2px;
}
.form-label-visit > .form-label-text,
.form-label-visit > .form-tag,
.form-label-visit > .form-label-note {
  margin-left: 0;
}
.form-label-visit > .form-label-note {
  padding-left: 0;
}
.form-visit-sublabel {
  font-size: 0.85rem;
  font-weight: 500;
  color: #4a4a45;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}
/* 日付欄ラッパー：見た目用ボタン＋非表示ネイティブ input[type="date"] 構成 */
.form-date-wrap {
  position: relative;
  display: block;
  width: 100%;
}
/* 見た目用ボタン：既存 .form-input と同じ見た目（高さ48px、角丸8px、枠線、白背景） */
.form-date-wrap .form-date-btn {
  display: flex;
  align-items: center;           /* 上下中央揃え（iOS Safari の表示ズレ対策） */
  justify-content: flex-start;
  width: 100%;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  padding: 0 14px;
  margin: 0;
  border: 1px solid #d9d4c7;
  border-radius: 8px;
  background: #ffffff;
  color: #2c2a26;
  font-family: inherit;
  font-size: 16px;               /* iOS ズーム抑制 */
  line-height: 1;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.form-date-wrap .form-date-btn:hover,
.form-date-wrap .form-date-btn:focus {
  border-color: #c2bbad;
  outline: none;
}
.form-date-wrap .form-date-btn-text {
  display: inline-block;
  line-height: 1;
  color: #2c2a26;
}
/* 空欄時：ボタン内テキストをプレースホルダー色に */
.form-date-wrap.is-empty .form-date-btn-text {
  color: #b8b4a8;
}
/* 空欄時は data-placeholder を ::before で表示 */
.form-date-wrap.is-empty .form-date-btn-text::before {
  content: attr(data-placeholder);
}
/* ネイティブ input[type="date"]：送信値保持のみ。画面には一切表示しない
   （PC・スマホ共通で hidden input 扱い。.form-date-select プルダウンが見た目・操作を担う）
   HTML構造が .form-select-wrap 直下／.form-date-wrap 直下いずれでもマッチするよう
   クラス単独セレクタで最優先に非表示化する */
input.form-input-date-native,
.form-input-date-native {
  display: none !important;
}
/* カスタム日付ピッカー（年月日3セレクト）：PC表示では非表示（スマホのみ利用） */
.form-date-wrap .form-date-picker {
  display: none;
}

/* 同意チェック行を押しやすく（labelをブロック化してクリック領域を広げる） */
.form-row-check .form-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  margin: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
  user-select: none;
}
.form-row-check .form-check:hover {
  background: #f5f2ea;
}
.form-row-check .form-check-text {
  cursor: pointer;
}
.form-row-check .form-check-text a {
  /* リンク部分のクリックはそのまま別ページへ（labelの動作と分離） */
  position: relative;
  z-index: 2;
}
.form-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #2c2a26;
  text-align: left;
}
.form-checkbox {
  margin: 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #1f4e6b;
  cursor: pointer;
}
.form-check-text {
  flex: 1 1 auto;
}
.form-check-text a {
  color: #1f4e6b;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-check-text a:hover {
  color: #163a51;
}
.form-submit-wrap {
  grid-column: 1 / -1;
  margin: 20px 0 8px;
  text-align: center;
}
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  min-height: 54px;
  padding: 0 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #ffffff;
  background: #1f4e6b;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(31, 78, 107, 0.15);
  letter-spacing: 0.06em;
}
.form-submit-btn:hover {
  background: #163a51;
  box-shadow: 0 4px 12px rgba(31, 78, 107, 0.24);
  transform: translateY(-1px);
}
.form-submit-btn:active {
  transform: translateY(0);
}
.form-submit-btn:disabled {
  background: #9aa5ae;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
/* お住まいの地域：都道府県＋市区町村（背景色なし・薄い枠線で訪問希望日時と統一） */
.form-area-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
  background: transparent;
  border: 1px solid #ece8de;
  border-radius: 8px;
}
.form-area-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 12px;
}
.form-area-sublabel {
  font-size: 0.85rem;
  font-weight: 500;
  color: #4a4a45;
  line-height: 1.5;
}
.form-area-row .form-select-wrap,
.form-area-row .form-input {
  width: 100%;
}
/* ラベル側 */
.form-label-area {
  padding-left: 0;
}

/* 条件付きバリデーション用のエラーメッセージ（自然な補助文トーン） */
.form-error {
  margin: 6px 0 0;
  padding: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #b56a6a;
  letter-spacing: 0.01em;
}
.form-error[hidden] {
  display: none;
}
/* エラー時のインプット境界線（既存デザインを尊重した控えめな強調） */
.form-input.is-error,
.form-textarea.is-error,
.form-select.is-error {
  border-color: #c89494;
  background: #fdf7f5;
}
.form-row.is-error .form-select-wrap .form-select {
  border-color: #c89494;
  background: #fdf7f5;
}
.form-row-check.is-error .form-check {
  background: #fdf7f5;
  border-radius: 6px;
}
/* 訪問希望日時：日付未選択時の時間帯セレクト（無効状態・背景色なしで他セレクトと統一） */
.form-visit-row .form-select:disabled {
  background: #ffffff;
  color: #a6a49b;
  cursor: not-allowed;
  opacity: 1;
}
/* 旧クラスは非表示化（カード外の form-notes-outer に移行済み） */
.form-notes,
.form-line-note {
  display: none;
}

/* カード外の注意文ブロック（補助情報らしい控えめな見せ方） */
.form-notes-outer {
  list-style: none;
  max-width: 680px;
  margin: 22px auto 0;
  padding: 0 4px;
  font-size: 0.82rem;
  line-height: 1.8;
  color: #6a6860;
  text-align: left;
}
.form-notes-outer li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 7px;
  padding: 0;
}
.form-notes-outer li:last-child {
  margin-bottom: 0;
}
.form-notes-outer li i {
  color: #4e7a95;
  font-size: 0.88rem;
  flex-shrink: 0;
  margin-top: 5px;
  line-height: 1;
}
.form-notes-outer li span {
  flex: 1 1 auto;
}
/* エラー状態 */
.form-input.is-error,
.form-textarea.is-error,
.form-select.is-error {
  border-color: #c25050;
  background: #fdf5f5;
}
.form-row-check.is-error {
  border-color: #c25050;
  background: #fdf5f5;
}
.form-error-msg {
  display: none;
  font-size: 0.78rem;
  color: #c25050;
  margin-top: 2px;
}
.form-row.is-error .form-error-msg {
  display: block;
}
/* 送信完了メッセージ */
.form-success {
  margin: 32px auto 0;
  max-width: 640px;
  padding: 36px 28px 30px;
  background: #ffffff;
  border: 1px solid #d9e2e8;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(31, 78, 107, 0.06);
}
.form-success-icon {
  font-size: 2.6rem;
  color: var(--color-accent, #1f4e6b);
  margin-bottom: 14px;
  line-height: 1;
}
/* 見出し：分かりやすく、ただし派手にしすぎない */
.form-success-title {
  margin: 0 0 14px;
  font-family: var(--font-serif, 'Noto Serif JP', serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #14304a;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
/* 本文：安心感のある自然な文量・読みやすい行間 */
.form-success-text {
  margin: 0 auto;
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--color-text, #2c2a26);
}
/* 補足文：本文より少し控えめに */
.form-success-note {
  margin: 12px auto 0;
  max-width: 520px;
  font-size: 0.85rem;
  line-height: 1.85;
  color: #6a6860;
}
/* 追加導線：既存CTAより目立たない小さな補助リンク */
.form-success-links {
  margin: 22px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px; /* 区切り前後の余白を少し広げて詰まりを解消 */
  font-size: 0.88rem;
  color: #5a5853;
}
.form-success-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  color: var(--color-accent, #1f4e6b);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.form-success-link:hover {
  color: #163a51;
  border-bottom-color: #163a51;
}
.form-success-link i {
  font-size: 0.95rem;
}
.form-success-sep {
  color: #c2c0b8;
  margin: 0 4px; /* 区切り線の前後にも軽く余白を付与 */
}

@media (max-width: 720px) {
  .cta-title { font-size: 1.35rem; }
  /* 説明文: 行間を整えて詰まって見えないように */
  .cta-lead {
    font-size: 0.92rem;
    line-height: 1.95;
    margin-bottom: 14px;
  }
  /* 青太字文: 主役ではなく「LINEボタンの後押し」として控えめに */
  .cta-lead-emphasis {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 22px;
  }
  .cta-lead-emphasis strong {
    font-weight: 600;
    color: #3a6a86;
  }
  /* 3つのCTAボタン補足文のトーンを揃える */
  .cta-group-large .btn-sub {
    font-size: 0.74rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
    opacity: 0.9;
  }
  /* 一番下の注意文: 「最後に安心感を添える締めの一文」として */
  .cta-note {
    margin-top: 18px;
    font-size: 0.84rem;
    line-height: 1.8;
    color: #5a6470;
    padding: 0 4px;
  }

  /* 問い合わせフォーム：スマホ表示調整（参考画像UI版） */
  .contact-form-wrap {
    margin-top: 28px;
    padding: 26px 20px 28px;
    border-radius: 12px;
  }
  .contact-form-head {
    margin-bottom: 22px;
  }
  .contact-form-title {
    font-size: 1.2rem;
  }
  .contact-form-lead {
    font-size: 0.85rem;
    line-height: 1.9;
    text-align: left;
    max-width: none;
  }
  /* スマホでは1カラム縦積みに自動切替 */
  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
  /* お住まいの地域ブロック：スマホ調整（背景色なし・他項目と統一） */
  .form-label-area {
    padding-top: 0;
    padding-left: 0;
  }
  .form-area-group {
    padding: 0;
    gap: 8px;
    background: transparent;
    border: none;
  }
  .form-area-row {
    grid-template-columns: 90px 1fr;
    gap: 10px;
  }
  .form-area-sublabel {
    font-size: 0.82rem;
  }
  /* 訪問希望日時ブロック：スマホ調整 */
  .form-label-visit {
    padding-top: 0;
    padding-left: 2px;
  }
  .form-label-note {
    font-size: 0.76rem;
    line-height: 1.7;
  }
  .form-visit-group {
    padding: 14px 14px;
    gap: 12px;
  }
  .form-visit-set {
    gap: 8px;
  }
  .form-visit-set + .form-visit-set {
    margin-top: 8px;
  }
  .form-visit-row .form-input-date,
  .form-visit-row .form-select {
    height: 48px;
  }
  .form-visit-row {
    grid-template-columns: 100px 1fr;
    gap: 10px;
  }
  .form-visit-sublabel {
    font-size: 0.82rem;
  }
  .form-row-check {
    margin-top: 20px;
  }
  .form-submit-wrap {
    margin: 18px 0 4px;
  }
  .form-label {
    padding: 0;
    font-size: 0.9rem;
    gap: 8px;
  }
  .form-tag,
  .form-required,
  .form-optional {
    min-width: 36px;
    height: 20px;
    padding: 0 8px;
    font-size: 0.68rem;
  }
  .form-input,
  .form-textarea,
  .form-select {
    height: 48px;
    padding: 0 14px;
    font-size: 16px; /* iOS 自動ズーム防止 */
    border-radius: 8px;
  }
  .form-textarea {
    height: auto;
    min-height: 130px;
    padding: 12px 14px;
  }
  .form-select {
    padding-right: 40px;
  }
  .form-row-check {
    margin-top: 10px;
    text-align: left;
  }
  .form-check {
    font-size: 0.86rem;
    gap: 10px;
  }
  .form-submit-wrap {
    margin-top: 14px;
  }
  .form-submit-btn {
    max-width: none;
    min-height: 52px;
    padding: 0 20px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .form-notes-outer {
    margin-top: 18px;
    padding: 0 4px;
    font-size: 0.82rem;
    line-height: 1.8;
  }
  .form-notes-outer li {
    margin-bottom: 8px;
    gap: 9px;
  }
  .form-notes-outer li i {
    font-size: 0.9rem;
    margin-top: 3px;
  }
  .form-line-note {
    font-size: 0.82rem;
  }
  .form-success {
    margin-top: 24px;
    padding: 26px 18px 22px;
  }
  .form-success-icon {
    font-size: 2.3rem;
  }
  .form-success-title {
    font-size: 1.12rem;
    margin-bottom: 12px;
  }
  .form-success-text {
    font-size: 0.9rem;
    line-height: 1.9;
    text-align: left;
  }
  .form-success-note {
    font-size: 0.82rem;
    line-height: 1.8;
    text-align: left;
    margin-top: 10px;
  }
  .form-success-links {
    margin-top: 16px;
    font-size: 0.85rem;
    gap: 4px 10px;
  }
  .form-success-link {
    padding: 6px 6px; /* スマホのタップ領域を確保 */
  }
}

/* ============================================
   11. Area
   ============================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 24px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.area-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-card h3 i { font-size: 0.9rem; color: var(--color-sub); }

/* 対応エリア見出しアイコン（4カード統一・円形クリッピング） */
.area-card h3 img.area-pin-icon,
.area-card-primary h3 img.area-pin-icon {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  aspect-ratio: 1 / 1 !important;
  display: inline-block !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 720px) {
  .area-card h3 img.area-pin-icon,
  .area-card-primary h3 img.area-pin-icon {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
  }
}
.area-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.area-card li {
  font-size: 0.88rem;
  color: var(--color-text-sub);
}
.area-card li::before { content: "・"; color: var(--color-sub); }

/* 千葉市カード：全幅配置で中心性を表現（枠線は他カードと同色） */
.area-card-primary {
  grid-column: 1 / -1;
}
.area-card-primary h3 {
  font-size: 1.15rem;
}
.area-card-primary h3 i { color: var(--color-sub); font-size: 1rem; }
.area-card-primary ul { gap: 8px 14px; }
.area-card-primary li {
  font-size: 0.95rem;
}

/* 「〜など」表記はビュレットを付けず自然に見せる */
.area-card-etc::before { content: "" !important; }

.area-card-other {
  background: var(--color-accent-soft);
  border-color: var(--color-accent-soft);
}
.area-card-other p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-sub);
}

@media (max-width: 860px) {
  .area-grid { grid-template-columns: 1fr; gap: 14px; }
  .area-card { padding: 22px 20px; }
  .area-card-primary { grid-column: auto; }
  .area-card-primary h3 { font-size: 1.05rem; }
  .area-card-primary li { font-size: 0.9rem; }
  /* 見出しと一覧の距離を整える */
  .area-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  /* 市名リスト: 文章ではなく「整理された一覧」として見せる */
  .area-card ul {
    gap: 6px 12px;
    row-gap: 8px;
  }
  .area-card li {
    font-size: 0.88rem;
    line-height: 1.7;
  }
  /* 広域相談エリア（3番目のカード）は情報量が多いので行間を少し広げる */
  .area-card:nth-child(3) ul {
    row-gap: 10px;
  }
  .area-card:nth-child(3) li {
    line-height: 1.75;
  }
  /* 「〜など」が浮かず、一覧の自然な締めに見えるよう左に少し余白 */
  .area-card-etc {
    margin-left: 4px;
    color: var(--color-text-muted);
  }
  /* その他エリアカード: 「最後に受け止める案内」としてまとまり感を出す */
  .area-card-other h3 {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .area-card-other p {
    font-size: 0.88rem;
    line-height: 1.85;
    margin: 0;
  }
}

/* ============================================
   12. Company
   ============================================ */
.company-list {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.company-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--color-border-soft);
}
.company-row:last-child { border-bottom: none; }
.company-row dt {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 0.92rem;
}
.company-row dd {
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.8;
}
.company-tel {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 1px dotted var(--color-accent);
  padding-bottom: 1px;
}
.company-tel:hover {
  color: var(--color-accent-dark);
  border-bottom-color: var(--color-accent-dark);
}
.company-note {
  margin-left: 8px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
@media (max-width: 720px) {
  .company-note { display: block; margin-left: 0; margin-top: 2px; }
}

@media (max-width: 720px) {
  /* 項目名と内容の距離を整え、単調さを減らす */
  .company-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 20px;
  }
  .company-row dt {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
  }
  .company-row dd {
    font-size: 0.92rem;
    line-height: 1.75;
  }
  /* 所在地: 郵便番号と住所を自然に分けて見せる（<br class="sp-only">で改行） */
  .company-address {
    line-height: 1.85;
  }
  .company-zip {
    color: var(--color-text-sub);
    font-size: 0.88rem;
    letter-spacing: 0.02em;
  }
  .company-address-sep { display: none; }
  /* 電話番号・メールアドレスはリンクのため少し存在感を保つ */
  .company-tel {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
  }
  /* 古物商許可番号: 埋もれず、強調しすぎない見え方に */
  .company-license {
    font-size: 0.9rem;
    line-height: 1.75;
    letter-spacing: 0.02em;
    color: var(--color-text);
  }
  /* その他許可: 硬すぎず、真面目さが伝わる行間に */
  .company-misc {
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--color-text-sub);
  }
}

/* 会社情報セクションとフッターのつながりを自然に */
@media (max-width: 720px) {
  .section.company { padding-bottom: 48px; }
  .site-footer { padding-top: 32px; }
}

/* ============================================
   Placeholder（仮データ表示）
   本番公開前に差し替えが必要な箇所を、目立たせず
   かつ見る人には「仮」と分かる控えめな表示にする
   ============================================ */
.placeholder-text {
  display: inline-block;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-style: normal;
  padding: 2px 10px;
  background: #f3efe6;
  border: 1px dashed var(--color-border);
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.placeholder-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-left: 6px;
  font-weight: 400;
}
.placeholder-inline-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  background: #f3efe6;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px dashed var(--color-border);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #2c2a26;
  color: #d8d4ca;
  padding: 40px 0 100px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  /* フッターはダーク背景なので、ロゴを白抜き風に見せる */
  background: #fff;
  padding: 10px 18px;
  border-radius: 8px;
}
.footer-logo {
  display: block;
  height: 40px !important;
  max-height: 40px !important;
  width: auto !important;
  max-width: none;
  object-fit: contain;
}
.footer-copy {
  font-size: 0.78rem;
  color: #a8a59b;
  letter-spacing: 0.05em;
}

/* ============================================
   Fixed CTA (mobile)
   ============================================ */
.fixed-cta {
  display: none;
}
@media (max-width: 860px) {
  .fixed-cta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  }
  .fixed-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 4px;
    font-size: 0.64rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.2;
  }
  .fixed-cta-btn i { font-size: 0.95rem; }
  .fixed-cta-label { display: block; }
  /* 電話ボタン内：番号を大きめ・補足を小さく */
  .fixed-cta-number {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .fixed-cta-sub {
    display: block;
    font-size: 0.56rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 1px;
  }
  .fixed-cta-main { display: block; font-size: 0.72rem; font-weight: 700; }
  .fixed-cta-line { background: var(--color-line); }
  .fixed-cta-tel { background: var(--color-accent); }
  /* 見積ボタン：白背景＋濃い青の枠線＋濃い青文字（他の設定より確実に優先させる） */
  .fixed-cta.fixed-cta a.fixed-cta-btn.fixed-cta-form,
  a.fixed-cta-btn.fixed-cta-form,
  .fixed-cta-form {
    background: #ffffff !important;
    color: var(--color-accent) !important;
    border: 2px solid var(--color-accent) !important;
  }
  .fixed-cta-form i,
  .fixed-cta-form .fixed-cta-label {
    color: var(--color-accent) !important;
  }
  body { padding-bottom: 72px; }
}

/* ============================================================
   Hero v2 ：実写ビジュアル型ファーストビュー
   ・既存 .hero / .hero-title-new / .hero-lead / .hero-eyebrow 等の
     ベーススタイルは温存しつつ、.hero-v2 配下で上書き
   ・スマホ最優先設計（写真の上にコピー、その下にバッジ・CTA）
   ============================================================ */
.hero.hero-v2 {
  padding: 0 0 40px;
  background: linear-gradient(180deg, #fbfaf6 0%, #f7f3ea 100%);
}
.hero.hero-v2::before,
.hero.hero-v2::after {
  display: none;
}

/* --- 写真ビジュアル領域 --- */
.hero-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #2a2620;
}
.hero-visual-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 520px;
  object-fit: cover;
  object-position: center 35%;
}
/* 写真の上に重ねる、上→下のアイボリーグラデオーバーレイ（テキスト可読性確保） */
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(251, 250, 246, 0.85) 0%,
    rgba(251, 250, 246, 0.55) 38%,
    rgba(31, 29, 26, 0.10) 75%,
    rgba(31, 29, 26, 0.25) 100%
  );
  pointer-events: none;
}
.hero-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 24px;
  padding-bottom: 24px;
  text-align: center;
}

/* 上部ラベル（v2 上書き：写真の上で視認しやすく） */
.hero-eyebrow-v2 {
  align-self: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 78, 107, 0.18);
  color: var(--color-accent);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 4px rgba(31, 29, 26, 0.06);
}

/* 半透明パネル（メインコピー＋サブコピー） */
.hero-copy-panel {
  margin: 0 auto;
  max-width: 620px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow: 0 6px 24px rgba(31, 29, 26, 0.10);
  backdrop-filter: blur(6px);
}
.hero-copy-panel .hero-title-new {
  font-size: 1.8rem;
  line-height: 1.55;
  margin-bottom: 14px;
  color: #1f1d1a;
}
.hero-copy-panel .hero-lead {
  font-size: 0.92rem;
  line-height: 1.85;
  color: #4a4744;
  margin: 0;
  max-width: 100%;
}

/* --- ヒーロー本体（バッジ・CTA・エリア） --- */
.hero-inner-v2 {
  padding-top: 28px;
  text-align: center;
}

/* 安心バッジ（2×2グリッド） */
.hero-badges {
  list-style: none;
  margin: 0 auto 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 460px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(31, 78, 107, 0.14);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-accent);
  box-shadow: 0 1px 3px rgba(31, 29, 26, 0.05);
  letter-spacing: 0.02em;
  text-align: left;
}
.hero-badge-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 78, 107, 0.08);
  color: var(--color-accent);
  border-radius: 50%;
  font-size: 0.9rem;
}
.hero-badge-icon-line {
  background: rgba(6, 199, 85, 0.12);
  color: #06c755;
}
.hero-badge-text {
  flex: 1 1 auto;
  line-height: 1.3;
}

/* CTAエリア（v2：LINEと電話を主役に） */
.hero-cta-v2 {
  margin-top: 8px;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* フォーム導線：小さめテキストリンク */
.hero-form-link-wrap {
  margin: 10px 0 4px;
  text-align: center;
}
.hero-form-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 78, 107, 0.2);
  padding: 4px 2px;
  letter-spacing: 0.02em;
  transition: color 0.18s, border-color 0.18s;
}
.hero-form-link:hover {
  color: var(--color-accent-dark);
  border-bottom-color: var(--color-accent-dark);
}
.hero-form-link i {
  font-size: 0.82rem;
  opacity: 0.85;
}
.hero-form-link i:last-child {
  font-size: 0.7rem;
  opacity: 0.55;
}

/* ---- ヒーロー直下：補足ストリップ ---- */
.hero-points-strip {
  padding: 28px 0 8px;
  background: linear-gradient(180deg, #f7f3ea 0%, #fbfaf6 100%);
}
.hero-points-strip .hero-points {
  margin: 0 auto 20px;
}
/* コンパクト版カード（PCは横並び3カラム維持。スマホでは@media内で縦並び） */
.hero-points.hero-points-compact li {
  padding: 18px 16px 16px;
  gap: 10px;
}
.hero-points.hero-points-compact .hero-points-icon {
  width: 52px;
  height: 52px;
}
.hero-points.hero-points-compact .hero-points-main {
  font-size: 0.95rem;
}
.hero-points.hero-points-compact .hero-points-sub {
  font-size: 0.78rem;
}
.hero-points-strip .hero-scenes-label {
  margin: 28px 0 14px;
  font-size: 0.92rem;
}
.hero-points-strip .hero-scenes-note {
  margin-top: 14px;
  font-size: 0.82rem;
}

/* ============================================================
   Hero v2 ：スマホ最適化（メディアクエリ）
   ============================================================ */
@media (max-width: 720px) {
  .hero.hero-v2 {
    padding: 0 0 28px;
  }
  .hero-visual-img {
    min-height: 380px;
    max-height: 460px;
    object-position: center 40%;
  }
  .hero-visual-inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .hero-eyebrow-v2 {
    font-size: 0.7rem;
    padding: 5px 12px;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
  }
  .hero-copy-panel {
    padding: 18px 16px 16px;
    max-width: 92%;
  }
  .hero-copy-panel .hero-title-new {
    font-size: 1.35rem !important;
    line-height: 1.55 !important;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
  }
  /* 2行目ハイライトの下線位置をコピー縮小に合わせて自然に */
  .hero-copy-panel .hero-title-new .hero-title-highlight {
    line-height: 1.6;
    background-size: 96% 0.3em;
  }
  .hero-copy-panel .hero-lead {
    font-size: 0.84rem;
    line-height: 1.8;
  }
  .hero-inner-v2 {
    padding-top: 22px;
  }
  /* バッジ：スマホでも2×2維持。文字サイズだけ若干圧縮 */
  .hero-badges {
    gap: 8px;
    max-width: 100%;
  }
  .hero-badge {
    padding: 10px 12px;
    font-size: 0.78rem;
    border-radius: 9px;
  }
  .hero-badge-icon {
    width: 26px;
    height: 26px;
    font-size: 0.82rem;
  }
  /* CTA本体（既存 .btn-line / .btn-tel を流用するが、サブ補足の改行を見やすく） */
  .hero-cta-v2 {
    gap: 8px;
  }
  .hero-form-link {
    font-size: 0.8rem;
  }
  /* 補足ストリップ（旧3カード）：縦並びで簡潔に */
  .hero-points-strip {
    padding: 24px 0 4px;
  }
  .hero-points.hero-points-compact {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-points.hero-points-compact li {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 14px 16px;
    gap: 14px;
  }
  .hero-points.hero-points-compact .hero-points-icon {
    width: 44px;
    height: 44px;
  }
  .hero-points.hero-points-compact .hero-points-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .hero-points.hero-points-compact .hero-points-main {
    font-size: 0.9rem;
  }
  .hero-points.hero-points-compact .hero-points-sub {
    font-size: 0.76rem;
  }
}

/* タブレット〜小型PC：写真高さ調整 */
@media (min-width: 721px) and (max-width: 1023px) {
  .hero-visual-img {
    min-height: 420px;
    max-height: 520px;
  }
  .hero-copy-panel {
    max-width: 560px;
  }
  .hero-copy-panel .hero-title-new {
    font-size: 2rem;
  }
}

/* ============================================================
   Hero v3 ：上品仕上げ精密調整
   ・case-01.jpg をファーストビュー専用カットとして使用
   ・文字組み・余白・色・パネル質感を士業/不動産系LP水準に
   ・既存 v2 を尊重しつつ、必要箇所のみ上書き
   ============================================================ */

/* --- 背景：case-01.jpg をヒーロー用に別カット風に処理 --- */
.hero-v3 .hero-visual {
  background: #1c1814;
}
.hero-visual-img-v3 {
  /* 下のcasesセクションと違うトリミングで「別カット」に見せる */
  object-position: 68% 58%;
  /* 明度・コントラスト・彩度を上品方向に微調整
     - brightness:1.04 で暗さを少しだけ持ち上げる
     - contrast:0.96 でカリッと感を抑え穏やかに
     - saturate:0.88 で生活感の雑色を控えめに
     - sepia:0.04 でほんのり統一感のあるトーン */
  filter: brightness(1.04) contrast(0.96) saturate(0.88) sepia(0.04);
  -webkit-filter: brightness(1.04) contrast(0.96) saturate(0.88) sepia(0.04);
}
/* オーバーレイ：上から下へアイボリー→透明→わずかな影で文字可読性確保
   ただしパネル外の写真現場感は残す */
.hero-visual-overlay-v3 {
  background:
    linear-gradient(
      180deg,
      rgba(251, 249, 244, 0.78) 0%,
      rgba(251, 249, 244, 0.48) 32%,
      rgba(251, 249, 244, 0.18) 58%,
      rgba(28, 24, 20, 0.08) 88%,
      rgba(28, 24, 20, 0.18) 100%
    );
}

/* --- 上部ラベル：v3 仕上げ --- */
.hero-v3 .hero-eyebrow-v2 {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 78, 107, 0.22);
  color: #14365a;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px rgba(20, 19, 15, 0.04);
}

/* --- 半透明パネル：v3（横幅圧縮・透け感UP・影控えめ・角丸抑制） --- */
.hero-copy-panel-v3 {
  max-width: 540px;
  margin: 0 auto;
  background: rgba(252, 250, 246, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  padding: 24px 26px 22px;
  box-shadow:
    0 1px 2px rgba(20, 19, 15, 0.04),
    0 6px 18px rgba(20, 19, 15, 0.06);
  backdrop-filter: blur(8px) saturate(1.05);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
}

/* --- メインコピー：v3（深い墨黒・改行制御） --- */
.hero-title-v3 {
  font-family: "Noto Serif JP", var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #14130f;                  /* 締まった墨黒 */
  font-weight: 600;
  margin: 0 0 14px;
  text-align: center;
}
/* 各行は block。inner span を inline-block で「行の塊」として固める
   → 「相談。」だけが折り返す事故を防ぐ */
.hero-title-v3 .hero-title-line {
  display: block;
  margin: 0;
  padding: 0;
}
.hero-title-v3 .hero-title-inner {
  display: inline-block;
  white-space: nowrap;             /* 行内で折り返さない */
  max-width: 100%;
}
/* 2行目ハイライト：下線は文字幅にちょうど収まる長さに */
.hero-title-v3 .hero-title-highlight {
  display: block;
  transform: none;
  -webkit-transform: none;
  background: none;
  margin: 4px 0 0;
}
.hero-title-v3 .hero-title-highlight .hero-title-inner {
  background-repeat: no-repeat;
  background-position: left 92%;
  background-size: 100% 0.28em;
  background-image: linear-gradient(
    rgba(184, 153, 104, 0.42),
    rgba(184, 153, 104, 0.42)
  );
  padding: 0 2px;
}

/* --- サブコピー：v3（行単位制御・締まった色） --- */
.hero-lead-v3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
  color: #3d3a35;                  /* 薄すぎないグレー */
  font-weight: 400;
  text-align: center;
  max-width: 100%;
}
.hero-lead-v3 .hero-lead-line {
  display: block;
  /* スマホで折り返してしまう事故防止のため、必要な行のみ inline-block 化は @media で */
}

/* --- バッジ：v3 上品テキスト型（チェックマークのみ） --- */
.hero-badges-v3 {
  max-width: 440px;
  gap: 8px;
}
.hero-badge-v3 {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  background: #fbfaf6;
  border: 1px solid rgba(184, 153, 104, 0.32);
  border-radius: 6px;              /* 角丸ひかえめ＝信頼バッジ風 */
  padding: 10px 12px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #14365a;                  /* 締まった濃紺 */
  box-shadow: none;
  text-align: left;
  line-height: 1.3;
}
.hero-badge-v3 .hero-badge-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #b89968;                  /* 上品なゴールドベージュ */
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
}
.hero-badge-v3 .hero-badge-text {
  flex: 1 1 auto;
}

/* --- CTAエリア v3：余白圧縮 --- */
.hero-v3 .hero-inner-v2 {
  padding-top: 22px;
}
.hero-v3 .hero-cta-v2 {
  max-width: 440px;
  gap: 10px;
}
.hero-v3 .hero-form-link-wrap {
  margin: 8px 0 2px;
}
.hero-v3 .hero-form-link {
  font-size: 0.82rem;
  color: #14365a;
  border-bottom-color: rgba(20, 54, 90, 0.22);
}
.hero-v3 .hero-cta-assurance {
  font-size: 0.82rem;
  color: #5a574f;
  margin-top: 14px;
}

/* --- ファーストビュー全体の高さ圧縮（PC基準） --- */
.hero-v3 {
  padding-bottom: 32px;
}

/* ============================================================
   Hero v3 ：スマホ最適化
   ============================================================ */
@media (max-width: 720px) {
  .hero-v3 {
    padding-bottom: 22px;
  }
  /* 写真高さを圧縮：LINE CTAが初回表示に入りやすく */
  .hero-v3 .hero-visual-img {
    min-height: 340px;
    max-height: 400px;
    object-position: 65% 60%;
  }
  .hero-v3 .hero-visual-inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  /* ラベル */
  .hero-v3 .hero-eyebrow-v2 {
    font-size: 0.68rem;
    padding: 4px 12px;
    margin-bottom: 12px;
    letter-spacing: 0.06em;
  }
  /* パネル：横幅を絞って写真の現場感を残す */
  .hero-copy-panel-v3 {
    max-width: 90%;
    padding: 18px 18px 16px;
    border-radius: 9px;
  }
  /* メインコピー：スマホでも2行を確実に1行ずつ表示 */
  .hero-title-v3 {
    font-size: 1.18rem !important;
    line-height: 1.7 !important;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
  }
  .hero-title-v3 .hero-title-inner {
    /* 念のため文字詰め可能に：nowrap で1行確定、収まらない場合のみ自動的に letter-spacing が
       狭まることはないため、フォントサイズで完全に1行に収まる前提 */
    white-space: nowrap;
    letter-spacing: 0.01em;
  }
  .hero-title-v3 .hero-title-highlight .hero-title-inner {
    background-size: 100% 0.24em;
    background-position: left 90%;
  }
  /* サブコピー：3行構成、薄すぎず読みやすく */
  .hero-lead-v3 {
    font-size: 0.82rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: #3d3a35;
  }
  /* バッジ：2×2維持、上品なテキストバッジ */
  .hero-v3 .hero-badges {
    max-width: 100%;
    gap: 8px;
  }
  .hero-badge-v3 {
    padding: 9px 11px;
    font-size: 0.76rem;
    letter-spacing: 0.03em;
    border-radius: 6px;
  }
  .hero-badge-v3 .hero-badge-check {
    width: 14px;
    height: 14px;
    font-size: 0.8rem;
  }
  .hero-v3 .hero-cta-assurance {
    font-size: 0.78rem;
    margin-top: 12px;
  }
  .hero-v3 .hero-form-link {
    font-size: 0.78rem;
  }
}

/* ごく小さな端末（〜380px）：メインコピーが nowrap で溢れないように予備対応 */
@media (max-width: 380px) {
  .hero-title-v3 {
    font-size: 1.06rem !important;
  }
  .hero-title-v3 .hero-title-inner {
    letter-spacing: 0;
  }
  .hero-lead-v3 {
    font-size: 0.78rem;
  }
}

/* ============================================================
   FV Image Hero v2：Canva画像 + 画像内CTA重ね配置（高画質版対応）
   - 画像はそのまま全表示。文字・図解・バッジを一切隠さない
   - CTA は画像内の安心バッジ下余白（70〜94%）に position:absolute で重ねる
   - 画像のアスペクト比に応じて CTA 位置も自動追従
   - 高画質版画像：images/fv-canva-high-v4.png（高解像度PNG / 2.4MB / 「作業前に、最終金額をご説明します。」を削除した版）
   - aspect-ratio: 1536 / 3080 で CLS対策、Retina画面でもシャープ表示
   ============================================================ */
.fv-image-hero {
  position: relative;
  background: linear-gradient(180deg, #fbfaf6 0%, #f5ede0 30%, #f5ede0 100%);
  overflow: hidden;
  padding: 0;
}
.fv-image-wrap {
  position: relative;          /* CTA の absolute 基準 */
  width: 100%;
  max-width: 540px;            /* 画像の元幅。PCで横に伸びすぎない */
  margin: 0 auto;
  overflow: hidden;            /* 画像拡大時の左右トリミング用 */
  animation: fvImageFadeIn 0.8s ease-out both;
}

/* 画像の内部スケーラー：左右に少しはみ出させて、左右余白をトリミング
   - .fv-image-wrap より広い幅で画像を配置
   - overflow: hidden で左右を切り落とす
   - 高さは画像のアスペクト比 × 表示幅 に自動追従 */
.fv-image {
  display: block;
  width: 100%;
  height: auto;
  /* 画像の縦横比を維持（v4：width=1536 / height=3080 属性で aspect-ratio が自動付与される） */
  image-rendering: auto;        /* ブラウザ標準の高品質スケーリング（Retinaで鮮明） */
  /* 高解像度PNG（@2x〜@3x相当）を縮小表示することで、Retina画面でもシャープに表示 */
}

/* CTAオーバーレイ：画像内の黒丸エリア（安心バッジ下〜無料補足文上）に重ね配置 v5
   - 画像はそのまま全表示（カット・クリップ・トリミング一切なし）
   - .fv-image-wrap 内に position: absolute で配置
   - 縦位置：top 67% 〜 bottom 4%（安心バッジ65.7%下〜無料補足文96.9%上の黒丸エリア）
   - 横位置：左右 6% ずつ余白
   - 内部3要素を space-between で均等分配して空白を残さない
   - top/bottom を % 指定にすることで、画像が拡縮しても比率追従 */
.fv-cta-overlay {
  position: absolute;
  /* 縦位置 v7.3：CTAグループ全体を約30px下方向へ移動（安心バッジを隠さない）
     - 390px幅・画像高692px時：30px ≒ 4.34%
     - 旧 top 68.6%（バッジに被る）→ 新 top 72.9%（バッジ下端+12px相当）
     - bottom 指定を外し、CTAグループ高(178px)はflex内部要素で自然決定
     - フォームCTA下端と画像内補足文(96.9%)の余白：692×(0.969-0.729)-178≒-12 … 内側要素高さでアジャスト
     - グループ全体を上下方向にバラさず一体で移動する設計 */
  top: 72.9%;
  bottom: auto;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;                    /* CTA同士の間隔（仕様：10〜12px → 収まり優先で8px） */
  z-index: 2;
  animation: fvCtaFadeUp 0.7s ease-out 0.3s both;
  pointer-events: none;
}
.fv-cta-overlay > * {
  pointer-events: auto;
}

/* === CTAカード型ボタン v7：3つのCTAを白背景カード型に統一 ===
   - 共通：白背景、左に丸アイコン、右にテキスト、右端に矢印
   - 違い：枠線色、丸アイコン背景色（LINE=緑 / 電話=紺 / フォーム=ブラウン）
   - 黒丸エリアに収まるよう高さ54pxで試作（仕様58-66pxより小さめ） */
.fv-cta-card-btn {
  display: flex;
  align-items: center;
  /* 横幅 v7.2：理想デザインに合わせ左右余白をしっかり残す（76〜79%・PCも統一）
     390px幅基準で CTA約304px、左右余白約43pxずつ（仕様42〜50px内）
     !important で他クラス（.cta-line等）の幅指定に確実に勝つ */
  width: 77% !important;
  max-width: 77% !important;
  min-width: 0;
  margin-left: auto !important;
  margin-right: auto !important;
  align-self: center;          /* flex親内で stretch されないよう明示 */
  flex: 0 0 auto;              /* flex-grow/shrink で広がらない */
  height: 54px;                /* 試作サイズ（仕様58-66pxより小さめ：黒丸エリア収まり優先） */
  /* v7.4：内部レイアウト微調整
     - 左paddingを 12px → 24px に増やし、アイコン＋文言ブロックを約+12px右寄せ
     - 右paddingを 14px → 18px に増やし、矢印との余白も整える
     - 高さ・幅・縦間隔は一切変更なし */
  padding: 8px 18px 8px 24px;
  background: #ffffff;
  color: #1f3a52;
  text-decoration: none;
  border: 1.5px solid rgba(31, 78, 107, 0.18);  /* デフォルト（各CTAで上書き） */
  border-radius: 12px;         /* 仕様：12px */
  box-shadow: 0 2px 6px rgba(20, 19, 15, 0.08); /* 控えめな影 */
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
  position: relative;
  gap: 14px;                   /* アイコンと文字の間隔 v7.4：12px → 14px（仕様12-16px内） */
}
.fv-cta-card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(20, 19, 15, 0.12);
}
.fv-cta-card-btn:active {
  transform: translateY(0);
}

/* LINE CTA：枠線=LINEグリーン
   v7.4：下部固定CTA(.fixed-cta-line=var(--color-line)=#06c755) と完全に同色に統一 */
.fv-cta-line.fv-cta-card-btn {
  border-color: #06c755;
}
.fv-cta-line.fv-cta-card-btn:hover {
  border-color: #05b34c;
}

/* 電話 CTA：枠線=濃紺 */
.fv-cta-tel.fv-cta-card-btn {
  border-color: #1f4e6b;
}
.fv-cta-tel.fv-cta-card-btn:hover {
  border-color: #163a51;
}

/* フォーム CTA：枠線=ブラウン系（グレージュ寄り） */
.fv-cta-form.fv-cta-card-btn {
  border-color: #b08d6a;
}
.fv-cta-form.fv-cta-card-btn:hover {
  border-color: #97775a;
}

/* === 左丸アイコン（v7：3CTA共通38px、色違い） === */
.fv-cta-icon {
  flex-shrink: 0;
  width: 38px;                 /* 仕様：38〜42px（試作38px） */
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  color: #fff;
  line-height: 1;
}
.fv-cta-icon--line { background: #06c755; }     /* LINEグリーン v7.4：下部固定CTAと統一(#06c755) */
.fv-cta-icon--tel  { background: #1f4e6b; }     /* 濃紺 */
.fv-cta-icon--form { background: #b08d6a; }     /* 控えめなブラウン */

.fv-cta-icon .fa-line { font-size: 1.15rem; }
.fv-cta-icon .fa-phone { font-size: 0.95rem; }
.fv-cta-icon .fa-envelope { font-size: 0.95rem; }

/* === テキストラベル v7 === */
.fv-cta-label {
  flex: 1 1 auto;              /* 中央〜右側に展開してアイコン以外を埋める */
  display: flex;
  flex-direction: column;
  justify-content: center;     /* 上下中央揃え（主文+補足文ブロックを縦中央） */
  align-items: flex-start;     /* 主文と補足文の左端を揃える */
  gap: 2px;
  line-height: 1.25;
  min-width: 0;
  text-align: left;
  padding-right: 20px;         /* 右端矢印用の余裕 v7.4：18px → 20px */
}
.fv-cta-main {
  font-size: 0.95rem;          /* 仕様：15〜17px（0.95rem≒15.2px、試作小さめ） */
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1f3a52;              /* 濃紺 */
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}
.fv-cta-sub {
  font-size: 0.72rem;          /* 仕様：11〜12px（0.72rem≒11.5px） */
  font-weight: 500;
  color: #6b7480;              /* 濃いグレー */
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* LINE主文だけ少し緑寄せの濃色にする */
.fv-cta-line .fv-cta-main {
  color: #0a4a2b;              /* 濃い緑寄り */
}

/* 右端の矢印 v7：3CTA共通 */
.fv-cta-arrow {
  position: absolute;
  right: 16px;                 /* v7.4：14px → 16px（右paddingに合わせて少し奥に） */
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.78rem;
  color: #a8b1ba;              /* 控えめなグレー */
  opacity: 0.85;
}

/* === スマホ最適化（画像は等倍表示、CTAは画像内オーバーレイ v7：カード型） === */
@media (max-width: 720px) {
  .fv-image-wrap {
    width: 100%;
    max-width: 100%;
  }
  .fv-image {
    width: 100%;
    height: auto;
  }
  /* baseで仕様適合済。720px以下も同じカードサイズ。 */
}

/* 390px〜430px：標準スマホ（v7.2：左右余白しっかり・幅77%） */
@media (max-width: 430px) {
  .fv-cta-overlay {
    gap: 8px;
  }
  .fv-cta-card-btn {
    width: 77% !important;     /* 仕様：76〜79%、430pxでも80%を超えない */
    max-width: 77% !important;
    height: 54px;
  }
}

/* 375px〜380px：文字が詰まるときの微調整 */
@media (max-width: 380px) {
  .fv-cta-overlay {
    gap: 7px;                  /* 全体高さを微圧縮 */
    top: 73.4%;                /* v7.3：375pxでも30px相当下げて安心バッジを隠さない */
    bottom: auto;
  }
  .fv-cta-card-btn {
    width: 79% !important;     /* 仕様：375pxは78〜80%（余白が狭くなりすぎないため） */
    max-width: 79% !important;
    height: 52px;              /* 375pxではさらに少し低く */
    padding: 7px 14px 7px 18px;   /* v7.4：左paddingを増やして右寄せ */
    gap: 12px;                    /* v7.4：10px → 12px */
  }
  .fv-cta-icon {
    width: 34px;
    height: 34px;
  }
  .fv-cta-main {
    font-size: 0.88rem;
  }
  .fv-cta-sub {
    font-size: 0.66rem;
  }
  .fv-cta-arrow {
    right: 11px;
    font-size: 0.72rem;
  }
  .fv-cta-label {
    padding-right: 14px;
  }
}

/* === PC表示：画像が拡大しすぎないよう中央寄せ === */
@media (min-width: 721px) {
  .fv-image-wrap {
    box-shadow: 0 4px 20px rgba(20, 19, 15, 0.06);
  }
  /* PCではbaseサイズを維持 */
}

/* === ファーストビュー直下：対応シーン補足ストリップ（v4：CTA直下用に余白調整） === */
.hero-points-strip {
  padding: 28px 0 8px;
  background: linear-gradient(180deg, #f5ede0 0%, #fbfaf6 100%);
}
.hero-points-strip .hero-scenes-label {
  margin: 0 0 14px;
  font-size: 0.95rem;
}
.hero-points-strip .hero-scenes-note {
  margin-top: 14px;
  font-size: 0.84rem;
}
.hero-points-strip .hero-area-band-wrap {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 720px) {
  .hero-points-strip {
    padding: 22px 0 4px;
  }
  .hero-points-strip .hero-scenes-label {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  .hero-points-strip .hero-scenes-note {
    font-size: 0.8rem;
  }
}

/* === アニメーション（控えめ） === */
@keyframes fvImageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fvCtaFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* prefers-reduced-motion：アニメーション無効化 */
@media (prefers-reduced-motion: reduce) {
  .fv-image-wrap,
  .fv-cta-overlay {
    animation: none !important;
  }
  .fv-cta-line:hover,
  .fv-cta-tel:hover {
    transform: none;
  }
}

