/* ─────────────────────────────────────────────
   名古屋シロアリ駆除センター — 信頼の青デザイン
   ───────────────────────────────────────────── */

:root {
  /* 青系メインカラー — 深い藍と清潔な水色のバランス */
  --c-navy: #0a3a6e;          /* 深い信頼の藍 */
  --c-navy-deep: #062750;
  --c-blue: #1a6fc4;          /* メインアクション */
  --c-blue-bright: #2a8ee0;   /* アクセント */
  --c-sky: #e6f1fb;           /* 淡い背景 */
  --c-sky-2: #cfe3f5;
  --c-cream: #fbf8f3;         /* 温かい白 */
  --c-paper: #ffffff;
  --c-ink: #1a2332;           /* 文字色 */
  --c-ink-2: #4a5568;
  --c-ink-3: #7a8595;
  --c-line: #e3e8ef;
  --c-accent: #f4a02e;        /* 暖色アクセント（控えめに） */
  --c-accent-soft: #fef3e2;
  --c-red: #d94747;           /* 緊急・電話 */
  --c-success: #2f9e6c;

  /* タイポ */
  --f-sans: "Zen Kaku Gothic New", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  --f-serif: "Noto Serif JP", "Yu Mincho", serif;
  --f-rounded: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;

  /* レイアウト */
  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(10, 58, 110, 0.06), 0 2px 6px rgba(10, 58, 110, 0.04);
  --shadow: 0 4px 16px rgba(10, 58, 110, 0.08), 0 12px 32px rgba(10, 58, 110, 0.06);
  --shadow-lg: 0 10px 30px rgba(10, 58, 110, 0.12), 0 30px 60px rgba(10, 58, 110, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: var(--f-sans);
  color: var(--c-ink);
  background: var(--c-paper);
  font-feature-settings: "palt";
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* テーマバリアント */
body[data-theme="navy"]    { --c-primary: var(--c-navy);    --c-primary-2: var(--c-blue); }
body[data-theme="bright"]  { --c-primary: var(--c-blue);    --c-primary-2: var(--c-blue-bright); }
body[data-theme="fresh"]   { --c-primary: #0e8fb0;          --c-primary-2: #4cb9d4; --c-sky: #e3f4f8; --c-sky-2: #c7e8ef; }

body { --c-primary: var(--c-navy); --c-primary-2: var(--c-blue); }

/* ─────────── ヘッダー ─────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.header-top {
  background: var(--c-navy);
  color: white;
  font-size: 12.5px;
}
.header-top .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 32px;
}
.header-top-left { display: flex; gap: 18px; align-items: center; }
.header-top-left .badge-tag {
  background: rgba(255,255,255,0.16);
  padding: 2px 10px; border-radius: 100px;
  font-size: 11px; letter-spacing: 0.04em;
}
.header-main {
  display: flex; justify-content: space-between; align-items: center;
  height: 84px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 56px; height: 56px;
  background: var(--c-primary);
  border-radius: 14px;
  display: grid; place-items: center;
  color: white;
  position: relative;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.brand-text { line-height: 1.2; }
.brand-text .small { font-size: 11px; color: var(--c-ink-3); letter-spacing: 0.08em; }
.brand-text .big { font-size: 18px; font-weight: 800; color: var(--c-ink); letter-spacing: 0.02em; }

.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--c-ink-2);
  border-radius: 8px;
  transition: 0.15s;
}
.nav a:hover { background: var(--c-sky); color: var(--c-primary); }

.header-cta { display: flex; gap: 10px; align-items: center; }
.tel-block {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 16px 6px 12px;
  border-radius: 12px;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
}
.tel-block .icon-circle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--c-red); color: white;
  display: grid; place-items: center;
}
.tel-block .num { line-height: 1.1; }
.tel-block .num b { font-family: var(--f-rounded); font-size: 22px; font-weight: 800; color: var(--c-ink); letter-spacing: 0.01em; white-space: nowrap; }
.tel-block .num span { font-size: 10.5px; color: var(--c-ink-3); display: block; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 14px; font-weight: 700;
  border: none;
  transition: 0.18s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(10, 58, 110, 0.25);
}
.btn-primary:hover { background: var(--c-navy-deep); transform: translateY(-1px); }
.btn-accent {
  background: var(--c-accent);
  color: var(--c-ink);
  box-shadow: 0 4px 14px rgba(244, 160, 46, 0.35);
}
.btn-accent:hover { background: #e89220; transform: translateY(-1px); }
.btn-ghost {
  background: white;
  color: var(--c-primary);
  border: 1.5px solid var(--c-line);
}
.btn-ghost:hover { border-color: var(--c-primary); background: var(--c-sky); }

.mobile-toggle { display: none; }

/* ─────────── ヒーロー ─────────── */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--c-sky) 0%, white 100%);
  padding: 60px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--c-sky-2);
  border-radius: 100px;
  font-size: 12.5px; font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--c-success); box-shadow: 0 0 0 4px rgba(47,158,108,0.18); }

