/*─────────────────────────
  カラー変数
─────────────────────────*/
:root {
  --primary: #2ab573;
  --secondary: #8ed081;
  --text: #333;
  --bg: #fff;
  --light: #f9f9f9;
  --content-max: 960px;
  --content-inline-gap: 32px;

  --shape-trust: #bfdcaf;
  --shape-light: #f5f9af;
  --shape-fresh: #bfddeb;
  --shape-calm: #d9c6e8;
  --shape-gentle: #f4c0ca;
}

/*─────────────────────────
  ベースリセット
─────────────────────────*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  font-family: "Yu Gothic", sans-serif;
  color: var(--text);
  line-height: 1.6;
  padding-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.container {
  width: min(calc(100% - var(--content-inline-gap)), var(--content-max));
  max-width: none;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/*─────────────────────────
  季節背景レイヤー方式
─────────────────────────*/
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 1;
  pointer-events: none;
}

body.season-spring::before { background-image: url("../img/season/spring.jpg"); }
body.season-summer::before { background-image: url("../img/season/summer.jpg"); }
body.season-autumn::before { background-image: url("../img/season/autumn.jpg"); }
body.season-winter::before { background-image: url("../img/season/winter.jpg"); }

/*─────────────────────────
  本文ブロックの背景
─────────────────────────*/
.site-header,
.site-footer {
  background: rgba(42, 181, 115, 0.95) !important;
}

main {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(2px);
  width: 100%;
  margin: 0 auto;
}

/*─────────────────────────
  ヘッダー & ナビ
─────────────────────────*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  color: #fff;
}

.site-header .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.rounded-img {
  border-radius: 13px;
}

.site-header .logo {
  display: flex;
  align-items: center;
}

.site-header .logo img {
  width: 40px;
  height: auto;
}

.site-header .logo .site-title {
  margin-left: 8px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}

.site-nav ul {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.site-nav li + li {
  margin-left: auto;
  margin-right: auto;
}

.site-nav a {
  color: #fff;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hamburger {
  display: none;
  position: relative;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  padding: 10px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  body {
    padding-top: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(280px, calc(100vw - 32px));
    padding: 8px;
    border: 1px solid rgba(42, 181, 115, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 44px rgba(25, 75, 53, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 0;
  }

  .site-nav li + li {
    margin: 0;
  }

  .site-nav a,
  .site-nav.open a {
    display: block;
    padding: 13px 16px;
    border-radius: 13px;
    color: var(--text);
    background: transparent;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--primary);
    background: rgba(42, 181, 115, 0.12);
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .hamburger:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.72);
    outline-offset: 2px;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: block;
    border: 0;
    background: rgba(23, 49, 38, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header .logo .site-title {
    font-size: 1rem;
  }
}

/*─────────────────────────
  ヒーローセクション
─────────────────────────*/
.hero {
  position: relative;
  min-height: 780px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}

.hero-container {
  position: relative;
  width: min(calc(100% - var(--content-inline-gap)), var(--content-max));
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto;
  background-image: url("../img/support.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

/*
  h1 と p を別々の帯にせず、hero-text 自体を1枚のカードにする。
  画像下部に配置し、人物の顔を隠しにくくする。
*/
.hero-text {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  z-index: 2;
  width: min(84%, 720px);
  box-sizing: border-box;
  padding: 20px 26px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(250, 255, 252, 0.819);
  box-shadow: 0 12px 30px rgba(35, 82, 61, 0.16);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-family: "M PLUS Rounded 1c", "Yu Gothic", sans-serif;
  color: #214f3d;
}

.hero-text h1 {
  position: static;
  width: auto;
  margin: 0;
  padding: 0;
  transform: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #27b258;
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.035em;
  text-shadow: none;
  white-space: normal;
}

.hero-text p {
  position: static;
  width: auto;
  margin: 12px 0 0;
  padding: 12px 0 0;
  transform: none;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(23, 102, 73, 0.18);
  border-radius: 0;
  box-shadow: none;
  color: #27b258;
  font-size: clamp(0.9rem, 2vw, 1.12rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.025em;
  text-shadow: none;
  white-space: normal;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 90px 0 66px;
  }

  .hero-container {
    width: min(calc(100% - var(--content-inline-gap)), var(--content-max));
    aspect-ratio: 1 / 1;
    background-position: center center;
    background-size: 100% auto;
  }

  .hero-text {
    bottom: 3.5%;
    width: calc(100% - 30px);
    padding: 16px 18px 15px;
    border-radius: 20px;
  }

  .hero-text h1 {
    font-size: clamp(1.35rem, 6vw, 1.9rem);
    line-height: 1.3;
  }

  .hero-text p {
    margin-top: 9px;
    padding-top: 9px;
    font-size: clamp(0.78rem, 3.1vw, 0.95rem);
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 62px;
  }

  .hero-container {
    width: min(calc(100% - var(--content-inline-gap)), var(--content-max));
  }

  .hero-text {
    bottom: 3%;
    width: calc(100% - 22px);
    padding: 14px 14px 13px;
    border-radius: 18px;
  }

  .hero-text h1 {
    font-size: clamp(1.2rem, 6.2vw, 1.65rem);
  }

  .hero-text p {
    font-size: clamp(0.72rem, 3.2vw, 0.88rem);
  }
}

/*─────────────────────────
  電話案内
─────────────────────────*/
.contact-band {
  padding: 18px 0 28px;
}

.contact-band .container {
  max-width: 820px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
}

.contact-band-label {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
}

.contact-band-number {
  margin: 0;
}

.contact-band-number a {
  display: inline-block;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
}

.contact-band-hours {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
}

.contact-band-hours span {
  display: block;
  font-size: 0.88rem;
  color: #777;
}

@media (max-width: 600px) {
  .contact-band {
    padding: 14px 0 22px;
  }

  .contact-band .container {
    border-radius: 18px;
    padding: 16px 14px;
  }

  .contact-band-number a {
    font-size: 1.7rem;
  }

  .contact-band-label,
  .contact-band-hours {
    font-size: 0.9rem;
  }
}

/*─────────────────────────
  利用シーン：5色がカードを形づくるスクロールショーケース
─────────────────────────*/
.scenes {
  padding: 10px 0 34px;
  overflow: clip;
}

.scenes .container {
  position: relative;
  max-width: none;
  padding: 34px 28px 70px;
  overflow: visible;
  border: 1px solid rgba(42, 181, 115, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(41, 95, 68, 0.08);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.scene-showcase {
  --scene-accent: #2ab573;
  --scene-accent-rgb: 42, 181, 115;
  --scene-accent-soft: rgba(42, 181, 115, 0.14);
  --scene-formation: 0;
  position: relative;
  height: clamp(1260px, 238vh, 1900px);
  touch-action: pan-y;
}

.scene-showcase-sticky {
  position: sticky;
  top: 76px;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 640px;
  height: calc(100svh - 96px);
}

.scene-showcase-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(350px, 0.9fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  width: 100%;
  padding: 12px 10px 32px;
}

.scene-showcase-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 470px;
}

.scene-visual-stack {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1 / 1;
  isolation: isolate;
}

.scene-visual-stack::before,
.scene-visual-stack::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  transition:
    border-color 0.6s ease,
    background 0.6s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.scene-visual-stack::before {
  inset: -20px;
  z-index: 0;
  border: 1px solid rgba(var(--scene-accent-rgb), 0.24);
  background: rgba(255, 255, 255, 0.34);
  transform: scale(calc(1 - var(--scene-formation) * 0.025));
}

.scene-visual-stack::after {
  inset: 9% -11% -8% 12%;
  z-index: -1;
  background: linear-gradient(135deg, var(--scene-accent-soft), rgba(255, 255, 255, 0.18));
  filter: blur(1px);
  transform: rotate(calc(-7deg + var(--scene-formation) * 8deg));
}

.scene-intro-visual,
.scene-photo-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.075) rotate(1.2deg);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.92s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.72s;
}

.scene-intro-visual.is-active,
.scene-photo-layer.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: scale(1) rotate(0deg);
  transition-delay: 0s;
}

.scene-photo-layer img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow:
    0 24px 56px rgba(29, 71, 50, 0.2),
    0 0 0 1px rgba(var(--scene-accent-rgb), 0.12);
  transform: scale(var(--scene-photo-zoom, 1));
  transition:
    transform 0.18s linear,
    box-shadow 0.6s ease;
}

.scene-intro-visual {
  display: grid;
  place-items: center;
  padding: 42px;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.96), rgba(251, 255, 252, 0.82) 56%, rgba(238, 250, 243, 0.72));
  box-shadow: 0 24px 56px rgba(29, 71, 50, 0.17);
  text-align: center;
}

