/* ============================================================
   マツリカクリーンサービス / index.css
   ロゴの色と丸みを活かした、親しみのあるクリーンサービスデザイン
============================================================ */

:root {
  --brand:       #58a874;
  --brand-deep:  #397c58;
  --brand-soft:  #a8d7b8;
  --brand-pale:  #e4f2e9;
  --brand-bg:    #f1f9fc;
  --brand-bg-2:  #f8fcfe;
  --chrome-bg:   #9ADDE6;
  --surface:     #f8fcfe;
  --surface-alt: #eef8fb;
  --surface-deep:#dceff5;
  --sky:         #72bddb;
  --sky-pale:    #e8f5fa;
  --accent:      #efa95f;
  --accent-pale: #fff0da;
  --blush:       #f7e8e4;

  --ink:    #465955;
  --ink-2:  #2f4540;
  --sub:    #6d7e79;
  --line:   #dfe9e3;
  --line-2: #cadbd1;

  --line-green: #06C755;

  --header-h:  68px;
  --header-h-sp: 60px;

  --font-jp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-heading: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --shadow-soft: 0 14px 36px rgba(65, 98, 82, 0.09);
  --shadow-float: 0 18px 48px rgba(65, 98, 82, 0.14);
}

/* ------------------------------------------------------------
   Base
------------------------------------------------------------ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  line-height: 1.85;
  letter-spacing: 0.015em;
}

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

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

@media (max-width: 768px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
}

#top { position: absolute; top: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ------------------------------------------------------------
   Header (追従, タブレット以下はハンバーガー)
------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--chrome-bg);
  border-bottom: 1px solid rgba(88, 168, 116, 0.14);
  box-shadow: 0 8px 28px rgba(65, 98, 82, 0.07);
  backdrop-filter: blur(14px);
  height: var(--header-h-sp);
  display: flex;
  align-items: center;
}

.site-header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.site-nav { display: none; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  padding: 0;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Desktop（1025px以上） */
@media (min-width: 1025px) {
  .site-header {
    height: var(--header-h);
  }
  .site-header-inner {
    padding: 0 32px;
  }
  .brand-logo { height: 40px; }

  .site-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-left: auto;
  }
  .site-nav a {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    padding: 8px 2px;
    position: relative;
    transition: opacity 0.2s ease;
  }
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .site-nav a:hover::after { transform: scaleX(1); }

  .menu-toggle { display: none; }
}

/* ------------------------------------------------------------
   Drawer（タブレット以下）
------------------------------------------------------------ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  background: rgba(47, 69, 64, 0.34);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}

.drawer-inner {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 86vw);
  height: 100%;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.drawer.is-open .drawer-inner { transform: translateX(0); }

.drawer-head {
  background: var(--chrome-bg);
  border-bottom: 1px solid var(--line);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-h-sp);
}

.drawer-logo { height: 32px; width: auto; }

.drawer-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  width: 36px;
  height: 36px;
  padding: 0;
}

.drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  gap: 8px;
  overflow-y: auto;
}

.drawer-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.drawer-nav a::after {
  content: "›";
  font-size: 22px;
  font-weight: 400;
  color: var(--brand);
  line-height: 1;
}
.drawer-nav a:hover { background: var(--brand-bg); border-color: var(--brand-soft); }

.drawer-cta {
  margin: 0 20px 24px;
  background: var(--line-green);
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.2);
}

/* ------------------------------------------------------------
   Hero (フルスクリーン・カルーセル + テキスト重ね)
------------------------------------------------------------ */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h-sp));
  min-height: 520px;
  max-height: 900px;
  margin-top: var(--header-h-sp);
  overflow: hidden;
  color: var(--ink-2);
  background: var(--surface);
}

@media (min-width: 1025px) {
  .hero {
    height: calc(100vh - var(--header-h));
    margin-top: var(--header-h);
  }
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) brightness(1.08);
  transform: scale(1.015);
}

