/* ========================================
   Reset & Base
======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:    #1B4332;
  --blue:    #2D7A4F;
  --orange:  #F97316;
  --orange-dark: #EA6205;
  --text:    #1A1A1A;
  --muted:   #506A5C;
  --light:   #F0F7F4;
  --white:   #FFFFFF;
  --border:  #C8DDD5;
  --shadow:  0 2px 16px rgba(27,67,50,0.10);
  --radius:  10px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

/* ========================================
   Typography
======================================== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ========================================
   Layout Utilities
======================================== */
.container {
  width: min(1080px, 92%);
  margin-inline: auto;
}

.section {
  padding: 80px 0;
}

.section--light {
  background: var(--light);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ========================================
   Buttons
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}

.btn--orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.45);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: #0f2b1e;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.15rem;
}

.btn--full {
  width: 100%;
}

/* ========================================
   Header
======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(27,67,50,0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-header__logo-main {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.05em;
}

.site-header__logo-sub {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-header__nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}

.site-header__nav a:hover {
  color: var(--blue);
}

.site-header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.site-header__phone-label {
  font-size: 0.65rem;
  color: var(--muted);
}

.site-header__phone-number {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.03em;
}

.site-header__cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* ========================================
   Hamburger Button
======================================== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger-btn span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger-btn.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ========================================
   Mobile Nav Drawer
======================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav.is-open .mobile-nav__overlay {
  opacity: 1;
}

.mobile-nav__drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: var(--white);
  padding: 1rem 1.5rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 24px rgba(27,67,50,0.15);
}

.mobile-nav.is-open .mobile-nav__drawer {
  transform: translateX(0);
}

.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  padding: 0.5rem 0 1rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav__section {
  margin-bottom: 1.5rem;
}

.mobile-nav__title {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.mobile-nav__list {
  list-style: none;
}

.mobile-nav__list li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav__list a {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.mobile-nav__cta {
  margin-top: 1.75rem;
  text-align: center;
}

.mobile-nav__cta .btn {
  display: block;
  text-align: center;
}

.mobile-nav__hours {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* ========================================
   Hero
======================================== */
.hero {
  background: linear-gradient(135deg, #0d2b1e 0%, #1B4332 50%, #1a5238 100%);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249,115,22,0.2);
  color: #FFA76B;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(249,115,22,0.4);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.hero__title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.hero__title em {
  font-style: normal;
  color: #FFA76B;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__note {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  margin-top: 0.75rem;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1E4D35, #2D6B47);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
}

.hero__img-text {
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.5;
}

/* ========================================
   Worries Section
======================================== */
/* Bubbles grid */
.bubbles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem 1.25rem;
  align-items: end;
}

.bubble-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bubble {
  position: relative;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 16px;
  padding: 1.1rem 1rem;
  text-align: center;
  width: 100%;
  box-shadow: 0 2px 10px rgba(27,67,50,0.08);
}

.bubble::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--blue);
}

.bubble::before {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--white);
  z-index: 1;
}

.bubble__text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.65;
}

.bubble__text strong {
  color: var(--blue);
}

.bubble__foot {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.bubble__avatar {
  width: 48px;
  height: 52px;
  position: relative;
}

.bubble__avatar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
}

.bubble__avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 24px;
  border-radius: 22px 22px 0 0;
  background: var(--blue);
}

/* img inside placeholder containers */
.hero__img-wrap img,
.why-card__img img,
.ba-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strengths__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.worries__cta-box {
  text-align: center;
  margin-top: 3rem;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 640px;
  margin-inline: auto;
}

.worries__cta-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.worries__cta-hours {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* ========================================
   Why Section
======================================== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #c8e8d8, #a8d4c0);
  position: relative;
  overflow: hidden;
}

