@charset "UTF-8";
/* =================================================================
   écru smile — Whitening Salon LP
   Mobile-first / Responsive
   ================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --color-bg:        #faf6f0;   /* ベース：生成りのクリーム */
  --color-bg-alt:    #f1e9df;   /* セクション背景の差し色 */
  --color-brown:     #6c5949;   /* メインの茶 */
  --color-brown-dk:  #4a3c30;   /* 濃い茶（見出し・フッター） */
  --color-brown-lt:  #a08a73;   /* 薄い茶 */
  --color-accent:    #b89a6e;   /* ゴールド系アクセント */
  --color-gold-1:    #c8b483;   /* シャンパンゴールド（明） */
  --color-gold-2:    #a89058;   /* シャンパンゴールド（暗） */
  --grad-gold: linear-gradient(135deg, #c8b483 0%, #b6a06e 55%, #a89058 100%);
  --color-header:    #f6f1e8;   /* ヘッダーの生成りクリーム */
  --color-text:      #3f3a35;
  --color-white:     #ffffff;
  --color-line:      #ddd0c0;
  --color-line:      rgba(108, 89, 73, .22);

  --font-sans:  "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-en:    "Cormorant Garamond", serif;

  --container: 1080px;
  --container-narrow: 760px;
  --header-h: 64px;

  --ease: cubic-bezier(.25, .46, .45, .94);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.9;
  letter-spacing: .04em;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s var(--ease), color .3s var(--ease); }
a:hover { opacity: .75; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
em { font-style: normal; }
table { border-collapse: collapse; width: 100%; }

/* 日本語の中途半端な改行（1〜2文字だけ折り返す孤立行）を防ぐ */
h1, h2, h3,
.about__label, .reason__sub, .result__sub, .voice__sub, .price__sub, .flow__sub,
.worry__catch, .contact__campaign, .contact__lead,
.footer__tagline, .footer__info, .access__row dd {
  text-wrap: balance;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: 22px; }
.sp-only { display: inline; }
.pc-only { display: none; }

/* スクリーンリーダー専用（SEO用の見出し等を視覚的に隠す） */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Scroll fade-in ---------- */
.js-fade { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js-fade.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-fade { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =================================================================
   HEADER
   ================================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(108, 89, 73, .1);
}
.header__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: 18px;
}
.header__logo a { display: flex; align-items: center; gap: 8px; }
.header__logo img { height: 34px; width: auto; }
.header__logo_text {
  font-family: var(--font-en); font-size: 24px; letter-spacing: .06em;
  color: var(--color-brown-dk);
}

/* nav */
.gnav { display: flex; align-items: center; }
.gnav__list { display: none; }
.gnav__cta {
  display: inline-block;
  background: var(--grad-gold);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 600;
  padding: 13px 28px; border-radius: 999px;
  letter-spacing: .06em;
  box-shadow: 0 2px 8px rgba(168, 144, 88, .35);
}
.gnav__cta:hover { opacity: .9; }

/* hamburger */
.hamburger {
  display: none;
  position: relative; z-index: 1100; margin-left: 6px; padding: 2px;
  flex-direction: column; align-items: center; gap: 4px;
}
.hamburger__lines { position: relative; display: block; width: 26px; height: 18px; }
.hamburger__lines span {
  position: absolute; left: 2px; width: 22px; height: 2px; background: var(--color-brown-dk);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.hamburger__lines span:nth-child(1) { top: 2px; }
.hamburger__lines span:nth-child(2) { top: 8px; }
.hamburger__lines span:nth-child(3) { top: 14px; }
.is-nav-open .hamburger__lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.is-nav-open .hamburger__lines span:nth-child(2) { opacity: 0; }
.is-nav-open .hamburger__lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.hamburger__label {
  font-family: var(--font-sans); font-size: 9px; font-weight: 600;
  letter-spacing: .12em; line-height: 1; color: var(--color-brown-dk);
}
.hamburger__label-close { display: none; }
.is-nav-open .hamburger__label-menu { display: none; }
.is-nav-open .hamburger__label-close { display: inline; }

/* =================================================================
   MAIN VISUAL
   ================================================================= */
.mv {
  position: relative;
  margin-top: var(--header-h);
  overflow: hidden;
  background: var(--color-bg-alt);
}
.mv__slider { position: relative; line-height: 0; }
.mv__slide {
  width: 100%; height: auto; display: block;
  opacity: 0; transition: opacity 1.4s var(--ease);
}
/* 1枚目は通常フローで高さの基準に、2枚目以降は重ねて配置 */
.mv__slide:not(:first-child) { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.mv__slide.is-active { opacity: 1; }
.mv__badge {
  position: absolute; z-index: 3; right: 16px; bottom: 18px;
  display: grid; place-items: center;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--grad-gold); color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 12px; font-weight: 500; text-align: center; line-height: 1.6;
  letter-spacing: .04em;
  box-shadow: 0 6px 18px rgba(173, 149, 96, .45);
  animation: badge-float 3s ease-in-out infinite;
}
@keyframes badge-float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-7px); } }