/* Hero dots（スライダーインジケーター） */
.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 28px;
  height: 3px;
  background: rgba(57, 124, 88, 0.24);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.hero-dots button.is-active {
  background: var(--brand);
  width: 44px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 12% 16%, rgba(220, 239, 245, 0.94), transparent 28%),
    linear-gradient(to right, rgba(248,252,254,0.98) 0%, rgba(248,252,254,0.9) 44%, rgba(248,252,254,0.5) 72%, rgba(248,252,254,0.1) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 90vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-sub {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  color: var(--brand-deep);
  padding: 7px 14px;
  position: relative;
  display: inline-flex;
  width: fit-content;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(88, 168, 116, 0.24);
  border-radius: 999px;
}
.hero-sub::before {
  content: none;
}

.hero-title {
  font-size: clamp(28px, 5.4vw, 60px);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  color: var(--ink-2);
}

.hero-lead {
  font-size: 15.5px;
  line-height: 2;
  margin-bottom: 36px;
  max-width: 560px;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero レビューバッジ */
.hero-review {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  width: fit-content;
  padding: 10px 16px 10px 10px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(65, 98, 82, 0.08);
  backdrop-filter: blur(8px);
}

.hero-review-badge {
  position: relative;
  flex-shrink: 0;
  width: 88px;
}

.hero-review-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-review-score {
  position: absolute;
  left: 50%;
  top: 37%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #6b4e00;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.hero-review-text {
  color: var(--ink-2);
}

.hero-review-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 4px;
}

.hero-review-meta {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--sub);
  line-height: 1.5;
}

/* Hero ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  border-radius: 18px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 24px rgba(65, 98, 82, 0.11);
}

.btn-line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.22);
}
.btn-line:hover { background: #05a544; transform: translateY(-2px); }

.btn-curama {
  background: #fa6218;
  color: #fff;
}
.btn-curama:hover { background: #e0530f; transform: translateY(-2px); }

.btn-mail {
  margin-top: 12px;
  background: #fff;
  color: var(--ink-2);
  border-color: var(--brand-deep);
}
.btn-mail:hover {
  background: var(--ink-2);
  color: #fff;
  border-color: var(--ink-2);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.76);
  color: var(--brand-deep);
  border-color: rgba(57, 124, 88, 0.5);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: var(--brand-deep);
  color: #fff;
  border-color: var(--brand-deep);
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100vh - var(--header-h-sp));
    max-height: none;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(248,252,254,0.94), rgba(238,248,251,0.88));
  }
  .hero-content { padding: 90px 20px 84px; }
  .hero-title {
    line-height: 1.45;
    margin-bottom: 22px;
  }
  .hero-lead { font-size: 14.5px; line-height: 1.9; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; min-width: 0; }
  .hero-review {
    align-items: center;
    width: 100%;
    padding-right: 12px;
  }
  .hero-review-badge { width: 72px; }
  .hero-review-score { font-size: 18px; }
  .hero-review-title { font-size: 12.5px; }
  .hero-review-meta { font-size: 11.5px; }
  .hero-dots { bottom: 18px; }
  .hero-dots button { width: 20px; }
  .hero-dots button.is-active { width: 32px; }
}

/* 生成画像を使用する静止画ヒーロー */
.hero-static {
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 1920 / 1310;
  background: #8fd5e2;
}

.hero-static .hero-visual {
  position: absolute;
  inset: 0;
}

.hero-static .hero-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-static .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-static .hero-content {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  padding: 0 clamp(24px, 5vw, 80px) clamp(28px, 4vw, 64px);
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  pointer-events: auto;
}

.hero-static .hero-actions {
  flex: 0 0 360px;
  width: 360px;
  height: 88px;
}

.hero-static .hero-cta {
  width: 100%;
  min-width: 0;
  min-height: 88px;
  flex-direction: column;
  gap: 4px;
  line-height: 1.2;
}

.hero-cta-main {
  font-size: 17px;
  font-weight: 900;
}

.hero-cta-sub {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.94;
}

