@charset "UTF-8";
/* =========================================================================
   Relaxation Salon Kokemomo 〜こけもも〜  /  style.css
   静的LP（HTML + CSS + Vanilla JS）
   配色: アイボリー / モスグリーン / テラコッタ差し色 ・ 男女両用
   ========================================================================= */

/* ----------------------------------------------------------------
   1. デザイントークン
   ---------------------------------------------------------------- */
:root {
  /* color */
  --ivory:      #FAF8F4;  /* 背景ベース */
  --greige:     #EFEBE3;  /* 背景サブ（交互セクション） */
  --moss:       #3E4D3C;  /* メイン（葉の深緑） */
  --moss-dark:  #2B362A;  /* 濃（フッター・強調） */
  --sage:       #5C6B51;  /* 明（ホバー・補助） */
  --terracotta: #9C5B52;  /* アクセント（差し色・小面積） */
  --terracotta-soft: #C98A80;
  --charcoal:   #2C2C2C;  /* 本文 */
  --gray:       #6E6A60;  /* 補助文字 */
  --border:     #DCD7CC;  /* 罫線 */
  --white:      #FFFFFF;

  /* semantic */
  --bg:      var(--ivory);
  --text:    var(--charcoal);
  --heading: var(--moss);

  /* type */
  --font-sans: "Noto Sans JP", "Yu Gothic", "游ゴシック体", -apple-system, sans-serif;
  --font-serif:"Noto Serif JP", "Yu Mincho", "游明朝", serif;
  --font-en:   "Cormorant Garamond", "Times New Roman", serif;

  /* layout（--header-h はスクロール後＝アンカー補正に使う実効高さ） */
  --header-h: 56px;
  --maxw: 1160px;
  --maxw-narrow: 780px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --section-pad: clamp(3.75rem, 9vw, 7rem);

  /* misc */
  --radius: 3px;
  --radius-lg: 8px;
  --shadow: 0 18px 50px -28px rgba(43, 54, 42, 0.35);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------------------
   2. リセット & ベース
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, dl, dd, figure { margin: 0; }
strong { font-weight: 700; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

section[id], [id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ----------------------------------------------------------------
   3. ユーティリティ
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--maxw-narrow); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.sp-only { display: inline; }
.pc-only { display: none; }

.section-head { margin-bottom: clamp(2rem, 5vw, 3.25rem); }

.section-eyebrow {
  font-family: var(--font-en);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.9rem;
}
.section-eyebrow--light { color: var(--terracotta-soft); }
.section-head .section-eyebrow { text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--heading);
  font-size: clamp(1.6rem, 4.2vw, 2.4rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.section-title--center { text-align: center; }

.section-lead {
  margin-top: 1.1rem;
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-top: 1.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--moss);
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-more__arrow { transition: transform 0.3s var(--ease); }
.link-more:hover { color: var(--terracotta); border-color: var(--terracotta); }
.link-more:hover .link-more__arrow { transform: translateX(5px); }

/* ----------------------------------------------------------------
   4. ボタン
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.9em;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn--lg { padding: 1.05em 2.6em; font-size: 1rem; }

.btn--primary {
  background: var(--moss);
  color: var(--ivory);
  border-color: var(--moss);
}
.btn--primary:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }

.btn--ghost.btn--dark {
  color: var(--moss);
  border-color: var(--border);
}
.btn--ghost.btn--dark:hover { background: var(--moss); color: var(--ivory); border-color: var(--moss); }

/* ----------------------------------------------------------------
   5. ロゴ
   ---------------------------------------------------------------- */
.logo { display: inline-flex; flex-direction: column; line-height: 1.1; }
.logo__en {
  font-family: var(--font-en);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--moss);
  transition: color 0.4s var(--ease);
}
.logo__en--light { color: var(--ivory); font-size: 1.9rem; }
.logo__ja {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--gray);
  margin-top: 2px;
  transition: color 0.4s var(--ease);
}

/* ----------------------------------------------------------------
   6. ヘッダー / ナビ（ヒーロー上は透明 → スクロールで不透明＋縮小）
   ---------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.header.is-scrolled {
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(220, 215, 204, 0.7);
}
.header__inner {
  height: 62px;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.35s var(--ease);
}
.header.is-scrolled .header__inner { height: var(--header-h); }

/* 透明時（ヒーロー上）はロゴ・リンクを淡色＋影で可読性確保 */
.header .logo__en { color: var(--ivory); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28); }
.header .logo__ja { color: rgba(255, 255, 255, 0.78); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28); }
.header.is-scrolled .logo__en { color: var(--moss); text-shadow: none; }
.header.is-scrolled .logo__ja { color: var(--gray); text-shadow: none; }

