/* ============================================================
   bodycare salon daily（制作イメージ）
   トーン：やわらぎ・寄り添い（ママの休息室）
   配色：アイボリー #faf6f2 × ピンクベージュ #f3e9e3 × くすみローズ #c49a92
   見出し：Noto Serif JP／本文：Zen Maru Gothic／手書き：Klee One（限定使用）
   ============================================================ */

:root {
  --bg:        #faf6f2;
  --bg-soft:   #f3e9e3;
  --bg-card:   #ffffff;
  --ink:       #4a3f3a;
  --ink-soft:  #8a7a72;
  --main:      #c49a92;   /* くすみローズ：面・帯・飾り用（細字には使わない） */
  --main-deep: #9c6b62;   /* 文字用の濃ローズ */
  --main-pale: #e9d5cf;
  --accent:    #a8967a;   /* グレージュ：線・点のみ */
  --line-green:#06C755;
  --serif: 'Noto Serif JP', serif;
  --sans:  'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', sans-serif;
  --klee:  'Klee One', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 2.0;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0.03em;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.sp-only { display: none; }

/* ---------- サンプルバナー ---------- */
.sample-banner {
  background: var(--main-deep);
  color: #fdf8f5;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.6;
  padding: 7px 12px;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 242, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--main-pale);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo { line-height: 1.3; }
.logo .logo-en {
  display: block;
  font-family: var(--serif);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
}
.logo .logo-main {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  color: var(--ink);
}

.nav { display: flex; gap: 18px; flex-wrap: wrap; }
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.nav a:hover { color: var(--main-deep); }

.header-line {
  background: var(--line-green);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- スマホ用ハンバーガーメニュー ---------- */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(74, 63, 58, 0.45);
  z-index: 160;
}
.nav-overlay.open { display: block; }

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 74%;
  max-width: 300px;
  background: var(--bg-card);
  z-index: 170;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  padding: 4.5rem 0 1.5rem;
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.12);
}
.mobile-nav[data-open="true"] { transform: translateX(0); }
.mobile-nav a {
  padding: 1rem 1.6rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 1rem;
  border-bottom: 1px solid var(--main-pale);
}
.mobile-nav .mn-cta { padding: 1.2rem 1.6rem; text-align: center; }
.mobile-nav .mn-cta .btn-line {
  display: inline-block;
  text-align: center;
  background: var(--line-green);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
}
@media (min-width: 981px) {
  .mobile-nav, .nav-overlay { display: none !important; }
}

/* ---------- ヒーロー（フルスクリーン3枚スライド＋ズーム） ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  height: calc(100vh - 64px);
  height: calc(100svh - 64px);
  display: flex;
  align-items: flex-end;
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; transition: opacity 1.6s ease;
}
.hero-slide picture, .hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.is-active { opacity: 1; }
.hero-slide.is-active img { animation: heroZoom 8.5s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide.is-active img { animation: none; }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(74, 63, 58, 0.52) 0%, rgba(74, 63, 58, 0.18) 45%, rgba(74, 63, 58, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 34px;
  color: #fdf8f5;
}

.hero-top {
  position: absolute;
  top: 26px;
  left: 0; right: 0;
  z-index: 2;
}
.hero-kicker {
  display: inline-block;
  background: rgba(253, 248, 245, 0.92);
  color: var(--main-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 2.35rem;
  font-weight: 600;
  text-shadow: 0 1px 14px rgba(74, 63, 58, 0.45);
  margin-bottom: 14px;
}

.hero-lead {
  font-size: 1.02rem;
  text-shadow: 0 1px 10px rgba(74, 63, 58, 0.5);
  margin-bottom: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(253, 248, 245, 0.92);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 999px;
}
.hero-badge .star { color: #d9a441; letter-spacing: 0.02em; }
.hero-badge { text-decoration: none; transition: opacity 0.2s; }
.hero-badge:hover { opacity: 0.85; }

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn { display: none; }
.hero-btns { display: flex; gap: 14px; }

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  border-radius: 14px;
  padding: 14px 34px;
  line-height: 1.5;
  font-weight: 700;
}
.btn .small { font-size: 0.72rem; font-weight: 400; opacity: 0.92; }
.btn-line { background: var(--line-green); color: #fff; box-shadow: 0 4px 16px rgba(6, 199, 85, 0.32); }
.btn-line:hover { opacity: 0.92; }
.btn.big { font-size: 1.12rem; padding: 18px 46px; }

/* ---------- セクション共通 ---------- */
.section { padding: 84px 0; }
.sec-soft { background: var(--bg-soft); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.section-head { text-align: center; margin-bottom: 44px; }
.section-head.left { text-align: left; }
.section-head h2 { font-size: 1.75rem; color: var(--ink); }

.kicker {
  display: block;
  color: var(--main-deep);
  font-size: 0.95rem;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.klee { font-family: var(--klee); font-weight: 600; }

/* ---------- 共感：お悩み ---------- */
.onayami-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 26px;
  max-width: 860px;
  margin: 0 auto;
}
.onayami-list li {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.96rem;
  line-height: 1.7;
  box-shadow: 0 2px 10px rgba(164, 132, 122, 0.08);
}
.ic { flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; }
.ic img { width: 100%; height: 100%; object-fit: contain; }

.onayami-note {
  text-align: center;
  margin-top: 36px;
  font-family: var(--klee);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--main-deep);
}