.why-card__img--dark {
  background: linear-gradient(135deg, #7B8FA1, #5A6F80);
  color: #fff;
}

.why-card__img--green {
  background: linear-gradient(135deg, #a8d4b8, #7eb898);
}

.why-card__img--brown {
  background: linear-gradient(135deg, #d4c4a8, #b8a080);
}

.why-card__body {
  padding: 1rem 1.25rem;
}

.why-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.why-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.why__note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

/* ========================================
   Strengths Section
======================================== */
.strengths__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.strengths__photo {
  position: sticky;
  top: 80px;
}

.strengths__photo-wrap {
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #E8F5EE, #C5E8D4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.strengths__photo-placeholder {
  font-size: 6rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.strengths__photo-info {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.strengths__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.8rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.tag--blue {
  background: #E8F5EE;
  border-color: #A8D4B5;
  color: var(--blue);
}

.tag--orange {
  background: #FEF3EB;
  border-color: #F9C09A;
  color: var(--orange-dark);
}

.strengths__mobile-label {
  display: none;
}

.strengths__content {}

.strengths__heading {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.strengths__heading em {
  font-style: normal;
  color: var(--orange);
}

.strengths__lead {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--light);
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
}

.pillar__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
}

.pillar__body {}

.pillar__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.pillar__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.safety-box {
  background: #FEF3EB;
  border: 1px solid #F9C09A;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.safety-box__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 0.35rem;
}

.safety-box__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ========================================
   Before/After Section
======================================== */
.ba__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.ba-card__img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.ba-card__img--before {
  background: linear-gradient(135deg, #8B7355, #6B5440);
  color: rgba(255,255,255,0.8);
}

.ba-card__img--after {
  background: linear-gradient(135deg, #B8D4C8, #7EB8A0);
  color: rgba(255,255,255,0.9);
}

.ba-card__img-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.5rem;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}

.ba-card__img--before .ba-card__img-label {
  background: rgba(0,0,0,0.5);
  color: #fff;
}

.ba-card__img--after .ba-card__img-label {
  background: rgba(45,122,79,0.85);
  color: #fff;
}

.ba-card__arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.ba-card__caption {
  font-size: 0.75rem;
  text-align: center;
  color: var(--muted);
  margin-top: 0.5rem;
}

.ba-card__body {
  padding: 1rem 1.25rem;
}

.ba-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.ba-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ========================================
   Pricing Section
======================================== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.price-card:hover {
  box-shadow: var(--shadow);
}

.price-card--featured {
  border-color: var(--blue);
  position: relative;
  box-shadow: 0 4px 24px rgba(45,122,79,0.15);
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.price-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.price-card__sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.price-card__price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-card__price sup {
  font-size: 1rem;
  font-weight: 700;
}

.price-card__price sub {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
}

.price-card__tax {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.price-card__features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.price-card__feature::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.pricing__notes {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
}

.pricing__notes strong {
  color: var(--navy);
  font-weight: 700;
}

.pricing__notes ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

/* ========================================
   Reviews Section
======================================== */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 5rem;
  color: var(--light);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card__stars {
  color: #FBBF24;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  position: relative;
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.review-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.review-card__detail {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ========================================
   FAQ Section
======================================== */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  transition: background 0.15s;
}

.faq-item__question:hover {
  background: var(--light);
}

.faq-item__q-label {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
}

.faq-item__question-text {
  flex: 1;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  color: var(--muted);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer-inner {
  overflow: hidden;
}

.faq-item__answer-body {
  padding: 0 1.5rem 1.25rem 4rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
  background: linear-gradient(135deg, #0d2b1e, #1B4332);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-section__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.cta-section__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-inline: auto;
}

.cta-section__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-section__phone {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.cta-section__phone-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.25rem;
}

.cta-section__hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}

/* ========================================
   Footer
======================================== */
.site-footer {
  background: #081a10;
  color: rgba(255,255,255,0.75);
  padding: 48px 0 24px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand__name {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.footer-brand__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.65);
}

.footer-brand__phone {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
}

.footer-brand__hours {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

.footer-nav__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav__list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-nav__list a:hover {
  color: var(--white);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer__copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.site-footer__links {
  display: flex;
  gap: 1.5rem;
}

.site-footer__links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ========================================
   Floating Bottom Bar (Mobile)
======================================== */
.float-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateY(150%);
  transition: transform 0.3s ease;
}

.float-bar.is-visible {
  transform: translateY(0);
}

.float-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  background: var(--orange);
  color: var(--white);
}

/* ========================================
   Sub Page Header
======================================== */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-hero__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.page-hero__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  justify-content: center;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb__sep {
  color: rgba(255,255,255,0.3);
}

/* ========================================
   Area Section
======================================== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

.area-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   Table
======================================== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.info-table th,
.info-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.info-table th {
  width: 180px;
  background: var(--light);
  font-weight: 700;
  color: var(--navy);
}

.info-table td a {
  color: var(--blue);
}

.info-table td a:hover {
  text-decoration: underline;
}

/* ========================================
   Privacy / Legal
======================================== */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text);
}

.legal-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.legal-content ul li {
  margin-bottom: 0.35rem;
}

/* ========================================
   Alert / Notice
======================================== */
.notice {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.7;
}

.notice--info {
  background: #E8F5EE;
  border: 1px solid #A8D4B5;
  color: #1A4D2E;
}

.notice--warn {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #92400E;
}

/* ========================================
   Responsive
======================================== */

/* Tablet */
@media (max-width: 960px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strengths__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .strengths__photo {
    position: static;
    max-width: 260px;
    margin: 0 auto;
  }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Base */
  .section {
    padding: 44px 0;
  }
  .section-title {
    font-size: clamp(1.2rem, 5.5vw, 1.65rem);
  }
  .section-sub {
    font-size: 0.9rem;
  }

  /* Header */
  .site-header__nav {
    display: none;
  }
  .site-header__phone {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .float-bar {
    display: block;
  }
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  }

  /* Buttons: prevent horizontal overflow on mobile */
  .btn--lg {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  /* Hero: title → image → body */
  .hero {
    padding: 28px 0 36px;
  }
  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero__content {
    display: contents;
  }
  .hero__title {
    order: 1;
    font-size: 1.15rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    text-align: center;
  }
  .hero__title em {
    font-size: 1.55em;
    display: block;
    line-height: 1.3;
    margin-top: 0.15em;
  }
  .hero__visual {
    order: 2;
    width: 100%;
    margin-bottom: 1.25rem;
  }
  .hero__img-wrap {
    aspect-ratio: 16/9;
    border-radius: 12px;
  }
  .hero__body {
    order: 3;
    text-align: center;
  }
  .hero__sub {
    font-size: 0.875rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    text-align: left;
  }
  .hero__cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .hero__note {
    font-size: 0.75rem;
  }

  /* Worries CTA box */
  .worries__cta-box {
    margin-top: 2rem;
    padding: 1.25rem 1rem;
  }
  .worries__cta-box .btn {
    display: flex;
    width: 100%;
  }

  /* Why grid */
  .why__grid {
    grid-template-columns: 1fr;
  }

  /* Grids */
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* Strengths */
  .strengths__mobile-label {
    display: block;
    margin-bottom: 1rem;
  }
  .strengths__content .section-label {
    display: none;
  }
  .strengths__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .strengths__photo {
    position: static;
    max-width: 100%;
    margin: 0 0 0.5rem;
    text-align: center;
  }
  .strengths__photo-wrap {
    max-width: 220px;
    margin: 0 auto 1rem;
  }
  .strengths__tags {
    display: none;
  }

  /* BA */
  .ba__grid {
    grid-template-columns: 1fr;
  }
  .ba-card__images {
    grid-template-columns: 1fr 1fr;
  }

  /* Pricing */
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  /* CTA section */
  .cta-section {
    padding: 52px 0;
  }
  .cta-section__sub {
    font-size: 0.9rem;
  }

  /* Sub page hero */
  .page-hero {
    padding: 40px 0;
  }

  /* Footer */
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Small phone */
@media (max-width: 480px) {
  .section {
    padding: 36px 0;
  }
  .section-title {
    font-size: 1.15rem;
  }

  /* Hero */
  .hero {
    padding: 22px 0 28px;
  }
  .hero__title {
    font-size: 1rem;
    line-height: 1.6;
  }
  .hero__title em {
    font-size: 1.5em;
  }
  .hero__sub {
    font-size: 0.82rem;
  }

  /* Bubbles: 2列 */
  .bubbles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.75rem;
  }
  .bubbles-grid .bubble-wrap:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 200px;
    margin: 0 auto;
  }
}