/* ハンバーガー */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 130;
}
.nav-toggle__bar {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ivory);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background-color 0.3s var(--ease);
}
.header.is-scrolled .nav-toggle__bar { background: var(--moss); }
.header.nav-open .nav-toggle__bar { background: var(--moss); }
.header.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.header.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* モバイルメニュー背景（オーバーレイ） */
.header.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(43, 54, 42, 0.4);
  z-index: 105;
}

/* ナビ本体（モバイル＝右スライドイン） */
.nav {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(82vw, 320px);
  padding: calc(var(--header-h) + 2rem) 2rem 2rem;
  background: var(--ivory);
  box-shadow: -16px 0 50px -30px rgba(43, 54, 42, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  z-index: 110;
}
.header.nav-open .nav { transform: translateX(0); }

.nav__list { display: flex; flex-direction: column; gap: 1.4rem; }
.nav__list a {
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  position: relative;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}
.nav__list a:hover { color: var(--terracotta); }
.nav__list a:hover::after { width: 100%; }
.nav__cta { margin-top: auto; }

/* ----------------------------------------------------------------
   7. ヒーロー（スライドショー）
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.2s var(--ease);
}
/* アクティブなスライドをゆっくりズームイン（Ken Burns 効果） */
.hero__slide.is-active img { animation: heroZoom 7s var(--ease) forwards; }
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}
/* 写真の上でも白文字が読めるよう、モスグリーン調の暗オーバーレイ */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(36, 46, 35, 0.56) 0%, rgba(36, 46, 35, 0.40) 42%, rgba(36, 46, 35, 0.60) 100%);
}

.hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--header-h) + 1rem) var(--gutter) 5rem;
  text-align: center;
  color: var(--ivory);
}
.hero__copy { max-width: 760px; margin-inline: auto; }

.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 6.4vw, 3.4rem);
  line-height: 1.55;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero__times {
  font-family: var(--font-en);
  font-weight: 400;
  color: var(--terracotta-soft);
  margin-inline: 0.15em;
}
.hero__lead {
  margin-top: 1.5rem;
  font-size: clamp(0.95rem, 2.6vw, 1.15rem);
  letter-spacing: 0.08em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero__scroll-line { width: 1px; height: 46px; background: rgba(255, 255, 255, 0.6); animation: scrollPulse 2.4s var(--ease) infinite; transform-origin: top; }
.hero__scroll-text {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* スライド操作（JSで生成） */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  font-family: var(--font-en);
  font-size: 2rem;
  color: var(--ivory);
  background: rgba(43, 54, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hero__arrow:hover { background: rgba(43, 54, 42, 0.55); border-color: #fff; }
.hero__arrow--prev { left: clamp(1rem, 3vw, 2.5rem); }
.hero__arrow--next { right: clamp(1rem, 3vw, 2.5rem); }

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background-color 0.3s var(--ease), width 0.3s var(--ease), border-radius 0.3s var(--ease);
}
.hero__dot.is-active { background: var(--ivory); width: 26px; border-radius: 5px; }

/* ----------------------------------------------------------------
   8. お悩み共感
   ---------------------------------------------------------------- */
.worry {
  background: var(--moss-dark);
  color: var(--ivory);
  padding-block: var(--section-pad);
  text-align: center;
}
.worry__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 4.6vw, 2.5rem);
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}
.worry__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 2.75rem;
}
.worry__item {
  position: relative;
  padding: 1.1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}
.worry__bridge {
  max-width: 620px;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 2;
}
.worry__bridge strong { color: var(--terracotta-soft); font-weight: 500; }

/* ----------------------------------------------------------------
   9. コンセプト
   ---------------------------------------------------------------- */