.scene-intro-visual p {
  position: absolute;
  left: 50%;
  bottom: 17%;
  z-index: 4;
  width: 82%;
  margin: 0;
  transform: translateX(-50%);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #315b47;
}

.scene-intro-spectrum {
  position: relative;
  width: 72%;
  aspect-ratio: 1 / 1;
  margin-top: -12%;
  animation: sceneIntroBreath 7s ease-in-out infinite alternate;
}

.scene-intro-blob,
.scene-intro-ring,
.scene-intro-mark {
  position: absolute;
  left: 50%;
  top: 50%;
}

.scene-intro-blob {
  opacity: 0.92;
  mix-blend-mode: multiply;
  filter: saturate(0.95);
}

.scene-intro-blob-gentle {
  width: 47%;
  height: 42%;
  background: var(--shape-gentle);
  border-radius: 40% 51% 68% 37% / 35% 48% 61% 73%;
  transform: translate(-91%, -13%) rotate(-12deg);
}

.scene-intro-blob-calm {
  width: 44%;
  height: 38%;
  background: var(--shape-calm);
  border-radius: 59% 41% 50% 50% / 45% 39% 61% 55%;
  transform: translate(-65%, -92%) rotate(10deg);
}

.scene-intro-blob-fresh {
  width: 48%;
  height: 40%;
  background: var(--shape-fresh);
  border-radius: 43% 57% 58% 42% / 55% 43% 57% 45%;
  transform: translate(8%, -78%) rotate(-8deg);
}

.scene-intro-blob-trust {
  width: 43%;
  height: 45%;
  background: var(--shape-trust);
  border-radius: 50% 50% 42% 58% / 56% 40% 60% 44%;
  transform: translate(13%, -8%) rotate(9deg);
}

.scene-intro-blob-light {
  width: 42%;
  height: 38%;
  background: var(--shape-light);
  border-radius: 61% 39% 52% 48% / 44% 56% 44% 56%;
  transform: translate(-40%, 21%) rotate(-5deg);
}

.scene-intro-ring {
  width: 54%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(42, 181, 115, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.scene-intro-mark {
  z-index: 3;
  transform: translate(-50%, -50%);
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #248c5e;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.78);
}

@keyframes sceneIntroBreath {
  from { transform: rotate(-3deg) scale(0.98); }
  to { transform: rotate(4deg) scale(1.035); }
}

.scene-showcase-copy-wrap {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 430px;
  isolation: isolate;
}

.scene-color-orbit {
  position: absolute;
  inset: -80px -88px;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.scene-orbit-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0.72;
  filter: saturate(0.92);
  will-change: transform, opacity, filter;
  transition:
    opacity 0.48s ease,
    filter 0.48s ease;
}

.scene-orbit-shape.is-scene-accent {
  opacity: 0.96;
  filter: saturate(1.08) drop-shadow(0 12px 20px rgba(var(--scene-accent-rgb), 0.12));
}

.scene-showcase[data-active-scene="0"] .scene-orbit-shape {
  opacity: 0.9;
  filter: saturate(1);
}

.scene-orbit-gentle {
  width: 170px;
  height: 180px;
  background: var(--shape-gentle);
  border-radius: 40% 51% 68% 37% / 35% 48% 61% 73%;
}

.scene-orbit-calm {
  width: 205px;
  height: 145px;
  background: var(--shape-calm);
  border-radius: 59% 41% 50% 50% / 45% 39% 61% 55%;
}

.scene-orbit-fresh {
  width: 160px;
  height: 138px;
  background: var(--shape-fresh);
  border-radius: 43% 57% 58% 42% / 55% 43% 57% 45%;
}

.scene-orbit-trust {
  width: 116px;
  height: 116px;
  background: var(--shape-trust);
  border-radius: 50% 50% 42% 58% / 56% 40% 60% 44%;
}

.scene-orbit-light {
  width: 138px;
  height: 116px;
  background: var(--shape-light);
  border-radius: 61% 39% 52% 48% / 44% 56% 44% 56%;
}

.scene-showcase-card {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  min-height: 326px;
  margin: 0 auto;
  padding: 42px 36px 24px;
  overflow: hidden;
  border: 1px solid rgba(var(--scene-accent-rgb), calc(0.16 + var(--scene-formation) * 0.22));
  border-radius: 34px 24px 38px 28px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.99), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), var(--scene-accent-soft));
  box-shadow:
    0 calc(24px - var(--scene-formation) * 5px) calc(54px - var(--scene-formation) * 9px) rgba(39, 89, 62, 0.16),
    0 0 0 calc(var(--scene-formation) * 6px) rgba(var(--scene-accent-rgb), calc(var(--scene-formation) * 0.055));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: scale(calc(1 - var(--scene-formation) * 0.018));
  transition:
    background 0.58s ease,
    border-color 0.58s ease,
    box-shadow 0.25s linear;
}

.scene-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg,
    var(--shape-gentle) 0 20%,
    var(--shape-calm) 20% 40%,
    var(--shape-fresh) 40% 60%,
    var(--shape-trust) 60% 80%,
    var(--shape-light) 80% 100%);
  opacity: calc(0.6 + var(--scene-formation) * 0.4);
}

.scene-showcase-card::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -68px;
  width: 190px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--scene-accent-rgb), 0.16), transparent 68%);
  transform: scale(calc(0.9 + var(--scene-formation) * 0.22));
  pointer-events: none;
}

.scene-card-palette {
  position: absolute;
  top: 19px;
  right: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.scene-card-palette span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  opacity: 0.42;
  transition:
    width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.42s ease,
    transform 0.42s ease;
}

.scene-card-palette span:nth-child(1) { background: var(--shape-gentle); }
.scene-card-palette span:nth-child(2) { background: var(--shape-calm); }
.scene-card-palette span:nth-child(3) { background: var(--shape-fresh); }
.scene-card-palette span:nth-child(4) { background: var(--shape-trust); }
.scene-card-palette span:nth-child(5) { background: var(--shape-light); }

.scene-card-palette span.is-scene-accent {
  width: 26px;
  opacity: 1;
  transform: translateY(-1px);
}

.scene-showcase[data-active-scene="0"] .scene-card-palette span {
  width: 16px;
  opacity: 0.9;
}

.scene-showcase-panels {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 188px;
}

.scene-showcase-panel {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0) scale(0.985);
  transition:
    opacity 0.14s ease,
    transform 0.2s ease,
    visibility 0s linear 0.2s;
}

.scene-showcase-panel.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition:
    opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1) 0.17s,
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1) 0.17s,
    visibility 0s linear 0.17s;
}

.scene-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--scene-accent);
  transition: color 0.5s ease;
}

.scene-number::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
}

.scene-showcase-panel h2,
.scene-showcase-panel h3 {
  display: block;
  margin: 0 0 12px;
  padding: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.78rem);
  line-height: 1.45;
  color: #263d32;
}

.scene-showcase-panel-intro h2 {
  font-size: clamp(1.72rem, 3vw, 2.35rem);
  letter-spacing: 0.035em;
  color: #245b42;
}

.scene-showcase-panel p {
  font-size: 1rem;
  line-height: 1.9;
  color: #4f5e56;
}

.scene-scroll-guide {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(var(--scene-accent-rgb), 0.16);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  color: #668074;
  transition: border-color 0.5s ease;
}

.scene-scroll-guide i {
  position: relative;
  display: block;
  width: 42px;
  height: 1px;
  background: rgba(var(--scene-accent-rgb), 0.34);
}

.scene-scroll-guide i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--scene-accent);
  border-bottom: 1px solid var(--scene-accent);
  transform: rotate(45deg);
  animation: sceneGuideMove 1.8s ease-in-out infinite;
}

@keyframes sceneGuideMove {
  0%, 100% { transform: translateY(-2px) rotate(45deg); }
  50% { transform: translateY(4px) rotate(45deg); }
}

.scene-showcase-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.scene-showcase-counter {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: #6c7c73;
}

.scene-showcase-counter strong {
  font-size: 1.22rem;
  line-height: 1;
  color: var(--scene-accent);
  transition: color 0.5s ease;
}

.scene-showcase-counter span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.scene-showcase-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.scene-showcase-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--scene-accent-rgb), 0.22);
  cursor: pointer;
  transition:
    width 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.scene-showcase-dots button:hover,
.scene-showcase-dots button:focus-visible {
  transform: scale(1.16);
  background: rgba(var(--scene-accent-rgb), 0.52);
}