.hero h1 {
  font-family: var(--f-sans);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
  color: var(--c-navy);
}
.hero h1 .accent {
  color: var(--c-blue);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px;
  background: var(--c-accent); opacity: 0.35; z-index: -1; border-radius: 4px;
}
.hero h1 .vertical-mark {
  display: inline-block; vertical-align: middle;
  font-size: 0.6em; font-weight: 700;
  color: var(--c-accent);
  margin: 0 6px;
}
.hero p.lead {
  font-size: 17px;
  color: var(--c-ink-2);
  margin: 0 0 28px;
  line-height: 1.85;
  max-width: 540px;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 32px; }

.hero-trust { display: flex; gap: 28px; padding-top: 24px; border-top: 1px solid var(--c-line); }
.hero-trust .item { display: flex; align-items: center; gap: 10px; }
.hero-trust .num { font-family: var(--f-rounded); font-size: 28px; font-weight: 800; color: var(--c-navy); line-height: 1; }
.hero-trust .num .unit { font-size: 14px; margin-left: 2px; }
.hero-trust .lab { font-size: 12px; color: var(--c-ink-3); line-height: 1.3; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  justify-self: end;
}
.hero-photo {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-sky-2);
}
.hero-photo .placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-size: 13px;
  color: var(--c-ink-3);
}

.hero-badge {
  position: absolute; left: -20px; bottom: 44px;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
}
.hero-badge .ring {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  display: grid; place-items: center;
  font-family: var(--f-rounded);
  font-size: 11px; font-weight: 800;
  color: var(--c-accent);
  text-align: center; line-height: 1.2;
  border: 2px dashed var(--c-accent);
}
.hero-badge .text { line-height: 1.3; }
.hero-badge .text b { font-size: 14px; display: block; color: var(--c-ink); }
.hero-badge .text span { font-size: 11px; color: var(--c-ink-3); }

.hero-card {
  position: absolute; right: -16px; top: 32px;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
}
.hero-card .check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-success); color: white;
  display: grid; place-items: center;
}

.hero-wave {
  display: block;
  margin-top: 60px;
  width: 100%;
}

/* ─────────── 緊急バー ─────────── */
.urgent-bar {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
  color: white;
  padding: 24px 0;
}
.urgent-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px; align-items: center;
}
.urgent-text b { font-size: 18px; font-weight: 800; display: block; margin-bottom: 4px; }
.urgent-text span { font-size: 13px; opacity: 0.85; }
.urgent-tel {
  font-family: var(--f-rounded);
  font-size: 32px; font-weight: 800; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap;
}
.urgent-tel .icon-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-accent); color: white;
  display: grid; place-items: center;
}

/* ─────────── セクション共通 ─────────── */
.section { padding: 100px 0; }
.section-tight { padding: 80px 0; }
.section-alt { background: var(--c-cream); }
.section-blue { background: var(--c-sky); }