/* ---------- 想い ---------- */
.omoi-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}
.omoi-photo { position: sticky; top: 96px; }
.owner-img { border-radius: 50%; box-shadow: 0 6px 24px rgba(164, 132, 122, 0.22); }
.omoi-caption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 16px;
  line-height: 1.7;
}
.omoi-text p { margin-bottom: 1.3em; }
.omoi-quote {
  font-family: var(--klee);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--main-deep);
  border-left: 3px solid var(--main);
  padding: 6px 0 6px 20px;
  margin: 1.6em 0;
  line-height: 2.1;
}

/* ---------- 大切にしていること ---------- */
.taisetsu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.taisetsu-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 0 26px 30px;
  position: relative;
  box-shadow: 0 2px 12px rgba(164, 132, 122, 0.1);
  overflow: hidden;
}
.taisetsu-card-photo {
  margin: 0 -26px 20px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.taisetsu-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.taisetsu-card .ic { width: 58px; height: 58px; margin-bottom: 14px; }
.taisetsu-card h3 { font-size: 1.08rem; margin-bottom: 10px; color: var(--ink); }
.taisetsu-card p { font-size: 0.9rem; line-height: 1.95; color: var(--ink); }

/* ---------- ご感想 ---------- */
.voice-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 999px;
  margin-top: 14px;
}
.voice-badge .star { color: #d9a441; }
.voice-badge { text-decoration: none; color: var(--ink); transition: opacity 0.2s; cursor: pointer; }
.voice-badge:hover { opacity: 0.8; }

.voice-disclaimer {
  text-align: center;
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ---------- Googleの口コミ（誘導CTA） ---------- */
.google-reviews-cta {
  margin-top: 40px;
  background: var(--bg-card);
  border: 1px solid var(--main-pale);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
}
.google-reviews-cta-lead {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
}
.google-reviews-cta-score {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.google-reviews-cta-score .star { color: #d9a441; }
.google-reviews-cta-btn {
  display: inline-block;
  background: var(--main);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 40px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.google-reviews-cta-btn:hover { opacity: 0.85; }
.gr-note { text-align: center; font-size: 0.76rem; color: var(--ink-soft); margin-top: 4px; }
.google-reviews-lead {
  text-align: center;
  font-family: var(--klee);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--main-deep);
  margin-bottom: 20px;
}
.google-reviews-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.google-reviews-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 6px 4px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1 1 auto;
  min-width: 0;
}
.google-reviews-grid::-webkit-scrollbar { display: none; }
.google-review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 2px 10px rgba(164, 132, 122, 0.1);
  display: flex;
  flex-direction: column;
}
.gr-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.gr-avatar {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--main-pale);
  color: var(--main-deep);
  font-weight: 700;
  font-size: 0.86rem;
  display: grid;
  place-items: center;
}
.gr-who { display: flex; flex-direction: column; line-height: 1.4; }
.gr-name { font-size: 0.86rem; font-weight: 700; color: var(--ink); }
.gr-time { font-size: 0.72rem; color: #d9a441; }
.gr-tags { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.gr-tags span {
  background: var(--bg-soft);
  color: var(--main-deep);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.gr-text {
  font-size: 0.84rem;
  line-height: 1.85;
  color: var(--ink);
}
.gr-text.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gr-more {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--main-deep);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}
.gr-prev, .gr-next { flex: 0 0 auto; }

.voice-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.voice-slider {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 14px 4px 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1 1 auto;
  min-width: 0;
}
.voice-slider::-webkit-scrollbar { display: none; }
.voice-slider .voice-card {
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
}
.voice-arrow {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border: 1px solid var(--main-pale);
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--main-deep);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(164, 132, 122, 0.14);
}
.voice-arrow:hover { background: var(--bg-soft); }
.voice-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}
.voice-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--main-pale);
  transition: background 0.25s;
}
.voice-dots span.is-active { background: var(--main-deep); }
.voice-card {
  background: var(--bg-card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(164, 132, 122, 0.1);
  display: flex;
  flex-direction: column;
}
.voice-card figure { aspect-ratio: 4 / 3; overflow: hidden; }
.voice-card figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.voice-text { padding: 20px 22px 6px; font-size: 0.9rem; line-height: 1.95; }
.voice-text.placeholder { color: var(--ink-soft); }
.voice-meta { padding: 0 22px 20px; font-size: 0.76rem; color: var(--ink-soft); margin-top: auto; }

/* ---------- Q&A ---------- */
.qa-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.qa-item {
  background: var(--bg-card);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(164, 132, 122, 0.08);
}
.qa-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 48px 16px 20px;
  font-weight: 700;
  font-size: 0.96rem;
  position: relative;
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item .q {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  background: var(--main);
  color: #fff;
  font-family: var(--serif);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}
.qa-arrow {
  position: absolute;
  right: 20px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--main-deep);
  border-bottom: 2px solid var(--main-deep);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s;
}
.qa-item[open] .qa-arrow { transform: translateY(-30%) rotate(-135deg); }
.qa-body { padding: 0 20px 18px 64px; font-size: 0.9rem; }

