@charset "UTF-8";
/* ============================================================
   Second Life～自然療法～  デザイン刷新版
   ふんわり水色 × クリーム / Zen Maru Gothic / ネモフィラあしらい
   ============================================================ */

:root {
  --white: #FFFFFF;
  --cream: #FDF9F0;
  --blue: #87CEFA;        /* 基準色（ロゴ水色） */
  --blue-pale: #E8F5FD;
  --blue-soft: #BFE3F8;
  --blue-deep: #4493C8;   /* 見出し・リンク */
  --blue-ink: #3A7CA8;
  --text: #5A5A5A;
  --leaf: #A3BFA3;
  --line-green: #06C755;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 32px rgba(135, 206, 250, .20);
  --shadow-card: 0 6px 22px rgba(122, 158, 180, .12);
  --font-jp: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Quicksand", "Zen Maru Gothic", sans-serif;
  --header-h: 76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  line-height: 1.9;
  letter-spacing: .04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-deep); text-decoration: none; transition: opacity .25s ease; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p, h1, h2, h3, h4, figure { margin: 0; }
table { border-collapse: collapse; width: 100%; }
button { font-family: inherit; cursor: pointer; }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* 日本語の文節改行コントロール */
.nb { display: inline-block; }
.br-sp { display: none; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.container {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* ============================================================
   あしらい（ネモフィラ・葉っぱ）
   ============================================================ */
.nemo, .leaf { display: block; }
.nemo--lg { width: 92px; }
.nemo--md { width: 64px; }
.nemo--sm { width: 42px; }
.leaf { width: 34px; }
.leaf--flip { transform: scaleX(-1); }

@keyframes floatA {
  from { transform: translateY(0) rotate(-4deg); }
  to   { transform: translateY(-9px) rotate(5deg); }
}
@keyframes floatB {
  from { transform: translateY(-6px) rotate(6deg); }
  to   { transform: translateY(4px) rotate(-3deg); }
}
.float-a { animation: floatA 6.5s ease-in-out infinite alternate; }
.float-b { animation: floatB 8s ease-in-out infinite alternate; }

/* 四隅あしらい用の人物・犬イラスト */
.fam-corner { display: block; }
.fam-corner--mom { width: 30px; }
.fam-corner--child { width: 40px; }
.fam-corner--dog { width: 46px; }

/* セクション四隅の花畑 */
.field {
  position: absolute;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  opacity: .85;
  --bloom-opacity: .85;
  pointer-events: none;
}
.field--bl { left: 4%; bottom: 28px; }
.field--br { right: 4%; bottom: 28px; }
.field--tl { left: 4%; top: 36px; }

/* 波の区切り＋中央の花 */
.wave { position: relative; line-height: 0; margin-top: -1px; }
.wave svg { width: 100%; height: 72px; display: block; }
.wave--cream-to-white { background: var(--cream); }
.wave--white-to-cream { background: var(--white); }
.wave__nemo {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 58px;
  filter: drop-shadow(0 4px 10px rgba(135, 206, 250, .35));
}
.wave__nemo svg { animation: sway 7s ease-in-out infinite alternate; }
@keyframes sway {
  from { rotate: -5deg; }
  to   { rotate: 5deg; }
}

/* ============================================================
   ヘッダー
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .3s ease, background .3s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 4px 24px rgba(135, 206, 250, .22);
}
.header__inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}
.header__logo img { width: auto; height: 52px; }

.gnav { display: flex; align-items: center; gap: 22px; }
.gnav__list { display: flex; align-items: center; gap: 2px; }
.gnav__list a {
  display: inline-block;
  padding: 8px 13px;
  border-radius: var(--radius-pill);
  color: var(--text);
  font-size: .92rem;
  font-weight: 700;
  transition: background .25s ease, color .25s ease;
}
.gnav__list a:hover { background: var(--blue-pale); color: var(--blue-deep); }
.gnav__cta { display: flex; gap: 10px; }

.menu-toggle { display: none; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn--sm { padding: 9px 20px; font-size: .88rem; }
.btn--lg { padding: 17px 46px; font-size: 1.05rem; }
.btn--blue {
  background: linear-gradient(135deg, #8CD0FA, #6FBCEF 55%, #54A6DE);
  color: #fff;
  text-shadow: 0 1px 4px rgba(58, 124, 168, .5);
  box-shadow: 0 6px 18px rgba(135, 206, 250, .45);
}
.btn--blue:hover { box-shadow: 0 10px 26px rgba(135, 206, 250, .6); }
.btn--line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 6px 18px rgba(6, 199, 85, .3);
}
.btn--line:hover { box-shadow: 0 10px 26px rgba(6, 199, 85, .42); }
.btn--line img { width: 28px; height: 28px; border-radius: 6px; }

/* ============================================================
   ファーストビュー
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 100vh, 1020px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 24px) 20px 70px;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 5vw, 60px);
  max-width: 760px;
}
.hero__logo {
  width: clamp(200px, 28vw, 290px);
  margin-inline: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, .95)) drop-shadow(0 0 4px rgba(255, 255, 255, .9));
}
.hero__lead {
  font-size: clamp(1.02rem, 2.2vw, 1.3rem);
  font-weight: 700;
  color: var(--blue-ink);
  margin-top: 14px;
  text-shadow: 0 0 14px rgba(255, 255, 255, .95), 0 0 5px rgba(255, 255, 255, .9), 0 1px 2px rgba(255, 255, 255, .9);
}
.hero__title {
  font-size: clamp(1.32rem, 3.6vw, 2.25rem);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: .02em;
  color: var(--blue-deep);
  text-shadow: 0 0 18px rgba(255, 255, 255, .95), 0 0 6px rgba(255, 255, 255, .9), 0 1px 2px rgba(255, 255, 255, .9);
}

.hero__deco {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.hero__deco--l { left: clamp(12px, 6vw, 110px); bottom: 90px; }
.hero__deco--r { right: clamp(12px, 6vw, 110px); top: 140px; }

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  text-align: center;
  color: var(--blue-ink);
  font-family: var(--font-en);
  font-size: .8rem;
  letter-spacing: .25em;
}
.hero__scroll i {
  display: block;
  width: 8px;
  height: 8px;
  margin: 6px auto 0;
  border-radius: 50%;
  background: var(--blue);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   セクション共通
   ============================================================ */
.section {
  position: relative;
  padding: clamp(64px, 9vw, 104px) 0;
}
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--tight { padding-top: 0; }

.heading {
  position: relative;
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.7;
  color: var(--blue-deep);
  margin-bottom: clamp(40px, 6vw, 64px);
  padding-top: 30px;
}
.heading__deco {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  width: 44px;
  display: block;
  opacity: .9;
  --bloom-opacity: .9;
}
.heading--quote { padding-top: 8px; }

/* ふわっとフェードイン */
[data-fade] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s ease, transform .9s ease;
}
[data-fade].is-visible { opacity: 1; transform: none; }
.stagger.is-visible > * { opacity: 0; transform: translateY(20px); animation: riseIn .8s ease forwards; }
.stagger.is-visible > *:nth-child(1) { animation-delay: .05s; }
.stagger.is-visible > *:nth-child(2) { animation-delay: .17s; }
.stagger.is-visible > *:nth-child(3) { animation-delay: .29s; }
.stagger.is-visible > *:nth-child(4) { animation-delay: .41s; }
.stagger.is-visible > *:nth-child(5) { animation-delay: .53s; }
@keyframes riseIn { to { opacity: 1; transform: none; } }

/* 花のあしらい：スクロールに合わせてふわっと咲く */
[data-bloom] {
  opacity: 0;
  translate: 0 16px;
  scale: .6;
  transition:
    opacity 1.1s ease,
    translate 1.3s cubic-bezier(.3, 1.1, .45, 1),
    scale 1.3s cubic-bezier(.34, 1.35, .5, 1);
}
[data-bloom].is-visible {
  opacity: var(--bloom-opacity, 1);
  translate: 0 0;
  scale: 1;
}
/* 花畑は1輪ずつ順番に */
[data-bloom] > * { opacity: 0; transition: opacity .8s ease; }
[data-bloom].is-visible > * { opacity: 1; }
[data-bloom].is-visible > *:nth-child(2) { transition-delay: .2s; }
[data-bloom].is-visible > *:nth-child(3) { transition-delay: .4s; }

/* ============================================================
   お悩みチェックリスト
   ============================================================ */
.checklist {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: 16px;
}
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--blue-pale);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 18px 22px;
}
.checklist__icon { flex: 0 0 30px; width: 30px; margin-top: 4px; }
.checklist__item p { font-size: .98rem; }