.concept { background: var(--ivory); padding-block: var(--section-pad); }
.concept__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.concept__media { position: relative; }
.concept__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.concept__media::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--sage);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.concept__text { margin-top: 1.5rem; color: var(--charcoal); }
.concept__text + .concept__text { margin-top: 1.1rem; }
.concept__note {
  margin-top: 1.75rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--terracotta);
  color: var(--gray);
  font-size: 0.95rem;
}
.concept__note strong { color: var(--terracotta); }

/* ----------------------------------------------------------------
   10. 選ばれる理由
   ---------------------------------------------------------------- */
.reasons { background: var(--greige); padding-block: var(--section-pad); }
.reasons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.reason-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem 2rem;
  overflow: hidden;
}
.reason-card__icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
  margin-bottom: 1.1rem;
}
.reason-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--heading);
  margin-bottom: 0.85rem;
}
.reason-card__text { font-size: 0.92rem; color: var(--gray); line-height: 1.95; }

.reason-card--accent { background: var(--moss-dark); border-color: var(--moss-dark); }
.reason-card--accent .reason-card__icon { filter: brightness(0) invert(1); }
.reason-card--accent .reason-card__title { color: var(--ivory); }
.reason-card--accent .reason-card__text { color: rgba(255, 255, 255, 0.82); }

/* ----------------------------------------------------------------
   11. メニュー & 料金
   ---------------------------------------------------------------- */
.menu { background: var(--ivory); padding-block: var(--section-pad); }

.coupon {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 6vw, 3.75rem);
  background: #F6EEEA;
  border: 1px solid rgba(156, 91, 82, 0.28);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}
.coupon__head {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--terracotta);
  margin-bottom: 1.4rem;
}
.coupon__badge {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.3em 0.9em;
  border-radius: 999px;
  margin-right: 0.7em;
  vertical-align: 2px;
}
.coupon__list { display: grid; gap: 0.7rem; }
.coupon__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed rgba(156, 91, 82, 0.3);
}
.coupon__item:last-child { border-bottom: 0; padding-bottom: 0; }
.coupon__name { font-size: 0.95rem; }
.coupon__price { font-size: 0.95rem; color: var(--gray); white-space: nowrap; }
.coupon__price s { color: var(--gray); }
.coupon__price strong { color: var(--terracotta); font-size: 1.1rem; }

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.menu-tab {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  padding: 0.5em 1.2em;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--moss);
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.menu-tab:hover { background: var(--sage); color: var(--ivory); border-color: var(--sage); }
.menu-tab.is-active { background: var(--moss); color: var(--ivory); border-color: var(--moss); }

.menu-panel {
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 6vw, 3.5rem);
}
.menu-panel[hidden] { display: none; }
.menu-panel__photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 1.6rem;
  display: block;
}
.menu-panel__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--heading);
  padding-bottom: 0.9rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--moss);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
}
.menu-panel__sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.price-list { display: flex; flex-direction: column; }
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.05rem 0.5rem;
  border-bottom: 1px solid var(--border);
}
.price-item__main { display: flex; flex-direction: column; gap: 0.25rem; }
.price-item__name { font-size: 1rem; font-weight: 500; line-height: 1.5; }
.price-item__desc { font-size: 0.82rem; color: var(--gray); }
.price-item__price {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--moss);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.price-item__tag {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.2em 0.7em;
  border-radius: 999px;
  margin-left: 0.5em;
  vertical-align: 2px;
  white-space: nowrap;
}
.price-item--popular {
  background: rgba(156, 91, 82, 0.06);
  border-left: 3px solid var(--terracotta);
  border-bottom-color: rgba(156, 91, 82, 0.2);
  padding-left: 1rem;
  margin-left: -1rem;
}

.menu__cta { text-align: center; margin-top: 1rem; }

/* ----------------------------------------------------------------
   12. お客様の声
   ---------------------------------------------------------------- */
.voice { background: var(--greige); padding-block: var(--section-pad); }
.voice__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.voice-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
}
.voice-card__quote {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--heading);
  margin-bottom: 0.9rem;
}
.voice-card__text { font-size: 0.92rem; color: var(--charcoal); line-height: 1.95; }
.voice-card__person {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--gray);
  text-align: right;
}