/* ---------- 流れ・料金 ---------- */
.flow-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto 52px;
  display: grid;
  gap: 0;
}
.flow-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 8px;
  border-bottom: 1px dashed var(--main-pale);
  line-height: 1.7;
}
.flow-list li:last-child { border-bottom: none; }
.flow-list .ic { width: 46px; height: 46px; }
.flow-list b { font-size: 1.0rem; display: block; }
.flow-list li > span:last-child { font-size: 0.82rem; color: var(--ink-soft); display: block; }
.flow-list li b + span { margin-left: 0; }
.flow-list li { flex-wrap: wrap; }
.flow-list li b { flex: 1 1 auto; }
.flow-list li > span:last-child { flex-basis: 100%; padding-left: 64px; }

.price-table { max-width: 640px; margin: 0 auto; }
.price-others-label {
  max-width: 640px;
  margin: 30px auto 6px;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--main-deep);
}
.price-table-others { padding-top: 2px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 8px;
  border-bottom: 1px solid var(--main-pale);
}
.price-row .name { font-weight: 700; font-size: 0.97rem; line-height: 1.6; }
.price-row .name small { display: block; font-weight: 400; font-size: 0.78rem; color: var(--ink-soft); }
.price-row .price { font-family: var(--serif); font-size: 1.12rem; color: var(--main-deep); white-space: nowrap; }
.price-note { text-align: center; font-size: 0.85rem; margin-top: 22px; }