.scene-showcase-dots button:focus-visible {
  outline: 2px solid rgba(var(--scene-accent-rgb), 0.35);
  outline-offset: 4px;
}

.scene-showcase-dots button.is-active {
  width: 28px;
  background: var(--scene-accent);
}

.scene-showcase-progress {
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: min(70%, 560px);
  transform: translateX(-50%);
}

.scene-showcase-progress > span {
  display: block;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(42, 181, 115, 0.12);
}

.scene-showcase-progress i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--shape-gentle), var(--shape-calm), var(--shape-fresh), var(--shape-trust), var(--shape-light));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* モバイル版：料金シミュレーションの関連項目を2列で見せる調整 */
#distanceField,
#timeField {
  grid-column: 1 / -1;
}

.estimate-group[aria-labelledby="estimate-care-title"] .estimate-grid > .estimate-field:first-child {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .scenes .container {
    padding: 30px 20px 64px;
  }

  .scene-showcase {
    height: clamp(1220px, 225svh, 1640px);
  }

  .scene-showcase-sticky {
    top: 70px;
    min-height: 620px;
    height: calc(100svh - 82px);
  }

  .scene-showcase-stage {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 6px 2px 28px;
  }

  .scene-showcase-visual {
    min-height: 252px;
  }

  .scene-visual-stack {
    width: min(68vw, 300px);
  }

  .scene-intro-visual {
    padding: 32px;
  }

  .scene-intro-visual p {
    bottom: 14%;
    font-size: 0.95rem;
  }

  .scene-showcase-copy-wrap {
    min-height: 326px;
  }

  .scene-color-orbit {
    inset: -48px -20px;
  }

  .scene-orbit-gentle {
    width: 112px;
    height: 118px;
  }

  .scene-orbit-calm {
    width: 132px;
    height: 96px;
  }

  .scene-orbit-fresh {
    width: 108px;
    height: 92px;
  }

  .scene-orbit-trust {
    width: 78px;
    height: 78px;
  }

  .scene-orbit-light {
    width: 94px;
    height: 80px;
  }

  .scene-showcase-card {
    width: min(100%, 520px);
    min-height: 292px;
    padding: 38px 26px 20px;
    border-radius: 28px 22px 30px 24px;
  }

  .scene-showcase-panels {
    min-height: 164px;
  }
}

@media (max-width: 640px) {
  .scenes {
    padding-top: 6px;
  }

  .scenes .container {
    padding: 20px 14px 52px;
    border-radius: 22px;
  }

  .scene-showcase {
    height: clamp(1140px, 212svh, 1440px);
  }

  .scene-showcase-sticky {
    top: 62px;
    min-height: 570px;
    height: calc(100svh - 68px);
  }

  .scene-showcase-stage {
    gap: 0;
    padding-top: 0;
  }

  .scene-showcase-visual {
    min-height: 218px;
  }

  .scene-visual-stack {
    width: min(62vw, 235px);
  }

  .scene-visual-stack::before {
    inset: -13px;
  }

  .scene-intro-visual,
  .scene-photo-layer img {
    border-width: 6px;
    box-shadow: 0 18px 38px rgba(29, 71, 50, 0.18);
  }

  .scene-intro-visual {
    padding: 24px;
  }

  .scene-intro-spectrum {
    width: 76%;
    margin-top: -15%;
  }

  .scene-intro-mark {
    font-size: 1.45rem;
  }

  .scene-intro-visual p {
    bottom: 12%;
    width: 88%;
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .scene-showcase-copy-wrap {
    min-height: 316px;
  }

  .scene-color-orbit {
    inset: -32px -8px;
  }

  .scene-showcase-card {
    min-height: 284px;
    padding: 37px 21px 18px;
  }

  .scene-card-palette {
    top: 17px;
    right: 19px;
    gap: 5px;
  }

  .scene-card-palette span {
    width: 7px;
    height: 7px;
  }

  .scene-card-palette span.is-scene-accent {
    width: 22px;
  }

  .scene-showcase[data-active-scene="0"] .scene-card-palette span {
    width: 13px;
  }

  .scene-showcase-panels {
    min-height: 158px;
  }

  .scene-showcase-panel h2,
  .scene-showcase-panel h3 {
    margin-bottom: 9px;
    font-size: 1.16rem;
  }

  .scene-showcase-panel-intro h2 {
    font-size: 1.55rem;
  }

  .scene-showcase-panel p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .scene-scroll-guide {
    margin-top: 13px;
    padding-top: 12px;
    font-size: 0.66rem;
  }

  .scene-scroll-guide span {
    max-width: 245px;
  }

  .scene-scroll-guide i {
    width: 28px;
  }

  .scene-showcase-footer {
    margin-top: 12px;
  }

  .scene-showcase-progress {
    bottom: 12px;
    width: 78%;
  }

  .estimate-grid,
  .estimate-choice-row,
  .estimate-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .estimate-fieldset legend,
  .estimate-field > span {
    font-size: 0.84rem;
  }

  .estimate-choice span,
  .estimate-check-card span {
    min-height: 46px;
    padding: 9px 8px;
    border-radius: 14px;
    font-size: 0.9rem;
  }

  .estimate-field input,
  .estimate-field select {
    min-height: 48px;
    padding: 10px 10px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .estimate-input-unit {
    gap: 6px;
  }

  .estimate-input-unit em {
    min-width: auto;
    font-size: 0.82rem;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .scene-showcase {
    height: 1200px;
  }

  .scene-showcase-sticky {
    min-height: 550px;
  }

  .scene-visual-stack {
    width: 205px;
  }

  .scene-showcase-copy-wrap {
    min-height: 304px;
  }

  .scene-showcase-card {
    min-height: 276px;
    padding-inline: 18px;
  }

  .scene-scroll-guide span {
    max-width: 205px;
  }
}

/*─────────────────────────
  ご利用の流れ
─────────────────────────*/
.flow {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

/* セクション全体の白い角丸枠 */
.flow .container {
  position: relative;
  max-width: none;
  padding: 52px 46px 58px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(3px);
  border-radius: 32px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* 背景のやわらかい装飾 */
.flow .container::before,
.flow .container::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

.flow .container::before {
  width: 190px;
  height: 170px;
  top: -75px;
  right: -55px;
  background: var(--shape-fresh);
  border-radius: 54% 46% 38% 62% / 45% 58% 42% 55%;
  transform: rotate(18deg);
}

.flow .container::after {
  width: 170px;
  height: 150px;
  bottom: -65px;
  left: -55px;
  background: var(--shape-gentle);
  border-radius: 43% 57% 62% 38% / 56% 40% 60% 44%;
  transform: rotate(-12deg);
}

/* 見出し */
.flow h2 {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 46px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.5;
  color: #263d32;
}

.flow h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin: 14px auto 0;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
  );
  border-radius: 999px;
}

/* 流れ全体 */
.flow-list {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  counter-reset: flow-step;
}


/* 各ステップ */
.flow-list li {
  position: relative;
  min-height: 94px;
  margin-bottom: 24px;
  padding: 22px 26px 22px 92px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(42, 181, 115, 0.13);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  counter-increment: flow-step;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}



/* 番号をつなぐ縦線 */
.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 72px;
  left: 35px;
  width: 3px;
  height: calc(100% + 24px);
  background: linear-gradient(
    to bottom,
    rgba(42, 181, 115, 0.55),
    rgba(142, 208, 129, 0.18)
  );
  border-radius: 999px;
  z-index: -1;
}

/* 丸いステップ番号 */
.flow-list li::before {
  content: counter(flow-step, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 13px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--step-color);
  border: 5px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow:
    0 6px 18px
    color-mix(in srgb, var(--step-color) 35%, transparent);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 2;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


/*─────────────────────────
  各ステップのアクセントカラー
─────────────────────────*/
.flow-list li {
  --step-color: var(--primary);
}

.flow-list li:nth-child(2) {
  --step-color: #75b987;
}

.flow-list li:nth-child(3) {
  --step-color: #7daec4;
}

.flow-list li:nth-child(4) {
  --step-color: #a58abe;
}

.flow-list li:nth-child(5) {
  --step-color: #db93a2;
}

.flow-list li:nth-child(6) {
  --step-color: #b5b754;
}


/* ステップのタイトル */
.flow-list li strong {
  display: block;
  margin-bottom: 7px;
  color: #294b39;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s ease;
}



/* 説明文 */
.flow-list li,
.flow-list li p {
  color: #555;
  font-size: 0.96rem;
  line-height: 1.85;
}


/*─────────────────────────
  パソコンでのホバー演出
─────────────────────────*/
@media (hover: hover) {
  .flow-list li:hover {
    background: #fff;

    /* 番号の円と同系色の枠線 */
    border-color: var(--step-color);

    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.1),
      0 0 0 4px
      color-mix(in srgb, var(--step-color) 12%, transparent);
  }

  .flow-list li:hover::before {
    transform: scale(1.1) rotate(-4deg);

    box-shadow:
      0 8px 20px
      color-mix(in srgb, var(--step-color) 40%, transparent),
      0 0 0 5px
      color-mix(in srgb, var(--step-color) 14%, transparent);
  }

  /* タイトルも番号の円と同じ色 */
  .flow-list li:hover strong {
    color: var(--step-color);
  }
}

/* タブレット・スマートフォン */
@media (max-width: 768px) {
  .flow {
    padding: 50px 0;
  }

  .flow .container {
    padding: 40px 22px 46px;
    border-radius: 25px;
  }

  .flow h2 {
    margin-bottom: 36px;
  }

  .flow-list li {
    min-height: 86px;
    padding: 20px 18px 20px 78px;
    border-radius: 19px;
  }

  .flow-list li::before {
    top: 19px;
    left: 12px;
    width: 44px;
    height: 44px;
  }

  .flow-list li:not(:last-child)::after {
    top: 65px;
    left: 33px;
  }
}

@media (max-width: 480px) {
  .flow {
    padding: 38px 5px;
  }

  .flow .container {
    padding: 34px 13px 38px;
    border-radius: 22px;
  }

  .flow h2 {
    margin-bottom: 30px;
  }

  .flow-list li {
    min-height: 80px;
    margin-bottom: 18px;
    padding: 18px 14px 18px 67px;
    border-radius: 17px;
  }

  .flow-list li::before {
    top: 17px;
    left: 9px;
    width: 40px;
    height: 40px;
    border-width: 4px;
    font-size: 0.78rem;
  }

  .flow-list li:not(:last-child)::after {
    top: 58px;
    left: 28px;
    height: calc(100% + 18px);
  }

  .flow-list li strong {
    font-size: 1rem;
  }

  .flow-list li,
  .flow-list li p {
    font-size: 0.9rem;
    line-height: 1.75;
  }
}


/* 動きを控えたい環境向け */
@media (prefers-reduced-motion: reduce) {
  .flow-list li,
  .flow-list li::before,
  .flow-list li strong {
    transition: none;
  }

  .flow-list li:hover::before {
    transform: none;
  }
}

/*─────────────────────────
  CTA
─────────────────────────*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 20px;
  border: 1px solid rgba(42, 181, 115, 0.18);
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--secondary);
}

.cta {
  padding: 34px 0 46px;
}

.cta .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin: 0;
  padding: 12px 18px;
  border: 1px solid rgba(42, 181, 115, 0.18);
  border-radius: 17px;
  background: linear-gradient(135deg, var(--primary), #249d65);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 10px 24px rgba(42, 181, 115, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.cta .btn:hover,
.cta .btn:focus-visible {
  background: linear-gradient(135deg, #31be7c, var(--primary));
  box-shadow: 0 14px 30px rgba(42, 181, 115, 0.24);
  transform: translateY(-2px);
}

.cta .btn:focus-visible {
  outline: 3px solid rgba(42, 181, 115, 0.24);
  outline-offset: 3px;
}

.btn-phone i {
  margin-right: 6px;
}

@media (prefers-reduced-motion: reduce) {
  .hamburger-line,
  .site-nav,
  .nav-backdrop,
  .cta .btn {
    transition: none;
  }

  .cta .btn:hover,
  .cta .btn:focus-visible {
    transform: none;
  }
}

@media (max-width: 640px) {
  .cta {
    padding: 26px 0 38px;
  }

  .cta .container {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .cta .btn {
    min-height: 54px;
    border-radius: 16px;
  }
}

/*─────────────────────────
  テーブル
─────────────────────────*/
.price-table,
.faq-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.price-table th,
.price-table td,
.faq-table th,
.faq-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.price-table th,
.faq-table th {
  background: var(--light);
}


/*─────────────────────────
  料金ページ
─────────────────────────*/
.price-page {
  padding: 110px 0 70px;
}

.price-page-container {
  max-width: 1040px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 32px;
  padding: 48px 34px 60px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
}

.price-page-head {
  text-align: center;
  margin-bottom: 54px;
}

.price-page-label {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.price-page-head h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.price-page-head p {
  color: #555;
  line-height: 1.9;
}

.price-section {
  margin-top: 64px;
}

.price-section:first-of-type {
  margin-top: 0;
}

.price-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.price-section-number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.price-section-head h2 {
  font-size: clamp(1.35rem, 2.7vw, 1.8rem);
  margin-bottom: 2px;
}

.price-section-head p {
  color: #666;
  font-size: 0.92rem;
}

/* 認可運賃表 */
.price-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

.price-guide-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.95);
}

.price-guide-table th,
.price-guide-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e8eee9;
  text-align: left;
  vertical-align: top;
}

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