/* 赤ちゃん連れOKのご案内 */
.baby-note {
  margin-top: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: grid;
  gap: 1.5rem;
}
.baby-note__media img {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
}
.baby-note__tag {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 0.35em 1.1em;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.baby-note__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--heading);
  margin-bottom: 0.9rem;
}
.baby-note__text { font-size: 0.92rem; color: var(--charcoal); line-height: 1.95; }
.baby-note__text + .baby-note__text { margin-top: 0.8rem; }

@media (min-width: 900px) {
  .baby-note {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: clamp(1.75rem, 3.5vw, 3rem);
    padding: 2.5rem;
  }
}

/* ----------------------------------------------------------------
   13. よくある質問
   ---------------------------------------------------------------- */
.faq { background: var(--ivory); padding-block: var(--section-pad); }
.faq__list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 3rem 1.4rem 2.2rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--heading);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::before {
  content: "Q";
  position: absolute;
  left: 0; top: 1.4rem;
  font-family: var(--font-en);
  font-size: 1.1rem;
  color: var(--terracotta);
}
.faq-item__q::after {
  content: "";
  position: absolute;
  right: 0.6rem; top: 50%;
  width: 12px; height: 12px;
  margin-top: -6px;
  background:
    linear-gradient(var(--moss), var(--moss)) center/12px 1.5px no-repeat,
    linear-gradient(var(--moss), var(--moss)) center/1.5px 12px no-repeat;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-item__q::after { transform: rotate(135deg); }
.faq-item__a { padding: 0 2.2rem 1.5rem; color: var(--charcoal); }
.faq-item__a p { line-height: 1.95; }

/* ----------------------------------------------------------------
   14. 店舗情報
   ---------------------------------------------------------------- */
.access { background: var(--greige); padding-block: var(--section-pad); }
.access__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); }