.section-head { text-align: center; margin-bottom: 60px; }
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--c-primary);
  margin-bottom: 14px;
  font-family: var(--f-rounded);
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: ""; width: 24px; height: 1px; background: var(--c-primary);
}
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--c-navy);
  letter-spacing: 0.02em;
}
.section-head h2 .em { color: var(--c-blue); }
.section-head p {
  font-size: 16px;
  color: var(--c-ink-2);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ─────────── サービス ─────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.25s;
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--c-sky-2);
}
.service-card .photo {
  aspect-ratio: 16 / 10;
  background: var(--c-sky-2);
  position: relative;
  overflow: hidden;
}
.service-card .photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,58,110,0.4) 100%);
}
.service-card .tag {
  position: absolute; top: 14px; left: 14px;
  background: white;
  color: var(--c-primary);
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 100px;
  z-index: 2;
}
.service-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 {
  font-size: 20px; font-weight: 800; margin: 0 0 10px;
  color: var(--c-navy);
}
.service-card p {
  font-size: 14px; color: var(--c-ink-2); line-height: 1.85;
  margin: 0 0 18px; flex: 1;
}
.service-card .price {
  display: flex; align-items: baseline; gap: 8px;
  padding-top: 16px; border-top: 1px dashed var(--c-line);
  margin-top: auto;
}
.service-card .price .from { font-size: 12px; color: var(--c-ink-3); }
.service-card .price b {
  font-family: var(--f-rounded); font-size: 22px; font-weight: 800;
  color: var(--c-blue);
}
.service-card .price .yen { font-size: 14px; color: var(--c-ink-2); }

/* ─────────── 選ばれる理由 ─────────── */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.reason-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; gap: 22px;
  border: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
.reason-card .number {
  font-family: var(--f-serif);
  font-size: 64px; font-weight: 700;
  color: var(--c-sky-2);
  line-height: 0.9;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.reason-card .content h3 {
  font-size: 20px; font-weight: 800; margin: 8px 0 10px;
  color: var(--c-navy);
}
.reason-card .content p {
  font-size: 14px; color: var(--c-ink-2); line-height: 1.85; margin: 0;
}
.reason-card .icon-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  color: var(--c-primary);
  background: var(--c-sky);
  padding: 4px 10px; border-radius: 100px;
  margin-top: 14px;
}

/* ─────────── 施工の流れ ─────────── */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.flow::before {
  content: ""; position: absolute;
  top: 32px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-sky-2) 0, var(--c-sky-2) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.flow-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.flow-step .num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--c-blue);
  color: var(--c-navy);
  font-family: var(--f-rounded);
  font-size: 22px; font-weight: 800;
  display: grid; place-items: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
}
.flow-step .icon-row {
  margin-bottom: 12px;
  color: var(--c-blue);
}
.flow-step h4 {
  font-size: 15px; font-weight: 800; margin: 0 0 8px;
  color: var(--c-navy);
}
.flow-step p {
  font-size: 12.5px; color: var(--c-ink-2); line-height: 1.7; margin: 0;
}

/* ─────────── 料金表 ─────────── */
.price-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--c-line);
}
.price-headline {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--c-sky);
}
.price-headline .big {
  font-family: var(--f-rounded);
  font-size: 56px; font-weight: 800; line-height: 1;
  color: var(--c-blue);
  display: flex; align-items: baseline; gap: 4px;
}
.price-headline .big .yen { font-size: 24px; }
.price-headline .text h3 { font-size: 22px; font-weight: 800; margin: 0 0 6px; color: var(--c-navy); }
.price-headline .text span { font-size: 13px; color: var(--c-ink-2); }

