/* ============================================
   Ferena Nanosui — ファーストビュー
============================================ */
:root {
  --primary: #1976d2;
  --primary-dark: #0d47a1;
  --primary-light: #4fc3f7;
  --primary-pale: #e3f2fd;
  --accent-green: #43a047;
  --accent-green-light: #66bb6a;
  --bg-soft: #f0f8ff;
  --bg-pale: #f5fbff;
  --text: #1a2733;
  --text-sub: #5a6776;
  --border: #d8e9f5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; -webkit-text-size-adjust: 100%; }
html, body { height: 100%; }
body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   Header
============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eef4f9;
}
.header__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
  height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.header__nav { margin-left: auto; }
.header__nav-list {
  display: flex;
  gap: 26px;
}
.header__nav-list a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.header__nav-list a:hover { color: var(--primary); }
.header__nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width .25s;
}
.header__nav-list a:hover::after { width: 100%; }

.header__contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
}
.header__tel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.header__tel-body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.header__tel-num {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: .02em;
}
.header__tel-hours {
  font-size: 11px;
  color: var(--text-sub);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 6px 18px rgba(25,118,210,.3);
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.header__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(25,118,210,.4);
}

.header__burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.header__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  transition: transform .2s, opacity .2s;
  pointer-events: none;
}
.header__burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   Hero
============================================ */
.hero {
  position: relative;
  padding: 110px 0 30px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.4) 18%, rgba(255,255,255,0) 32%),
    url('../images/bg.jpg') right center / cover no-repeat,
    linear-gradient(135deg, #f5fbff 0%, #d6ecfa 100%);
  overflow: hidden;
}
.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__leaf, .hero__bubble { display: none; }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
  align-items: center;
}

/* 左：コピー */
.hero__copy {
  padding-top: 30px;
}
.hero__tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: #fff;
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  border: 2px solid var(--primary-pale);
  margin-bottom: 24px;
}
.hero__tag small { font-size: 11px; opacity: .85; }

.hero__brand {
  position: relative;
  margin-bottom: 30px;
  line-height: 1;
  display: inline-block;
}
.hero__brand-furigana {
  position: absolute;
  top: -4px;
  left: 36%;
  transform: translateX(-50%);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .35em;
  z-index: 2;
  white-space: nowrap;
}
.hero__brand-img {
  width: clamp(360px, 40vw, 580px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(25,118,210,.18));
}

.hero__headline {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .04em;
  margin-bottom: 22px;
}
.hero__headline-1 {
  display: block;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--text);
}
.hero__headline-2 {
  display: block;
  font-size: clamp(32px, 3.4vw, 50px);
  background: linear-gradient(135deg, #1976d2 0%, #4fc3f7 50%, #1e88e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 4px;
}

.hero__targets {
  margin: -10px 0 24px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.8;
  color: var(--primary);
  letter-spacing: 0.06em;
}
.hero__targets-line {
  display: block;
}

.hero__desc {
  font-size: 14px;
  line-height: 2;
  color: var(--text-sub);
  margin-bottom: 36px;
}

/* 3つの特徴 */
.hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  max-width: 600px;
}
.feature {
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  padding: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 6px 22px rgba(25,118,210,.08);
}
.feature__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.feature__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature__label {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: .04em;
  line-height: 1.1;
}
.feature__text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-sub);
}

/* CTA */
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 560px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s, border-color .2s;
  flex: 1;
  min-width: 240px;
}
.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.3;
  white-space: nowrap;
}
.btn__text small {
  font-size: 11px;
  font-weight: 500;
  opacity: .85;
}
.btn__arrow {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-left: auto;
  transition: transform .25s;
}
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(25,118,210,.3);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(25,118,210,.4);
}
.btn--outline {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary-pale);
}
.btn--outline:hover {
  border-color: var(--primary);
  background: var(--primary-pale);
  transform: translateY(-2px);
}

/* 右：水滴オーバーレイ（背景は .hero の background-image で表示） */
.hero__visual {
  position: relative;
  min-height: 520px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.hero__visual-drop {
  position: absolute;
  right: 50px;
  bottom: 30px;
  width: 360px;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(25,118,210,.18));
  z-index: 2;
}

/* 6つのご利用シーン */
.hero__scenes {
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scene__icon {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform .25s, color .25s;
}
.scene:hover .scene__icon {
  transform: translateY(-3px);
  color: var(--primary-dark);
}
.scene__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
}

/* ============================================
   Responsive
============================================ */
@media (max-width: 1280px) {
  .header__nav-list { gap: 18px; font-size: 12px; }
  .header__inner { gap: 18px; }
  .header__tel-num { font-size: 18px; }
  .header__tel-hours { font-size: 10px; }
  .header__cta { padding: 12px 20px; font-size: 13px; }
}