/* =================================================================
   ABOUT
   ================================================================= */
.about { background: var(--color-white); }

/* 見出し（中央寄せ） */
.about__head { text-align: center; margin-bottom: 26px; }
.about__label {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(17px, 4.4vw, 28px); color: var(--color-brown);
  letter-spacing: .06em; margin-bottom: 12px;
}
.about__label .en { font-family: var(--font-en); font-style: italic; font-size: 1.12em; }
.about__title {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(18px, 4.8vw, 44px); color: var(--color-brown-dk);
  line-height: 1.5; letter-spacing: .03em; white-space: nowrap;
}
.about__quote { margin: 0 .12em; }

/* 本文＋画像（2カラム） */
.about__body { display: grid; gap: 28px; }
.about__text p {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 14.5px; line-height: 2; color: #5f554b;
}
.about__text p + p { margin-top: 22px; }
.about__img img { width: 100%; height: auto; display: block; }

@media (min-width: 900px) {
  .about__head { margin-bottom: 60px; }
  .about__body {
    grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
    max-width: 1040px; margin-inline: auto;
  }
  .about__text p { font-size: 16px; line-height: 2.1; }
}

/* =================================================================
   WORRY
   ================================================================= */
.worry { background: #f1f0ee; }
.worry__heading {
  text-align: center;
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(20px, 5.4vw, 38px); line-height: 1.5; letter-spacing: .03em;
  color: #544e46; margin-bottom: 24px;
}
.worry__list { display: flex; flex-direction: column; align-items: center; max-width: 320px; margin-inline: auto; }
.worry__item { text-align: center; }
.worry__item:not(:first-child) { margin-top: -38px; }
.worry__img img { width: 100%; height: auto; display: block; }
.worry__catch {
  margin-top: 36px; text-align: center;
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(16px, 4.6vw, 28px); line-height: 1.7; letter-spacing: .03em;
  color: #544e46;
}
.worry__catch .brand { font-family: var(--font-en); font-weight: 500; letter-spacing: .04em; }

/* =================================================================
   REASON
   ================================================================= */
.reason { background: var(--color-white); }
.reason__head { text-align: center; margin-bottom: 40px; }
.reason__heading {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(22px, 5.6vw, 34px); color: var(--color-brown-dk);
  line-height: 1.5; letter-spacing: .04em;
}
.reason__heading .en { font-family: var(--font-en); font-weight: 600; }
.reason__sub {
  margin-top: 14px; font-family: var(--font-serif);
  font-size: clamp(14px, 3.8vw, 18px); color: #6b5d52; letter-spacing: .04em;
}
.reason__list { display: grid; gap: 34px; }
.reason__ttl {
  font-family: var(--font-serif); font-weight: 600; font-size: 17px;
  color: var(--color-brown-dk); line-height: 1.5;
  display: flex; gap: 7px; align-items: baseline;
  margin-bottom: 14px;
}
.reason__num { font-family: var(--font-en); font-size: 1.2em; font-weight: 600; }
.reason__img { margin-bottom: 16px; }
.reason__img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.reason__text { font-family: var(--font-serif); font-size: 13.5px; line-height: 1.9; color: #5f554b; }

/* =================================================================
   OWNER（オーナー紹介）
   ================================================================= */
.owner { background: #faf5ee; }
.owner__head { text-align: center; margin-bottom: 30px; }
.owner__label { font-family: var(--font-en); font-style: italic; font-size: clamp(15px, 4vw, 22px); color: var(--color-accent); letter-spacing: .08em; margin-bottom: 4px; }
.owner__heading {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(21px, 5.6vw, 34px); color: var(--color-brown-dk); letter-spacing: .04em;
}
.owner__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.owner__photo {
  width: 210px; aspect-ratio: 1 / 1; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 10px 30px rgba(108, 89, 73, .18);
}
.owner__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 32%; }
.owner__body { text-align: center; }
.owner__role {
  font-family: var(--font-serif); font-size: 13px; color: var(--color-brown-lt);
  letter-spacing: .1em; margin-bottom: 4px;
}
.owner__name {
  font-family: var(--font-serif); font-weight: 600; font-size: 26px;
  color: var(--color-brown-dk); letter-spacing: .08em; margin-bottom: 18px;
  display: flex; align-items: baseline; justify-content: center; gap: 10px;
}
.owner__name_en { font-family: var(--font-en); font-style: italic; font-size: clamp(30px, 8vw, 44px); color: var(--color-brown-dk); letter-spacing: .04em; }
.owner__lead {
  font-family: var(--font-serif); font-weight: 600; font-size: 15px;
  color: var(--color-brown-dk); line-height: 1.8; margin-bottom: 18px;
  text-wrap: balance;
}
.owner__text {
  font-family: var(--font-serif); font-size: 14px; line-height: 2; color: #5f554b;
  text-wrap: balance;
}
.owner__text + .owner__text { margin-top: 12px; }

@media (min-width: 768px) {
  .owner__head { margin-bottom: 44px; }
  .owner__inner {
    flex-direction: row; align-items: center; gap: 52px;
    max-width: 900px; margin-inline: auto;
  }
  .owner__photo { width: 280px; }
  .owner__body { text-align: left; }
  .owner__name { justify-content: flex-start; }
  .owner__lead { font-size: 16px; }
  .owner__text { font-size: 14.5px; }
}

/* =================================================================
   RESULT
   ================================================================= */
.result { background: var(--color-white); }
.result__head { text-align: center; margin-bottom: 36px; }
.result__heading {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(20px, 5.4vw, 32px); color: var(--color-brown-dk);
  line-height: 1.5; letter-spacing: .03em;
}
.result__sub {
  margin-top: 12px; font-family: var(--font-serif);
  font-size: clamp(13px, 3.4vw, 16px); color: #6b5d52; letter-spacing: .08em;
}
.result__list { display: grid; gap: 40px; max-width: 680px; margin-inline: auto; }
.result__bar {
  position: relative;
  background: linear-gradient(180deg, #9d8e81 0%, #877668 100%);
  color: var(--color-white); text-align: center;
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(14px, 3.8vw, 18px); line-height: 1.45; letter-spacing: .04em;
  padding: 14px 44px; border-radius: 8px; margin-bottom: 18px;
}
.result__caret {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-top: 7px solid var(--color-white);
}
.result__compare { display: flex; align-items: center; gap: 12px; }
.result__photo { flex: 1; }
.result__photo img { width: 100%; height: auto; display: block; }
/* ラベル焼き込みのない写真は2:1に切り抜き、Before/Afterラベルを付与 */
.result__photo--crop { position: relative; }
.result__photo--crop img { aspect-ratio: 2 / 1; height: auto; object-fit: cover; }
.result__photo--crop::after {
  content: attr(data-label);
  position: absolute; right: 0; bottom: 0;
  background: #fff; color: #6b5d52;
  font-family: var(--font-en); font-size: 11px; line-height: 1;
  letter-spacing: .04em; padding: 4px 9px;
}
.result__arrow { width: 30px; height: auto; flex-shrink: 0; }
.result__note { text-align: center; font-size: 12px; color: var(--color-brown-lt); margin-top: 28px; }

/* =================================================================
   VOICE
   ================================================================= */
.voice { background: var(--color-white); }
.voice__intro { text-align: center; margin-bottom: 36px; }
.voice__heading {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(20px, 5.2vw, 32px); color: var(--color-brown-dk);
  line-height: 1.5; letter-spacing: .03em;
}
.voice__sub {
  margin-top: 12px; font-family: var(--font-serif);
  font-size: clamp(13px, 3.4vw, 16px); color: #6b5d52; letter-spacing: .08em;
}
.voice__list { display: grid; gap: 26px; align-items: stretch; }
.voice__card { margin: 0; display: flex; flex-direction: column; }
.voice__box { flex: 1; }
.voice__meta {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-bottom: 12px;
}
.voice__person {
  font-family: var(--font-serif); font-weight: 600; font-size: 18px;
  color: var(--color-brown-dk); letter-spacing: .02em;
}
.voice__rating { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 1px; }
.voice__rating-label { font-family: var(--font-serif); font-size: 11px; color: #8a7d72; letter-spacing: .08em; }
.voice__stars { color: #ecb43e; font-size: 24px; line-height: 1; letter-spacing: 2px; }
.voice__box {
  margin: 0; background: #6c6157; border-radius: 6px; padding: 20px 18px;
}
.voice__text {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 13px; line-height: 1.95; color: #fff;
}

/* =================================================================
   COMPARE TABLE
   ================================================================= */
.compare { background: #f4f3f1; }
.compare__heading {
  text-align: center; font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(22px, 5.6vw, 34px); color: var(--color-brown-dk);
  letter-spacing: .04em; margin-bottom: 40px;
}
.compare__hint { display: none; text-align: center; font-size: 12px; color: var(--color-brown-lt); margin: -24px 0 18px; letter-spacing: .06em; }
.compare__wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 767px) { .compare__hint { display: block; } }
.compare__table {
  min-width: 720px; margin-inline: auto; max-width: 1080px;
  background: var(--color-white); border-collapse: collapse;
}
.compare__table th, .compare__table td {
  border: 1px solid #cfc7bc; padding: 16px 12px; text-align: center;
  vertical-align: middle; line-height: 1.5; font-family: var(--font-serif);
}
.compare__table small { display: block; font-size: 11px; font-weight: 400; margin-top: 3px; }

/* 見出し行 */
.compare__table thead th { color: var(--color-white); font-weight: 600; font-size: 13px; }
.compare__table thead .en { display: block; font-family: var(--font-en); font-size: 16px; font-weight: 600; }
.compare__table thead th small { opacity: .95; }
.compare__corner { background: var(--color-white); color: var(--color-brown-dk); font-size: 16px; font-weight: 600; }
.compare__col--beauty  { background: #d8a7a7; }
.compare__col--medical { background: #9c7d7d; }
.compare__col--clinic  { background: #8d8a86; }

/* 本文 */
.compare__table tbody th {
  background: var(--color-white); color: var(--color-brown-dk);
  font-weight: 600; font-size: 14px; white-space: nowrap;
}
.compare__table tbody td { background: var(--color-white); color: #4f463d; font-size: 13.5px; }
.compare__beauty-val { color: #c2898d; font-weight: 600; }

/* =================================================================
   FLOW
   ================================================================= */
.flow { background: #f1f0ee; }
.flow__head { text-align: center; margin-bottom: 40px; }
.flow__heading {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(22px, 5.6vw, 34px); color: var(--color-brown-dk); letter-spacing: .04em;
}
.flow__sub {
  margin-top: 14px; font-family: var(--font-serif);
  font-size: clamp(14px, 3.8vw, 18px); color: #6b5d52; line-height: 1.7; letter-spacing: .03em;
}
.flow__sub--strong { margin-top: 6px; font-weight: 600; }
.flow__list { display: grid; gap: 30px; }
.flow__item {
  position: relative;
  background: var(--color-white);
  border: 1px solid #d8d0c4; border-radius: 14px;
  padding: 22px 24px 24px 86px;
}
.flow__badge {
  position: absolute; left: -12px; top: 10px; z-index: 2;
  width: 92px; height: auto; display: block;
}
.flow__ttl {
  font-family: var(--font-serif); font-weight: 600; font-size: 20px;
  color: var(--color-brown-dk); line-height: 1.4;
  padding-bottom: 12px; margin-bottom: 14px;
  border-bottom: 1px solid #ddd5c9;
}
.flow__text { font-family: var(--font-serif); font-size: 13.5px; line-height: 1.9; color: #5f554b; }

/* =================================================================
   PRICE
   ================================================================= */
.price { background: var(--color-white); }
.price__head { text-align: center; margin-bottom: 40px; }
.price__heading {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(22px, 5.6vw, 34px); color: var(--color-brown-dk); letter-spacing: .04em;
}
.price__sub {
  margin-top: 14px; font-family: var(--font-serif);
  font-size: clamp(14px, 3.8vw, 18px); color: #6b5d52; letter-spacing: .04em;
}
.price__list { display: grid; gap: 24px; }
.price__card {
  background: var(--color-white); border-radius: 6px; overflow: hidden;
  box-shadow: 0 4px 18px rgba(108, 89, 73, .1);
}
.price__card_head { text-align: center; padding: 22px 20px; color: var(--color-white); }
.price__card--beauty  .price__card_head { background: #d8a7a7; }
.price__card--medical .price__card_head { background: #9c7d7d; }
.price__card_head .en {
  display: block; font-family: var(--font-en); font-size: 24px; font-weight: 600; letter-spacing: .04em;
}
.price__card_type { display: block; font-family: var(--font-serif); font-weight: 600; font-size: 18px; margin-top: 3px; }
.price__body { padding: 26px 22px 24px; }
.price__lead-in {
  text-align: center; font-family: var(--font-serif); font-size: 14px; color: #6b5d52;
  padding-bottom: 16px; margin-bottom: 6px; border-bottom: 1px solid #e2dace;
}
.price__row {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 14px; font-family: var(--font-serif);
}
.price__card--beauty  .price__row:nth-child(odd) { background: #f9eded; }
.price__card--medical .price__row:nth-child(odd) { background: #f1eaea; }
.price__label { flex-shrink: 0; font-size: 13.5px; color: var(--color-brown-dk); }
.price__yen { flex: 1; text-align: center; font-size: 14.5px; font-weight: 500; color: var(--color-brown-dk); white-space: nowrap; }
.price__note { text-align: right; font-size: 12px; color: #8a7d72; margin-top: 16px; }
.price__cta { text-align: center; margin-top: 44px; }
.price__cta .contact__lead { margin-bottom: 24px; }

/* =================================================================
   FAQ
   ================================================================= */
.faq { background: var(--color-white); }
.faq__heading {
  text-align: center; font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(22px, 5.6vw, 34px); color: var(--color-brown-dk);
  letter-spacing: .04em; margin-bottom: 40px;
}
.faq__list { display: grid; gap: 24px; max-width: 900px; margin-inline: auto; }
.faq__q {
  width: 100%; text-align: left; position: relative;
  display: flex; align-items: center;
  background: linear-gradient(180deg, #7e6f63 0%, #6d5f54 100%);
  color: var(--color-white);
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(15px, 4vw, 19px); line-height: 1.5;
  padding: 16px 58px 16px 22px; border-radius: 6px;
}
.faq__caret {
  position: absolute; right: 22px; top: 50%;
  width: 0; height: 0;
  border-left: 7px solid transparent; border-right: 7px solid transparent;
  border-top: 8px solid var(--color-white);
  transform: translateY(-50%); transition: transform .35s var(--ease);
}
.faq__item.is-open .faq__caret { transform: translateY(-50%) rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-inner {
  margin-top: 8px; background: var(--color-white);
  border: 1px solid #d6cdc1; border-radius: 6px; padding: 18px 22px;
}
.faq__a p {
  display: flex; gap: 8px; align-items: baseline;
  font-family: var(--font-serif); font-size: 13.5px; line-height: 1.9; color: #5f554b;
}
.faq__mark-a { flex-shrink: 0; color: var(--color-brown); font-weight: 700; font-size: 16px; }

/* =================================================================
   ACCESS
   ================================================================= */
.access { background: var(--color-white); }
.access__heading {
  text-align: center; font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(22px, 5.6vw, 34px); color: var(--color-brown-dk);
  letter-spacing: .04em; margin-bottom: 40px;
}
.access__inner { display: grid; gap: 28px; }
.access__map { overflow: hidden; }
.access__map iframe { width: 100%; height: 300px; display: block; border: 0; }
.access__row {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 4px; border-bottom: 1px solid #e2dace;
}
.access__row:first-child { border-top: 1px solid #e2dace; }
.access__row dt {
  flex-shrink: 0; width: 88px; font-family: var(--font-serif); font-weight: 700;
  font-size: 16px; color: var(--color-brown-dk);
}
.access__row dd { font-family: var(--font-serif); font-size: 14px; line-height: 1.7; color: #6b5d52; }
.access__row dd a { text-decoration: underline; }
.access__map-link {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: fit-content; margin-top: 12px; padding: 9px 18px;
  border: 1px solid var(--color-accent); border-radius: 999px;
  font-family: var(--font-serif); font-size: 13px; color: var(--color-brown);
  text-decoration: none !important; transition: background .3s var(--ease), color .3s var(--ease);
}
.access__map-link:hover { background: var(--color-accent); color: #fff; opacity: 1; }

/* =================================================================
   CONTACT / CAMPAIGN
   ================================================================= */
.contact {
  background: var(--color-white); color: var(--color-text); text-align: center;
  padding: 0;
}
.contact__campaign {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(18px, 4.8vw, 26px); color: var(--color-brown-dk);
  letter-spacing: .06em; padding: 50px 20px 30px;
}
.contact__banner { display: block; width: 100%; }
.contact__banner picture { display: block; }
.contact__banner img { width: 100%; height: auto; display: block; }
.contact__foot { padding-block: 38px 56px; }
.contact__lead { font-size: 13.5px; line-height: 1.95; color: var(--color-text); margin-bottom: 26px; }
.contact__btns { display: grid; gap: 16px; max-width: 360px; margin-inline: auto; }
.contact__btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 20px 24px; min-height: 60px; border-radius: 999px;
  font-family: var(--font-serif); font-weight: 600; font-size: 16px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.contact__btn img { width: 26px; height: 26px; }
.contact__btn--ig, .contact__btn--line {
  background: #fff; color: var(--color-brown-dk);
  box-shadow: 0 4px 14px rgba(74, 60, 48, .16);
}
.contact__btn:hover { opacity: .9; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  position: relative;
  background: var(--color-header); color: var(--color-brown-dk);
  text-align: center; padding-block: 44px 72px;
}
.footer__logo {
  display: flex; align-items: center; justify-content: center;
  width: fit-content; max-width: 100%; margin-inline: auto;
  font-family: var(--font-en); font-size: 30px; letter-spacing: .08em; color: var(--color-brown-dk);
}
.footer__logo_img { height: 44px; width: auto; flex-shrink: 0; }
/* 末尾のletter-spacing分の右余白を相殺して、ロゴ＋店名の見た目を中央に揃える */
.footer__logo span { margin-right: -.08em; }
.footer__tagline { font-family: var(--font-serif); font-size: 13px; margin-top: 6px; color: var(--color-brown); }
.footer__nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px;
  margin: 26px 0; font-size: 12.5px;
}
.footer__nav a { color: var(--color-brown-dk); }
.footer__info {
  font-style: normal; font-size: 12px; line-height: 1.9; color: var(--color-brown);
  margin-bottom: 22px;
}
.footer__info a { text-decoration: underline; }
.footer__copy { font-size: 11px; color: var(--color-brown-lt); letter-spacing: .08em; }

/* =================================================================
   HEADER CTA（スマホ：ハンバーガー横のLINEボタン＋営業時間）
   ================================================================= */
.header__booking { display: none; }

/* =================================================================
   TO TOP（フッター内に固定）
   ================================================================= */
.to-top {
  position: absolute; right: 18px; bottom: 24px; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--color-brown); color: #fff;
  box-shadow: 0 4px 12px rgba(74, 60, 48, .25);
}
.to-top:hover { opacity: .85; }

/* =================================================================
   RESPONSIVE — Tablet
   ================================================================= */
@media (min-width: 600px) {
  .worry__list { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 760px; gap: 10px; }
  .worry__item:not(:first-child) { margin-top: 0; }
  .reason__list { grid-template-columns: repeat(2, 1fr); }
  .voice__list { grid-template-columns: repeat(3, 1fr); }
  .price__list { grid-template-columns: repeat(2, 1fr); }
}

/* =================================================================
   RESPONSIVE — PC
   ================================================================= */
@media (min-width: 900px) {
  :root { --header-h: 88px; }
  body { font-size: 16px; }
  .section { padding-block: 96px; }
  .sp-only { display: none; }
  .pc-only { display: inline; }

  /* header nav */
  .header__inner { padding-inline: 32px; }
  .header__logo img { height: 50px; }
  .gnav { gap: 22px; }
  .gnav__list { display: flex; gap: 20px; }
  .gnav__link {
    font-family: var(--font-serif); font-size: 16px; font-weight: 600;
    color: var(--color-brown-dk); letter-spacing: .03em; position: relative;
  }
  .gnav__link::after {
    content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
    background: var(--color-accent); transition: width .3s var(--ease);
  }
  .gnav__link:hover { opacity: 1; }
  .gnav__link:hover::after { width: 100%; }
  .gnav__cta { font-size: 13px; padding: 11px 22px; }

  /* MV */
  .mv__badge { width: 128px; height: 128px; right: 40px; bottom: 40px; font-size: 15px; line-height: 1.7; }

  /* reason — 2×2 グリッド */
  .reason__head { margin-bottom: 52px; }
  .reason__list { grid-template-columns: repeat(2, 1fr); gap: 48px 56px; max-width: 920px; margin-inline: auto; }
  .reason__ttl { font-size: 19px; }
  .reason__text { font-size: 14px; line-height: 2; }

  /* worry */
  .worry__heading { margin-bottom: 48px; }
  .worry__list { max-width: 1120px; gap: 0; }
  .worry__catch { margin-top: 44px; }

  /* flow */
  .flow__list { gap: 32px; }
  .flow__item { padding: 26px 36px 30px 112px; }
  .flow__badge { width: 108px; left: -16px; top: 12px; }
  .flow__ttl { font-size: 22px; }
  .flow__text { font-size: 14.5px; line-height: 2; }

  /* access two columns */
  .access__inner { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .access__map iframe { height: 100%; min-height: 340px; }
  .access__row { padding: 20px 4px; }
  .access__row dt { width: 104px; font-size: 17px; }
  .access__row dd { font-size: 15px; }

  .contact__btns { grid-template-columns: auto auto; justify-content: center; max-width: none; gap: 48px; }
}

@media (min-width: 1100px) {
  .heading { margin-bottom: 52px; }
  .gnav { gap: 30px; }
  .gnav__list { gap: 26px; }
  .gnav__link { font-size: 17px; letter-spacing: .05em; }
  .gnav__cta { font-size: 16px; padding: 13px 30px; }
}

/* =================================================================
   MOBILE NAV (drawer)
   ================================================================= */
@media (max-width: 899px) {
  .hamburger { display: flex; }

  /* ハンバーガー横の予約ボタン（Instagram／LINEを横並び・改行なし）＋営業時間 */
  .header__inner { padding-inline: 14px; }
  .header__logo img { height: 45px; }
  .header__booking {
    display: flex; flex-direction: column; align-items: flex-start; gap: 5px;
    margin-left: auto; margin-right: 18px;
  }
  .header__btns { display: flex; gap: 20px; }
  .header__ig, .header__cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 5px;
    white-space: nowrap;
    background: #fff; color: var(--color-brown-dk);
    font-family: var(--font-serif); font-weight: 600;
    font-size: 11px; letter-spacing: 0; line-height: 1.2;
    padding: 8px 14px; border-radius: 999px;
    box-shadow: 0 2px 8px rgba(74, 60, 48, .16);
  }
  .header__ig img, .header__cta img { width: 15px; height: 15px; flex-shrink: 0; }
  .header__cta:hover, .header__ig:hover { opacity: .8; }
  .header__hours {
    font-size: 9.5px; line-height: 1; letter-spacing: 0;
    color: var(--color-brown); white-space: nowrap; text-align: left;
  }

  /* 右70%のドロワー（左30%はページをチラ見せ／中身が多い場合は縦スクロール） */
  .gnav {
    position: fixed; top: 0; right: 0; bottom: 0; left: 30%; z-index: 1050;
    flex-direction: column; justify-content: flex-start; gap: 6px;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: calc(var(--header-h) + 16px) 0 36px;
    background: var(--color-header);
    box-shadow: -10px 0 30px rgba(74, 60, 48, .18);
    visibility: hidden; transform: translateX(100%);
    transition: transform .4s var(--ease), visibility .4s;
  }
  .is-nav-open .gnav { visibility: visible; transform: none; }
  .gnav__list { display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .gnav__link {
    display: block; padding: 14px 28px; font-family: var(--font-serif);
    font-size: 17px; color: var(--color-brown-dk);
  }
  .gnav__cta { margin-top: 22px; font-size: 15px; padding: 14px 32px; }
  .gnav__cta--ig { margin-top: 12px; }

  /* ドロワー下部の店舗情報 */
  .gnav__info { margin-top: 22px; text-align: center; }
  .gnav__store {
    font-family: var(--font-serif); font-weight: 600; font-size: 14px;
    color: var(--color-brown-dk); letter-spacing: .08em; margin-bottom: 8px;
  }
  .gnav__hours {
    font-family: var(--font-serif); font-size: 13px;
    letter-spacing: .04em; color: var(--color-brown);
  }
  .gnav__address {
    font-family: var(--font-serif); font-size: 12px; line-height: 1.7;
    letter-spacing: .02em; color: var(--color-brown); margin-top: 8px;
  }
  .gnav__map-link {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    margin-top: 14px; padding: 9px 18px;
    border: 1px solid var(--color-accent); border-radius: 999px;
    font-family: var(--font-serif); font-size: 13px; color: var(--color-brown);
    text-decoration: none; transition: background .3s var(--ease), color .3s var(--ease);
  }
  .gnav__map-link:hover { background: var(--color-accent); color: #fff; opacity: 1; }

  /* 左のチラ見せ部分（タップで閉じる薄暗いオーバーレイ） */
  .gnav-overlay {
    position: fixed; inset: 0; z-index: 1040;
    background: rgba(74, 60, 48, .22);
    opacity: 0; visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s;
  }
  .is-nav-open .gnav-overlay { opacity: 1; visibility: visible; }
  /* メニュー展開中は背面スクロールを固定 */
  body.is-nav-open { overflow: hidden; }
}
@media (min-width: 900px) { .gnav-overlay { display: none; } .gnav__cta--ig, .gnav__info { display: none; } }

/* スマホは各セクションの見出し下の余白も詰める */
@media (max-width: 600px) {
  .reason__head, .result__head, .voice__intro, .compare__heading,
  .flow__head, .price__head, .faq__heading, .access__heading { margin-bottom: 22px; }
  .reason__sub, .result__sub, .voice__sub, .price__sub { margin-top: 8px; }
  .flow__sub { margin-top: 8px; }

  /* ② お悩み画像とキャッチコピーの余白を詰める（画像下の透明部分へ引き上げ） */
  .worry__catch { margin-top: -30px; }
  /* ③ （エクリュ）とは の下余白をゼロに */
  .about__label { margin-bottom: 0; }
  /* ④ 本文の段落間を10pxに */
  .about__text p + p { margin-top: 10px; }
  /* ⑤ お客様の声：氏名と評価を中央寄せ・間隔50px */
  .voice__meta { justify-content: center; gap: 50px; }
}

/* 画面の狭いスマホ（〜374px）はヘッダーのボタンを圧縮して収める */
@media (max-width: 374px) {
  .header__inner { padding-inline: 10px; }
  .header__logo img { height: 40px; }
  .header__booking { margin-right: 10px; }
  .header__btns { gap: 12px; }
  .header__ig, .header__cta { font-size: 10px; padding: 8px 11px; gap: 4px; }
  .header__ig img, .header__cta img { width: 14px; height: 14px; }
  .header__hours { font-size: 9px; }
}

/* =================================================================
   プライバシーポリシー（リンク＋モーダル）
   ================================================================= */
.footer__policy { margin: 0 0 14px; }
.footer__policy-link {
  font-family: var(--font-sans); font-size: 12px; color: var(--color-brown-dk);
  text-decoration: underline; letter-spacing: .04em; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.footer__policy-link:hover { opacity: .7; }

.modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(40, 32, 26, .55); }
.modal__box {
  position: relative; z-index: 1;
  width: 100%; max-width: 720px; max-height: 86vh;
  background: #fff; border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .3);
  transform: translateY(12px); transition: transform .3s var(--ease);
}
.modal.is-open .modal__box { transform: none; }
.modal__close {
  position: absolute; top: 6px; right: 10px; z-index: 2;
  width: 40px; height: 40px; font-size: 26px; line-height: 1;
  color: var(--color-brown-dk); background: none; border: none; cursor: pointer;
}
.modal__close:hover { opacity: .6; }
.modal__content {
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 42px 26px 30px; text-align: left;
}
.modal__title {
  font-family: var(--font-serif); font-weight: 600; font-size: 18px;
  color: var(--color-brown-dk); line-height: 1.5; margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid var(--color-line);
}
.modal__subtitle {
  font-family: var(--font-serif); font-weight: 600; font-size: 15px;
  color: var(--color-brown-dk); margin: 24px 0 8px;
}
.modal__content p { font-size: 13px; line-height: 1.9; color: var(--color-text); margin-bottom: 10px; }
.modal__content a { color: var(--color-accent); text-decoration: underline; word-break: break-all; }
.modal__links { margin-top: 14px; }
body.is-modal-open { overflow: hidden; }
@media (min-width: 768px) {
  .modal__content { padding: 48px 40px 36px; }
  .modal__title { font-size: 20px; }
  .modal__content p { font-size: 14px; }
}