.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th, .price-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
}
.price-table th {
  background: var(--c-sky);
  color: var(--c-navy);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.price-table td { font-size: 14px; }
.price-table td.amt {
  font-family: var(--f-rounded);
  font-weight: 800;
  color: var(--c-navy);
  font-size: 16px;
  text-align: right;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr.recommend td {
  background: var(--c-accent-soft);
  font-weight: 700;
}
.price-table tr.recommend td:first-child::before {
  content: "おすすめ"; display: inline-block;
  background: var(--c-accent); color: white;
  font-size: 10px; padding: 2px 8px; border-radius: 100px;
  margin-right: 8px; font-weight: 800;
}

.price-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--c-sky);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--c-ink-2);
  display: flex; gap: 12px; align-items: flex-start;
}

/* ─────────── 施工事例 ─────────── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: 0.2s;
}
.case-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.case-card .photo {
  aspect-ratio: 4 / 3;
  background: var(--c-sky-2);
  position: relative;
}
.case-card .area-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(10, 58, 110, 0.85);
  color: white;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px;
  backdrop-filter: blur(6px);
}
.case-card .body { padding: 18px 20px 22px; }
.case-card h4 { font-size: 16px; font-weight: 800; margin: 0 0 8px; color: var(--c-navy); line-height: 1.4; }
.case-card .meta { display: flex; gap: 10px; flex-wrap: wrap; font-size: 12px; color: var(--c-ink-3); margin-bottom: 10px; }
.case-card .meta span { padding: 2px 8px; background: var(--c-sky); border-radius: 4px; color: var(--c-primary); font-weight: 600; }
.case-card p { font-size: 13px; color: var(--c-ink-2); line-height: 1.7; margin: 0; }

/* ─────────── お客様の声 ─────────── */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--c-line);
  position: relative;
}
.voice-card::before {
  content: "“";
  font-family: var(--f-serif);
  font-size: 88px;
  position: absolute; top: -16px; left: 18px;
  color: var(--c-sky-2);
  line-height: 1;
}
.voice-card .stars {
  display: flex; gap: 2px; color: var(--c-accent); margin-bottom: 12px;
  position: relative; z-index: 1;
}
.voice-card h4 { font-size: 16px; font-weight: 800; margin: 0 0 12px; color: var(--c-navy); position: relative; z-index: 1; }
.voice-card p { font-size: 14px; line-height: 1.85; color: var(--c-ink-2); margin: 0 0 16px; position: relative; z-index: 1; }
.voice-card .who { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--c-line); }
.voice-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-sky-2);
  display: grid; place-items: center;
  font-weight: 800; color: var(--c-primary);
  flex-shrink: 0;
}
.voice-card .who-text { line-height: 1.3; }
.voice-card .who-text b { font-size: 13px; color: var(--c-ink); }
.voice-card .who-text span { font-size: 11px; color: var(--c-ink-3); display: block; }