@media (max-width: 1100px) {
  .header__inner { gap: 16px; }
  .header__nav {
    display: block;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(8, 52, 116, 0.08);
    padding: 16px 24px 24px;
    z-index: 1;
    margin-left: 0;
    transform: translateY(-110%);
    transition: transform .28s ease;
    visibility: hidden;
  }
  .header__nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 15px;
  }
  .header__nav-list li {
    border-bottom: 1px solid var(--border);
  }
  .header__nav-list li:last-child { border-bottom: 0; }
  .header__nav-list a {
    display: block;
    padding: 16px 6px;
    color: var(--primary-dark);
    font-weight: 700;
  }
  .header__nav-list a::after { display: none; }
  body.is-nav-open { overflow: hidden; }
  .header__burger { display: flex; margin-left: auto; }
  .header__contact { gap: 10px; }
  .hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.5) 28%, rgba(255,255,255,0) 50%),
      url('../images/bg.jpg') center bottom / cover no-repeat,
      linear-gradient(135deg, #f5fbff 0%, #d6ecfa 100%);
  }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { min-height: 380px; justify-content: center; }
  .hero__visual-drop { width: 220px; margin-right: 0; }
}

@media (max-width: 720px) {
  .header__inner { padding: 0 12px; height: 72px; gap: 8px; }
  .header__logo-img { height: 40px; }
  .header__nav { top: 72px; max-height: calc(100vh - 72px); }
  .header__contact { gap: 8px; margin-left: auto; }
  .header__tel { display: none; }
  .header__cta { padding: 8px 12px; font-size: 12px; }
  .header__cta span { display: none; }
  .header__cta svg { width: 20px; height: 20px; }
  .header__burger { margin-left: 0; width: 40px; height: 40px; }

  .hero {
    padding: 96px 0 30px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.55) 32%, rgba(255,255,255,0) 55%),
      url('../images/bg-sp.jpg') center calc(100% + 30px) / cover no-repeat,
      linear-gradient(135deg, #f5fbff 0%, #d6ecfa 100%);
  }
  .hero__inner { padding: 0 20px; gap: 16px; }
  .hero__copy { padding-top: 0; }
  .hero__brand { margin-bottom: 14px; }
  .hero__brand-img { width: 80%; max-width: 320px; }
  .hero__headline { font-size: 22px; margin-top: -50px; margin-bottom: 12px; }
  .hero__targets { font-size: 16px; margin: -4px 0 14px; line-height: 1.7; }
  .hero__desc { font-size: 13px; margin-bottom: 16px; }

  .hero__features { display: none; }

  .hero { padding-bottom: 200px; }
  .hero__ctas {
    flex-direction: column;
    max-width: none;
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: -190px;
    margin: 0;
    z-index: 5;
  }
  .btn { min-width: 0; width: 100%; padding: 16px 20px; font-size: 14px; }

  .hero__visual { min-height: 320px; }
  .hero__visual-drop { width: 180px; bottom: 140px; right: -20px; }
}

@media (max-width: 420px) {
  .hero__brand-img { width: 100%; }
  .hero__visual-drop { width: 150px; }
}

/* ============================================
   Nanosuiとは(About)
============================================ */
.about {
  background: linear-gradient(180deg, #fff 0%, #f0f8ff 100%);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.about.about--safety {
  padding-top: 0;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #f0f8ff 0%, #fff 100%);
}
.about.about--safety .about__details {
  margin-top: 0;
}
.about__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === 上段: 紹介 === */
.about__intro {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  align-items: start;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.about__copy {
  position: relative;
  z-index: 2;
}
.about__label {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}
.about__label-jp {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .04em;
  position: relative;
  padding-left: 36px;
}
.about__label-jp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1.5px;
  background: var(--primary);
}
.about__label-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--primary-light);
  letter-spacing: .15em;
}
.about__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: .04em;
  margin: 0 0 28px;
}
.about__title-line { display: block; white-space: nowrap; }
.about__title-em {
  font-size: 1.15em;
  background: linear-gradient(135deg, #1976d2 0%, #4fc3f7 50%, #1e88e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about__desc {
  font-size: 16px;
  line-height: 2;
  color: var(--text-sub);
  letter-spacing: .04em;
  margin: 0 0 36px;
}

.about__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 600px;
}
.about-badge {
  background: rgba(255,255,255,.95);
  border: 1px solid var(--primary-pale);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  padding: 18px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 6px 18px rgba(25,118,210,.08);
}
.about-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}
.about-badge__icon img { display: block; width: 100%; height: 100%; object-fit: contain; }
.about-badge__title {
  font-size: 17px;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: .04em;
}
.about-badge__text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-sub);
}

/* 右: ビジュアル(画面右端まで広がる + 左に文字へ重なる) */
.about__visual {
  position: relative;
  width: calc(100% + 32px + 140px);
  margin-right: -32px;
  margin-left: -140px;
  aspect-ratio: 16 / 14;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}
.about__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.92) 12%, rgba(255,255,255,0) 32%);
  z-index: 2;
  pointer-events: none;
}
.about__person {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* === 下段: 詳細 === */
.about__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: -220px;
  position: relative;
  z-index: 3;
}