.price-guide-table th {
  width: 30%;
  min-width: 170px;
  background: rgba(42, 181, 115, 0.1);
  color: #264b39;
}

.price-guide-table td strong {
  display: block;
  color: #222;
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.price-guide-table td span {
  display: block;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* 介助サービス */
.care-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.care-price-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(42, 181, 115, 0.16);
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: 0 9px 28px rgba(0, 0, 0, 0.06);
}

.care-price-card-wide {
  grid-column: 1 / -1;
}

.care-price-name {
  color: #355c48;
  font-size: 1.05rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.care-price-value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.care-price-value strong {
  color: var(--primary);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  line-height: 1.2;
}

.care-price-value span {
  color: #666;
  font-size: 0.9rem;
}

.care-price-extension {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(142, 208, 129, 0.18);
  color: #365c47;
  font-weight: bold;
  font-size: 0.9rem;
}

.care-price-description {
  color: #444;
  line-height: 1.8;
  margin-bottom: 10px;
}

.care-price-note {
  color: #687069;
  font-size: 0.88rem;
  line-height: 1.7;
}

.care-price-note-emphasis {
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(245, 249, 175, 0.42);
  border-radius: 12px;
  color: #4d5433;
  font-weight: bold;
}

/* 福祉機器 */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.equipment-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 9px 28px rgba(0, 0, 0, 0.06);
}

.equipment-name {
  font-weight: bold;
  color: #355c48;
  margin-bottom: 10px;
}

.equipment-price {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.equipment-price-free {
  color: #e17c95;
}

.equipment-card > p:last-child {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* 注意事項 */
.price-notice-list {
  display: grid;
  gap: 16px;
}

.price-notice {
  background: rgba(255, 255, 255, 0.94);
  border-left: 5px solid var(--shape-trust);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.05);
}

.price-notice h3 {
  font-size: 1rem;
  color: #355c48;
  margin-bottom: 6px;
}

.price-notice p {
  color: #555;
  line-height: 1.8;
}

.price-notice-important {
  border-left-color: #e7b95c;
  background: rgba(255, 249, 225, 0.95);
}

.price-notice-important h3 {
  color: #785f28;
}

.price-summary-note {
  margin-top: 56px;
  padding: 28px 30px;
  background: rgba(191, 221, 235, 0.26);
  border-radius: 22px;
}

.price-summary-note h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.price-summary-note ul {
  list-style: disc;
  padding-left: 1.4em;
}

.price-summary-note li {
  margin-bottom: 8px;
  color: #4d5659;
  line-height: 1.8;
}

/* 電話案内 */
.price-contact {
  margin-top: 48px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(42, 181, 115, 0.13),
    rgba(142, 208, 129, 0.18)
  );
  border-radius: 26px;
  padding: 28px 20px;
}

.price-contact-label {
  color: #506258;
  margin-bottom: 6px;
}

.price-contact-number a {
  display: inline-block;
  color: var(--primary);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 0.03em;
}

.price-contact-hours {
  margin-top: 4px;
  color: #667169;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .price-page {
    padding: 90px 0 45px;
  }

  .price-page-container {
    width: 94%;
    padding: 36px 18px 44px;
    border-radius: 24px;
  }

  .price-section {
    margin-top: 48px;
  }

  .care-price-grid,
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .care-price-card-wide {
    grid-column: auto;
  }

  .price-guide-table th,
  .price-guide-table td {
    padding: 15px 14px;
  }

  .price-guide-table th {
    min-width: 125px;
    width: 38%;
  }
}