.info-list { display: flex; flex-direction: column; }
.info-list__row {
  display: grid;
  grid-template-columns: 6.5em 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.info-list__row dt {
  font-weight: 500;
  color: var(--moss);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.info-list__row dd { font-size: 0.95rem; color: var(--charcoal); }
.info-list__row dd a { color: var(--moss); border-bottom: 1px solid var(--border); }

.access__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.access__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.access__map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* ----------------------------------------------------------------
   15. フッター
   ---------------------------------------------------------------- */
.footer { background: var(--moss-dark); color: rgba(255, 255, 255, 0.8); padding-top: clamp(3rem, 7vw, 4.5rem); }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.75rem; }
.footer__addr { margin-top: 1.1rem; font-size: 0.85rem; line-height: 2; }
.footer__addr a { border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.footer__nav ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.footer__nav a { font-size: 0.88rem; color: rgba(255, 255, 255, 0.8); transition: color 0.3s var(--ease); }
.footer__nav a:hover { color: var(--ivory); }
.footer__social { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__social a {
  font-family: var(--font-en);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.footer__social a:hover { border-color: var(--terracotta-soft); }
.footer__copy {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  padding: 1.5rem var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ----------------------------------------------------------------
   16. モバイル固定CTAバー（スクロールで表示）
   ---------------------------------------------------------------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  background: var(--ivory);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 30px -20px rgba(43, 54, 42, 0.4);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.6rem 0.4rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--moss);
}
.mobile-cta__btn + .mobile-cta__btn { border-left: 1px solid var(--border); }
.mobile-cta__icon { font-size: 1.15rem; line-height: 1; }
.mobile-cta__btn--primary { background: var(--moss); color: var(--ivory); }

/* ----------------------------------------------------------------
   17. スクロール演出（IntersectionObserver で .is-visible 付与）
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}
.reveal.reveal--left  { transform: translateX(-44px); }
.reveal.reveal--right { transform: translateX(44px); }
.reveal.reveal--scale { transform: scale(0.93); }
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

/* ----------------------------------------------------------------
   18. レスポンシブ
   ---------------------------------------------------------------- */
@media (max-width: 899px) {
  body { padding-bottom: 64px; } /* 固定CTAバー分 */
}

@media (min-width: 600px) {
  .reasons__grid { grid-template-columns: 1fr 1fr; }
  .voice__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

@media (min-width: 900px) {
  :root { --header-h: 72px; }

  .sp-only { display: none; }
  .pc-only { display: inline; }

  .header__inner { height: 92px; }
  .header .nav-toggle { display: none; }
  .header.nav-open::before { display: none; }

  /* ナビ：横並び */
  .nav {
    position: static;
    height: auto;
    width: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    transform: none;
  }
  .nav__list { flex-direction: row; gap: 1.9rem; }
  .nav__list a { font-size: 0.9rem; color: var(--ivory); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28); }
  .header.is-scrolled .nav__list a { color: var(--charcoal); text-shadow: none; }
  .nav__cta { margin-top: 0; }
  /* 透明時はCTAを反転（暗いヒーロー上でも視認性を確保） */
  .header:not(.is-scrolled) .nav__cta { background: var(--ivory); color: var(--moss); border-color: var(--ivory); }
  .header:not(.is-scrolled) .nav__cta:hover { background: #fff; transform: translateY(-2px); }

  .hero__arrow { display: flex; }
  .mobile-cta { display: none; }

  .concept__grid { grid-template-columns: 0.9fr 1.1fr; }
  .reasons__grid { grid-template-columns: repeat(4, 1fr); }
  .voice__grid { grid-template-columns: repeat(3, 1fr); }
  .access__grid { grid-template-columns: 1fr 1fr; }
  .access__map iframe { height: 100%; min-height: 420px; }
  .footer__inner { grid-template-columns: 1.4fr 1fr 0.8fr; gap: 3rem; align-items: start; }
}

@media (min-width: 1200px) {
  .concept__grid { gap: 5rem; }
}

/* ----------------------------------------------------------------
   20. 装飾・リッチ演出（オーナメント / アニメーション / ホバー）
   ---------------------------------------------------------------- */

/* --- 20-1. セクションの重なり基準（装飾は背面・本文は前面） --- */
.worry, .concept, .reasons, .menu, .voice, .footer { position: relative; overflow: hidden; }
.worry > .container,
.concept > .container,
.reasons > .container,
.menu > .container,
.voice > .container { position: relative; z-index: 1; }

/* --- 20-2. 装飾の葉（SVGスプリッグ）＋ゆらぎ --- */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.deco-leaf {
  position: absolute;
  z-index: 0;
  width: var(--w, 150px);
  height: calc(var(--w, 150px) * 2);
  color: var(--sage);
  opacity: 0.11;
  pointer-events: none;
  transform: rotate(var(--r, 0deg));
  transform-origin: 50% 50%;
  animation-name: leafSway;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.deco-leaf--tl { --w: 150px; top: -30px;  left: -26px;   --r: -16deg; animation-duration: 10s; }
.deco-leaf--tr { --w: 140px; top: -26px;  right: -22px;  --r: 172deg; animation-duration: 11s; animation-delay: -6s; }
.deco-leaf--br { --w: 180px; right: -26px; bottom: -42px; --r: 168deg; animation-duration: 12.5s; animation-delay: -4s; }
@keyframes leafSway {
  0%, 100% { transform: rotate(var(--r, 0deg)); }
  50%      { transform: rotate(calc(var(--r, 0deg) + 4deg)) translateY(-6px); }
}
.worry .deco-leaf  { color: var(--ivory); opacity: 0.10; }
.footer .deco-leaf { color: var(--ivory); opacity: 0.06; }

/* --- 20-3. セクションの淡いグロー --- */
.worry::before, .reasons::before, .voice::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.worry::before   { top: -150px; right: -110px; background: radial-gradient(circle, rgba(92,107,81,0.40), transparent 70%); }
.reasons::before { top: -130px; left: -130px;  width: 380px; height: 380px; background: radial-gradient(circle, rgba(156,91,82,0.10), transparent 70%); }
.voice::before   { bottom: -140px; right: -120px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(92,107,81,0.16), transparent 70%); }

/* --- 20-4. セクション見出しの装飾（飾り罫＋下線オーナメント） --- */
.section-head .section-eyebrow,
.worry .section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85em;
}
.section-head .section-eyebrow::before,
.section-head .section-eyebrow::after,
.worry .section-eyebrow::before,
.worry .section-eyebrow::after {
  content: "";
  width: 30px; height: 1px;
  background: currentColor;
  opacity: 0.55;
  flex: none;
}
.section-title--center { position: relative; padding-bottom: 1.25rem; }
.section-title--center::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 4px;
  width: 88px; height: 1px;
  transform: translateX(-50%) scaleX(1);
  transform-origin: center;
  background: linear-gradient(90deg,
    transparent 0%, var(--sage) 12%, var(--sage) 38%,
    transparent 38%, transparent 62%,
    var(--sage) 62%, var(--sage) 88%, transparent 100%);
}
.section-title--center::before {
  content: "";
  position: absolute;
  left: 50%; bottom: 4px;
  width: 7px; height: 7px;
  transform: translate(-50%, 50%) rotate(45deg);
  background: var(--terracotta);
  z-index: 1;
}
/* 出現時に下線を左から描画（JSのreveal適用時のみ） */
.section-head.reveal .section-title--center::after { transform: translateX(-50%) scaleX(0); transition: transform 0.7s var(--ease) 0.15s; }
.section-head.reveal.is-visible .section-title--center::after { transform: translateX(-50%) scaleX(1); }
.section-head.reveal .section-title--center::before { opacity: 0; transition: opacity 0.5s var(--ease) 0.5s; }
.section-head.reveal.is-visible .section-title--center::before { opacity: 1; }

/* --- 20-5. ヒーロー：ロード時の段階的な立ち上がり --- */
.hero__eyebrow { animation: heroRise 0.9s var(--ease) both 0.25s; }
.hero__title   { animation: heroRise 1s var(--ease) both 0.40s; }
.hero__lead    { animation: heroRise 1s var(--ease) both 0.60s; }
.hero__actions { animation: heroRise 1s var(--ease) both 0.78s; }
.hero__scroll  { animation: heroFade 1s var(--ease) both 1.15s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }

/* --- 20-6. ボタンの光沢スイープ --- */
.btn { position: relative; overflow: hidden; }
.mobile-cta__btn--primary { position: relative; overflow: hidden; }
.btn--primary::before,
.mobile-cta__btn--primary::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 60%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.30), transparent);
  transform: translateX(-180%) skewX(-12deg);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.btn--primary:hover::before,