.hero-static .hero-review {
  width: 360px;
  height: 88px;
  min-height: 88px;
  margin: 0;
  padding: 6px 18px 6px 8px;
  gap: 12px;
  border-color: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(43, 90, 105, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-static .hero-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(43, 90, 105, 0.2);
}

.hero-static .hero-review-badge {
  width: 76px;
}

.hero-static .hero-review-title {
  color: var(--ink-2);
  font-size: 13px;
  margin-bottom: 0;
}

.hero-static .hero-review-meta {
  color: var(--ink);
  font-size: 12px;
}

@media (max-width: 768px) {
  .hero-static {
    height: calc(100svh - var(--header-h-sp));
    min-height: 680px;
    aspect-ratio: auto;
  }

  .hero-static .hero-visual img {
    object-position: center;
  }

  .hero-static .hero-content {
    padding: 0 18px 24px;
  }

  .hero-bottom {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .hero-static .hero-actions,
  .hero-static .hero-cta,
  .hero-static .hero-review {
    width: 100%;
  }

  .hero-static .hero-actions,
  .hero-static .hero-review {
    height: 76px;
  }

  .hero-static .hero-actions {
    flex: 0 0 76px;
  }

  .hero-static .hero-cta {
    min-width: 0;
    min-height: 76px;
  }

  .hero-static .hero-review {
    justify-content: center;
    min-height: 76px;
    padding: 8px 12px;
  }

  .hero-static .hero-review-badge { width: 62px; }
}

/* タブレットは画像内の文字とCTAの重なりを防ぐ */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-static {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    overflow: visible;
    background: var(--chrome-bg);
  }

  .hero-static .hero-visual {
    position: relative;
    aspect-ratio: 1920 / 1310;
  }

  .hero-static .hero-content {
    position: relative;
    inset: auto;
    height: auto;
    padding: 18px 24px 24px;
    background: var(--chrome-bg);
  }

  .hero-bottom {
    width: 100%;
    max-width: 736px;
  }

  .hero-static .hero-actions,
  .hero-static .hero-review {
    flex: 1 1 0;
    width: auto;
  }
}

/* ------------------------------------------------------------
   Content Sections
------------------------------------------------------------ */
.section {
  padding: 92px 0;
}
:where(.section:nth-of-type(even)) {
  background: var(--surface-alt);
}
.section-service {
  background:
    radial-gradient(circle at 8% 14%, rgba(114, 189, 219, 0.12) 0 100px, transparent 102px),
    radial-gradient(circle at 94% 86%, rgba(154, 207, 243, 0.2) 0 150px, transparent 152px),
    var(--surface);
}
.section-service .section-head,
.section-service .block-title,
.section-service .cause-grid,
.section-service .ba-images,
.section-service .point-grid {
  position: relative;
  z-index: 1;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 18px;
  color: var(--ink-2);
  letter-spacing: 0.03em;
}
.section-lead {
  text-align: center;
  color: var(--sub);
  margin-bottom: 48px;
  line-height: 2;
}

.section-head {
  margin-bottom: 44px;
}

.section-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 7px;
  margin: 18px auto 0;
  background: var(--chrome-bg);
  border-radius: 999px;
}

.block-title {
  font-size: clamp(21px, 3vw, 28px);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink-2);
  margin: 54px 0 26px;
  padding-left: 38px;
  border-left: 0;
  line-height: 1.5;
  position: relative;
}

.block-title::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.45em;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 12%;
  background: var(--brand-soft);
  box-shadow: 9px -5px 0 -3px var(--accent-pale), -4px 9px 0 -3px var(--sky-pale);
  transform: rotate(-18deg);
}

.cause-grid,
.point-grid,
.price-main-grid,
.repair-grid {
  display: grid;
  gap: 24px;
}

.cause-grid,
.point-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cause-card,
.point-card,
.price-main-card,
.repair-block,
.faq-item,
.monitor-box,
.cta-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.cause-card {
  overflow: hidden;
}

.cause-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sky-pale);
}

.cause-card-image img,
.area-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cause-card-title,
.point-card-title,
.price-main-title,
.repair-block-title {
  color: var(--ink-2);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.5;
}

.cause-card-title {
  font-size: 19px;
  padding: 22px 22px 8px;
}

.cause-card-text {
  padding: 0 22px 24px;
  color: var(--sub);
  line-height: 1.85;
  font-size: 14.5px;
}