@media (max-width: 480px) {
  .price-page-head {
    margin-bottom: 42px;
  }

  .price-section-head {
    align-items: flex-start;
    gap: 12px;
  }

  .price-section-number {
    width: 44px;
    height: 44px;
  }

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

  .price-guide-table th {
    min-width: 0;
    padding-bottom: 8px;
    border-bottom: none;
  }

  .price-guide-table td {
    padding-top: 8px;
  }

  .care-price-card,
  .equipment-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .price-summary-note {
    padding: 22px 18px;
  }
}


/*─────────────────────────
  対応エリアページ
─────────────────────────*/
.service-area-page {
  padding: 110px 0 70px;
}

.service-area-container {
  max-width: 1060px;
  padding: 50px 36px 62px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(3px);
  border-radius: 32px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
}

/* ページ見出し */
.service-area-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-area-label {
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.service-area-head h1 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: #263d32;
}

.service-area-lead {
  color: #555;
  font-size: 1rem;
  line-height: 1.9;
}

/* ご利用条件 */
.service-area-rule {
  position: relative;
  max-width: 850px;
  margin: 0 auto 66px;
  padding: 30px 34px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      rgba(42, 181, 115, 0.13),
      rgba(191, 221, 235, 0.24)
    );
  border: 1px solid rgba(42, 181, 115, 0.16);
  border-radius: 28px;
}

.service-area-rule::before,
.service-area-rule::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.service-area-rule::before {
  width: 120px;
  height: 120px;
  top: -60px;
  left: -35px;
  background: rgba(244, 192, 202, 0.35);
}

.service-area-rule::after {
  width: 145px;
  height: 145px;
  right: -55px;
  bottom: -85px;
  background: rgba(245, 249, 175, 0.48);
}

.service-area-rule-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 14px;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.service-area-rule h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: #294b39;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  line-height: 1.65;
}

.service-area-rule > p:last-child {
  position: relative;
  z-index: 1;
  color: #55625b;
  line-height: 1.85;
}

/* 共通セクション */
.service-area-map-section,
.service-area-examples,
.service-area-faq {
  margin-top: 70px;
}

.service-area-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 27px;
}

.service-area-section-number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 700;
}

.service-area-section-head h2 {
  margin-bottom: 3px;
  color: #263d32;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
}

.service-area-section-head p {
  color: #687069;
  font-size: 0.92rem;
}

/* 地図レイアウト */
.service-area-map-layout {
  display: grid;
  grid-template-columns: minmax(380px, 1.25fr) minmax(260px, 0.75fr);
  align-items: center;
  gap: 38px;
}

.service-area-map-card {
  position: relative;
  padding: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(42, 181, 115, 0.12);
  border-radius: 28px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

/* 2枚の画像を完全に重ねる */
.service-area-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.service-area-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-area-map-base {
  position: relative;
  z-index: 1;
}

.service-area-map-active {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  filter:
    drop-shadow(0 0 0 rgba(42, 181, 115, 0))
    drop-shadow(0 0 0 rgba(42, 181, 115, 0));
}

/*─────────────────────────
  対応エリア地図の地域名
─────────────────────────*/
.service-area-map-label {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6em;
  padding: 3px 7px;

  color: #263d32;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(42, 181, 115, 0.38);
  border-radius: 999px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);

  font-size: clamp(0.52rem, 1vw, 0.78rem);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
}

/* 姫路市 */
.service-area-map-label-himeji {
  left: 40.3%;
  top: 50.3%;
}

/* 稲美町 */
.service-area-map-label-inami {
  left: 60%;
  top: 60.6%;
}

/* 加古川市 */
.service-area-map-label-kakogawa {
  left: 50%;
  top: 53.2%;
}

/* 高砂市 */
.service-area-map-label-takasago {
  left: 42.8%;
  top: 61%;
}

/* 播磨町 */
.service-area-map-label-harima {
  left: 52.2%;
  top: 66%;
}

@media (max-width: 600px) {
  .service-area-map-label {
    min-width: 3.2em;
    padding: 2px 4px;
    border-width: 1px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.52rem;
  }
}
/* 対応エリアがやわらかく浮かび上がる */
@media (hover: hover) and (pointer: fine) {
  .service-area-map-card:hover .service-area-map {
    transform: scale(1.018);
  }

  .service-area-map-card:hover .service-area-map-active {
    animation: serviceAreaGlow 1s
      cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@keyframes serviceAreaGlow {
  0% {
    opacity: 0.28;
    filter:
      drop-shadow(0 0 0 rgba(42, 181, 115, 0))
      drop-shadow(0 0 0 rgba(42, 181, 115, 0));
  }

  55% {
    opacity: 1;
    filter:
      drop-shadow(0 0 9px rgba(42, 181, 115, 0.65))
      drop-shadow(0 0 22px rgba(42, 181, 115, 0.32));
  }

  100% {
    opacity: 1;
    filter:
      drop-shadow(0 0 5px rgba(42, 181, 115, 0.35))
      drop-shadow(0 0 13px rgba(42, 181, 115, 0.18));
  }
}

.service-area-map-note {
  margin-top: 10px;
  color: #777;
  font-size: 0.8rem;
  text-align: center;
}

/* 市町一覧 */
.service-area-city-panel {
  padding: 28px 25px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 25px;
}

.service-area-city-label {
  margin-bottom: 17px;
  color: #355c48;
  font-weight: 700;
}

.service-area-city-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-area-city-list li {
  display: grid;
  min-height: 53px;
  place-items: center;
  padding: 10px;
  color: #34443b;
  background: var(--shape-trust);
  border-radius: 16px;
  font-weight: 700;
  text-align: center;
}

.service-area-city-list li:nth-child(2) {
  background: var(--shape-fresh);
}

.service-area-city-list li:nth-child(3) {
  background: var(--shape-gentle);
}

.service-area-city-list li:nth-child(4) {
  background: var(--shape-calm);
}

.service-area-city-list li:nth-child(5) {
  grid-column: 1 / -1;
  background: var(--shape-light);
}

.service-area-point {
  margin-top: 23px;
  padding: 17px;
  background: rgba(42, 181, 115, 0.08);
  border-radius: 17px;
}

.service-area-point-icon {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-area-point p {
  color: #526159;
  font-size: 0.91rem;
  line-height: 1.75;
}

/* 利用例 */
.service-area-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
}

.service-area-example-card {
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(42, 181, 115, 0.13);
  border-radius: 22px;
  box-shadow: 0 9px 27px rgba(0, 0, 0, 0.06);
}

.service-area-example-type {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 11px;
  color: #37624d;
  background: rgba(142, 208, 129, 0.2);
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 700;
}

.service-area-route {
  display: grid;
  gap: 9px;
  margin-bottom: 14px;
}

.service-area-route strong {
  color: #294b39;
  line-height: 1.55;
}

.service-area-route span {
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 700;
}

.service-area-example-card > p:last-child {
  color: #626b66;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* 関連FAQ */
.service-area-faq-list {
  display: grid;
  gap: 13px;
}

.service-area-faq-list details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(42, 181, 115, 0.13);
  border-radius: 18px;
}

.service-area-faq-list summary {
  position: relative;
  padding: 19px 52px 19px 21px;
  color: #314c3e;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.service-area-faq-list summary::-webkit-details-marker {
  display: none;
}

.service-area-faq-list summary::marker {
  display: none;
}

.service-area-faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 18px;
  height: 18px;
  background:
    linear-gradient(var(--primary), var(--primary)) center / 16px 2px no-repeat,
    linear-gradient(var(--primary), var(--primary)) center / 2px 16px no-repeat;
  transform: translateY(-50%);
  transition: transform 0.25s ease, background 0.25s ease;
}

.service-area-faq-list details[open] summary::after {
  background: linear-gradient(var(--primary), var(--primary)) center / 16px 2px no-repeat;
}

.service-area-faq-list details > div {
  padding: 0 21px 19px;
}

.service-area-faq-list details > div p {
  padding-top: 15px;
  color: #5c6660;
  border-top: 1px solid #e8eee9;
  line-height: 1.8;
}

.service-area-faq-link {
  margin-top: 22px;
  text-align: center;
}

/* 電話案内 */
.service-area-contact {
  margin-top: 58px;
  padding: 30px 20px;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      rgba(42, 181, 115, 0.13),
      rgba(142, 208, 129, 0.2)
    );
  border-radius: 27px;
}

.service-area-contact-label {
  margin-bottom: 7px;
  color: #526159;
}