/* ============================================================
   原因（脳のバグ）
   ============================================================ */
.brain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 30px);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.brain__card {
  position: relative;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  padding: 26px 20px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.brain__img {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 14px;
}
.brain__img img { margin-inline: auto; }
.brain__card figcaption {
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue-ink);
  line-height: 1.7;
}
.brain__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-en);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
}
.brain__badge--before { background: #fff; color: var(--text); border: 1.5px solid #E3DED2; }
.brain__badge--after  { background: linear-gradient(135deg, #9AD6FB, var(--blue)); color: #fff; }
.brain__card--before::after {
  content: "";
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  border: 11px solid transparent;
  border-left: 16px solid var(--blue-soft);
  z-index: 1;
}
.cause__text {
  max-width: 720px;
  margin-inline: auto;
  font-size: .98rem;
}

/* ============================================================
   ビフォー・アフター表
   ============================================================ */
.ba {
  max-width: 880px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ba__head {
  text-align: center;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 14px 10px;
  border-radius: var(--radius-md);
  line-height: 1.5;
}
.ba__head small { display: block; font-size: .78rem; font-weight: 500; }
.ba__head--before { background: #F3EFE4; color: var(--text); }
.ba__head--after  { background: linear-gradient(135deg, #9AD6FB, var(--blue)); color: #fff; text-shadow: 0 1px 3px rgba(58,124,168,.4); }
.ba__cell {
  display: flex;
  align-items: center;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: .94rem;
  box-shadow: var(--shadow-card);
}
.ba__cell--before { background: var(--cream); }
.ba__cell--after  { background: var(--blue-pale); color: var(--blue-ink); font-weight: 700; }

/* ============================================================
   オーナーメッセージ
   ============================================================ */
.heading--quote::before,
.heading--quote::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 24px;
  margin: 0 14px;
  vertical-align: middle;
  background: radial-gradient(circle at 30% 30%, var(--blue-soft), var(--blue));
  border-radius: 50% 50% 0 50%;
  opacity: .55;
}
.heading--quote::after { border-radius: 50% 50% 50% 0; transform: rotate(180deg); }

.owner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(28px, 4.5vw, 56px);
  align-items: start;
}
.owner__text p { margin-bottom: 1.2em; font-size: .98rem; }
.owner__text p:last-child { margin-bottom: 0; }
.owner__quote {
  background: var(--white);
  border-left: 5px solid var(--blue);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 18px 22px;
  font-weight: 700;
  color: var(--blue-ink);
}
.owner__side { position: sticky; top: calc(var(--header-h) + 24px); }
.owner__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  margin-bottom: 18px;
}
.owner__photo img {
  border-radius: var(--radius-lg);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-soft);
}
.owner__photo-deco {
  position: absolute;
  top: -22px;
  right: -16px;
  width: 56px;
  transform: rotate(14deg);
}
.owner__profile {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 18px 22px;
  font-size: .88rem;
}
.owner__name {
  font-weight: 700;
  color: var(--blue-deep);
  font-size: 1.02rem;
  margin-bottom: 6px;
}

/* ============================================================
   サロンでの過ごし方（STEP）
   ============================================================ */
.steps {
  display: grid;
  gap: clamp(34px, 5vw, 54px);
  max-width: 920px;
  margin-inline: auto;
}
.step-row {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(22px, 3.5vw, 40px);
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 38px);
  box-shadow: var(--shadow-card);
}
.step-row--rev { grid-template-columns: 340px 1fr; }
.step-row--rev .step-row__body { order: 2; }
.step-row--rev .step-row__photo { order: 1; }

.step-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #9AD6FB, var(--blue) 60%, #6FBCEF);
  border-radius: var(--radius-pill);
  padding: 4px 22px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(135, 206, 250, .4);
  text-shadow: 0 1px 3px rgba(58, 124, 168, .4);
}
.step-badge small { font-size: .78rem; letter-spacing: .2em; }
.step-row__body h3 {
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
  line-height: 1.6;
}
.step-row__body p { font-size: .95rem; }
.step-row__photo img {
  border-radius: var(--radius-md);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   メニュー・サービス
   ============================================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.menu-card__photo { aspect-ratio: 11 / 9; overflow: hidden; }
.menu-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.menu-card__body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.6;
}
.menu-card__body p { font-size: .9rem; }
.menu-card__label { color: var(--blue-ink); }
.menu-card__price {
  margin-top: auto;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: .92rem;
}
.menu-card__price strong { color: var(--blue-ink); }

/* ============================================================
   サロン情報
   ============================================================ */
.info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3.5vw, 36px);
  align-items: stretch;
}
.info__table {
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  height: fit-content;
}
.info__table th, .info__table td {
  text-align: left;
  padding: 16px 20px;
  font-size: .94rem;
  border-bottom: 1.5px dashed var(--blue-soft);
  vertical-align: top;
}
.info__table tr:last-child th, .info__table tr:last-child td { border-bottom: none; }
.info__table th {
  width: 6.5em;
  color: var(--blue-deep);
  font-weight: 700;
  white-space: nowrap;
}
.info__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 320px;
}
.info__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ============================================================
   ご予約CTA
   ============================================================ */