/* 左: 次亜塩素酸のチカラ */
.about__power {
  background: #fff;
  border: 1px solid var(--primary-pale);
  border-radius: 8px;
  padding: 36px 32px 32px;
  box-shadow: 0 6px 22px rgba(25,118,210,.06);
}
.about__power-title {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  letter-spacing: .04em;
  margin: 0 0 32px;
  position: relative;
  padding: 0 12px;
}
.about__power-title::before,
.about__power-title::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1.5px;
  background: var(--primary);
  vertical-align: middle;
  margin: 0 14px;
}
.power-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.power-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}
.power-item__title {
  font-family: "Noto Serif JP", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: .04em;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--primary-pale);
}
.power-item__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  background: #fff;
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
}
.power-item__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.power-uses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 12px;
  list-style: none;
  padding: 22px 18px;
  margin: 0;
  background: var(--bg-pale);
  border-radius: 6px;
  height: 200px;
  align-content: center;
}
.power-uses li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .02em;
}
.power-uses__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.power-uses__icon img { display: block; width: 100%; height: 100%; object-fit: contain; }
.power-item__desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-sub);
  margin: 0;
  text-align: left;
}

/* 安全・成分 (左: テキスト2段 / 右: 画像) */
.about__safety {
  background: #fff;
  border: 1px solid var(--primary-pale);
  border-radius: 8px;
  padding: 36px 36px 32px;
  box-shadow: 0 6px 22px rgba(25,118,210,.06);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.about__safety-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__safety-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--primary-pale);
}
.about__safety-image {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 280px;
}
.about__safety-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__safety-title {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  letter-spacing: .04em;
  margin: 0 0 22px;
}
.about__safety-lead {
  font-size: 16px;
  color: var(--text);
  line-height: 1.85;
  letter-spacing: .04em;
  margin: 0 0 20px;
}
.about__safety-lead strong { font-weight: 700; }
.safety-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.safety-tags li {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 8px 16px;
  border-radius: 4px;
}
.about__safety-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__safety-desc {
  font-size: 16px;
  line-height: 2;
  color: var(--text-sub);
  letter-spacing: .04em;
  margin: 0;
}
.about__safety-note {
  background: var(--bg-pale);
  border-radius: 4px;
  padding: 16px 18px;
}
.about__safety-note p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-sub);
  margin: 0;
  letter-spacing: .02em;
}

@media (max-width: 1100px) {
  .about__intro { grid-template-columns: 1fr; gap: 36px; margin-bottom: 56px; }
  .about__visual { max-width: 100%; margin: 0; width: 100%; aspect-ratio: 16 / 10; }
  .about__visual::before { display: none; }
  .about__details { margin-top: 0; }
  .about__details { grid-template-columns: 1fr; gap: 24px; }
  .power-list { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 720px) {
  .about { padding: 56px 0 64px; }
  .about__inner { padding: 0 16px; }
  .about__copy { min-width: 0; }
  .about__desc br,
  .about__title-line br { display: none; }
  .about__title-line { white-space: normal; }
  .about__intro { gap: 28px; margin-bottom: 40px; }
  .about__label { gap: 10px; margin-bottom: 18px; }
  .about__label-jp { font-size: 17px; padding-left: 28px; }
  .about__label-jp::before { width: 22px; }
  .about__label-en { font-size: 12px; }
  .about__title { font-size: 22px; line-height: 1.55; margin-bottom: 18px; }
  .about__desc { font-size: 13px; line-height: 1.95; margin-bottom: 24px; }
  .about__badges { grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 100%; }
  .about-badge { padding: 10px 6px; }
  .about-badge__icon { width: 36px; height: 36px; }
  .about-badge__title { font-size: 12px; }
  .about-badge__text { font-size: 9.5px; line-height: 1.5; }
  .about__drop { width: 110px; right: -10px; bottom: -16px; }

  .about__power { padding: 24px 18px 22px; }
  .about__power-title { font-size: 18px; margin-bottom: 22px; }
  .about__power-title::before,
  .about__power-title::after { width: 22px; margin: 0 8px; }
  .power-list { grid-template-columns: 1fr; gap: 24px; }
  .power-item__visual { height: 160px; }
  .power-uses { padding: 12px 8px; gap: 10px 6px; }
  .power-uses__icon { width: 28px; height: 28px; }
  .power-uses li { font-size: 10.5px; }
  .power-item__desc { font-size: 12px; text-align: center; }

  .about__safety { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px 22px; }
  .about__safety-content { gap: 18px; }
  .about__safety-head { padding-bottom: 18px; }
  .about__safety-image { min-height: 220px; }
  .about__safety-title { font-size: 17px; }
  .about__safety-lead { font-size: 13px; }
  .safety-tags li { font-size: 11px; padding: 5px 12px; }
  .about__safety-desc { font-size: 12px; }
  .about__safety-note p { font-size: 10.5px; }
}

/* ============================================
   さまざまなシーン (Scenes)
============================================ */
.scenes {
  background: linear-gradient(180deg, #fff 0%, #f0f8ff 100%);
  padding: 90px 0 100px;
}
.scenes__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}
.scenes__intro {
  margin-bottom: 56px;
  text-align: center;
}
.scenes__copy {
  display: inline-block;
  text-align: center;
}
.scenes__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.scene-card {
  background: #fff;
  border: 1px solid var(--primary-pale);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(25,118,210,.06);
  transition: transform .25s, box-shadow .25s;
}
.scene-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(25,118,210,.12);
}
.scene-card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  overflow: hidden;
}
.scene-card__photo.is-empty img { display: none; }
.scene-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scene-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.scene-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.scene-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--primary-pale);
  border-radius: 50%;
  flex-shrink: 0;
}
.scene-card__icon img {
  display: block;
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.scene-card__title {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: .04em;
  margin: 0;
  line-height: 1.4;
}
.scene-card__desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-sub);
  letter-spacing: .02em;
  margin: 0;
}
.scenes__note {
  font-size: 13px;
  color: var(--text-sub);
  letter-spacing: .04em;
  margin: 0;
  text-align: left;
}