.ba-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ba-figure {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.ba-image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.ba-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-caption {
  padding: 20px 22px 24px;
  color: var(--sub);
  font-size: 14.5px;
  line-height: 1.9;
}

.ba-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: rgba(70, 89, 85, 0.84);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.ba-label-after {
  background: rgba(57, 124, 88, 0.9);
}

.point-grid > .point-card {
  padding: 0;
  overflow: hidden;
}

.point-card-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--sky-pale);
}

.point-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.point-card-body {
  padding: 24px 26px 28px;
}

.point-card-title {
  font-size: 20px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-2);
}

.point-card-text {
  color: var(--sub);
  line-height: 1.9;
  font-size: 14.5px;
}

.section-heatpump {
  background:
    radial-gradient(circle at 12% 18%, rgba(114, 189, 219, 0.13) 0 120px, transparent 122px),
    radial-gradient(circle at 88% 78%, rgba(154, 207, 243, 0.2) 0 150px, transparent 152px),
    var(--surface-alt);
}

.hp-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.hp-figure {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-float);
}

.hp-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hp-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-caption {
  padding: 20px 22px 24px;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.9;
}

.hp-caption-note {
  margin-top: 12px;
  color: #7f6b6e;
  font-size: 12.5px;
}

.hp-text {
  color: var(--ink);
  line-height: 2;
}

.hp-text p + p {
  margin-top: 18px;
}

.hp-text strong {
  color: var(--ink-2);
  background: linear-gradient(transparent 66%, rgba(168, 215, 184, 0.44) 66%);
}

.hp-detail-link {
  margin-top: 28px;
}

.hp-detail-link .link-more {
  color: #fff;
  background: #FF405C;
  border-color: #FF405C;
  box-shadow: 0 10px 24px rgba(255, 64, 92, 0.24);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hp-detail-link .link-more::after {
  color: #fff;
}

.hp-detail-link .link-more:hover {
  background: #e93651;
  border-color: #e93651;
  transform: translateY(-2px);
}

.hp-callout {
  margin-top: 28px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(65, 98, 82, 0.07);
}

.hp-callout-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 10px;
}

.hp-callout ul,
.price-main-list {
  margin: 0;
  padding-left: 1.2em;
}

.hp-callout li,
.price-main-list li {
  margin-top: 6px;
}

.section-price {
  background:
    radial-gradient(rgba(114, 189, 219, 0.13) 1.2px, transparent 1.2px),
    var(--surface);
  background-size: 26px 26px;
}

.price-main-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-main-card {
  padding: 30px;
  background: #fff;
}

.price-main-title {
  font-size: 20px;
  margin-bottom: 18px;
}

.price-main-amount {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--brand-deep);
  margin-bottom: 18px;
}

.price-amount-yen {
  font-size: 24px;
  font-weight: 900;
}

.price-amount-num {
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.price-amount-tax {
  font-size: 13px;
  font-weight: 700;
  color: var(--sub);
}

.price-main-list {
  color: var(--sub);
  line-height: 1.8;
  font-size: 14.5px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.price-table th,
.price-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: none;
}

.price-table th {
  width: 68%;
  text-align: left;
  color: var(--ink-2);
  font-weight: 700;
  background: #fff;
}

.price-table td {
  text-align: right;
  font-weight: 900;
  color: var(--ink-2);
  white-space: nowrap;
}

.th-note,
.repair-block-sub {
  display: block;
  margin-top: 4px;
  color: var(--sub);
  font-size: 12.5px;
  font-weight: 500;
}

.price-old {
  color: #8da0b3;
  text-decoration: line-through;
  margin-right: 10px;
  font-weight: 700;
}

.price-new {
  color: #d44747;
}

.price-tax {
  display: inline-block;
  margin-left: 4px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 500;
}

.price-sub-lead {
  color: var(--sub);
  margin: -8px 0 22px;
  line-height: 1.8;
}

.repair-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.repair-block {
  padding: 24px;
}

.repair-block-title {
  font-size: 18px;
  margin-bottom: 16px;
}

.repair-block .price-table {
  box-shadow: none;
}

.repair-policy-note {
  margin-top: 18px;
  color: var(--sub);
  font-size: 14px;
}

.repair-policy-note a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.monitor-box {
  margin-top: 36px;
  padding: 24px 28px;
  background: #FF405C;
  border-left: 0;
  border-color: #FF405C;
  box-shadow: 0 14px 32px rgba(255, 64, 92, 0.24);
}

.monitor-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  font-size: 18px;
}