.mobile-cta__btn--primary:hover::before { transform: translateX(320%) skewX(-12deg); }

/* --- 20-7. カード等のホバー演出 --- */
.reason-card { transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease); }
.reason-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: var(--sage); }
.reason-card--accent:hover { border-color: var(--sage); }
.reason-card__icon { transition: transform 0.45s var(--ease); }
.reason-card:hover .reason-card__icon { transform: scale(1.08) rotate(-3deg); }

/* 理由カードの番号ウォーターマーク */
.reasons__grid { counter-reset: reason; }
.reason-card { counter-increment: reason; }
.reason-card > * { position: relative; z-index: 1; }
.reason-card::after {
  content: "0" counter(reason);
  position: absolute;
  top: 0.7rem; right: 1.1rem;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--moss);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.reason-card--accent::after { color: #fff; opacity: 0.16; }

.voice-card { transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease); }
.voice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sage); }

.coupon { position: relative; overflow: hidden; transition: box-shadow 0.4s var(--ease); }
.coupon:hover { box-shadow: var(--shadow); }
.coupon::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-soft));
}

.worry__item { transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease); }
.worry__item:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.25); transform: translateX(4px); }

.menu-tab { transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.menu-tab:hover { transform: translateY(-2px); }

.info-list__row { transition: background-color 0.3s var(--ease); }
.info-list__row:hover { background: rgba(255,255,255,0.5); }

/* --- 20-8. メニュー写真：枠＋ホバーズーム --- */
.menu-figure {
  display: block;
  margin: 0 0 1.6rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.menu-panel__photo { margin: 0; border-radius: 0; box-shadow: none; transition: transform 0.8s var(--ease); }
.menu-figure:hover .menu-panel__photo { transform: scale(1.06); }

/* --- 20-9. コンセプト写真：枠＋ホバーズーム --- */
.concept__media-inner {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.concept__media-inner img { display: block; transition: transform 0.9s var(--ease); }
.concept__media:hover .concept__media-inner img { transform: scale(1.05); }

/* --- 20-10. FAQ：ホバー＆開閉アニメーション --- */
.faq-item { transition: background-color 0.3s var(--ease); }
.faq-item:hover { background: rgba(62,77,60,0.035); }
.faq-item__q { transition: color 0.3s var(--ease); }
.faq-item__q:hover { color: var(--sage); }
.faq-item[open] .faq-item__q { color: var(--terracotta); }
.faq-item[open] .faq-item__a { animation: faqReveal 0.45s var(--ease); }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* --- 20-11. スクロール進捗バー --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 200;
  pointer-events: none;
}
.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--moss), var(--sage) 50%, var(--terracotta));
  transition: transform 0.1s linear;
}