@media (max-width: 1280px) {
  .scenes__list { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
@media (max-width: 1100px) {
  .scenes__list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .scenes { padding: 56px 0 64px; }
  .scenes__inner { padding: 0 20px; }
  .scenes__intro { margin-bottom: 32px; }
  .scenes__list { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 22px; }
  .scene-card__body { padding: 14px 14px 16px; gap: 8px; }
  .scene-card__icon { width: 32px; height: 32px; }
  .scene-card__title { font-size: 14px; }
  .scene-card__desc { font-size: 11px; line-height: 1.7; }
  .scenes__note { font-size: 11px; line-height: 1.7; }
}

/* ============================================
   商品ラインナップ
============================================ */
.lineup {
  background: linear-gradient(180deg, #fff 0%, #f0f8ff 100%);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.lineup__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}

.lineup .about__intro {
  margin-bottom: 48px;
}
.lineup .about__desc {
  margin-bottom: 0;
}
.lineup .about__visual {
  width: 95%;
  margin-left: auto;
  margin-right: 0;
  aspect-ratio: 16 / 10;
}

.lineup__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 0 56px;
  padding: 0;
}
.lineup-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(8, 52, 116, 0.08);
  transition: transform .25s ease, box-shadow .3s ease;
  overflow: hidden;
}
.lineup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(8, 52, 116, 0.14);
}
.lineup-card__body {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.lineup-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.lineup-card__num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex: none;
}
.lineup-card__title {
  margin: 0;
  color: var(--primary-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lineup-card__title small {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  letter-spacing: 0.02em;
}
.lineup-card__sale {
  display: inline-block;
  color: #d61a1a;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
}
.lineup-card__sale-price {
  display: block;
  margin-top: 4px;
  color: #d61a1a;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.lineup-card__sale-price .num {
  font-size: 16px;
}
.lineup-card__lead {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}
.lineup-card__photo {
  position: absolute;
  top: 16px;
  bottom: 16px;
  right: 16px;
  width: auto;
  aspect-ratio: 1 / 1.8;
  margin: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
}
.lineup-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.lineup-card__photo.is-empty::after {
  content: "Product";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(25, 118, 210, 0.4);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.lineup-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
  padding: 12px 20px;
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}
.lineup-card__btn:hover {
  background: var(--primary);
  color: #fff;
}
.lineup-card__btn span {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
}
.lineup-card__specs {
  margin: 0;
  border-top: 1px solid var(--border);
}
.lineup-card__spec {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.lineup-card__spec:last-child {
  border-bottom: 0;
}
.lineup-card__spec dt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 22px;
  background: var(--bg-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 4px;
}
.lineup-card__spec dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.lineup__features {
  display: grid;
  grid-template-columns: minmax(240px, 280px) 1fr;
  align-items: center;
  gap: 28px;
  padding: 36px 32px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-bottom: 18px;
}
.lineup__features-intro {
  margin: 0;
  color: var(--primary-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.lineup__features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.lineup-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.lineup-feature__icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  background: var(--bg-soft);
  border-radius: 999px;
  flex: none;
}
.lineup-feature__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.lineup-feature__icon--jp {
  background: #fff;
  border: 1px solid var(--border);
  position: relative;
}
.lineup-feature__icon--jp span {
  width: 30px;
  height: 30px;
  background: #d61a1a;
  border-radius: 50%;
}
.lineup-feature__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.lineup-feature__title {
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}
.lineup-feature__text {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.lineup__note {
  margin: 0;
  color: var(--text-sub);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.lineup__note--school {
  margin-bottom: 40px;
}

/* Yahoo!ショッピング購入ボタン */
.lineup__shop {
  text-align: center;
  margin: 0 auto 56px;
}
.btn-yahoo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 360px;
  padding: 20px 36px;
  background: linear-gradient(135deg, #ff2222 0%, #d91414 100%);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(217, 20, 20, 0.28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-yahoo:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(217, 20, 20, 0.35);
  background: linear-gradient(135deg, #ff3838 0%, #c10b0b 100%);
}
.btn-yahoo__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  flex: none;
}
.btn-yahoo__icon svg { display: block; }
.btn-yahoo__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.btn-yahoo__sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.9;
}
.btn-yahoo__main {
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.btn-yahoo__arrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 720px) {
  .btn-yahoo {
    min-width: 0;
    width: 100%;
    padding: 16px 20px;
    gap: 12px;
  }
  .btn-yahoo__icon { width: 38px; height: 38px; }
  .btn-yahoo__icon svg { width: 20px; height: 20px; }
  .btn-yahoo__sub { font-size: 11px; }
  .btn-yahoo__main { font-size: 14px; }
  .btn-yahoo__arrow { font-size: 20px; }
}

/* ====== 殺菌力比較 ====== */
.power-compare {
  background: linear-gradient(180deg, #fff 0%, #f0f8ff 100%);
  padding: 90px 0 100px;
}
.power-compare__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.power-compare__intro {
  margin-bottom: 56px;
  text-align: center;
}
.power-compare__copy {
  display: inline-block;
  text-align: center;
}
.power-compare__chart {
  --label-w: 200px;
  --gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 36px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(8, 52, 116, 0.07);
}
.power-compare__rows {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.power-compare__row {
  display: grid;
  grid-template-columns: var(--label-w) 1fr;
  align-items: center;
  gap: var(--gap);
  background: linear-gradient(90deg, transparent 0%, transparent calc(var(--label-w) + var(--gap)), rgba(0,0,0,.04) calc(var(--label-w) + var(--gap)));
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc((100% - var(--label-w) - var(--gap)) / 6 - 1px),
    rgba(8, 52, 116, 0.08) calc((100% - var(--label-w) - var(--gap)) / 6 - 1px),
    rgba(8, 52, 116, 0.08) calc((100% - var(--label-w) - var(--gap)) / 6)
  );
  background-position: calc(var(--label-w) + var(--gap)) 0;
  background-size: calc(100% - var(--label-w) - var(--gap)) 100%;
  background-repeat: no-repeat;
}
.power-compare__row-label {
  color: var(--primary-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: right;
  line-height: 1.4;
}
.power-compare__row-label small {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-sub);
  letter-spacing: 0;
}
.power-compare__row-bar {
  display: block;
  width: 0;
  height: 28px;
  background: linear-gradient(90deg, #6fc7f0 0%, #3aa8e0 100%);
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(58, 168, 224, 0.25);
  transition: width 1.4s cubic-bezier(.22, .61, .36, 1);
}
.power-compare__row--nano .power-compare__row-bar { transition-delay: .05s; }
.power-compare__rows li:nth-child(2) .power-compare__row-bar { transition-delay: .18s; }
.power-compare__rows li:nth-child(3) .power-compare__row-bar { transition-delay: .31s; }
.power-compare__rows li:nth-child(4) .power-compare__row-bar { transition-delay: .44s; }
@media (prefers-reduced-motion: reduce) {
  .power-compare__row-bar { transition: none; }
}
.power-compare__row--nano .power-compare__row-bar {
  background: linear-gradient(90deg, #f48a5a 0%, #ec6a3a 100%);
  box-shadow: 0 2px 6px rgba(236, 106, 58, 0.3);
}
.power-compare__axis {
  list-style: none;
  margin: 0 0 14px;
  padding: 0 0 0 calc(var(--label-w) + var(--gap));
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.power-compare__axis li {
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.45;
}
.power-compare__legend {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding-left: calc(var(--label-w) + var(--gap));
  color: var(--primary);
}
.power-compare__legend-side {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.04em;
}
.power-compare__legend-center {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-align: center;
}
.power-compare__legend-arrow {
  height: 1px;
  background: var(--primary-light);
  position: relative;
}
.power-compare__legend-arrow::before,
.power-compare__legend-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--primary-light);
}
.power-compare__legend-arrow:first-of-type::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: left;
}
.power-compare__legend-arrow:first-of-type::after {
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: left;
}
.power-compare__legend-arrow:last-of-type::before {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: right;
}
.power-compare__legend-arrow:last-of-type::after {
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right;
}
.power-compare__note {
  max-width: 1100px;
  margin: 20px auto 0;
  color: var(--text-sub);
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .power-compare { padding: 64px 0 72px; }
  .power-compare__chart { --label-w: 140px; --gap: 16px; padding: 24px 20px 22px; }
  .power-compare__row-label { font-size: 13px; }
  .power-compare__axis li { font-size: 10.5px; }
}
@media (max-width: 720px) {
  .power-compare__chart { --label-w: 110px; --gap: 10px; padding: 20px 14px 18px; }
  .power-compare__row-label { font-size: 12px; }
  .power-compare__row-label small { font-size: 10px; display: block; }
  .power-compare__row-bar { height: 22px; }
  .power-compare__axis li { font-size: 9.5px; }
  .power-compare__legend-center { font-size: 11px; }
  .power-compare__legend-side { font-size: 10px; }
}

/* ====== よくあるご質問 ====== */
.faq {
  background: linear-gradient(180deg, #fff 0%, #f0f8ff 100%);
  padding: 90px 0 100px;
}
.faq__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}
.faq__intro {
  margin-bottom: 48px;
  text-align: center;
}
.faq__copy {
  display: inline-block;
  text-align: center;
}
.faq__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(8, 52, 116, 0.06);
  overflow: hidden;
}
.faq-item details {
  width: 100%;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item__q {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  color: var(--primary-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  transition: background-color .2s ease;
}
.faq-item__q:hover {
  background: var(--bg-soft);
}
.faq-item__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 700;
  flex: none;
}
.faq-item__mark--a {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.faq-item__qtext {
  display: block;
}
.faq-item__toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex: none;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--primary);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}
.faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item details[open] .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-item__a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  padding: 0 28px 24px;
  border-top: 1px dashed var(--border);
  padding-top: 22px;
}
.faq-item__atext {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
}

@media (max-width: 1024px) {
  .faq { padding: 64px 0 72px; }
  .faq-item__q { padding: 18px 20px; font-size: 15px; gap: 14px; }
  .faq-item__a { padding: 18px 20px 22px; gap: 14px; grid-template-columns: 32px 1fr; }
  .faq-item__mark { width: 32px; height: 32px; font-size: 17px; }
  .faq-item__qtext { min-width: 0; word-break: break-word; }
}
@media (max-width: 640px) {
  .faq__inner { padding: 0 16px; }
  .faq-item__q { font-size: 14px; padding: 16px 14px; gap: 10px; }
  .faq-item__a { padding: 14px 14px 18px; gap: 10px; grid-template-columns: 28px 1fr; }
  .faq-item__mark { width: 28px; height: 28px; font-size: 15px; }
  .faq-item__toggle { width: 14px; height: 14px; }
  .faq-item__toggle::before,
  .faq-item__toggle::after { width: 12px; }
  .faq-item__atext { font-size: 13px; }
}

/* ====== 導入実績 ====== */
.results {
  background: linear-gradient(180deg, #fff 0%, #f0f8ff 100%);
  padding: 90px 0 100px;
}
.results__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}
.results__intro {
  margin-bottom: 56px;
  text-align: center;
}
.results__copy {
  display: inline-block;
  text-align: center;
}
.results__group {
  max-width: 1200px;
  margin: 0 auto 40px;
}
.results__group:last-of-type {
  margin-bottom: 24px;
}
.results__group-title {
  margin: 0 0 28px;
  padding: 0;
  color: var(--primary-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.results__group-title::before,
.results__group-title::after {
  content: "";
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}
.results__group-title::before {
  background: linear-gradient(90deg, transparent, var(--primary-light));
}
.results__group-title::after {
  background: linear-gradient(90deg, var(--primary-light), transparent);
}
.results__list {
  list-style: none;
  margin: 0;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(8, 52, 116, 0.05);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 24px;
}
.results__list li {
  position: relative;
  padding: 10px 0 10px 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px dashed var(--border);
}
.results__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 50%;
}
.results__note {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text-sub);
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .results { padding: 64px 0 72px; }
  .results__list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .results__list { grid-template-columns: repeat(2, 1fr); padding: 14px 18px; }
  .results__group-title { font-size: 18px; gap: 14px; }
  .results__group-title::before,
  .results__group-title::after { max-width: 60px; }
  .results__list li { font-size: 13px; }
}
@media (max-width: 480px) {
  .results__list { grid-template-columns: 1fr; }
}

/* ====== 法律ページ共通(プライバシー / 特商法) ====== */
.legal-page {
  background: linear-gradient(180deg, #fff 0%, #f0f8ff 100%);
  padding: 160px 0 100px;
  min-height: 70vh;
}
.legal-page__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}
.legal-page__intro {
  margin-bottom: 56px;
  text-align: center;
}
.legal-page__title {
  margin: 14px 0 16px;
  color: var(--primary-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.legal-page__lead {
  margin: 0 auto;
  max-width: 720px;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
}
.legal-page__content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(8, 52, 116, 0.06);
  padding: 48px 56px;
}
.legal-page__date {
  margin: 32px 0 0;
  color: var(--text-sub);
  font-size: 13px;
  text-align: right;
  letter-spacing: 0.04em;
}

/* 条文ブロック(プライバシー) */
.legal-block + .legal-block {
  margin-top: 36px;
}
.legal-block__title {
  margin: 0 0 14px;
  padding: 0 0 10px;
  color: var(--primary-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--primary-light);
}
.legal-block p {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.02em;
}
.legal-block__list {
  margin: 8px 0 0;
  padding: 0 0 0 1.4em;
  color: var(--text);
  font-size: 14px;
  line-height: 2;
}
.legal-block__list li + li {
  margin-top: 6px;
}
.legal-block__contact {
  margin-top: 10px;
  padding: 18px 22px;
  background: var(--bg-soft);
  border-radius: 8px;
}
.legal-block__contact p {
  margin: 0;
  line-height: 1.85;
}

/* テーブル形式(特商法) */
.legal-table {
  margin: 0;
  padding: 0;
}
.legal-table__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.legal-table__row:first-child {
  padding-top: 0;
}
.legal-table__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.legal-table__row dt {
  color: var(--primary-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.legal-table__row dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.95;
  letter-spacing: 0.02em;
}
.legal-table__row dd small {
  display: inline-block;
  font-size: 12px;
  color: var(--text-sub);
}

@media (max-width: 720px) {
  .legal-page { padding: 56px 0 72px; }
  .legal-page__title { font-size: 24px; }
  .legal-page__content { padding: 28px 22px; }
  .legal-block__title { font-size: 16px; }
  .legal-table__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }
}

/* ====== お問い合わせフォーム送信メッセージ ====== */
.contact-flash {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 28px;
  padding: 18px 22px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.7;
}
.contact-flash strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.04em;
}
.contact-flash p { margin: 0; }
.contact-flash--success {
  background: #e6f4ea;
  color: #14532d;
  border: 1px solid #a7d3b7;
}
.contact-flash--success svg { color: #1e8e3e; flex: none; }
.contact-flash--error {
  background: #fde8e8;
  color: #7a1010;
  border: 1px solid #f3b8b8;
}
.contact-flash--error svg { color: #d61a1a; flex: none; }

/* ハニーポット(画面に表示しない) */
.contact-form__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ====== お問い合わせフォーム ====== */
.contact {
  background: linear-gradient(180deg, #fff 0%, #f0f8ff 100%);
  padding: 90px 0 100px;
}
.contact__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}
.contact__intro {
  margin-bottom: 48px;
  text-align: center;
}
.contact__copy {
  display: inline-block;
  text-align: center;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(8, 52, 116, 0.06);
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form__row--split > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__label {
  color: var(--primary-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  padding: 0 7px;
  background: #d61a1a;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 3px;
}
.contact-form__input {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
select.contact-form__input {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7' fill='%231f3a8a'><path d='M6 7L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
  padding-right: 36px;
}
.contact-form__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 58, 138, 0.12);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 160px;
}
.contact-form__row--check {
  margin-top: 4px;
}
.contact-form__check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
}
.contact-form__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  flex: none;
}
.contact-form__check a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-form__actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 280px;
  padding: 16px 36px;
  background: var(--primary);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 8px 20px rgba(31, 58, 138, 0.25);
}
.contact-form__submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 58, 138, 0.3);
}
.contact-form__submit-arrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 720px) {
  .contact { padding: 64px 0 72px; }
  .contact__inner { padding: 0 16px; }
  .contact-form { padding: 24px 18px; gap: 18px; border-radius: 12px; }
  .contact-form__row--split { grid-template-columns: 1fr; gap: 18px; }
  .contact-form__label { font-size: 13px; }
  .contact-form__input { font-size: 16px; padding: 10px 12px; }
  .contact-form__textarea { min-height: 130px; }
  .contact-form__check { font-size: 13px; }
  .contact-form__submit { min-width: 0; width: 100%; padding: 14px 24px; font-size: 15px; }
}

/* ====== 会社概要 ====== */
.company {
  background: linear-gradient(180deg, #fff 0%, #f0f8ff 100%);
  padding: 90px 0 100px;
}
.company__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.company__intro {
  margin-bottom: 48px;
  text-align: center;
}
.company__copy {
  display: inline-block;
  text-align: center;
}
.company__list {
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(8, 52, 116, 0.06);
  overflow: hidden;
}
.company__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--border);
}
.company__row:last-child {
  border-bottom: 0;
}
.company__row dt {
  color: var(--primary-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.company__row dd {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.02em;
}
.company__row dd a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity .2s;
}
.company__row dd a:hover {
  opacity: 0.75;
}
.company__row dd small {
  display: inline-block;
  font-size: 12px;
  color: var(--text-sub);
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .company { padding: 64px 0 72px; }
  .company__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 22px;
  }
  .company__row dt { font-size: 14px; }
  .company__row dd { font-size: 14px; }
}

/* ====== お客様の声 ====== */
.voice {
  background: linear-gradient(180deg, #fff 0%, #f0f8ff 100%);
  padding: 90px 0 100px;
}
.voice__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.voice__intro {
  margin-bottom: 56px;
  text-align: center;
}
.voice__copy {
  display: inline-block;
  text-align: center;
}
.voice__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 56px 30px 28px;
  box-shadow: 0 10px 24px rgba(8, 52, 116, 0.06);
  display: flex;
  flex-direction: column;
}
.voice-card__quote {
  position: absolute;
  top: 18px;
  left: 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-light);
  opacity: .45;
  pointer-events: none;
}
.voice-card__title {
  margin: 0 0 16px;
  color: var(--primary-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
.voice-card__body {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.02em;
  flex-grow: 1;
}
.voice-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.voice-card__name {
  color: var(--primary-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.voice-card__meta {
  color: var(--text-sub);
  font-size: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .voice { padding: 64px 0 72px; }
  .voice__list { grid-template-columns: 1fr; gap: 18px; max-width: 720px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .voice-card { padding: 48px 22px 24px; }
  .voice-card__quote { font-size: 52px; top: 14px; left: 22px; }
  .voice-card__body { font-size: 13px; line-height: 1.95; }
}

@media (max-width: 1280px) {
  .lineup__list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .lineup__features-list { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 1024px) {
  .lineup .about__intro { margin-bottom: 40px; }
  .lineup__features { grid-template-columns: 1fr; padding: 24px 22px; gap: 20px; }
  .lineup__features-intro { text-align: center; font-size: 15px; }
}
@media (max-width: 720px) {
  .lineup { padding: 56px 0 64px; }
  .lineup__inner { padding: 0 16px; }
  .lineup__intro { margin-bottom: 32px; }
  .lineup .about__intro { grid-template-columns: 1fr; gap: 20px; margin-bottom: 24px; }
  .lineup .about__visual { width: 100%; aspect-ratio: 16 / 10; }
  .lineup__list { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .lineup-card {
    padding: 22px 18px;
    overflow: visible;
  }
  .lineup-card__body { width: 60%; }
  .lineup-card__photo {
    top: 18px;
    bottom: 18px;
    right: 12px;
    width: auto;
    aspect-ratio: 1 / 1.6;
  }
  .lineup-card__num { width: 34px; height: 34px; font-size: 16px; }
  .lineup-card__title { font-size: 16px; }
  .lineup-card__title small { font-size: 11px; }
  .lineup-card__lead { font-size: 13px; }
  .lineup__features-list { grid-template-columns: 1fr 1fr; gap: 14px; }
  .lineup-feature__icon { width: 60px; height: 60px; }
  .lineup-feature__icon img { width: 34px; height: 34px; }
  .lineup-feature__title { font-size: 13px; }
  .lineup-feature__text { font-size: 12px; }
  .lineup__note { font-size: 12px; }
}

/* ============================================
   問い合わせCTAバー
============================================ */
.contact-cta {
  background: #fff;
  padding: 50px 0 40px;
}
.contact-cta__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr auto;
  gap: 48px;
  align-items: center;
}
.contact-cta__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.contact-cta__logo {
  width: 300px;
  height: auto;
}
.contact-cta__sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--primary);
}

.contact-cta__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid #dde7f0;
  padding-left: 36px;
}
.contact-cta__lead {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.contact-cta__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
  font-family: "Roboto", sans-serif;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 900;
  letter-spacing: .02em;
  margin-bottom: 6px;
  line-height: 1;
}
.contact-cta__tel svg { width: 36px; height: 36px; }
.contact-cta__tel svg { color: var(--primary); }
.contact-cta__hours {
  font-size: 12px;
  color: var(--text-sub);
  letter-spacing: .04em;
}

.contact-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--primary);
  color: #fff;
  padding: 26px 48px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(25,118,210,.3);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.contact-cta__btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(25,118,210,.4);
}
.contact-cta__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-cta__btn-arrow {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-left: 10px;
}

/* ============================================
   水波セパレータ
============================================ */
.footer-wave {
  line-height: 0;
  margin-top: -2px;
  height: 160px;
  overflow: hidden;
  background: #fff;
}
.footer-wave img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ============================================
   フッター
============================================ */
.footer {
  background: #1e40af;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footer__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 70px 32px 50px;
  position: relative;
  z-index: 1;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr 1fr;
  gap: 36px;
}

/* ブランド列 */
.footer__col--brand { padding-right: 12px; }
.footer__logo {
  width: 200px;
  height: auto;
  margin-bottom: 8px;
}
.footer__sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .25em;
  margin-bottom: 18px;
  color: rgba(255,255,255,.85);
}
.footer__rule {
  width: 60px;
  border: none;
  border-top: 1px solid rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer__company {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.footer__address {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
}
.footer__map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.5);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  transition: background .2s, border-color .2s;
}
.footer__map-btn:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