.section--cta {
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-pale) 45%, var(--cream) 100%);
}
.cta {
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, .8);
  border: 1.5px solid rgba(255, 255, 255, .95);
  border-radius: 44px;
  box-shadow: var(--shadow-soft);
  padding: clamp(44px, 6vw, 72px) clamp(22px, 5vw, 64px);
}
.cta__deco { position: absolute; display: flex; align-items: flex-end; gap: 8px; pointer-events: none; }
.cta__deco--l { left: 26px; top: -30px; }
.cta__deco--r { right: 26px; bottom: -16px; }
.cta__family {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 20px;
}
.fam { display: block; }
.fam--child { width: 52px; }
.fam--mom { width: 46px; }
.fam--dog { width: 60px; }
.cta__message {
  font-size: clamp(1.08rem, 2.4vw, 1.4rem);
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 2;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.cta__actions {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
}
.cta__block { display: grid; gap: 14px; justify-items: center; }
.cta__label { font-size: .95rem; font-weight: 700; }

/* ============================================================
   フッター
   ============================================================ */
.footer {
  background: var(--white);
  padding: clamp(44px, 6vw, 64px) 0 90px;
  text-align: center;
  border-top: 1.5px solid var(--blue-pale);
}
.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 6px;
  margin-bottom: 30px;
}
.footer__nav a {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: var(--text);
  font-size: .9rem;
  font-weight: 700;
}
.footer__nav a:hover { background: var(--blue-pale); color: var(--blue-deep); }
.footer__logo img { width: 180px; margin-inline: auto; margin-bottom: 18px; }
.footer__copy { font-size: .8rem; color: #9B9B9B; }

/* ---------- ページトップ ---------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #9AD6FB, var(--blue));
  color: #fff;
  box-shadow: 0 6px 18px rgba(135, 206, 250, .5);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 22px; height: 22px; }
.to-top:hover { transform: translateY(-3px); }

/* ============================================================
   レスポンシブ（〜768px）
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .header__logo img { height: 42px; }

  /* ハンバーガー */
  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 14px;
    background: var(--blue-pale);
  }
  .menu-toggle__bar {
    width: 20px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--blue-deep);
    transition: transform .3s ease, opacity .3s ease;
  }
  .menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .gnav {
    position: fixed;
    top: var(--header-h);
    left: 12px;
    right: 12px;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    background: rgba(255, 255, 255, .97);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }
  .gnav.is-open { opacity: 1; visibility: visible; transform: none; }
  .gnav__list { flex-direction: column; gap: 2px; }
  .gnav__list a { display: block; text-align: center; padding: 11px; font-size: 1rem; }
  .gnav__cta { flex-direction: column; gap: 10px; }
  .gnav__cta .btn { width: 100%; padding: 13px; font-size: .98rem; }

  .hero { min-height: 88vh; padding-bottom: 84px; }
  .br-sp { display: inline; }
  .hero__deco--l { left: 8px; bottom: 64px; transform: scale(.72); transform-origin: left bottom; }
  .hero__deco--r { right: 8px; top: 96px; transform: scale(.72); transform-origin: right top; }

  .wave svg { height: 44px; }
  .wave__nemo { width: 44px; bottom: 14px; }
  .field { transform: scale(.72); }
  .field--bl { left: 2%; bottom: 10px; transform-origin: left bottom; }
  .field--br { right: 2%; bottom: 10px; transform-origin: right bottom; }
  .field--tl { left: 2%; top: 12px; transform-origin: left top; }

  .checklist__item { padding: 15px 16px; }
  .checklist__item p { font-size: .92rem; }

  .brain { grid-template-columns: 1fr; gap: 34px; max-width: 420px; margin-inline: auto; }
  .brain__card--before::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -30px;
    transform: translateX(-50%);
    border: 11px solid transparent;
    border-top: 16px solid var(--blue-soft);
  }

  .ba { gap: 10px; grid-template-columns: 1fr; }
  .ba__head--before { order: 1; }
  .ba__cell--before { order: 2; }
  .ba__head--after { order: 3; margin-top: 18px; }
  .ba__cell--after { order: 4; }

  .owner { grid-template-columns: 1fr; }
  .owner__side { position: static; max-width: 340px; margin-inline: auto; }

  .step-row, .step-row--rev { grid-template-columns: 1fr; }
  .step-row--rev .step-row__body { order: 1; }
  .step-row--rev .step-row__photo { order: 2; }
  .step-row__photo { max-width: 420px; margin-inline: auto; }

  .menu-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }

  .info { grid-template-columns: 1fr; }
  .info__map { min-height: 260px; }
  .info__map iframe { min-height: 260px; }

  .cta { border-radius: 30px; }
  .cta__deco--l { transform: scale(.7); transform-origin: left top; left: 12px; top: -24px; }
  .cta__deco--r { transform: scale(.7); transform-origin: right bottom; right: 12px; bottom: -10px; }
  .cta__actions { flex-direction: column; align-items: stretch; gap: 26px; }
  .cta__block .btn { width: 100%; max-width: 340px; }

  .to-top { right: 14px; bottom: 14px; width: 46px; height: 46px; }
}

/* ---------- 動きを抑えたい場合 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .float-a, .float-b, .hero__scroll i, .wave__nemo svg { animation: none; }
  [data-fade] { opacity: 1; transform: none; transition: none; }
  [data-bloom] { opacity: var(--bloom-opacity, 1); translate: none; scale: none; transition: none; }
  [data-bloom] > * { opacity: 1; transition: none; }
  .stagger.is-visible > * { animation: none; opacity: 1; transform: none; }
}