.monitor-text {
  color: #fff;
  line-height: 1.9;
}

/* ===== お客様の声（吹き出し） ===== */
.section-voice {
  background:
    radial-gradient(circle at 10% 20%, rgba(114, 189, 219, 0.11) 0 100px, transparent 102px),
    radial-gradient(circle at 92% 82%, rgba(154, 207, 243, 0.2) 0 135px, transparent 137px),
    var(--surface-alt);
}

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 8px;
}

.voice-item {
  display: flex;
  justify-content: flex-start;
}
.voice-item:nth-child(even) {
  justify-content: flex-end;
}

.voice-bubble {
  position: relative;
  max-width: 78%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}

/* 吹き出しのしっぽ（左側） */
.voice-bubble::before,
.voice-bubble::after {
  content: "";
  position: absolute;
  top: 24px;
  width: 0;
  height: 0;
  border: 9px solid transparent;
}
.voice-bubble::before {
  left: -18px;
  border-right-color: var(--line);
}
.voice-bubble::after {
  left: -16px;
  border-right-color: #fff;
}
/* 偶数（右寄せ）はしっぽを右側に */
.voice-item:nth-child(even) .voice-bubble::before {
  left: auto;
  right: -18px;
  border-right-color: transparent;
  border-left-color: var(--line);
}
.voice-item:nth-child(even) .voice-bubble::after {
  left: auto;
  right: -16px;
  border-right-color: transparent;
  border-left-color: #fff;
}

.voice-stars {
  display: block;
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.voice-text {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink);
}

.voice-meta {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sub);
}

.voice-foot {
  text-align: center;
  margin-top: 34px;
}
.voice-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--sub);
}

@media (max-width: 768px) {
  .voice-bubble { max-width: 88%; }
}

.section-faq {
  background:
    radial-gradient(circle at 92% 12%, rgba(114, 189, 219, 0.11) 0 130px, transparent 132px),
    radial-gradient(circle at 7% 88%, rgba(154, 207, 243, 0.17) 0 110px, transparent 112px),
    var(--surface);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 20px 56px 20px 22px;
  position: relative;
  cursor: pointer;
  color: var(--ink-2);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.6;
}

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

.faq-question::before {
  content: "Q.";
  color: var(--brand-deep);
  margin-right: 10px;
}

.faq-toggle {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--brand-deep);
  border-radius: 2px;
}

.faq-toggle::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
}

.faq-toggle::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 18px;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-toggle::after {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 22px 22px 52px;
  color: var(--sub);
  line-height: 1.9;
}

.faq-answer p::before {
  content: "A.";
  color: #cf7c72;
  font-weight: 900;
  margin-right: 10px;
}

.faq-more {
  text-align: center;
  margin-top: 30px;
}

.link-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--brand);
  border-radius: 16px;
  color: var(--ink-2);
  background: #fff;
  font-weight: 700;
}

.link-more::after {
  content: "›";
  margin-left: 10px;
  color: var(--brand-deep);
  font-size: 22px;
  line-height: 1;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: start;
}

.section-area {
  background:
    radial-gradient(circle at 7% 84%, rgba(114, 189, 219, 0.12) 0 150px, transparent 152px),
    radial-gradient(circle at 95% 10%, rgba(154, 207, 243, 0.2) 0 110px, transparent 112px),
    var(--surface-alt);
}

.area-text {
  display: grid;
  gap: 24px;
}

.area-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.area-block-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 16px;
}