/* リンク列 */
.footer__heading {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,.92);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s, transform .2s;
}
.footer__links a::before {
  content: "›";
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}
.footer__links a:hover {
  color: var(--primary-light);
  transform: translateX(3px);
}

/* フッター下部 */
.footer__bottom {
  background: #112765;
  padding: 22px 0;
  position: relative;
  z-index: 2;
}
.footer__bottom-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__legal {
  display: flex;
  gap: 32px;
  align-items: center;
}
.footer__legal li {
  position: relative;
}
.footer__legal li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -19px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.4);
  font-size: 13px;
}
.footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.footer__legal a:hover { color: #fff; }
.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
  font-family: "Montserrat", sans-serif;
}

/* レスポンシブ:CTAバー & フッター */
@media (max-width: 1100px) {
  .contact-cta { padding: 36px 0 28px; }
  .contact-cta__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .contact-cta__brand { align-items: center; }
  .contact-cta__phone { border-left: none; padding-left: 0; align-items: center; }
  .contact-cta__btn { justify-self: center; }
  .footer__grid { grid-template-columns: repeat(3, 1fr); gap: 32px; padding-right: 0; }
  .footer__col--brand { grid-column: 1 / -1; padding-right: 0; }
}

@media (max-width: 720px) {
  .contact-cta__inner { padding: 0 20px; }
  .contact-cta__logo { width: 240px; }
  .contact-cta__tel { font-size: 32px; }
  .contact-cta__tel svg { width: 28px; height: 28px; }
  .contact-cta__btn { width: 100%; justify-content: center; padding: 18px 24px; font-size: 15px; }
  .footer-wave { height: 80px; }
  .footer__inner { padding: 50px 20px 36px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__heading { font-size: 14px; margin-bottom: 14px; padding-bottom: 10px; }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }
  .footer__legal { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .footer__legal li:not(:last-child)::after { right: -12px; }
}
