/* ==========================================================
     v12 — 業者LP系 × paint1.jp 流儀 × ぶつえいどうカラー
     CRO最大化・大型CTA・実績バッジ・ビフォーアフター
     ヒーローはフル幅ピークカルーセル（1枚画像スライド）
  ========================================================== */

  :root {
    --brand:           #1c3a2b;   /* 深緑（ぶつえいどう refined）*/
    --brand-deep:      #0e2418;
    --brand-light:     #2a5340;
    --accent:          #c44521;   /* 朱・主CTA */
    --accent-deep:     #8c2614;
    --accent-bright:   #d95730;
    --hilite:          #ffd440;   /* 黄色（✓・強調・マーカー） */
    --hilite-deep:     #f5b800;
    --money:           #2d8f3f;   /* 緑（節約・お得） */
    --money-deep:      #1d6e2d;
    --warn:            #d63c1a;   /* 警告・赤 */
    --warn-bg:         #fff5f1;
    --paper:           #ffffff;
    --paper-soft:      #faf8f3;   /* 薄ベージュ */
    --paper-alt:       #f2eee2;   /* やや濃ベージュ */
    --line:            #e2dccc;
    --line-strong:     #c9c0a9;
    --text:            #1c1714;
    --text-soft:       #44382d;
    --text-faint:      #6e6051;
    --google-blue:     #4285f4;
    --line-green:      #06C755;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
  /* sticky header(.header)分のオフセットを id ターゲットに確保 */
  :target { scroll-margin-top: 90px; }

  /* ============== PHOTO TONE UNIFICATION ============== */
  /* 全写真(問題/Pricing/BA/About)に共通の微調整を適用してトーン統一。
     Hero スライダーは元から marketing 仕様なので除外。
     微調整: 彩度を少し落とす + 軽いウォーム sepia + コントラスト微増 = 統一感ある "落ち着いた老舗トーン" */
  .problem-photo img,
  .price-card-photo,
  .ba-img img,
  .about-photo img {
    filter: saturate(0.92) contrast(1.04) brightness(1.01) sepia(0.06);
    transition: filter 0.3s;
  }

  /* 視覚的に隠すがスクリーンリーダー・SEOには見える (h1 等のセマンティック用途) */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }


  /* ============== IMAGE LANGUAGE — 役割定義 ==============

     [写真]
     用途: 具体的なサービス・人物・シーン・感情を伝える
     使用箇所: Hero / Problem / Pricing / BA / About
     スタイル: トーン統一フィルタ適用 (saturate 0.92 / sepia 0.06 / contrast 1.04)

     [SVG ストロークアイコン (Lucide系・stroke-width 1.8〜2)]
     用途: 抽象的な品質・流れ・機能を伝える
     使用箇所: Reasons / Flow / Trust bar / Header phone / Final CTA / Footer
     カラー: currentColor 継承 (var(--accent) or var(--brand) 文脈次第)

     [SVG 塗り潰しシンボル]
     用途: 評価・装飾(★ ✓ ▶)
     使用箇所: Voice stars / Trust rating / 矢印など

     原則: 1つの要素には1つの言語のみ。混在禁止
  ============================================================== */

  /* ============== BUTTON SYSTEM (.btn ベース + 3バリエーション)
     -------------------
     [.btn .btn--primary] : メインCTA — オレンジ filled + ハードシャドウ
     [.btn .btn--secondary] : 補助CTA — LINE緑 filled
     [.btn .btn--ghost] : 第3優先 — オレンジボーダー(透過)
     サイズ修飾: .btn--lg / .btn--sm
     アイコン+テキストは flex 内で配置。 既存の独自ボタン(限定/最終 等)は順次マイグレーション
  ============================================================== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    border: 2px solid transparent;
    transition: all 0.15s;
    cursor: pointer;
    background: none;
  }
  .btn--lg { padding: 18px 28px; font-size: 16px; gap: 12px; }
  .btn--sm { padding: 10px 16px; font-size: 12.5px; gap: 6px; }
  .btn--block { display: flex; width: 100%; }

  .btn--primary {
    background: var(--accent);
    color: white;
    border-color: white;
    box-shadow: 0 4px 0 var(--accent-deep), 0 6px 14px rgba(196,69,33,0.25);
  }
  .btn--primary:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--accent-deep), 0 4px 10px rgba(196,69,33,0.3); }
  .btn--primary:active { transform: translateY(4px); box-shadow: 0 0 0 var(--accent-deep); }

  .btn--secondary {
    background: var(--line-green);
    color: white;
    border-color: white;
    box-shadow: 0 4px 0 #048a3d, 0 6px 14px rgba(6,199,85,0.25);
  }
  .btn--secondary:hover { transform: translateY(2px); box-shadow: 0 2px 0 #048a3d, 0 4px 10px rgba(6,199,85,0.3); }

  .btn--ghost {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
  }
  .btn--ghost:hover { background: var(--accent); color: white; }

  /* アイコン用 — 円形bg中の SVG */
  .btn .btn-icon {
    width: 30px; height: 30px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding: 7px;
    flex-shrink: 0;
  }
  .btn--secondary .btn-icon { color: var(--line-green); }
  .btn--primary .btn-icon { color: var(--accent); }
  .btn .btn-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  /* テキスト2段(label + 詳細) */
  .btn .btn-stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; text-align: left; }
  .btn .btn-stack .top { font-size: 0.85em; font-weight: 700; opacity: 0.95; }
  .btn .btn-stack .bottom { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 1.1em; letter-spacing: 0.02em; margin-top: 2px; }

  /* ============== SVG ICON SYSTEM ============== */
  /* テキストの中にインラインで置く小さいアイコン (1em) */
  .ico-inline {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: -0.15em;
    margin-right: 0.3em;
    flex-shrink: 0;
  }
  /* 円形バッジ等の中身にぴったり填まるブロック型SVG */
  .ico-block {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  /* 文中インラインの塗り潰し型 (★等) */
  .star-inline {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: var(--hilite-deep);
    vertical-align: -0.13em;
    margin: 0 0.15em;
  }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--paper);
    line-height: 1.75;
    letter-spacing: 0.01em;
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
    -webkit-text-size-adjust: 100%;
  }
  @media (min-width: 901px) { body { padding-bottom: 0; } }

  h1, h2, h3, h4, h5 { margin: 0; line-height: 1.4; font-weight: 800; }
  .num { font-family: 'Inter', sans-serif; font-weight: 800; font-feature-settings: 'lnum'; }

  /* ============== UTILITY ============== */
  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
  .wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
  @media (max-width: 600px) { .wrap, .wrap-narrow { padding: 0 18px; } }

  /* ============== TOP ANNOUNCEMENT BAR (キャンペーン・重要なお知らせ) ============== */
  .util-bar {
    background: var(--brand-deep);
    color: var(--paper-soft);
    font-size: 12.5px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0;
  }
  .util-bar a {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 10px 0;
    transition: background 0.15s;
  }
  .util-bar a:hover { background: rgba(255,255,255,0.06); }
  .util-bar .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
  }
  .util-bar .ut-text {
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
  .util-bar .ut-tag {
    background: var(--hilite);
    color: var(--brand-deep);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 10px;
    padding: 3px 9px;
    border-radius: 3px;
    letter-spacing: 0.12em;
    flex-shrink: 0;
    line-height: 1.4;
  }
  .util-bar .ut-text { flex-shrink: 1; }
  .util-bar .ut-text strong { color: var(--hilite); font-weight: 800; }
  .util-bar .ut-cta { color: var(--hilite); font-weight: 700; flex-shrink: 0; }
  /* 既存の pulse 等は他で使われている可能性に備え残置 */
  .util-bar .pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: #6ec78b;
    box-shadow: 0 0 8px rgba(110,199,139,0.8);
    animation: pulse-dot 2s infinite;
    display: inline-block;
  }
  @keyframes pulse-dot { 0%, 100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }

  /* ============== HEADER ============== */
  .header {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 80;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .logo-icon {
    height: 56px;
    flex-shrink: 0;
    display: block;
  }
  .logo-icon img { height: 100%; width: auto; display: block; }
  .logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  @media (max-width: 480px) {
    .logo-icon { height: 44px; }
    .logo { gap: 8px; }
  }
  .logo .tag {
    font-size: 10.5px;
    color: var(--text-faint);
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .logo .name {
    font-weight: 900;
    color: var(--brand);
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .header-cta-btn { white-space: nowrap; }
  .header-cta-btn .t-short { display: none; }
  .logo .name .accent { color: var(--accent); }

  .header-right { display: flex; align-items: center; gap: 16px; }

  .header-phone {
    display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1;
    text-decoration: none;
  }
  .header-phone .label {
    font-size: 11.5px; color: var(--text-soft); font-weight: 700; letter-spacing: 0.04em;
    margin-bottom: 4px;
    display: inline-flex; align-items: center; gap: 4px;
  }
  .header-phone .label .hours-inline { color: var(--text-faint); font-weight: 600; }
  .header-phone .num-tel {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: var(--accent);
    font-size: 28px;
    letter-spacing: 0.02em;
    line-height: 1;
  }

  .header-cta {
    background: var(--accent);
    color: white;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 0 var(--accent-deep), 0 6px 14px rgba(196,69,33,0.25);
    transition: all 0.15s;
    display: inline-flex; align-items: center; gap: 8px;
    line-height: 1.4;
  }
  .header-cta:hover { background: var(--accent-bright); transform: translateY(1px); box-shadow: 0 3px 0 var(--accent-deep), 0 4px 10px rgba(196,69,33,0.3); }

  @media (max-width: 768px) {
    .header-phone { display: none; }
    .header-cta { padding: 10px 14px; font-size: 12px; }
  }

  /* ============== WARNING STRIP (paint1風) — クリックで compare-callout へジャンプ ============== */
  .warning-strip {
    background: var(--warn);
    color: white;
    padding: 0;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .warning-strip a {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 14px 0;
    transition: background 0.2s;
  }
  .warning-strip a:hover { background: rgba(0,0,0,0.12); }
  .warning-strip .wrap { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
  .warning-strip .ico {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px;
    background: white; color: var(--warn);
    border-radius: 50%; font-weight: 900;
  }
  .warning-strip .arrow {
    display: inline-flex; align-items: center;
    font-weight: 900;
    font-size: 13px;
    background: rgba(255,255,255,0.18);
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.4);
  }
  .warning-strip .arrow svg { width: 12px; height: 12px; margin-left: 4px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .warning-strip .msg-short { display: none; }

  /* ============== HERO（明るい・ピークカルーセル） ============== */
  .hero {
    background: linear-gradient(135deg, #fef9ed 0%, #fce8c8 60%, #f8d99d 100%);
    color: var(--text);
    padding: 36px 0 36px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(196,69,33,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(28,58,43,0.05) 0%, transparent 70%);
    border-radius: 50%;
  }

  /* スライダーシステム — フル幅ピークカルーセル */
  .hero-slider {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
  }
  .hero-slides {
    display: flex;
    gap: 24px;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
    /* 中央寄せはJS側で translateX に centerOffset を加算（max-width 1280px キャップにも追随） */
    will-change: transform;
  }
  .hero-slide {
    flex: 0 0 72vw;
    max-width: 1280px;
    min-width: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(28,58,43,0.15);
    transition: opacity 0.5s, transform 0.5s, box-shadow 0.5s;
    opacity: 0.45;
    transform: scale(0.94);
    position: relative;
    aspect-ratio: 1536 / 1024;
    background: white;
  }
  .hero-slide.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 22px 64px rgba(28,58,43,0.25);
  }
  /* 1枚画像スライド — キャンペーン差し替え可能 */
  .slide-banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .slide-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-decoration: none;
  }
  /* レスポンシブ — 中央寄せはJS側で対応するのでpadding不要 */
  @media (max-width: 1280px) {
    .hero-slide { flex: 0 0 76vw; }
  }
  @media (max-width: 980px) {
    .hero-slide { flex: 0 0 86vw; }
  }
  @media (max-width: 600px) {
    .hero-slide { flex: 0 0 92vw; }
    .hero-slides { gap: 12px; }
  }

  /* ページネーション（フル幅で中央寄せ） */
  .hero-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 24px;
  }
  .hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(28, 58, 43, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
  }
  .hero-dot.active {
    background: var(--accent);
    width: 32px;
    border-radius: 5px;
  }
  .hero-dot:hover { background: var(--accent-deep); }

  /* スライドナビ矢印 */
  .hero-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
    background: white;
    border: 3px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    z-index: 5;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transition: all 0.2s;
    line-height: 1;
  }
  .hero-arrow:hover { background: var(--accent); color: white; transform: translateY(-50%) scale(1.05); }
  .hero-arrow.prev { left: 12px; }
  .hero-arrow.next { right: 12px; }
  @media (max-width: 768px) {
    .hero-arrow { display: none; }
  }

  /* ============== ACTIVITY FEED（最新のお問い合わせ状況） ============== */
  .activity-feed {
    background: white;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
  }
  .feed-card {
    max-width: 980px;
    margin: 0 auto;
    background: var(--paper-soft);
    border: 2px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
  }
  .feed-header {
    background: var(--brand);
    color: white;
    padding: 14px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .feed-header h3 {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .feed-header h3 .ico-inline {
    color: var(--hilite);
    width: 18px;
    height: 18px;
    margin-right: 4px;
  }
  .feed-header .live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
  }
  .feed-header .live .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #6ec78b;
    box-shadow: 0 0 6px rgba(110,199,139,0.7);
    animation: pulse-dot 2s infinite;
  }
  .feed-list {
    max-height: 240px;
    overflow-y: auto;
  }
  .feed-list::-webkit-scrollbar { width: 6px; }
  .feed-list::-webkit-scrollbar-track { background: var(--paper-soft); }
  .feed-list::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }

  .feed-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px 22px;
    border-bottom: 1px solid var(--line);
    font-size: 13.5px;
    background: white;
    transition: background 0.2s;
  }
  .feed-item:hover { background: var(--paper-soft); }
  .feed-item:last-child { border-bottom: none; }
  .feed-item:nth-child(even) { background: var(--paper-soft); }
  .feed-item:nth-child(even):hover { background: var(--paper-alt); }

  .feed-date {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-faint);
    font-size: 12.5px;
    letter-spacing: 0.02em;
  }
  .feed-text {
    color: var(--text);
    line-height: 1.6;
    font-weight: 500;
  }
  .feed-status {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
  .status-done { background: var(--money); color: white; }
  .status-progress { background: var(--accent); color: white; }
  .status-quote { background: var(--hilite); color: var(--brand); }
  .status-new { background: var(--brand); color: white; }

  @media (max-width: 700px) {
    .feed-item {
      grid-template-columns: 1fr auto;
      grid-template-areas: "date status" "text text";
      gap: 6px 12px;
      padding: 12px 16px;
    }
    .feed-date { grid-area: date; }
    .feed-text { grid-area: text; font-size: 13px; }
    .feed-status { grid-area: status; }
    .feed-header { padding: 12px 16px; }
    .feed-header h3 { font-size: 14px; }
  }

  /* ============== STRONG TRUST BAR ============== */
  .trust-bar {
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 50%, var(--brand-deep) 100%);
    padding: 36px 0 32px;
    border-top: 1px solid rgba(255, 212, 64, 0.18);
    border-bottom: 3px solid var(--hilite);
    position: relative;
    overflow: hidden;
  }
  .trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 15% 50%, rgba(255, 212, 64, 0.06) 0%, transparent 45%),
      radial-gradient(circle at 85% 50%, rgba(196, 69, 33, 0.06) 0%, transparent 45%);
    pointer-events: none;
  }
  .trust-bar .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
  }
  .trust-item {
    text-align: center;
    padding: 4px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .trust-item:last-child { border-right: none; }
  .trust-pre {
    font-size: 15px;
    font-weight: 800;
    color: var(--hilite);
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .trust-pre svg {
    width: 16px; height: 16px;
    fill: none; stroke: currentColor;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
  }
  .trust-num {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    line-height: 1;
    margin-bottom: 8px;
  }
  .trust-num .n {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 46px;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  .trust-num .u {
    font-size: 15px;
    font-weight: 800;
    color: var(--hilite);
    letter-spacing: 0.04em;
  }
  .trust-label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
  @media (max-width: 900px) {
    .trust-bar { padding: 24px 0 22px; }
    .trust-bar .wrap { grid-template-columns: 1fr 1fr; gap: 18px 0; }
    .trust-item { padding: 8px 12px; }
    .trust-item:nth-child(2) { border-right: none; }
    .trust-item:nth-child(1), .trust-item:nth-child(2) {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 18px;
    }
    .trust-num .n { font-size: 34px; }
    .trust-num .u { font-size: 13px; }
    .trust-num .star { font-size: 18px; }
    .trust-pre { font-size: 12.5px; margin-bottom: 8px; }
    .trust-label { font-size: 10.5px; }
  }
  @media (max-width: 480px) {
    .trust-num .n { font-size: 28px; }
    .trust-label { font-size: 10px; letter-spacing: 0.02em; }
  }

  /* ============== SECTION COMMONS ============== */
  .section { padding: 64px 0; }
  @media (max-width: 768px) { .section { padding: 48px 0; } }

  .sec-title {
    text-align: center;
    margin-bottom: 40px;
  }
  .sec-title .pre {
    display: inline-block;
    background: white;
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
  }
  .sec-title h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: var(--brand);
    letter-spacing: 0.01em;
    line-height: 1.45;
  }
  .sec-title h2 .accent { color: var(--accent); }
  .sec-title h2 .marker {
    background: linear-gradient(transparent 55%, var(--hilite) 55%, var(--hilite) 92%, transparent 92%);
    padding: 0 8px;
  }
  .sec-title .lead {
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.95;
    max-width: 700px;
    margin: 16px auto 0;
  }

  /* ============== PROBLEMS ============== */
  .problems { background: var(--paper-soft); }
  .problem-split {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 32px;
    max-width: 1080px;
    margin: 0 auto;
    align-items: start;
  }
  .problem-grid { align-content: start; }
  @media (max-width: 900px) { .problem-split { grid-template-columns: 1fr; gap: 20px; } }
  .problem-photo {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--paper-alt), var(--line));
    color: var(--text-faint);
    border: 4px solid white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    aspect-ratio: 1 / 1;
    position: relative;
  }
  .problem-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    border-radius: 8px;
  }
  @media (max-width: 900px) { .problem-photo { aspect-ratio: 4 / 3; } }
  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  @media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }
  .problem-item {
    background: white;
    border: 2px solid var(--line);
    border-left: 6px solid var(--warn);
    padding: 18px 20px;
    border-radius: 6px;
    display: flex; align-items: flex-start; gap: 12px;
  }
  .problem-item .x {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; flex-shrink: 0;
    background: var(--warn); color: white;
    border-radius: 50%; font-weight: 900; font-size: 14px;
    margin-top: 2px;
  }
  .problem-item .t {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.7;
  }

  .problem-pivot {
    text-align: center;
    margin: 40px auto 24px;
  }
  .problem-pivot .arrow {
    display: block;
    width: 0; height: 0;
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-top: 28px solid var(--accent);
    margin: 0 auto 16px;
  }
  .problem-pivot .label {
    background: var(--accent);
    color: white;
    padding: 12px 36px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 6px 16px rgba(196,69,33,0.3);
  }

  /* ============== REASONS 5 (絞込: ハブ価値 / 経済性 / 利便性 / ローカル / 信頼) ============== */
  .reasons { background: white; }
  .reasons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
  @media (max-width: 1100px) { .reasons-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 768px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .reasons-grid { grid-template-columns: 1fr; } }
  .reason {
    background: var(--paper-soft);
    border: 2px solid var(--line);
    border-radius: 12px;
    padding: 28px 20px 24px;
    text-align: center;
    position: relative;
    transition: all 0.2s;
  }
  .reason:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
  .reason-num {
    position: absolute;
    top: -14px;
    left: 50%; transform: translateX(-50%);
    background: var(--accent); color: white;
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 16px;
    border: 3px solid white;
    box-shadow: 0 3px 8px rgba(196,69,33,0.3);
  }
  .reason-icon {
    width: 48px;
    height: 48px;
    margin: 14px auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
  }
  .reason-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .reason-title {
    font-size: 15px;
    font-weight: 900;
    color: var(--brand);
    margin-bottom: 10px;
    line-height: 1.5;
    letter-spacing: 0.01em;
  }
  .reason-title .hl { background: linear-gradient(transparent 60%, var(--hilite) 60%); padding: 0 2px; }
  .reason-desc {
    font-size: 12.5px;
    color: var(--text-soft);
    line-height: 1.85;
  }

  /* ============== PRICE TABLE (saving) ============== */
  .pricing { background: var(--paper-alt); }
  .pricing-section { margin-bottom: 48px; }
  .pricing-section:last-child { margin-bottom: 0; }
  .pricing-section-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--brand);
    flex-wrap: wrap;
  }
  .pricing-section-head .badge {
    background: var(--brand);
    color: white;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    flex-shrink: 0;
  }
  .pricing-section.pricing-own .pricing-section-head { border-bottom-color: var(--line-strong); }
  .pricing-section.pricing-own .pricing-section-head .badge { background: var(--text-soft); }
  .pricing-section-head h3 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 900;
    color: var(--brand);
    line-height: 1.5;
    letter-spacing: 0.005em;
    margin: 0;
  }
  .pricing-section-head h3 .accent { color: var(--accent); }
  .pricing-section-head .note {
    font-size: 12.5px;
    color: var(--text-soft);
    font-weight: 600;
    line-height: 1.6;
    flex-basis: 100%;
    margin-top: 4px;
  }
  .pricing-grid {
    display: grid;
    gap: 22px;
  }
  /* 上段4カード = 2x2 でカードを大きく見せる */
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-3 { grid-template-columns: repeat(3, 1fr); }
  @media (max-width: 700px) {
    .pricing-grid-4, .pricing-grid-3 { grid-template-columns: 1fr; }
  }
  /* 自社サブセクションのカードは少しだけ控えめに */
  .pricing-own .price-card-header { background: var(--brand-light); }
  .pricing-own .price-card .price-value { color: var(--brand); }
  .pricing-own .price-card .saving { background: var(--brand-light); }
  .price-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
    transition: all 0.2s;
    border: 2px solid var(--line);
  }
  .price-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); border-color: var(--accent); }
  .price-card-header {
    background: var(--brand);
    color: white;
    padding: 14px 18px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .price-card-header h4 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
  .price-card-header .cat {
    background: var(--hilite); color: var(--brand);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
  }
  .price-card-body { padding: 20px 22px 22px; flex: 1; }
  /* サービスカード上部の写真バナー (実写真 or プレースホルダー) */
  .price-card-photo {
    width: 100%;
    aspect-ratio: 2 / 1;
    background: linear-gradient(135deg, var(--paper-alt), var(--line));
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .price-card-photo.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-faint);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    background: repeating-linear-gradient(
      45deg,
      var(--paper-alt),
      var(--paper-alt) 10px,
      var(--paper-soft) 10px,
      var(--paper-soft) 20px
    );
  }
  .price-card-photo.placeholder svg {
    width: 24px; height: 24px;
    fill: none; stroke: currentColor;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    margin-bottom: 6px;
    opacity: 0.6;
  }
  .price-card-photo.placeholder .ph-label {
    line-height: 1.3;
    opacity: 0.7;
  }
  .price-card .price-row {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 14px;
  }
  .price-card .price-label {
    font-size: 11px; color: var(--text-faint); font-weight: 600;
    line-height: 1.4;
  }
  .price-card .price-value {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: var(--accent);
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .price-card .price-value .small { font-size: 14px; font-weight: 700; color: var(--text); }
  .price-card .saving {
    background: var(--money);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 14px;
  }
  .price-card .saving .num { color: var(--hilite); font-size: 14px; }
  .price-card p {
    font-size: 12.5px;
    color: var(--text-soft);
    line-height: 1.85;
  }
  .price-card-footer {
    background: var(--paper-soft);
    padding: 12px 22px;
    border-top: 1px solid var(--line);
    text-align: center;
    font-size: 13px; font-weight: 700;
    color: var(--accent);
  }

  /* ============== VENDOR CRITERIA (連携業者の選定基準) ============== */
  .vendor-criteria { background: white; }
  .vc-intro {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
    font-size: 14.5px;
    line-height: 1.95;
    color: var(--text-soft);
  }
  .vc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
  }
  @media (max-width: 900px) { .vc-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .vc-grid { grid-template-columns: 1fr; } }
  .vc-card {
    background: var(--paper-soft);
    border: 2px solid var(--line);
    border-left: 5px solid var(--accent);
    border-radius: 10px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .vc-card .vc-num {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.06em;
    line-height: 1;
  }
  .vc-card h4 {
    font-size: 15.5px;
    font-weight: 900;
    color: var(--brand);
    line-height: 1.5;
    margin: 0;
  }
  .vc-card p {
    font-size: 12.5px;
    color: var(--text-soft);
    line-height: 1.85;
    margin: 0;
  }
  .vc-card .vc-tag {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.04em;
    width: fit-content;
  }
  .vc-bottom {
    max-width: 720px;
    margin: 36px auto 0;
    text-align: center;
    padding: 20px 24px;
    background: var(--paper-alt);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.85;
  }
  .vc-bottom strong { color: var(--brand); font-weight: 800; }

  /* ============== FLOW 4 steps (圧縮) ============== */
  .flow { background: white; }
  .flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
  }
  @media (max-width: 768px) { .flow-grid { grid-template-columns: repeat(2, 1fr); } }
  .flow-step {
    background: var(--paper-soft);
    border-radius: 12px;
    padding: 24px 16px 20px;
    text-align: center;
    position: relative;
    border: 2px solid var(--line);
  }
  .flow-step-num {
    position: absolute;
    top: 12px; right: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: var(--line-strong);
    font-size: 32px;
    line-height: 1;
    opacity: 0.5;
  }
  .flow-step-ico {
    width: 40px;
    height: 40px;
    margin: 4px auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
  }
  .flow-step-label {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.16em;
    margin-bottom: 6px;
  }
  .flow-step-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--brand);
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .flow-step-desc {
    font-size: 11.5px;
    color: var(--text-soft);
    line-height: 1.75;
  }

  /* ============== BEFORE/AFTER ============== */
  .ba { background: var(--brand); color: white; }
  .ba .sec-title h2 { color: white; }
  .ba .sec-title h2 .accent { color: var(--hilite); }
  .ba .sec-title .lead { color: rgba(255,255,255,0.85); }
  .ba .sec-title .pre { background: transparent; color: var(--hilite); border-color: var(--hilite); }
  .ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .ba-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-left: auto; margin-right: auto; }
  @media (max-width: 900px) {
    .ba-grid { grid-template-columns: 1fr; }
    .ba-grid--2 { grid-template-columns: 1fr; }
  }
  .ba-item {
    background: white;
    color: var(--text);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .ba-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--brand);
    position: relative;
  }
  .ba-img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--paper-alt) 0%, var(--line) 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-faint);
    font-size: 12px;
    text-align: center;
    padding: 16px;
    position: relative;
    overflow: hidden;
  }
  .ba-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ba-img::after {
    position: absolute;
    top: 8px; left: 8px;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
  }
  .ba-img.bef::after { content: 'BEFORE'; background: var(--text); }
  .ba-img.aft::after { content: 'AFTER';  background: var(--money); }
  .ba-content { padding: 18px 20px 20px; }
  .ba-savings {
    background: var(--money);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 10px;
  }
  .ba-savings .num { color: var(--hilite); }
  .ba-title { font-size: 15px; font-weight: 800; color: var(--brand); margin-bottom: 8px; line-height: 1.5; }
  .ba-meta { font-size: 11.5px; color: var(--text-faint); }

  /* ============== VOICES ============== */
  .voices { background: var(--paper-soft); }
  .voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  @media (max-width: 900px) { .voices-grid { grid-template-columns: 1fr; } }
  .voice {
    background: white;
    border-radius: 12px;
    padding: 22px 22px 20px;
    border: 2px solid var(--line);
    border-top: 6px solid var(--hilite);
    position: relative;
  }
  .voice-google {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--google-blue);
    color: white;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 13px;
  }
  .voice-author {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px;
  }
  .voice-author .avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--paper-alt), var(--line-strong));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; color: var(--text-faint); font-size: 13px;
    flex-shrink: 0;
  }
  .voice-author .name { font-size: 13px; font-weight: 800; color: var(--text); }
  .voice-author .meta { font-size: 11px; color: var(--text-faint); }
  .voice-stars {
    display: inline-flex;
    gap: 3px;
    color: var(--hilite-deep);
    margin-bottom: 12px;
  }
  .voice-stars svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
  .voice-saving {
    background: var(--money);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 12px;
  }
  .voice-saving .num { color: var(--hilite); }
  .voice-text {
    font-size: 13.5px;
    color: var(--text-soft);
    line-height: 1.9;
  }
  .voice-meta-extra {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    color: var(--text-faint);
    background: var(--paper-soft);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .voices-note {
    text-align: center;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .voices-note p {
    font-size: 11.5px;
    color: var(--text-faint);
    line-height: 1.85;
    margin: 0;
  }
  .voices-source {
    text-align: center;
    margin-top: 18px;
  }
  .voices-source a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
    padding: 8px 16px;
    border: 1.5px solid var(--accent);
    border-radius: 999px;
    transition: all 0.15s;
  }
  .voices-source a:hover { background: var(--accent); color: white; }
  .voices-source a svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  /* ============== COMPARE CALLOUT (他社見積もり持ち込み歓迎) ============== */
  .compare-callout {
    background: linear-gradient(135deg, var(--hilite) 0%, var(--hilite-deep) 100%);
    color: var(--brand);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
  }
  .compare-callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 10% 50%, rgba(255,255,255,0.25) 0%, transparent 40%),
      radial-gradient(circle at 90% 50%, rgba(28, 58, 43, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .compare-callout .wrap-narrow { position: relative; z-index: 1; text-align: center; }
  .compare-callout .badge {
    display: inline-block;
    background: var(--brand);
    color: var(--hilite);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .compare-callout h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 16px;
    color: var(--brand);
    letter-spacing: 0.005em;
  }
  .compare-callout h2 .accent {
    background: var(--brand);
    color: var(--hilite);
    padding: 0 10px;
    border-radius: 4px;
  }
  .compare-callout .lead {
    font-size: 15px;
    color: var(--brand-deep);
    line-height: 2;
    margin-bottom: 8px;
    font-weight: 500;
  }
  .compare-callout .strong {
    font-size: 15.5px;
    color: var(--brand);
    font-weight: 800;
    line-height: 1.85;
    margin-bottom: 28px;
  }
  .compare-callout .strong .marker {
    background: rgba(255,255,255,0.55);
    padding: 0 4px;
  }
  /* 価格比較バー */
  .compare-bars {
    background: white;
    border-radius: 14px;
    padding: 22px 26px 26px;
    margin: 8px auto 28px;
    max-width: 640px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 2px solid var(--brand);
    text-align: left;
  }
  .compare-bars .cb-title {
    font-size: 11.5px;
    font-weight: 800;
    color: var(--text-faint);
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    text-align: center;
  }
  .cb-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }
  .cb-row:last-of-type { margin-bottom: 8px; }
  .cb-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1.3;
  }
  .cb-track {
    position: relative;
    height: 36px;
    background: var(--paper-soft);
    border-radius: 6px;
    overflow: hidden;
  }
  .cb-bar {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 14px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.01em;
  }
  .cb-direct {
    background: linear-gradient(90deg, #d63c1a 0%, #c44521 100%);
  }
  .cb-via {
    background: linear-gradient(90deg, var(--money) 0%, var(--money-deep) 100%);
  }
  .cb-bar .yen { font-family: 'Noto Sans JP', sans-serif; font-size: 12px; font-weight: 700; margin-left: 1px; }
  .cb-arrow {
    text-align: center;
    margin: 12px 0 6px;
    font-size: 18px;
    color: var(--text-faint);
    line-height: 1;
  }
  .cb-savings {
    text-align: center;
    background: var(--brand);
    color: white;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    display: inline-block;
    margin-top: 4px;
  }
  .cb-savings .num {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    color: var(--hilite);
    margin: 0 2px;
    font-weight: 900;
  }
  .cb-savings-row { text-align: center; }
  .cb-note { text-align: center; font-size: 11px; color: var(--text-faint); margin-top: 14px; }
  @media (max-width: 600px) {
    .compare-bars { padding: 18px 16px 22px; }
    .cb-row { grid-template-columns: 80px 1fr; gap: 10px; }
    .cb-label { font-size: 11px; }
    .cb-track { height: 32px; }
    .cb-bar { font-size: 14px; padding-right: 10px; }
    .cb-savings { font-size: 13px; padding: 6px 14px; }
    .cb-savings .num { font-size: 18px; }
  }
  .compare-callout .actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .compare-callout .cc-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    transition: all 0.15s;
    border: 3px solid white;
  }
  .compare-callout .cc-btn.primary {
    background: var(--brand);
    color: var(--hilite);
    box-shadow: 0 5px 0 var(--brand-deep), 0 8px 18px rgba(0,0,0,0.25);
  }
  .compare-callout .cc-btn.primary:hover {
    transform: translateY(2px);
    box-shadow: 0 3px 0 var(--brand-deep), 0 5px 12px rgba(0,0,0,0.3);
  }
  .compare-callout .cc-btn.secondary {
    background: var(--line-green);
    color: white;
    box-shadow: 0 5px 0 #048a3d, 0 8px 18px rgba(6,199,85,0.25);
  }
  .compare-callout .cc-btn.secondary:hover {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #048a3d, 0 5px 12px rgba(6,199,85,0.3);
  }
  .compare-callout .cc-btn .ico {
    width: 32px; height: 32px;
    background: var(--hilite);
    color: var(--brand);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding: 7px;
    flex-shrink: 0;
  }
  .compare-callout .cc-btn.secondary .ico { background: white; color: var(--line-green); }
  .compare-callout .cc-btn .label { line-height: 1.2; text-align: left; }
  .compare-callout .cc-btn .lbl { font-size: 13px; display: block; letter-spacing: 0.04em; }
  .compare-callout .cc-btn .num { font-family: 'Inter', sans-serif; font-size: 20px; display: block; font-weight: 900; letter-spacing: 0.02em; margin-top: 2px; }
  @media (max-width: 600px) {
    .compare-callout { padding: 40px 0; }
    .compare-callout h2 { font-size: 22px; }
    .compare-callout .lead, .compare-callout .strong { font-size: 13.5px; }
    .compare-callout .cc-btn { padding: 14px 22px; }
    .compare-callout .cc-btn .num { font-size: 17px; }
  }

  /* ============== GLOSSARY (用語集) ============== */
  .glossary { background: var(--paper-soft); }
  .gl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
  }
  @media (max-width: 720px) { .gl-grid { grid-template-columns: 1fr; } }
  .gl-item {
    background: white;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: 16px 20px;
    transition: border-color 0.15s;
  }
  .gl-item:hover { border-color: var(--accent); }
  .gl-term {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .gl-term .gl-mark {
    background: var(--accent);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    line-height: 1;
    flex-shrink: 0;
  }
  .gl-def {
    font-size: 12.5px;
    color: var(--text-soft);
    line-height: 1.85;
    margin: 0;
  }
  .gl-bottom {
    text-align: center;
    margin-top: 28px;
    font-size: 13px;
    color: var(--text-faint);
  }
  .gl-bottom a { color: var(--accent); font-weight: 700; text-decoration: underline; }

  /* ============== FAQ ============== */
  .faq { background: white; }
  .faq-list {
    max-width: 820px;
    margin: 0 auto;
  }
  .faq-item {
    background: var(--paper-soft);
    border: 2px solid var(--line);
    border-radius: 10px;
    margin-bottom: 14px;
    padding: 18px 22px;
  }
  .faq-q {
    display: flex; align-items: flex-start; gap: 14px;
    font-weight: 800;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .faq-q .qm {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; flex-shrink: 0;
    background: var(--accent); color: white;
    border-radius: 50%; font-weight: 900;
  }
  .faq-a {
    display: flex; align-items: flex-start; gap: 14px;
    color: var(--text-soft);
    font-size: 13.5px;
    line-height: 1.95;
    padding-left: 0;
  }
  .faq-a .am {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; flex-shrink: 0;
    background: var(--brand); color: white;
    border-radius: 50%; font-weight: 900;
  }

  /* ============== LIMITED / 成約キャンペーン ============== */
  .limited {
    background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 50%, var(--accent-bright) 100%);
    color: white;
    padding: 56px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .limited::before {
    content: 'CAMPAIGN';
    position: absolute;
    right: -40px; top: 50%; transform: translateY(-50%) rotate(-15deg);
    font-size: 140px; font-weight: 900;
    color: rgba(255,255,255,0.06);
    pointer-events: none;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
  }
  .limited-period {
    display: inline-block;
    background: rgba(0,0,0,0.2);
    color: var(--hilite);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
  }
  .campaign-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 760px;
    margin: 24px auto 28px;
  }
  @media (max-width: 720px) { .campaign-perks { grid-template-columns: 1fr; gap: 10px; } }
  .campaign-perks .perk {
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 16px 14px;
    backdrop-filter: blur(4px);
    text-align: left;
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  .campaign-perks .perk .pico {
    background: var(--hilite);
    color: var(--accent);
    width: 32px; height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 13px;
  }
  .campaign-perks .perk .pbody {
    line-height: 1.4;
  }
  .campaign-perks .perk .ptitle {
    display: block;
    font-weight: 800;
    font-size: 13px;
    color: white;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
  }
  .campaign-perks .perk .psub {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
  }
  .limited .wrap-narrow { position: relative; z-index: 1; }
  .limited-label {
    display: inline-block;
    background: var(--hilite); color: var(--brand);
    padding: 8px 20px; border-radius: 999px;
    font-weight: 900; font-size: 13px;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .limited h2 {
    font-size: clamp(22px, 3.2vw, 32px);
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .limited h2 .y { color: var(--hilite); }
  .limited-count {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    margin: 18px 0 8px;
  }
  .limited-count .n {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 92px;
    color: var(--hilite);
    line-height: 0.9;
    text-shadow: 0 4px 0 var(--accent-deep);
  }
  .limited-count .u { font-size: 18px; font-weight: 700; }
  .limited p { font-size: 14px; margin-bottom: 24px; opacity: 0.95; }
  .limited-cta {
    display: inline-flex; align-items: center; gap: 14px;
    background: white;
    color: var(--accent);
    padding: 20px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    font-size: 17px;
    box-shadow: 0 6px 0 rgba(0,0,0,0.3), 0 12px 24px rgba(0,0,0,0.3);
    transition: all 0.15s;
    border: 3px solid var(--hilite);
  }
  .limited-cta:hover { transform: translateY(2px); box-shadow: 0 4px 0 rgba(0,0,0,0.3); }
  .limited-cta .ico {
    width: 36px; height: 36px;
    background: var(--accent); color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding: 8px;
  }
  .limited-cta .phone { font-family: 'Inter', sans-serif; font-size: 22px; }

  /* ============== CONTACT FORM ============== */
  .contact-form { background: var(--paper-soft); padding: 64px 0; }
  .contact-form .wrap-narrow { max-width: 760px; }
  .cf-head { text-align: center; margin-bottom: 32px; }
  .cf-pre {
    display: inline-block;
    background: white;
    color: var(--accent);
    border: 1.5px solid var(--accent);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
  }
  .cf-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    color: var(--brand);
    line-height: 1.45;
    margin-bottom: 14px;
  }
  .cf-title .ac { color: var(--accent); }
  .cf-lead {
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.95;
    max-width: 640px;
    margin: 0 auto;
  }
  .cf-lead strong { color: var(--brand); font-weight: 800; }

  .cf-form {
    background: white;
    border-radius: 14px;
    padding: 32px 36px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    border: 1.5px solid var(--line);
  }
  .cf-row { margin-bottom: 18px; }
  .cf-row.cf-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .cf-label {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }
  .cf-label .req,
  .cf-label .opt {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.04em;
    margin-left: 6px;
    vertical-align: 1px;
    line-height: 1;
  }
  .cf-label .req { background: var(--accent); color: white; }
  .cf-label .opt { background: var(--paper-alt); color: var(--text-faint); }

  .cf-form input[type="text"],
  .cf-form input[type="email"],
  .cf-form input[type="tel"],
  .cf-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    font-size: 14.5px;
    font-family: inherit;
    background: white;
    color: var(--text);
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
  }
  .cf-form input:focus,
  .cf-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196,69,33,0.12);
  }
  .cf-form textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
  .cf-hint { font-size: 11.5px; color: var(--text-faint); margin-top: 6px; line-height: 1.6; }

  .cf-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .cf-pills label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--paper-soft);
    border: 1.5px solid var(--line);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
    font-weight: 600;
    color: var(--text-soft);
  }
  .cf-pills label:hover { border-color: var(--accent); color: var(--brand); }
  .cf-pills input { margin: 0; cursor: pointer; accent-color: var(--accent); }

  .cf-privacy {
    background: var(--paper-soft);
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-soft);
  }
  .cf-privacy label { display: flex; align-items: center; gap: 8px; cursor: pointer; line-height: 1.5; }
  .cf-privacy input { accent-color: var(--accent); flex-shrink: 0; }
  .cf-privacy a { color: var(--accent); font-weight: 700; text-decoration: underline; }

  .cf-submit { margin: 24px 0 14px; }
  .cf-note {
    font-size: 11.5px;
    color: var(--text-faint);
    line-height: 1.7;
    text-align: center;
  }
  .cf-status {
    margin-top: 20px;
    border-radius: 10px;
    padding: 18px 20px;
    font-size: 14.5px;
    line-height: 1.85;
  }
  .cf-status .cf-status-ok {
    background: #f0f9f3;
    border: 1px solid #b9dfc6;
    color: var(--brand);
    padding: 16px 18px;
    border-radius: 8px;
  }
  .cf-status .cf-status-ng {
    background: #fff4f1;
    border: 1px solid #f4c5b9;
    color: #a8341f;
    padding: 16px 18px;
    border-radius: 8px;
  }
  .cf-status a { color: inherit; text-decoration: underline; font-weight: 600; }
  @media (max-width: 600px) {
    .cf-form { padding: 24px 20px; }
    .cf-row.cf-2col { grid-template-columns: 1fr; }
    .contact-form { padding: 48px 0; }
  }

  /* ============== ABOUT ============== */
  .about { background: var(--paper-soft); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
  }
  @media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 24px; } }
  .about-photo {
    aspect-ratio: 4/5;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--paper-alt), var(--line));
    display: flex; align-items: center; justify-content: center;
    color: var(--text-faint);
    border: 4px solid white;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    font-size: 13px;
    text-align: center;
    padding: 16px;
    overflow: hidden;
    position: relative;
  }
  .about-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-text h3 { font-size: 26px; font-weight: 900; color: var(--brand); line-height: 1.5; margin-bottom: 18px; }
  .about-text h3 .accent { color: var(--accent); }
  .about-text p { font-size: 14.5px; line-height: 2.05; color: var(--text-soft); margin-bottom: 14px; }
  .about-text .est {
    display: inline-block;
    background: var(--hilite); color: var(--brand);
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 800; font-size: 12px;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
  }
  .about-text .signature {
    display: inline-block;
    margin-top: 12px;
    padding-left: 20px;
    border-left: 4px solid var(--accent);
    font-weight: 800;
    color: var(--brand);
  }
  .about-text .signature .role { font-size: 11px; color: var(--text-faint); font-weight: 600; display: block; }
  .about-text .signature .name { font-size: 18px; }

  /* ============== FINAL CTA ============== */
  .final {
    background: var(--brand);
    color: white;
    padding: 72px 0;
    text-align: center;
  }
  .final h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 12px;
    color: white;
  }
  .final h2 .y { color: var(--hilite); }
  .final-sub { font-size: 14px; opacity: 0.9; margin-bottom: 36px; }
  .final-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 960px;
    margin: 0 auto;
  }
  @media (max-width: 768px) { .final-grid { grid-template-columns: 1fr; } }
  .final-card {
    background: white;
    color: var(--text);
    padding: 28px 22px;
    border-radius: 14px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-top: 5px solid var(--accent);
    transition: all 0.2s;
  }
  .final-card:nth-child(2) { border-top-color: var(--line-green); }
  .final-card:nth-child(3) { border-top-color: var(--brand-light); }
  .final-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
  .final-card .ico {
    width: 60px; height: 60px;
    margin: 0 auto 14px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
  }
  .final-card:nth-child(2) .ico { background: var(--line-green); }
  .final-card:nth-child(3) .ico { background: var(--brand-light); }
  .final-card h4 { font-size: 18px; font-weight: 900; color: var(--brand); margin-bottom: 6px; }
  .final-card .sub { font-size: 12px; color: var(--text-faint); margin-bottom: 12px; line-height: 1.6; }
  .final-card .v {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: var(--accent);
  }
  .final-card:nth-child(2) .v, .final-card:nth-child(3) .v {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: var(--accent);
  }

  /* ============== FOOTER ============== */
  footer {
    background: var(--brand-deep);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 24px;
    font-size: 13px;
    position: relative;
  }
  footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--hilite) 50%, var(--accent) 100%);
  }
  footer a { color: inherit; text-decoration: none; transition: color 0.15s; }
  footer a:hover { color: var(--hilite); }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  @media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
  @media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

  /* Brand block */
  .footer-brand .footer-logo { width: 56px; height: 56px; display: block; margin-bottom: 16px; }
  .footer-brand .footer-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .footer-brand .footer-brand-name {
    font-size: 22px; font-weight: 900; color: white; margin-bottom: 10px;
    letter-spacing: 0.02em; line-height: 1.2;
  }
  .footer-brand .footer-brand-tag {
    font-size: 12.5px; line-height: 1.85; color: rgba(255,255,255,0.6);
    margin-bottom: 0;
  }

  /* Heading common */
  .footer-col h5 {
    font-size: 11.5px; font-weight: 800; color: var(--hilite);
    margin-bottom: 16px; letter-spacing: 0.16em; line-height: 1;
    text-transform: uppercase;
  }
  .footer-col h5.secondary { margin-top: 22px; }
  .footer-col ul { list-style: none; }
  .footer-col li { line-height: 1.4; margin-bottom: 10px; font-size: 13px; }
  .footer-col li:last-child { margin-bottom: 0; }
  .footer-col p { line-height: 1.85; margin-bottom: 6px; font-size: 13px; }

  /* Contact list with icons */
  .footer-contact { list-style: none; }
  .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    line-height: 1.5;
    font-size: 13px;
  }
  .footer-contact li:last-child { margin-bottom: 0; }
  .footer-contact .ico {
    flex-shrink: 0;
    width: 18px; height: 18px;
    color: var(--hilite);
    margin-top: 2px;
  }
  .footer-contact .ico svg {
    width: 100%; height: 100%;
    fill: none; stroke: currentColor;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  }
  .footer-contact .content { flex: 1; }
  .footer-contact a { color: rgba(255,255,255,0.85); }
  .footer-contact .meta { display: block; font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; letter-spacing: 0.04em; }
  .footer-contact .num { font-family: 'Inter', sans-serif; font-weight: 700; color: white; font-size: 16px; letter-spacing: 0.02em; }

  /* Company block */
  .footer-company {
    line-height: 1.7;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
  }
  .footer-company .corp { display: block; color: white; font-weight: 700; font-size: 14px; margin-bottom: 2px; }

  /* Legal row */
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 24px;
    padding: 18px 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
  }
  .footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.15s;
  }
  .footer-legal a:hover { color: var(--hilite); }

  /* Bottom copyright */
  .footer-bottom {
    text-align: center;
    font-size: 11px;
    opacity: 0.45;
    padding-top: 18px;
    letter-spacing: 0.08em;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
  }

  /* ============== MOBILE OPTIMIZATIONS (iOS/Android 両対応) ============== */

  /* iOS Safari の入力時自動拡大ズーム防止 — input/textarea/select は font-size >= 16px 必須 */
  @media (max-width: 768px) {
    .cf-form input[type="text"],
    .cf-form input[type="email"],
    .cf-form input[type="tel"],
    .cf-form textarea,
    .cf-form select {
      font-size: 16px;
    }
  }

  /* タブレット〜スマホ汎用 */
  @media (max-width: 768px) {
    /* セクション余白を圧縮 */
    .section { padding: 44px 0; }
    .sec-title { margin-bottom: 28px; }
    .sec-title .lead { font-size: 13.5px; line-height: 1.85; }

    /* util-bar 圧縮 — 電話番号は header に内包しているので非表示・受付情報は信用シグナルとして残す */
    .util-bar { padding: 5px 0; font-size: 11px; }
    .util-bar .wrap { flex-wrap: nowrap; gap: 8px; justify-content: center; }
    .util-bar .wrap > div:last-child { display: none; } /* 電話番号(右側ブロック)非表示 */
    .util-bar .live span:nth-of-type(2) { font-size: 9px; opacity: 0.7; } /* セパレーター | 縮小 */

    /* warning-strip を「帯」化 — 単一行・コンパクト・矢印/アイコン非表示 */
    .warning-strip { font-size: 12px; }
    .warning-strip a { padding: 7px 14px; }
    .warning-strip .wrap { gap: 6px; flex-wrap: nowrap; }
    .warning-strip .ico { display: none; }
    .warning-strip .arrow { display: none; }
    .warning-strip .msg-full { display: none; }
    .warning-strip .msg-short { display: inline; }

    /* sticky header を低重心に */
    .header { padding: 8px 0; }
    .header .wrap { gap: 10px; }
    .logo-icon { height: 38px; }
    .logo { gap: 8px; }
    .logo .tag { display: none; } /* モバイルではタグ非表示・ヘッダー圧縮 */
    .logo .name { font-size: 17px; }
    /* CTA ボタン: モバイルでは短縮テキストに切替 */
    .header-cta-btn .t-full { display: none; }
    .header-cta-btn .t-short { display: inline; }

    /* Hero 余白圧縮 */
    .hero { padding: 18px 0 18px; }
  }
  /* 中間サイズ以下はさらに圧縮 */
  @media (max-width: 380px) {
    .logo-icon { height: 32px; }
    .logo .name { font-size: 15px; }
    .header .btn--sm { padding: 8px 10px; font-size: 11px; min-height: 38px; }

    /* タッチターゲット最低44px担保 */
    .btn { min-height: 44px; padding: 12px 18px; }
    .btn--lg { min-height: 52px; padding: 14px 22px; }
    .btn--sm { min-height: 40px; padding: 10px 14px; }

    /* Compare-callout のボタン群を縦スタック・各 100% 幅 */
    .compare-callout .actions { flex-direction: column; gap: 10px; align-items: stretch; }
    .compare-callout .actions .btn { width: 100%; justify-content: center; }
    .compare-callout .cb-row { grid-template-columns: 80px 1fr; gap: 10px; }
    .compare-callout .cb-bar { font-size: 14px; padding-right: 10px; }
    .compare-callout h2 { font-size: 22px; }

    /* FAQ パディング縮小 */
    .faq-item { padding: 14px 16px; }
    .faq-q { font-size: 14px; gap: 10px; }
    .faq-a { font-size: 13px; gap: 10px; }
    .faq-q .qm, .faq-a .am { width: 24px; height: 24px; font-size: 13px; }

  }

  /* スマホ専用 (480px以下) */
  @media (max-width: 480px) {
    .section { padding: 36px 0; }
    .wrap, .wrap-narrow { padding: 0 16px; }
    .logo-icon { height: 36px; }
    .logo .name { font-size: 16px; }

    /* h2 の clamp を効かせるため明示サイズ */
    .sec-title h2 { font-size: 22px; line-height: 1.45; }

    /* About */
    .about-text h3 { font-size: 20px; line-height: 1.5; }
    .about-text p { font-size: 13.5px; line-height: 1.95; }

    /* Trust bar — プレラベル・ラベル微調整 */
    .trust-pre { font-size: 11px; letter-spacing: 0.06em; gap: 4px; }
    .trust-pre svg { width: 13px; height: 13px; }

    /* Pricing card photo を縦長気味に(4:3 → 5:3で被写体を引き締め) */
    .price-card-photo { aspect-ratio: 5 / 3; }
    .price-card-header h4 { font-size: 14px; }
    .price-card .price-value { font-size: 28px; }

    /* Hero スライドのテキストオーバーレイ無いので最低限の調整のみ */
    .hero { padding: 14px 0 14px; }

    /* Activity feed スクロール可視化 */
    .feed-list { max-height: 200px; }

    /* Reasons カードの hover 効果削除(タッチで永続反転を防ぐ) */
    .reason:hover { transform: none; box-shadow: none; }

    /* Voices padding 圧縮 */
    .voice { padding: 18px 18px 16px; }
    .voice-text { font-size: 13px; }

    /* Limited */
    .limited { padding: 36px 0; }

    /* Form padding 圧縮 */
    .contact-form { padding: 36px 0; }
    .cf-head { margin-bottom: 24px; }
    .cf-form { padding: 22px 16px; }

    /* Final - 3 カードを縦積み時の余白 */
    .final { padding: 48px 0; }
    .final-card { padding: 22px 18px; }

    /* Footer - ロゴアイコンのバランス */
    .footer-brand .footer-logo { width: 48px; height: 48px; }
    .footer-brand .footer-brand-name { font-size: 18px; }
    footer { padding: 48px 0 16px; }
  }

  /* タップ時のフィードバック (hover 代替) */
  @media (hover: none) {
    .btn:active { transform: scale(0.98); }
    .price-card:active { transform: scale(0.99); }
    .reason:hover { transform: none; box-shadow: none; border-color: var(--line); }
  }

  /* ============== SERVICE PAGE (個別サービス詳細ページ用 共通要素) ============== */

  /* パンくず */
  .breadcrumb {
    background: var(--paper-soft);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    font-size: 12.5px;
    color: var(--text-faint);
  }
  .breadcrumb a { color: var(--text-soft); text-decoration: none; }
  .breadcrumb a:hover { color: var(--accent); }
  .breadcrumb .bc-sep { margin: 0 8px; color: var(--line-strong); }
  .breadcrumb .bc-current { color: var(--brand); font-weight: 700; }

  /* Page Hero */
  .page-hero {
    background: linear-gradient(135deg, #fef9ed 0%, #fce8c8 60%, #f8d99d 100%);
    padding: 48px 0 56px;
    position: relative;
    overflow: hidden;
  }
  .ph-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 40px;
    align-items: center;
  }
  @media (max-width: 900px) { .ph-grid { grid-template-columns: 1fr; gap: 28px; } }
  .ph-photo {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(28,58,43,0.22);
    border: 5px solid white;
    aspect-ratio: 4/5;
  }
  .ph-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: saturate(0.92) contrast(1.04) brightness(1.01) sepia(0.06);
  }
  @media (max-width: 900px) { .ph-photo { aspect-ratio: 16/9; max-height: 360px; } }
  .ph-eye {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    margin-bottom: 18px;
  }
  .ph-cat {
    background: var(--brand);
    color: white;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
  }
  .ph-area {
    font-size: 12px;
    color: var(--text-soft);
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .ph-title {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 900;
    color: var(--brand);
    line-height: 1.35;
    letter-spacing: -0.005em;
    margin-bottom: 20px;
  }
  .ph-title .ac { color: var(--accent); }
  .ph-title .hl { background: linear-gradient(transparent 55%, rgba(255,212,64,0.55) 55%, rgba(255,212,64,0.55) 92%, transparent 92%); padding: 0 6px; color: var(--brand); }
  .ph-lead {
    font-size: 14.5px;
    line-height: 1.95;
    color: var(--text-soft);
    margin-bottom: 28px;
    max-width: 760px;
  }
  .ph-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 12px;
    margin-bottom: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    max-width: 720px;
  }
  @media (max-width: 600px) { .ph-stats { grid-template-columns: 1fr; gap: 8px; padding: 14px 12px; } }
  .ph-stat { text-align: center; border-right: 1px solid var(--line); padding: 4px 4px; }
  .ph-stat:last-child { border-right: none; }
  @media (max-width: 600px) { .ph-stat { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 10px; } .ph-stat:last-child { border-bottom: none; padding-bottom: 4px; } }
  .ph-stat-label { font-size: 11px; color: var(--text-faint); font-weight: 600; margin-bottom: 4px; }
  .ph-stat-value { font-family: 'Inter', sans-serif; font-weight: 900; color: var(--accent); font-size: 22px; line-height: 1.1; }
  .ph-stat-value .num { font-size: 26px; }
  .ph-stat-value .ph-unit { font-family: 'Noto Sans JP', sans-serif; font-size: 12px; font-weight: 700; color: var(--brand); margin-left: 2px; }
  .ph-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  @media (max-width: 600px) { .ph-ctas { flex-direction: column; } .ph-ctas .btn { width: 100%; justify-content: center; } }

  /* Service Detail (sd-) */
  .sd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 920px;
    margin: 0 auto;
  }
  @media (max-width: 768px) { .sd-grid { grid-template-columns: 1fr; } }
  .sd-card {
    background: var(--paper-soft);
    border: 2px solid var(--line);
    border-radius: 12px;
    padding: 24px 26px;
  }
  .sd-card.sd-include { border-left: 5px solid var(--accent); }
  .sd-card.sd-option { border-left: 5px solid var(--brand-light); }
  .sd-card h3 {
    font-size: 17px;
    font-weight: 900;
    color: var(--brand);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
  }
  .sd-card ul { list-style: none; padding: 0; }
  .sd-card li {
    position: relative;
    padding-left: 22px;
    font-size: 13.5px;
    line-height: 1.85;
    color: var(--text-soft);
    margin-bottom: 6px;
  }
  .sd-card.sd-include li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
  .sd-card.sd-option li::before { content: '+'; position: absolute; left: 0; color: var(--brand-light); font-weight: 900; }

  /* Pricing Detail (pd-) */
  .pd-table-wrap { max-width: 720px; margin: 0 auto 36px; }
  .pd-h4 {
    font-size: 15px;
    font-weight: 900;
    color: var(--brand);
    margin: 28px auto 12px;
    padding-left: 12px;
    border-left: 4px solid var(--accent);
    line-height: 1.4;
    max-width: 920px;
  }
  .pd-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  }
  .pd-table th, .pd-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 13.5px;
  }
  .pd-table th {
    background: var(--brand);
    color: white;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
  .pd-table td:last-child { text-align: right; font-family: 'Inter', sans-serif; font-weight: 700; color: var(--brand); }
  .pd-table tr.pd-highlight td { background: rgba(255,212,64,0.15); }
  .pd-table tr.pd-highlight td:last-child { color: var(--accent); font-weight: 900; }
  .pd-note { font-size: 11.5px; color: var(--text-faint); margin-top: 10px; line-height: 1.7; }

  .pd-add {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
  }
  @media (max-width: 700px) { .pd-add { grid-template-columns: 1fr; } }
  .pd-add-item {
    background: white;
    border: 1.5px solid var(--line);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    padding: 14px 18px;
  }
  .pd-add-name { font-size: 14px; font-weight: 800; color: var(--brand); margin-bottom: 6px; }
  .pd-add-cost { font-size: 13.5px; color: var(--text-soft); margin-bottom: 4px; }
  .pd-add-cost strong { font-family: 'Inter', sans-serif; color: var(--accent); font-weight: 900; }
  .pd-add-note { font-size: 11.5px; color: var(--text-faint); line-height: 1.6; }

  /* サービスページ用 5ステップ flow grid (inline style 排除のため class 化) */
  .flow-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  @media (max-width: 980px) { .flow-grid-5 { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 600px) { .flow-grid-5 { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 380px) { .flow-grid-5 { grid-template-columns: 1fr; } }

  /* Related Services */
  .rel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  @media (max-width: 900px) { .rel-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .rel-grid { grid-template-columns: 1fr; } }
  .rel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--line);
    transition: all 0.15s;
    display: flex;
    flex-direction: column;
  }
  .rel-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.1); border-color: var(--accent); }
  .rel-card-photo {
    aspect-ratio: 2/1;
    background-size: cover;
    background-position: center;
    background-color: var(--paper-alt);
    filter: saturate(0.92) contrast(1.04) brightness(1.01) sepia(0.06);
  }
  .rel-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
  .rel-card-body h4 { font-size: 16px; font-weight: 900; color: var(--brand); margin-bottom: 8px; }
  .rel-card-body p { font-size: 12.5px; color: var(--text-soft); line-height: 1.75; margin-bottom: 12px; flex: 1; }
  .rel-cta { font-size: 13px; font-weight: 800; color: var(--accent); align-self: flex-start; }

  /* ============== LEGAL / ABOUT PAGE (シンプル文章レイアウト) ============== */
  .legal-page,
  .about-page {
    background: var(--paper-soft);
    padding: 48px 0 64px;
    min-height: 60vh;
  }
  .legal-page .wrap,
  .about-page .wrap { max-width: 820px; }
  .legal-head, .about-head {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--brand);
  }
  .legal-head h1, .about-head h1 {
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 900;
    color: var(--brand);
    margin-bottom: 10px;
    line-height: 1.45;
  }
  .legal-head .lh-sub, .about-head .ah-sub {
    font-size: 13px;
    color: var(--text-faint);
    font-weight: 600;
    letter-spacing: 0.06em;
  }
  .legal-body, .about-body {
    background: white;
    border-radius: 12px;
    padding: 36px 40px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--line);
  }
  @media (max-width: 600px) { .legal-body, .about-body { padding: 24px 20px; } }
  .legal-body h2, .about-body h2 {
    font-size: 18px;
    font-weight: 900;
    color: var(--brand);
    margin: 32px 0 14px;
    padding: 10px 14px;
    background: var(--paper-soft);
    border-left: 5px solid var(--accent);
    border-radius: 4px;
    line-height: 1.5;
  }
  .legal-body h2:first-child, .about-body h2:first-child { margin-top: 0; }
  .legal-body h3, .about-body h3 {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--brand);
    margin: 22px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px dashed var(--line-strong);
  }
  .legal-body p, .about-body p {
    font-size: 14px;
    line-height: 1.95;
    color: var(--text-soft);
    margin-bottom: 14px;
  }
  .legal-body ul, .about-body ul,
  .legal-body ol, .about-body ol { padding-left: 24px; margin-bottom: 14px; }
  .legal-body li, .about-body li { font-size: 14px; line-height: 1.85; color: var(--text-soft); margin-bottom: 6px; }
  .legal-body strong, .about-body strong { color: var(--brand); font-weight: 800; }
  .legal-body a, .about-body a { color: var(--accent); text-decoration: underline; }
  .legal-body a:hover, .about-body a:hover { color: var(--accent-deep); }

  .legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 13.5px;
  }
  .legal-table th, .legal-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    line-height: 1.7;
  }
  .legal-table th {
    width: 32%;
    background: var(--paper-soft);
    color: var(--brand);
    font-weight: 800;
    font-size: 13px;
  }
  .legal-table td { color: var(--text-soft); }
  @media (max-width: 600px) {
    .legal-table th, .legal-table td { display: block; width: 100%; padding: 10px 14px; border-bottom: none; }
    .legal-table th { background: var(--brand); color: white; padding: 8px 14px; }
    .legal-table td { padding: 14px 14px 20px; border-bottom: 1px solid var(--line); }
  }

  .legal-meta {
    margin-top: 36px;
    padding: 18px 22px;
    background: var(--paper-soft);
    border-radius: 8px;
    font-size: 12.5px;
    color: var(--text-faint);
    line-height: 1.8;
  }
  .legal-meta strong { color: var(--brand); }

  .about-greeting {
    background: linear-gradient(135deg, var(--paper-alt), var(--paper-soft));
    border-radius: 10px;
    padding: 24px 28px;
    margin: 24px 0;
    border-left: 5px solid var(--accent);
  }
  .about-greeting p { font-style: italic; }
  .about-greeting .signature {
    display: block;
    text-align: right;
    font-weight: 800;
    color: var(--brand);
    margin-top: 14px;
    font-size: 15px;
  }
  .about-greeting .signature small { display: block; font-size: 11px; color: var(--text-faint); margin-bottom: 4px; font-weight: 600; }

  .timeline { margin: 24px 0; padding-left: 0; list-style: none; border-left: 3px solid var(--brand-light); }
  .timeline li {
    position: relative;
    padding: 4px 0 14px 22px;
    margin-bottom: 0 !important;
    list-style: none;
  }
  .timeline li::before {
    content: '';
    position: absolute;
    left: -8px; top: 12px;
    width: 12px; height: 12px;
    background: var(--accent);
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--brand-light);
  }
  .timeline .tl-year {
    display: inline-block;
    background: var(--brand);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 11.5px;
    padding: 2px 10px;
    border-radius: 3px;
    margin-right: 10px;
    letter-spacing: 0.04em;
  }

  /* ============== MOBILE FIXED BAR ============== */
  .mobile-fixed {
    display: none;
    position: fixed; left: 0; right: 0; bottom: 0;
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 18px rgba(0,0,0,0.15);
    z-index: 100;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  }
  .mobile-fixed .row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .mobile-fixed a {
    text-decoration: none;
    text-align: center;
    padding: 12px 4px;
    color: white;
    font-weight: 900;
    font-size: 11.5px;
    border-radius: 8px;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    letter-spacing: 0.04em;
  }
  .mobile-fixed .ico {
    width: 22px; height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1px;
  }
  .mob-call { background: var(--accent); }
  .mob-line { background: var(--line-green); }
  .mob-store { background: var(--brand); }
  @media (max-width: 900px) { .mobile-fixed { display: block; } }