.service-area-contact-number a {
  display: inline-block;
  color: var(--primary);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.service-area-contact-hours {
  margin-top: 4px;
  color: #67726c;
  font-size: 0.9rem;
}

/* タブレット */
@media (max-width: 850px) {
  .service-area-map-layout {
    grid-template-columns: 1fr;
  }

  .service-area-map-card {
    max-width: 650px;
    margin: 0 auto;
  }

  .service-area-city-panel {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
  }

  .service-area-example-grid {
    grid-template-columns: 1fr;
  }
}

/* スマートフォン */
@media (max-width: 600px) {
  .service-area-page {
    padding: 90px 0 45px;
  }

  .service-area-container {
    width: 94%;
    padding: 36px 15px 44px;
    border-radius: 24px;
  }

  .service-area-head {
    margin-bottom: 32px;
  }

  .service-area-rule {
    margin-bottom: 50px;
    padding: 25px 18px;
    border-radius: 22px;
  }

  .service-area-rule h2 br {
    display: none;
  }

  .service-area-map-section,
  .service-area-examples,
  .service-area-faq {
    margin-top: 52px;
  }

  .service-area-section-head {
    align-items: flex-start;
    gap: 12px;
  }

  .service-area-section-number {
    width: 44px;
    height: 44px;
  }

  .service-area-map-card {
    padding: 12px;
    border-radius: 20px;
  }

  .service-area-city-panel {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .service-area-city-list {
    gap: 9px;
  }

  .service-area-city-list li {
    min-height: 48px;
    font-size: 0.92rem;
    border-radius: 14px;
  }

  .service-area-example-card {
    padding: 21px 17px;
    border-radius: 19px;
  }

  .service-area-contact {
    margin-top: 46px;
    padding: 25px 14px;
    border-radius: 22px;
  }
}

/* 動きを控えたい環境向け */
@media (prefers-reduced-motion: reduce) {
  .service-area-map,
  .service-area-map-active {
    transition: none;
    animation: none;
  }

  .service-area-map-card:hover .service-area-map {
    transform: none;
  }
}

/*─────────────────────────
  会社概要
─────────────────────────*/
.company-info dt {
  font-weight: bold;
  margin-top: 12px;
}

.company-info dd {
  margin-left: 12px;
  margin-bottom: 8px;
}

/*─────────────────────────
  汎用簡易セクション
─────────────────────────*/
.simple-page {
  padding: 120px 0 60px;
}

.simple-page .container {
  max-width: 960px;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 24px;
}

.simple-page h1,
.simple-page h2 {
  text-align: center;
  margin-bottom: 18px;
}

.simple-note {
  text-align: center;
  color: #555;
}


/*─────────────────────────
  よくある質問ページ
─────────────────────────*/
.faq-page {
  padding: 110px 0 72px;
}

.faq-page-container {
  max-width: 1060px;
  padding: 50px 36px 64px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
  border-radius: 32px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
}

/*─────────────────────────
  ページ見出し
─────────────────────────*/
.faq-page-head {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.faq-page-label {
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.faq-page-head h1 {
  margin-bottom: 16px;
  color: #263d32;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.4;
}

.faq-page-lead {
  margin-bottom: 18px;
  color: #505a54;
  font-size: 1rem;
  line-height: 1.9;
}

.faq-page-note {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 24px;
  overflow: hidden;
  color: #526159;
  background:
    linear-gradient(
      135deg,
      rgba(42, 181, 115, 0.11),
      rgba(191, 221, 235, 0.22)
    );
  border: 1px solid rgba(42, 181, 115, 0.14);
  border-radius: 22px;
  line-height: 1.8;
}

.faq-page-note::before,
.faq-page-note::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.faq-page-note::before {
  width: 90px;
  height: 90px;
  top: -48px;
  left: -35px;
  background: rgba(244, 192, 202, 0.28);
}

.faq-page-note::after {
  width: 105px;
  height: 105px;
  right: -46px;
  bottom: -62px;
  background: rgba(245, 249, 175, 0.38);
}

.faq-page-note p {
  position: relative;
  z-index: 1;
}

.faq-page-note p + p {
  margin-top: 7px;
}

/*─────────────────────────
  カテゴリーナビゲーション
─────────────────────────*/
.faq-category-nav {
  position: sticky;
  top: 60px;
  z-index: 20;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  max-width: 900px;
  margin: 0 auto 66px;
  padding: 14px 18px;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(42, 181, 115, 0.14);
  border-radius: 22px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.faq-category-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 15px;
  color: #365344;
  background: rgba(42, 181, 115, 0.09);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.4;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

@media (hover: hover) {
  .faq-category-nav a:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
  }
}

.faq-category-nav a:focus-visible {
  outline: 3px solid rgba(42, 181, 115, 0.25);
  outline-offset: 3px;
}

/* 固定ヘッダー分のスクロール位置調整 */
.faq-section {
  scroll-margin-top: 170px;
}

/*─────────────────────────
  FAQセクション共通
─────────────────────────*/
.faq-section {
  --faq-accent: #2ab573;
  --faq-soft: rgba(42, 181, 115, 0.09);
  --faq-border: rgba(42, 181, 115, 0.19);

  margin-top: 72px;
}

.faq-section:first-of-type {
  margin-top: 0;
}

/* セクションごとの色 */
.faq-section-reservation {
  --faq-accent: #2ab573;
  --faq-soft: rgba(42, 181, 115, 0.09);
  --faq-border: rgba(42, 181, 115, 0.2);
}

.faq-section-area {
  --faq-accent: #75b987;
  --faq-soft: rgba(117, 185, 135, 0.11);
  --faq-border: rgba(117, 185, 135, 0.23);
}

.faq-section-care {
  --faq-accent: #7daec4;
  --faq-soft: rgba(125, 174, 196, 0.12);
  --faq-border: rgba(125, 174, 196, 0.25);
}

.faq-section-equipment {
  --faq-accent: #a58abe;
  --faq-soft: rgba(165, 138, 190, 0.11);
  --faq-border: rgba(165, 138, 190, 0.24);
}

.faq-section-family {
  --faq-accent: #db93a2;
  --faq-soft: rgba(219, 147, 162, 0.12);
  --faq-border: rgba(219, 147, 162, 0.24);
}

.faq-section-payment {
  --faq-accent: #a9ad4d;
  --faq-soft: rgba(181, 183, 84, 0.13);
  --faq-border: rgba(181, 183, 84, 0.27);
}

.faq-section-cancel {
  --faq-accent: #d29a55;
  --faq-soft: rgba(210, 154, 85, 0.12);
  --faq-border: rgba(210, 154, 85, 0.25);
}

/*─────────────────────────
  セクション見出し
─────────────────────────*/
.faq-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}

.faq-section-number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  background: var(--faq-accent);
  border: 5px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow: 0 7px 18px var(--faq-border);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.faq-section-head h2 {
  margin-bottom: 3px;
  color: #293e33;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.5;
}

.faq-section-head p {
  color: #67706b;
  font-size: 0.92rem;
  line-height: 1.7;
}

/*─────────────────────────
  FAQ一覧
─────────────────────────*/
.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(42, 181, 115, 0.11);
  border-radius: 19px;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.05);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.faq-item[open] {
  background: #fff;
  border-color: var(--faq-border);
  box-shadow:
    0 11px 28px rgba(0, 0, 0, 0.07),
    0 0 0 3px var(--faq-soft);
}

/*─────────────────────────
  質問部分
─────────────────────────*/
.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 15px 62px 15px 18px;
  color: #2e4438;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

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

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

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  display: block;
  width: 32px;
  height: 32px;
  background:
    linear-gradient(var(--faq-accent), var(--faq-accent)) center / 14px 2px no-repeat,
    linear-gradient(var(--faq-accent), var(--faq-accent)) center / 2px 14px no-repeat,
    var(--faq-soft);
  border-radius: 50%;
  transform: translateY(-50%);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.faq-item[open] summary {
  color: var(--faq-accent);
  background: var(--faq-soft);
}

.faq-item[open] summary::after {
  background:
    linear-gradient(#fff, #fff) center / 14px 2px no-repeat,
    var(--faq-accent);
  transform: translateY(-50%);
}

.faq-question-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--faq-accent);
  border-radius: 50%;
  box-shadow: 0 4px 12px var(--faq-border);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

@media (hover: hover) {
  .faq-item summary:hover {
    color: var(--faq-accent);
    background: var(--faq-soft);
  }

  .faq-item summary:hover::after {
    color: #fff;
    background: var(--faq-accent);
    transform: translateY(-50%) scale(1.08);
  }
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--faq-border);
  outline-offset: -3px;
}

/*─────────────────────────
  回答部分
─────────────────────────*/
.faq-answer {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 21px 24px 23px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.055);
}