.area-block-price {
  color: #d44747;
  font-size: 14px;
  margin-left: 8px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  background: var(--brand-bg);
  border: 1px solid var(--brand-soft);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.area-tags-muted span {
  background: #fff8f4;
  border-color: #f0d8c8;
}

.area-note {
  margin-top: 14px;
  color: var(--sub);
  font-size: 14px;
}

.area-local-page {
  padding: 22px 24px;
  border: 1px solid rgba(114, 189, 219, 0.28);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.area-local-page-label {
  margin-bottom: 8px;
  color: var(--sub);
  font-size: 13px;
  font-weight: 700;
}

.area-local-page a {
  color: var(--brand-deep);
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.7;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.area-map {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-float);
}

.area-map img {
  aspect-ratio: 4 / 3;
}

/* ------------------------------------------------------------
   Regional landing pages
------------------------------------------------------------ */
.regional-page {
  background: var(--surface);
}

.regional-page .site-nav {
  gap: 24px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
  color: var(--sub);
  font-size: 13px;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.regional-eyebrow {
  margin-bottom: 12px;
  color: #348d9b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.regional-breadcrumbs {
  justify-content: center;
  margin-bottom: 24px;
}

.regional-intro-section .breadcrumbs,
.regional-intro-section .section-head,
.regional-intro-section .block-title,
.regional-intro-section .ba-images {
  position: relative;
  z-index: 1;
}

.regional-area-grid,
.regional-case-grid {
  display: grid;
  gap: 24px;
}

.regional-area-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.regional-comparison-section {
  background: #fff;
}

.regional-comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.regional-comparison-table {
  width: 100%;
  min-width: 760px;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 14px;
}

.regional-comparison-table th,
.regional-comparison-table td {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}

.regional-comparison-table tr > *:last-child { border-right: 0; }
.regional-comparison-table tbody tr:last-child > * { border-bottom: 0; }
.regional-comparison-table thead th { background: var(--surface-alt); color: var(--ink-2); font-weight: 900; }
.regional-comparison-table thead th:nth-child(2) { background: var(--brand); color: #fff; }
.regional-comparison-table tbody th { background: var(--brand-bg); color: var(--ink-2); font-weight: 900; white-space: nowrap; }
.regional-comparison-table tbody td:nth-child(2) { color: var(--brand-deep); font-weight: 900; }

.regional-note {
  margin-top: 20px;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.9;
  text-align: center;
}

.regional-note a {
  color: var(--brand-deep);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.regional-price-cta {
  margin-top: 32px;
}

.regional-price-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: min(100%, 320px);
  padding: 14px 24px;
  border: 1px solid rgba(57, 124, 88, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--brand-deep);
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.regional-price-cta a:hover {
  background: var(--brand-deep);
  color: #fff;
  transform: translateY(-2px);
}

.regional-price-cta span { font-size: 22px; line-height: 1; }

.regional-voice-section .voice-list {
  grid-template-columns: 1fr;
}

.regional-cases-section {
  background: var(--surface-alt);
}

.regional-case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.regional-case-card {
  padding: 28px;
  border: 1px solid rgba(114, 189, 219, 0.24);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.regional-case-area {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--brand-bg);
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 900;
}

.regional-case-card h3 {
  color: var(--ink-2);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.6;
}

.regional-case-card p:not(.regional-case-area) {
  margin-top: 12px;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.9;
}

.regional-case-card a {
  display: inline-block;
  margin-top: 18px;
  color: #ff405c;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.regional-more-link {
  margin-top: 32px;
  text-align: center;
}

/* ------------------------------------------------------------
   Availability calendar
------------------------------------------------------------ */
.section-availability {
  background: var(--surface);
}

.availability-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(114, 189, 219, 0.28);
  border-radius: 26px;
  box-shadow: var(--shadow-float);
}

.availability-panel {
  padding: 34px;
}

.availability-calendar-head {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 14px;
  align-items: center;
  max-width: 520px;
  margin: 0 auto 14px;
}

.availability-month-title {
  color: var(--ink-2);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.availability-month-button {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(114, 189, 219, 0.38);
  border-radius: 50%;
  background: var(--sky-pale);
  color: var(--ink-2);
  font-size: 30px;
  line-height: 1;
}

.availability-month-button:disabled {
  cursor: default;
  opacity: 0.28;
}

.availability-status {
  min-height: 28px;
  margin-bottom: 8px;
  color: var(--sub);
  font-size: 14px;
  text-align: center;
}

.availability-status.is-error {
  color: #c94c5c;
}

.availability-weekdays,
.availability-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.availability-weekdays {
  margin-bottom: 8px;
}

.availability-weekdays span {
  color: var(--sub);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.availability-weekdays .is-sunday {
  color: #e25c70;
}

.availability-weekdays .is-saturday {
  color: #4d8fc2;
}

.availability-day,
.availability-day-blank {
  min-width: 0;
  min-height: 78px;
  border-radius: 14px;
}

.availability-day {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.availability-day:not(:disabled):hover {
  transform: translateY(-2px);
  border-color: var(--sky);
  box-shadow: 0 8px 22px rgba(80, 145, 168, 0.14);
}

.availability-day.is-selected {
  border: 2px solid var(--sky);
  box-shadow: 0 0 0 4px rgba(114, 189, 219, 0.16);
}

.availability-day-number {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.availability-day-mark {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.1;
}

.availability-day.is-open {
  background: #f2fbfd;
}

.availability-day.is-open .availability-day-mark {
  color: #42a8b7;
}

.availability-day.is-limited {
  background: #fffaf1;
}

.availability-day.is-limited .availability-day-mark {
  color: #e5a33a;
}

.availability-day.is-closed {
  background: #fff4f6;
}

.availability-day.is-closed .availability-day-mark {
  color: #d95b70;
}

.availability-day.is-past {
  cursor: default;
  border-color: #e2e5e4;
  background: #edf0ef;
  color: #9ca4a2;
}

.availability-day.is-past .availability-day-mark {
  color: #aab0ae;
}

.availability-day.is-loading {
  border-color: #e5edef;
  background: #f7fbfc;
  color: #9aa9a9;
}

.availability-day.is-loading .availability-day-mark {
  color: var(--sky);
  animation: availability-pulse 1s ease-in-out infinite alternate;
}

@keyframes availability-pulse {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

.availability-detail {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(114, 189, 219, 0.24);
  border-radius: 18px;
  background: var(--surface-alt);
}

.availability-detail-guide {
  color: var(--sub);
  text-align: center;
}

.availability-detail-date {
  margin-bottom: 16px;
  color: var(--ink-2);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.availability-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.availability-slot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
}

.availability-slot-label {
  color: var(--ink-2);
  font-weight: 900;
}

.availability-slot strong {
  font-size: 14px;
  white-space: nowrap;
}

.availability-slot.is-available strong { color: #2995a5; }
.availability-slot.is-unavailable strong { color: #c94c5c; }

.availability-notes {
  margin-top: 18px;
  color: var(--sub);
  font-size: 13px;
  text-align: center;
}

.availability-notes p + p {
  margin-top: 4px;
}

.availability-notes .availability-line-notice {
  margin-top: 12px;
  color: #ff405c;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
}

.section-cta {
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.46) 0 110px, transparent 112px),
    radial-gradient(circle at 88% 78%, rgba(154, 207, 243, 0.26) 0 150px, transparent 152px),
    linear-gradient(135deg, var(--surface-deep) 0%, #e4f3f7 52%, #f1f9fc 100%);
  color: var(--ink);
}

.cta-block {
  text-align: center;
  padding: 50px 42px;
  background: rgba(255, 253, 250, 0.94);
  color: var(--ink);
}

.cta-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.45;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 20px;
}

.cta-text {
  color: var(--sub);
  line-height: 2;
  margin-bottom: 30px;
}

.btn-large {
  min-width: 280px;
  padding: 18px 32px;
}

.cta-sub {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 16px 24px;
  flex-wrap: wrap;
  color: var(--sub);
  font-size: 14px;
}

.cta-sub a {
  color: var(--ink-2);
  font-weight: 900;
}

.site-footer {
  background: var(--chrome-bg);
  color: var(--ink);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 18px;
}

.footer-address,
.footer-hours,
.footer-contact,
.footer-nav-group li {
  font-size: 14px;
  line-height: 1.9;
}

.footer-contact {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  word-break: break-all;
}

.footer-tel {
  color: var(--brand-deep);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-tel-note {
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.85;
}

.footer-tel-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav-title {
  color: var(--ink-2);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-nav-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-nav-group a:hover {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-payment img {
  height: 26px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 3px 5px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(57, 124, 88, 0.18);
  text-align: center;
}

.copyright {
  font-size: 12px;
  color: var(--sub);
}

.sticky-nav {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  display: grid;
  gap: 10px;
  width: 168px;
}

.sticky-nav-item {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 14px;
  border: 1px solid rgba(114, 189, 219, 0.3);
  border-radius: 15px;
  background: #fff;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 9px 26px rgba(65, 98, 82, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sticky-nav-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(65, 98, 82, 0.21);
}

.sticky-nav-availability {
  border-color: var(--chrome-bg);
  background: var(--chrome-bg);
  color: #fff;
}

.sticky-nav-line {
  border-color: var(--line-green);
  background: var(--line-green);
  color: #fff;
}

@media (max-width: 900px) {
  .cause-grid,
  .point-grid,
  .regional-area-grid,
  .regional-case-grid,
  .hp-layout,
  .price-main-grid,
  .repair-grid,
  .area-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .area-layout {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .section {
    padding: 58px 0;
  }

  .container,
  .container-narrow {
    padding: 0 20px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-lead {
    margin-bottom: 34px;
    text-align: left;
  }

  .block-title {
    margin: 42px 0 20px;
  }

  .ba-images {
    grid-template-columns: 1fr;
  }

  .cause-card-title {
    padding: 18px 18px 6px;
  }

  .cause-card-text {
    padding: 0 18px 20px;
  }

  .point-card,
  .price-main-card,
  .regional-case-card,
  .repair-block,
  .area-block,
  .area-local-page {
    padding: 22px;
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .regional-eyebrow,
  .regional-breadcrumbs {
    text-align: left;
    justify-content: flex-start;
  }

  .regional-note {
    text-align: left;
  }

  .hp-callout,
  .monitor-box {
    padding: 20px;
  }

  .price-table {
    display: block;
    overflow: hidden;
  }

  .price-table tbody,
  .price-table tr,
  .price-table th,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table th {
    padding: 16px 16px 6px;
    border-bottom: none;
  }

  .price-table td {
    padding: 0 16px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .price-table tr:last-child td {
    border-bottom: none;
  }

  .faq-item summary {
    padding: 18px 48px 18px 18px;
  }

  .faq-answer {
    padding: 0 18px 20px 18px;
  }

  .area-block-price {
    display: block;
    margin: 4px 0 0;
  }

  .availability-panel {
    padding: 24px 14px;
  }

  .availability-calendar-head {
    grid-template-columns: 40px 1fr 40px;
    gap: 8px;
  }

  .availability-month-title {
    font-size: 21px;
  }

  .availability-month-button {
    width: 40px;
    height: 40px;
  }

  .availability-weekdays,
  .availability-grid {
    gap: 4px;
  }

  .availability-day,
  .availability-day-blank {
    min-height: 58px;
    border-radius: 10px;
  }

  .availability-day-number {
    font-size: 12px;
  }

  .availability-day-mark {
    font-size: 21px;
  }

  .availability-detail {
    padding: 18px 14px;
  }

  .availability-slots {
    grid-template-columns: 1fr;
  }

  .availability-slot {
    grid-template-columns: 1fr auto;
    padding: 14px;
  }

  .availability-slot-label {
    font-size: 13px;
  }

  .availability-notes {
    text-align: left;
  }

  .availability-notes .availability-line-notice {
    font-size: 17px;
  }

  .cta-block {
    padding: 36px 22px;
  }

  .btn-large {
    min-width: 0;
    width: 100%;
  }

  .cta-sub {
    display: grid;
    gap: 8px;
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .sticky-nav {
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 0;
    width: auto;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 28px rgba(65, 98, 82, 0.12);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .sticky-nav-item {
    flex: 1;
    min-width: 0;
    min-height: 58px;
    padding: 8px 5px;
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 0;
    font-size: 12px;
    box-shadow: none;
  }

  .sticky-nav-item:hover {
    transform: none;
    box-shadow: none;
  }

  .sticky-nav-item:first-child {
    background: #fff;
  }

  .sticky-nav-item:last-child {
    border-right: none;
  }
}