/* --- 20-12. ページトップへ戻る（PCのみ） --- */
.to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 95;
  width: 46px; height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(250, 248, 244, 0.9);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--moss);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  box-shadow: var(--shadow);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.to-top.is-visible { opacity: 1; transform: none; }
.to-top:hover { background: var(--moss); color: var(--ivory); border-color: var(--moss); }
.to-top__arrow { font-size: 1.2rem; line-height: 1; }
@media (min-width: 900px) { .to-top { display: flex; } }

/* ----------------------------------------------------------------
   21. 背景画像（ボタニカル）
   ---------------------------------------------------------------- */
/* 明色セクション：淡い和紙＋ボタニカル。下地色は multiply で維持し、
   セクションごとに表示位置を変えて単調さを避ける。本文の可読性最優先。 */
/* 選ばれる理由：セージの淡い水彩（白カードが映える明色背景） */
.reasons {
  background-color: var(--greige);
  background-image:
    linear-gradient(rgba(250, 248, 244, 0.28), rgba(250, 248, 244, 0.28)),
    url("../images/bg-reasons.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.reasons::before { display: none; }      /* グローは水彩に含むため不要 */
.reasons .deco-leaf { display: none; }   /* 装飾SVGの葉は背景の植物と重複するため非表示 */

/* お客様の声：明るい光ボケのボタニカル（明色背景・濃い文字／白カードが分離） */
.voice {
  background-color: var(--ivory);
  background-image:
    linear-gradient(rgba(250, 248, 244, 0.34), rgba(250, 248, 244, 0.34)),
    url("../images/bg-voice.jpg?v=2");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.voice .deco-leaf { display: none; }   /* 背景の植物と重複するため非表示 */
.voice::before { display: none; }

/* 店舗情報：暖色の和紙ボタニカル（黒文字を直接のせるため淡いオーバーレイで可読性確保） */
.access {
  background-color: var(--greige);
  background-image:
    linear-gradient(rgba(250, 248, 244, 0.5), rgba(250, 248, 244, 0.5)),
    url("../images/bg-access.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.access::before, .access::after { display: none; }   /* 枝装飾は背景の植物と重複するため非表示 */

/* 暗色セクション：深緑ボタニカル写真＋可読性のための暗幕（グラデーション） */
.worry {
  background-color: var(--moss-dark);
  background-image:
    linear-gradient(rgba(33, 42, 32, 0.58), rgba(33, 42, 32, 0.72)),
    url("../images/bg-dark.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer {
  background-color: var(--moss-dark);
  background-image:
    linear-gradient(rgba(33, 42, 32, 0.76), rgba(33, 42, 32, 0.84)),
    url("../images/bg-dark.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
/* 写真の植物と重複するため、暗色セクションでは装飾の葉・グローを控える */
.worry::before { display: none; }
.worry .deco-leaf, .footer .deco-leaf { display: none; }

/* 下部CTA：水彩のにじみをバナー背景に（明るい中央にボタンを配置） */
.menu__cta {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: clamp(2.5rem, 7vw, 4.5rem) 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--ivory) url("../images/bg-wash.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

/* FAQ・店舗情報：透過の水彩ボタニカル枝をコーナーに（左右対称に配置） */
.faq, .access { position: relative; overflow: hidden; }
.faq > .container, .access > .container { position: relative; z-index: 1; }
.faq::before, .access::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(170px, 32vw, 250px);
  height: clamp(170px, 32vw, 250px);
  background: url("../images/botanical-branch.png") center / contain no-repeat;
  opacity: 0.7;
  pointer-events: none;
}
.faq::before    { top: -10px; left: -44px;  transform: rotate(6deg); }
.access::before { top: -10px; right: -44px; transform: scaleX(-1) rotate(6deg); }

/* ----------------------------------------------------------------
   22. 日本語の改行最適化（行末の1〜数文字／単語途中の改行を防ぐ）
       ※ text-wrap: balance / pretty は最近の Safari・Chrome（iOS17.4+）で有効。
         未対応環境では通常折り返しにフォールバック（実害なし）。
   ---------------------------------------------------------------- */
/* 基本：厳格な禁則処理（小書き仮名・長音・句読点を行頭/行末に置かない） */
body { line-break: strict; }

/* 見出し・短文：各行の長さを均等化して“ぽつん改行”を防ぐ */
.hero__title, .hero__lead,
.section-title, .section-lead,
.worry__title, .worry__item, .worry__bridge,
.reason-card__title, .voice-card__quote,
.menu-panel__title, .coupon__head, .faq-item__q,
.concept__note {
  text-wrap: balance;
}

/* 長め本文：最終行に1〜数文字だけ残る孤立（オーファン）を防ぐ */
.concept__text,
.reason-card__text, .voice-card__text,
.faq-item__a p, .price-item__desc,
.info-list__row dd, .footer__addr {
  text-wrap: pretty;
}

/* 短い語・単位を途中で割らない（はみ出さない短語のみ。例：60分／軽やかさ）
   ※ 見出しタイトル（.reason-card__title 等）は keep-all を外す。
     CJKに空白が無い長いタイトルだと折り返せず、はみ出して途切れるため。 */
.hero__title,
.price-item__name,
.coupon__name,
.worry__bridge strong,
.concept__note strong {
  word-break: keep-all;
}
/* 見出し内で割られたくない短語だけ個別に保護（例：ストレッチ／新感覚） */
.kw-nb { white-space: nowrap; }

/* スマホ：2行折り返しを避け、できるだけ1行に収める（フォント・余白を調整） */
@media (max-width: 599px) {
  .hero__title { font-size: clamp(1.4rem, 6.6vw, 2rem); }
  .worry__item { font-size: clamp(0.84rem, 3.6vw, 1rem); letter-spacing: 0; padding: 0.95rem 0.8rem; }
  .reason-card__title { font-size: 1rem; letter-spacing: 0; }
  .coupon__head { font-size: 1.02rem; }
  .coupon__name, .coupon__price { font-size: 0.86rem; }
  .coupon__price strong { font-size: 1rem; }

  /* 下部CTAボタン：「ご予約・空席確認はこちら」を1行に */
  .menu__cta .btn { white-space: nowrap; font-size: 0.9rem; padding-inline: 1.5em; letter-spacing: 0.04em; }

  /* FAQの質問：1行に */
  .faq-item__q { font-size: 1rem; padding-right: 2.2rem; letter-spacing: 0; }

  /* 店舗情報：ラベル幅を詰め、本文を小さくしてできるだけ1行に */
  .info-list__row { grid-template-columns: 3.8rem 1fr; gap: 0.6rem; }
  .info-list__row dt { font-size: 0.8rem; letter-spacing: 0; }
  .info-list__row dd { font-size: 0.81rem; line-height: 1.7; letter-spacing: 0; }
}

/* ----------------------------------------------------------------
   19. モーション低減
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__slide { transition: none; }
  .hero__slide img { animation: none !important; transform: none !important; }
  .hero__scroll-line { animation: none; }
  .reveal { opacity: 1; transform: none; filter: none !important; }
  .deco-leaf { animation: none !important; }
  .hero__eyebrow, .hero__title, .hero__lead, .hero__actions, .hero__scroll {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  .btn--primary::before, .mobile-cta__btn--primary::before { display: none; }
  .scroll-progress__bar { transition: none; }
  .faq-item[open] .faq-item__a { animation: none; }
}