/* ---------- ご利用前の注意 ---------- */
/* ---------- アクセス ---------- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.access-photo img { border-radius: 18px; }
.access-list { display: grid; grid-template-columns: 96px 1fr; gap: 10px 18px; margin-bottom: 26px; }
.access-list dt { font-weight: 700; font-size: 0.9rem; color: var(--main-deep); }
.access-list dd { font-size: 0.92rem; line-height: 1.8; }
.access-list dd small { color: var(--ink-soft); font-size: 0.78rem; }

.access-map {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 26px;
  box-shadow: 0 2px 10px rgba(164, 132, 122, 0.12);
}
.access-map iframe { display: block; width: 100%; height: 220px; border: 0; }

.ig-lead {
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.9;
}
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 999px;
  background: linear-gradient(45deg, #F58529, #DD2A7B 55%, #8134AF);
}
.ig-mark {
  width: 18px; height: 18px;
  border: 2px solid #fff;
  border-radius: 5px;
  position: relative;
  display: inline-block;
}
.ig-mark::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid #fff;
  border-radius: 50%;
}

/* ---------- CTA帯 ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--main) 0%, var(--main-deep) 100%);
  color: #fdf8f5;
  text-align: center;
  padding: 76px 0 84px;
}
.cta-kicker { font-size: 1.05rem; margin-bottom: 10px; }
.cta-band h2 { font-size: 1.7rem; margin-bottom: 12px; }
.cta-lead { font-size: 0.94rem; margin-bottom: 30px; }
.cta-band .btn-line { box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18); }
.cta-note { margin-top: 24px; font-size: 0.8rem; opacity: 0.92; }
.cta-note a { color: inherit; text-decoration: underline; }

/* ---------- フッター ---------- */
.site-footer {
  background: #3d332e;
  color: #d9cfc9;
  text-align: center;
  padding: 46px 0;
}
.footer-logo { font-family: var(--serif); font-size: 1.3rem; color: #fdf8f5; letter-spacing: 0.14em; margin-bottom: 6px; }
.footer-logo .logo-en { font-size: 0.62rem; letter-spacing: 0.22em; display: block; color: #b3a69e; }
.footer-addr { font-size: 0.8rem; margin-bottom: 18px; }
.footer-note { font-size: 0.72rem; line-height: 1.9; margin-bottom: 18px; }
.footer-sample { font-size: 0.72rem; line-height: 1.9; color: #b3a69e; border-top: 1px solid #55483f; padding-top: 16px; max-width: 620px; margin: 0 auto; }

/* ---------- スマホ固定CTAバー ---------- */

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 980px) {
  .nav { display: none; }
  .omoi-grid { grid-template-columns: 280px 1fr; gap: 36px; }
}

@media (max-width: 800px) {
  body { font-size: 15px; }
  .sp-only { display: inline; }

  .header-line { display: none; }

  /* ヒーロー：下寄せ（顔にテキストが被らないように）・最小テキスト・CTAは固定バー */
  .hero {
    align-items: flex-end;
    min-height: 540px;
    height: calc(100vh - 58px);
    height: calc(100svh - 58px);
  }
  .hero-content { padding: 0 20px 36px; }
  .hero-kicker { font-size: 0.7rem; padding: 4px 12px; margin-bottom: 14px; }
  .hero h1 { font-size: 1.42rem; line-height: 1.9; letter-spacing: 0.04em; }
  .hero-lead { font-size: 0.88rem; margin-bottom: 12px; }
  .hero-btns { display: none; }
  .hero-actions .btn { display: none; }
  .hero-actions { margin-top: 4px; }
  .hero-overlay {
    background: linear-gradient(to top, rgba(74, 63, 58, 0.58) 0%, rgba(74, 63, 58, 0.2) 45%, rgba(74, 63, 58, 0.05) 100%);
  }

  .section { padding: 60px 0; }
  .section-head h2 { font-size: 1.4rem; }

  .onayami-list { grid-template-columns: 1fr; }

  .omoi-grid { grid-template-columns: 1fr; gap: 30px; }
  .omoi-photo { position: static; max-width: 240px; margin: 0 auto; }
  .omoi-quote { font-size: 1.05rem; }

  .taisetsu-grid { grid-template-columns: 1fr; gap: 26px; }

  .voice-arrow { display: none; }
  .voice-slider { gap: 14px; padding: 10px 2px 18px; }
  .voice-slider .voice-card { flex: 0 0 82%; }

  .gr-prev, .gr-next { display: none; }
  .google-reviews-grid { gap: 14px; padding: 6px 2px 10px; }
  .google-review-card { flex: 0 0 86%; }

  .access-grid { grid-template-columns: 1fr; gap: 28px; }
  .ig-lead { text-align: center; }
  .ig-link { display: flex; width: fit-content; margin: 0 auto; }
  .access-list { grid-template-columns: 88px 1fr; }

  .flow-list li > span:last-child { padding-left: 0; }

  .cta-band h2 { font-size: 1.35rem; }
  .cta-band .btn.big { width: 100%; max-width: 380px; }
}