/* ─────────── スタッフ ─────────── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.staff-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.staff-card .photo {
  aspect-ratio: 1 / 1.1;
  background: var(--c-sky-2);
  position: relative;
}
.staff-card .body { padding: 16px 18px 20px; }
.staff-card .role { font-size: 11px; color: var(--c-blue); font-weight: 700; letter-spacing: 0.1em; }
.staff-card h4 { font-size: 18px; font-weight: 800; margin: 4px 0 8px; color: var(--c-navy); }
.staff-card .quote { font-size: 12.5px; color: var(--c-ink-2); line-height: 1.7; margin: 0; }
.staff-card .badges { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 10px; }
.staff-card .badges span {
  font-size: 10px; padding: 2px 8px;
  background: var(--c-sky); color: var(--c-primary);
  border-radius: 100px; font-weight: 700;
}

/* ─────────── FAQ ─────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--c-line);
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px; font-weight: 700;
  color: var(--c-navy);
  user-select: none;
}
.faq-q .q-mark {
  width: 32px; height: 32px;
  background: var(--c-blue); color: white;
  font-family: var(--f-serif); font-weight: 700;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.faq-q .text { flex: 1; }
.faq-q .chev { color: var(--c-ink-3); transition: 0.2s; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s;
}
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  padding: 0 24px 22px 72px;
  font-size: 14px; line-height: 1.85; color: var(--c-ink-2);
}

/* ─────────── 対応エリア ─────────── */
.area-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.area-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-line);
  font-size: 14px; font-weight: 600;
  color: var(--c-ink);
}
.area-item .check { color: var(--c-blue); flex-shrink: 0; }
.area-map {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.area-map svg { width: 100%; height: auto; }

/* ─────────── お問い合わせ ─────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.contact-info h3 { font-size: 24px; font-weight: 900; margin: 0 0 16px; color: var(--c-navy); }
.contact-info p { font-size: 14px; color: var(--c-ink-2); line-height: 1.85; }

.contact-tel {
  margin-top: 28px; padding: 24px;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
  color: white;
  border-radius: var(--radius);
}
.contact-tel .label { font-size: 12px; opacity: 0.9; letter-spacing: 0.08em; margin-bottom: 6px; }
.contact-tel .num { font-family: var(--f-rounded); font-size: 36px; font-weight: 800; letter-spacing: 0.02em; line-height: 1.1; }
.contact-tel .hours { font-size: 12px; opacity: 0.85; margin-top: 6px; }

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-size: 13px; font-weight: 700;
  margin-bottom: 8px; color: var(--c-navy);
}
.form-row label .req {
  font-size: 10px; background: var(--c-red); color: white;
  padding: 2px 6px; border-radius: 4px; margin-left: 6px; font-weight: 800;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  background: var(--c-cream);
  transition: 0.15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  background: white;
}
.form-row textarea { min-height: 100px; resize: vertical; }
.form-row .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ─────────── フッター ─────────── */
.site-footer {
  background: var(--c-navy);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 24px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h5 {
  font-size: 14px;
  font-weight: 800;
  color: white;
  margin: 0 0 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: rgba(255,255,255,0.75); transition: 0.15s; font-size: 13px; }
.footer-grid a:hover { color: white; }
.footer-brand .logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .logo b { color: white; font-size: 18px; }
.footer-brand p { font-size: 13px; line-height: 1.85; opacity: 0.8; margin: 0; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; justify-content: space-between;
  font-size: 12px;
  opacity: 0.7;
}

/* ─────────── レスポンシブ ─────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { max-width: 100%; justify-self: stretch; }
  .service-grid { grid-template-columns: 1fr; }
  .reason-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .flow::before { display: none; }
  .case-grid { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .area-wrap { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .urgent-grid { grid-template-columns: 1fr; text-align: center; }
  .urgent-tel { justify-content: center; }
  .nav { display: none; }
  .header-cta .btn { display: none; }
  .header-cta .tel-block { padding: 4px 10px; }
  .header-cta .tel-block .num b { font-size: 17px; }
  .header-top-left .badge-tag:not(:first-child) { display: none; }
  .section { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
  .price-wrap { padding: 24px; }
  .price-headline { flex-direction: column; align-items: flex-start; gap: 12px; }
  .price-headline .big { font-size: 44px; }
  .price-table th, .price-table td { padding: 12px 10px; font-size: 13px; }
  .header-main { height: 110px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand img { height: 88px !important; }
  .brand-text .big { font-size: 14px; }
  .brand-text .small { font-size: 10px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr 1fr; }
  .header-top { display: none; }
  .hero { padding-top: 36px; }
  .hero-badge { left: 8px; bottom: 8px; padding: 10px 14px; }
  .hero-badge .ring { width: 44px; height: 44px; font-size: 9px; }
  .hero-card { right: 8px; top: 8px; padding: 8px 12px; font-size: 11px; }
  .reason-card { padding: 22px; gap: 14px; }
  .reason-card .number { font-size: 44px; }
  .price-table th:nth-child(3), .price-table td:nth-child(3) { display: none; }
  .form-row .row-2 { grid-template-columns: 1fr; }
}
