/* ============================================================
   マツリカクリーンサービス / index-new.css
   既存サイト #78BBE6 を踏襲、ヘッダー追従、フルスクリーンヒーロー
============================================================ */

:root {
  --brand:       #78BBE6;
  --brand-deep:  #4f9fd0;
  --brand-soft:  #9ACFF3;
  --brand-pale:  #d1eef0;
  --brand-bg:    #f0f9ff;
  --brand-bg-2:  #f7fcfe;

  --ink:    #2b4a6a;
  --ink-2:  #1a3553;
  --sub:    #6c8298;
  --line:   #d6e8f3;
  --line-2: #b9d6e8;

  --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;
}

/* ------------------------------------------------------------
   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: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  line-height: 1.85;
  letter-spacing: 0.02em;
}

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; }

/* ------------------------------------------------------------
   Header (追従, タブレット以下はハンバーガー)
------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--brand);
  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(26, 53, 83, 0.5);
  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: #fff;
  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(--brand);
  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 #e6eef5;
  border-radius: 10px;
  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: 12px;
}

/* ------------------------------------------------------------
   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: #fff;
}

@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;
}

/* 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(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.hero-dots button.is-active {
  background: #fff;
  width: 44px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.5) 68%, rgba(255,255,255,0) 90%);
  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: #222;
  padding-left: 18px;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.hero-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background: #222;
}

.hero-title {
  font-size: clamp(28px, 5.4vw, 60px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  color: #111;
}

.hero-lead {
  font-size: 15.5px;
  line-height: 2;
  margin-bottom: 36px;
  max-width: 560px;
  color: #333;
}

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

/* 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: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-line {
  background: var(--line-green);
  color: #fff;
}
.btn-line:hover { background: #05a544; 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.6);
  color: var(--ink-2);
  border-color: var(--ink-2);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: var(--ink-2);
  color: #fff;
  border-color: var(--ink-2);
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100vh - var(--header-h-sp));
    max-height: none;
  }
  .hero-overlay {
    background: rgba(255, 255, 255, 0.76);
  }
  .hero-content { padding: 110px 20px 90px; }
  .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-dots { bottom: 18px; }
  .hero-dots button { width: 20px; }
  .hero-dots button.is-active { width: 32px; }
}

/* ------------------------------------------------------------
   Content Sections
------------------------------------------------------------ */
.section {
  padding: 80px 0;
}
.section:nth-of-type(even) {
  background: var(--brand-bg-2);
}
.section-service {
  background:
    repeating-linear-gradient(
      45deg,
      #f7fcfe 0,
      #f7fcfe 12px,
      #eef8fd 12px,
      #eef8fd 24px
    );
}
.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-weight: 900;
  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: 48px;
  height: 3px;
  margin: 18px auto 0;
  background: var(--brand);
  border-radius: 3px;
}

.block-title {
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 900;
  color: var(--ink-2);
  margin: 54px 0 26px;
  padding-left: 18px;
  border-left: 5px solid var(--brand);
  line-height: 1.5;
}

.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 #e3eef5;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(26, 53, 83, 0.06);
}

.cause-card {
  overflow: hidden;
}

.cause-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef7fb;
}

.cause-card-image img,
.ba-figure img,
.hp-figure 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-weight: 900;
  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: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(26, 53, 83, 0.06);
}

.ba-figure img {
  aspect-ratio: 16 / 10;
}

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

.ba-label-after {
  background: rgba(6, 139, 94, 0.86);
}

.point-card {
  padding: 28px;
}

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

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

.section-heatpump {
  background:
    radial-gradient(circle at 12% 18%, rgba(120, 187, 230, 0.16) 0 120px, transparent 121px),
    linear-gradient(180deg, #ffffff 0%, #eef8fd 100%);
}

.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: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 32px rgba(26, 53, 83, 0.08);
}

.hp-figure img {
  aspect-ratio: 4 / 3;
}

.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 68%, rgba(154, 207, 243, 0.35) 68%);
}

.hp-callout {
  margin-top: 28px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand);
  border-radius: 8px;
}

.hp-callout-label {
  font-weight: 900;
  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(#d6e8f3 1px, transparent 1px),
    #ffffff;
  background-size: 22px 22px;
}

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

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

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

.price-main-amount {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--ink-2);
  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: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26, 53, 83, 0.05);
}

.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: #fbfdff;
}

.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: #f9fcfe;
  border-left: 5px solid var(--line-green);
}

.monitor-title {
  font-weight: 900;
  color: var(--ink-2);
  margin-bottom: 8px;
  font-size: 18px;
}

.monitor-text {
  color: var(--sub);
  line-height: 1.9;
}

.section-faq {
  background:
    repeating-linear-gradient(
      -45deg,
      #f7fcfe 0,
      #f7fcfe 14px,
      #edf8fd 14px,
      #edf8fd 28px
    );
}

.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-weight: 900;
  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: #d44747;
  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: 999px;
  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:
    linear-gradient(90deg, rgba(209, 238, 240, 0.45) 1px, transparent 1px),
    linear-gradient(180deg, rgba(209, 238, 240, 0.45) 1px, transparent 1px),
    #fbfdff;
  background-size: 28px 28px;
}

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

.area-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(26, 53, 83, 0.05);
}

.area-block-label {
  font-weight: 900;
  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: #f2f9fd;
  border: 1px solid #cfe8f7;
  border-radius: 4px;
  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-map {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 32px rgba(26, 53, 83, 0.08);
}

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

.section-cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
}

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

.cta-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.45;
  font-weight: 900;
  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(--ink-2);
  color: rgba(255, 255, 255, 0.82);
  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-nav-title {
  color: #fff;
  font-weight: 900;
  margin-bottom: 14px;
}

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

.footer-nav-group a:hover {
  color: #fff;
  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(255, 255, 255, 0.14);
  text-align: center;
}

.copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.sticky-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(26, 53, 83, 0.12);
  padding-bottom: env(safe-area-inset-bottom);
}

.sticky-nav-item {
  flex: 1;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 900;
  border-right: 1px solid var(--line);
}

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

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

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

@media (max-width: 900px) {
  .cause-grid,
  .point-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,
  .repair-block,
  .area-block {
    padding: 22px;
  }

  .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;
  }

  .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 {
    display: flex;
  }
}