.faq-answer-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--faq-accent);
  background: var(--faq-soft);
  border: 1px solid var(--faq-border);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.faq-answer > div {
  min-width: 0;
  padding-top: 5px;
  color: #505b55;
  font-size: 0.95rem;
  line-height: 1.85;
}

.faq-answer p + p {
  margin-top: 11px;
}

.faq-answer a {
  color: var(--faq-accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  text-decoration-thickness: 2px;
}

.faq-answer ul {
  margin: 11px 0;
  padding-left: 1.35em;
  list-style: disc;
}

.faq-answer li {
  margin-bottom: 5px;
}

.faq-answer li::marker {
  color: var(--faq-accent);
}

/*─────────────────────────
  対応相談ボックス
─────────────────────────*/
.faq-consultation-box {
  position: relative;
  margin-top: 28px;
  padding: 28px 24px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      rgba(165, 138, 190, 0.12),
      rgba(191, 221, 235, 0.22)
    );
  border: 1px solid rgba(165, 138, 190, 0.18);
  border-radius: 23px;
}

.faq-consultation-box::before,
.faq-consultation-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.faq-consultation-box::before {
  width: 105px;
  height: 105px;
  top: -55px;
  left: -40px;
  background: rgba(244, 192, 202, 0.3);
}

.faq-consultation-box::after {
  width: 120px;
  height: 120px;
  right: -48px;
  bottom: -70px;
  background: rgba(245, 249, 175, 0.36);
}

.faq-consultation-label {
  position: relative;
  z-index: 1;
  margin-bottom: 9px;
  color: #3e3550;
  font-size: 1.08rem;
  font-weight: 700;
}

.faq-consultation-text {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto 14px;
  color: #58625d;
  line-height: 1.8;
}

.faq-consultation-number {
  position: relative;
  z-index: 1;
}

.faq-consultation-number a {
  display: inline-block;
  color: var(--primary);
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.faq-consultation-hours {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  color: #68726d;
  font-size: 0.88rem;
}

/*─────────────────────────
  ページ下部・電話案内
─────────────────────────*/
.faq-contact {
  position: relative;
  margin-top: 74px;
  padding: 38px 30px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      rgba(42, 181, 115, 0.15),
      rgba(142, 208, 129, 0.2),
      rgba(191, 221, 235, 0.2)
    );
  border: 1px solid rgba(42, 181, 115, 0.16);
  border-radius: 28px;
}

.faq-contact::before,
.faq-contact::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.faq-contact::before {
  width: 145px;
  height: 130px;
  top: -70px;
  left: -55px;
  background: rgba(244, 192, 202, 0.34);
  border-radius: 55% 45% 61% 39% / 46% 59% 41% 54%;
  transform: rotate(-12deg);
}

.faq-contact::after {
  width: 170px;
  height: 150px;
  right: -65px;
  bottom: -88px;
  background: rgba(245, 249, 175, 0.44);
  border-radius: 44% 56% 40% 60% / 58% 42% 58% 42%;
  transform: rotate(15deg);
}

.faq-contact-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 13px;
  padding: 5px 14px;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.faq-contact h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 13px;
  color: #294b39;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  line-height: 1.6;
}

.faq-contact-text {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto 14px;
  color: #536159;
  line-height: 1.85;
}

.faq-contact-number {
  position: relative;
  z-index: 1;
}

.faq-contact-number a {
  display: inline-block;
  color: var(--primary);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

@media (hover: hover) {
  .faq-contact-number a:hover,
  .faq-consultation-number a:hover {
    color: #208f5a;
    transform: scale(1.025);
  }
}

.faq-contact-hours {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  color: #5f6e66;
  font-size: 0.92rem;
}

.faq-contact-note {
  position: relative;
  z-index: 1;
  margin-top: 9px;
  color: #727b76;
  font-size: 0.82rem;
  line-height: 1.7;
}

/*─────────────────────────
  タブレット
─────────────────────────*/
@media (max-width: 768px) {
  .faq-page {
    padding: 90px 0 50px;
  }

  .faq-page-container {
    width: 94%;
    padding: 40px 22px 50px;
    border-radius: 25px;
  }

  .faq-category-nav {
    margin-bottom: 54px;
    padding: 15px;
  }

  .faq-section {
    margin-top: 58px;
  }

  .faq-section-head {
    align-items: flex-start;
    gap: 13px;
  }

  .faq-section-number {
    width: 48px;
    height: 48px;
    border-width: 4px;
  }

  .faq-item summary {
    min-height: 68px;
    padding: 14px 57px 14px 15px;
  }

  .faq-answer {
    padding: 19px 20px 22px 15px;
  }

  .faq-contact {
    margin-top: 60px;
    padding: 32px 22px;
  }
}

/*─────────────────────────
  スマートフォン
─────────────────────────*/
@media (max-width: 600px) {
  .faq-page {
    padding: 85px 5px 42px;
  }

  .faq-page-container {
    width: 100%;
    padding: 34px 13px 42px;
    border-radius: 22px;
  }

  .faq-page-head {
    margin-bottom: 28px;
  }

  .faq-page-lead br {
    display: none;
  }

  .faq-page-note {
    padding: 19px 16px;
    border-radius: 18px;
    font-size: 0.91rem;
  }

  .faq-category-nav {
    top: 64px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;

    width: 100%;
    margin-bottom: 48px;
    padding: 10px 12px;

    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;

    border-radius: 16px;
  }


  .faq-category-nav::-webkit-scrollbar {
    display: none;
  }

  .faq-category-nav a {
    flex: 0 0 auto;
    min-width: max-content;
    min-height: 38px;
    padding: 7px 13px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .faq-section {
    scroll-margin-top: 145px;
  }

  .faq-section-head {
    gap: 10px;
    margin-bottom: 20px;
  }

  .faq-section-number {
    width: 43px;
    height: 43px;
    font-size: 0.77rem;
  }

  .faq-section-head h2 {
    font-size: 1.2rem;
  }

  .faq-section-head p {
    font-size: 0.83rem;
  }

  .faq-list {
    gap: 11px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item summary {
    align-items: flex-start;
    gap: 10px;
    min-height: 62px;
    padding: 13px 49px 13px 12px;
    font-size: 0.91rem;
    line-height: 1.55;
  }

  .faq-item summary::after {
    right: 12px;
    width: 28px;
    height: 28px;
    font-size: 1.08rem;
  }

  .faq-question-mark {
    width: 32px;
    height: 32px;
    margin-top: 1px;
    font-size: 0.83rem;
  }

  .faq-answer {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    padding: 17px 14px 19px 12px;
  }

  .faq-answer-mark {
    width: 32px;
    height: 32px;
    font-size: 0.83rem;
  }

  .faq-answer > div {
    padding-top: 2px;
    font-size: 0.89rem;
    line-height: 1.78;
  }

  .faq-consultation-box {
    margin-top: 21px;
    padding: 23px 15px;
    border-radius: 19px;
  }

  .faq-consultation-label {
    font-size: 1rem;
  }

  .faq-consultation-text {
    font-size: 0.9rem;
  }

  .faq-contact {
    margin-top: 48px;
    padding: 27px 15px;
    border-radius: 22px;
  }

  .faq-contact h2 br {
    display: none;
  }

  .faq-contact-text {
    font-size: 0.91rem;
  }
}

/*─────────────────────────
  小さいスマートフォン
─────────────────────────*/
@media (max-width: 390px) {

  .faq-item summary {
    padding-right: 45px;
  }

  .faq-section-head p {
    display: none;
  }
}



/*─────────────────────────
  動きを控えたい環境向け
─────────────────────────*/
@media (prefers-reduced-motion: reduce) {
  .faq-category-nav a,
  .faq-item,
  .faq-item summary,
  .faq-item summary::after,
  .faq-contact-number a,
  .faq-consultation-number a {
    transition: none;
  }

  .faq-category-nav a:hover,
  .faq-item summary:hover::after,
  .faq-contact-number a:hover,
  .faq-consultation-number a:hover {
    transform: none;
  }
}

/*─────────────────────────
  フッター
─────────────────────────*/
.site-footer {
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}

/*─────────────────────────
  右下固定 電話相談ボタン
─────────────────────────*/
.floating-tel-button {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 60px;
  padding: 13px 20px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: linear-gradient(135deg, #31bf78, #168e64);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
  box-shadow:
    0 12px 28px rgba(15, 92, 65, 0.32),
    0 4px 10px rgba(0, 0, 0, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  isolation: isolate;
}

.floating-tel-button::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 2px solid rgba(42, 181, 115, 0.42);
  border-radius: inherit;
  opacity: 0;
  animation: floatingTelAttention 2.6s ease-out 3;
}

.floating-tel-button:hover,
.floating-tel-button:focus-visible {
  color: #fff;
  filter: brightness(1.04);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 16px 34px rgba(15, 92, 65, 0.36),
    0 6px 12px rgba(0, 0, 0, 0.18);
}

.floating-tel-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

.floating-tel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.35rem;
  line-height: 1;
}

.floating-tel-text {
  white-space: nowrap;
}

@keyframes floatingTelAttention {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  28% {
    opacity: 0.62;
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 769px) {
  .floating-tel-button {
    display: none;
  }
}

/*─────────────────────────
  スクロール誘導・表示アニメーション
─────────────────────────*/
html {
  scroll-behavior: smooth;
}

.scenes {
  scroll-margin-top: 84px;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: -43px;
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 76px;
  min-height: 48px;
  padding: 7px 14px 6px;
  border: 1px solid rgba(42, 181, 115, 0.30);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #168e64;
  box-shadow: 0 8px 22px rgba(28, 91, 66, 0.16);
  font-family: "M PLUS Rounded 1c", "Yu Gothic", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
  transform: translateX(-50%);
  -webkit-tap-highlight-color: transparent;
}

.hero-scroll-cue-label {
  padding-left: 0.16em;
}

.hero-scroll-cue-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: heroScrollCue 1.7s ease-in-out infinite;
}

.hero-scroll-cue:hover,
.hero-scroll-cue:focus-visible {
  color: var(--primary);
}

.hero-scroll-cue:focus-visible {
  outline: 2px solid rgba(42, 181, 115, 0.42);
  outline-offset: 3px;
  border-radius: 10px;
}

@keyframes heroScrollCue {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(-2px) rotate(45deg);
  }
  50% {
    opacity: 1;
    transform: translateY(4px) rotate(45deg);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.66s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.66s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}


.scroll-reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (max-width: 768px) {
  .hero-scroll-cue {
    bottom: -42px;
    min-width: 72px;
    min-height: 46px;
  }

}

/*─────────────────────────
  動きを控えたい環境向け
─────────────────────────*/
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-scroll-cue-arrow,
  .floating-tel-button::after {
    animation: none;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .floating-tel-button {
    transition: none;
  }

  .floating-tel-button:hover,
  .floating-tel-button:focus-visible {
    transform: none;
  }

  .heading-shape {
    animation: none;
  }

  .scene-intro-visual,
  .scene-photo-layer,
  .scene-showcase-panel,
  .scene-photo-layer img,
  .scene-showcase-card,
  .scene-card-palette span,
  .scene-orbit-shape {
    transition: none;
  }

  .scene-intro-spectrum,
  .scene-scroll-guide i::after {
    animation: none;
  }
}

/*─────────────────────────
  料金シミュレーション
─────────────────────────*/
.estimate-section {
  scroll-margin-top: 90px;
}

.estimate-modern-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(42, 181, 115, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(142, 208, 129, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 255, 251, 0.95));
  box-shadow: 0 18px 46px rgba(31, 105, 70, 0.12);
  padding: clamp(18px, 4vw, 32px);
}

.estimate-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 24px;
}

.estimate-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #1f6946;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.estimate-kicker::before {
  content: "";
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(42, 181, 115, 0.13);
}

.estimate-intro p {
  color: #4b5b52;
  line-height: 1.8;
}

.estimate-intro-note {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(191, 221, 235, 0.25);
  color: #405c67 !important;
  font-size: 0.92rem;
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 24px;
  align-items: start;
}

.estimate-input-panel {
  display: grid;
  gap: 18px;
}

.estimate-group {
  border: 1px solid rgba(42, 181, 115, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(31, 105, 70, 0.07);
  padding: 20px;
}

.estimate-group-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.estimate-group-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: rgba(42, 181, 115, 0.14);
  color: #1f6946;
  font-size: 0.95rem;
  font-weight: 700;
}

.estimate-group h3 {
  margin: 0 0 2px;
  color: #264d3a;
  font-size: 1.08rem;
}

.estimate-group-head p {
  margin: 0;
  color: #6c776f;
  font-size: 0.88rem;
  line-height: 1.6;
}

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

.estimate-grid-wide {
  grid-column: 1 / -1;
}

.estimate-fieldset,
.estimate-field {
  min-width: 0;
}

.estimate-fieldset {
  border: 0;
}

.estimate-fieldset legend,
.estimate-field > span {
  display: block;
  margin-bottom: 8px;
  color: #355c48;
  font-size: 0.9rem;
  font-weight: 700;
}

.estimate-choice-row,
.estimate-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.estimate-choice,
.estimate-check-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.estimate-choice input,
.estimate-check-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.estimate-choice span,
.estimate-check-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(42, 181, 115, 0.2);
  border-radius: 16px;
  background: #fff;
  color: #3d5a48;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.estimate-choice input:checked + span,
.estimate-check-card input:checked + span {
  border-color: rgba(42, 181, 115, 0.65);
  background: linear-gradient(135deg, rgba(42, 181, 115, 0.16), rgba(191, 221, 235, 0.28));
  color: #1f6946;
  box-shadow: inset 0 0 0 1px rgba(42, 181, 115, 0.14);
}

.estimate-choice span:hover,
.estimate-check-card span:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(31, 105, 70, 0.08);
}

.estimate-field input,
.estimate-field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(42, 181, 115, 0.2);
  border-radius: 16px;
  background: #fff;
  padding: 11px 13px;
  color: #26352e;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.estimate-field input:focus,
.estimate-field select:focus {
  border-color: rgba(42, 181, 115, 0.75);
  box-shadow: 0 0 0 4px rgba(42, 181, 115, 0.12);
}

.estimate-input-unit {
  display: flex;
  align-items: center;
  gap: 8px;
}

.estimate-input-unit input {
  flex: 1 1 auto;
  min-width: 0;
}

.estimate-input-unit em {
  flex: 0 0 auto;
  min-width: 3.4em;
  color: #667169;
  font-style: normal;
  font-weight: 700;
}

.estimate-result-panel {
  position: sticky;
  top: 86px;
}

.estimate-result {
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 255, 251, 0.98));
  border: 1px solid rgba(42, 181, 115, 0.16);
  box-shadow: 0 18px 42px rgba(31, 105, 70, 0.14);
  padding: 26px;
}

.estimate-result-label {
  margin-bottom: 6px;
  color: #4f6258;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.estimate-total {
  margin-bottom: 4px;
  color: #168457;
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.estimate-result-caption {
  margin-bottom: 18px;
  color: #6d7b73;
  font-size: 0.9rem;
}

.estimate-breakdown {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(42, 181, 115, 0.18);
  border-bottom: 1px solid rgba(42, 181, 115, 0.18);
}

.estimate-breakdown dt {
  color: #4f5d55;
  font-size: 0.92rem;
}

.estimate-breakdown dd {
  color: #25352d;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
}

.estimate-note {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(245, 249, 175, 0.38);
  color: #565b36;
  font-size: 0.88rem;
  line-height: 1.75;
}

.estimate-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.estimate-phone-button,
.estimate-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.estimate-phone-button {
  border: none;
  background: linear-gradient(135deg, #2ab573, #1f8f62);
  color: #fff;
  box-shadow: 0 12px 28px rgba(42, 181, 115, 0.25);
}

.estimate-copy-button {
  border: 1px solid rgba(42, 181, 115, 0.34);
  background: #fff;
  color: #2d7350;
}

.estimate-phone-button:hover,
.estimate-copy-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(31, 105, 70, 0.14);
}

.estimate-copy-message {
  margin-top: 12px;
  color: #2d7350;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 900px) {
  .estimate-intro,
  .estimate-layout {
    grid-template-columns: 1fr;
  }

  .estimate-result-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .estimate-modern-card {
    border-radius: 24px;
    padding: 16px;
  }

  .estimate-group,
  .estimate-result {
    border-radius: 22px;
    padding: 18px 16px;
  }

  .estimate-group-head {
    align-items: start;
  }

  .estimate-breakdown {
    gap: 8px 12px;
  }
}

@media (max-width: 420px) {
  .estimate-breakdown {
    grid-template-columns: 1fr;
  }

  .estimate-breakdown dd {
    text-align: left;
  }
}
