/* =========================================================
   ÉCLAT (エクラ) — Pattern A: トレンド韓国系
   eyelash & total beauty salon
   共通スタイルシート（index.html / lp.html 共用）
   ========================================================= */

/* ---------- 1. デザイントークン（カラー・変数） ---------- */
:root {
  --bg:           #fffafb;          /* オフホワイト背景 */
  --bg-soft:      #fff4f6;          /* やわらかピンク背景 */
  --pink:         #e89aae;          /* メインピンク */
  --pink-light:   #f7c8d2;          /* ライトピンク */
  --pink-deep:    #d97e95;          /* ホバー用濃いめピンク */
  --gold:         #c9a96a;          /* ゴールドアクセント */
  --gold-light:   #e3cfa3;
  --text:         #3a3338;          /* 基本テキスト */
  --text-soft:    #6f6469;          /* サブテキスト */
  --line:         #f0dce1;          /* 区切り線 */
  --white:        #ffffff;

  --grad-pink:    linear-gradient(135deg, #f7c8d2 0%, #e89aae 100%);
  --grad-soft:    linear-gradient(160deg, #fff4f6 0%, #fbe6ea 60%, #f3d2dc 100%);
  --grad-gold:    linear-gradient(135deg, #e3cfa3 0%, #c9a96a 100%);

  --shadow-sm:    0 6px 18px rgba(232, 154, 174, .14);
  --shadow-md:    0 14px 40px rgba(217, 126, 149, .18);
  --shadow-soft:  0 20px 60px rgba(217, 126, 149, .12);

  --radius:       28px;
  --radius-lg:    40px;
  --radius-sm:    16px;

  --maxw:         1120px;

  --serif:  "Shippori Mincho", "Noto Serif JP", serif;
  --sans:   "Noto Sans JP", sans-serif;
  --eng:    "Cormorant Garamond", serif;
}

/* ---------- 2. リセット／ベース ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

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

a { color: inherit; text-decoration: none; transition: .25s ease; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.5; margin: 0; }

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

/* ---------- 3. 汎用ユーティリティ ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.section-soft { background: var(--grad-soft); }

.section-head { text-align: center; margin-bottom: 56px; }

.eng-label {
  font-family: var(--eng);
  font-size: 1rem;
  letter-spacing: .35em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  letter-spacing: .08em;
  position: relative;
  display: inline-block;
}

.section-title .accent { color: var(--pink); }

.section-lead {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: .95rem;
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  cursor: pointer;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover { transform: translateY(-3px); }

.btn-line {
  background: linear-gradient(135deg, #5fd06d 0%, #34b349 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(52, 179, 73, .3);
}
.btn-line:hover { box-shadow: 0 16px 34px rgba(52, 179, 73, .42); }

.btn-pink {
  background: var(--grad-pink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-pink:hover { box-shadow: var(--shadow-md); }

.btn-outline {
  background: var(--white);
  color: var(--pink-deep);
  border: 1.5px solid var(--pink-light);
}
.btn-outline:hover { background: var(--bg-soft); }

.btn-gold {
  background: var(--grad-gold);
  color: #fff;
  box-shadow: 0 10px 26px rgba(201, 169, 106, .3);
}

/* 画像プレースホルダ（上品なグラデ＋ラベル） */
.ph {
  position: relative;
  background: var(--grad-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--gold);
}
.ph::after {
  content: attr(data-label);
  font-family: var(--eng);
  font-size: 1.05rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  opacity: .7;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 169, 106, .35);
  border-radius: calc(var(--radius-sm) - 8px);
  pointer-events: none;
}

/* ---------- 4. ヘッダー / ナビ ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 251, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-mark {
  font-family: var(--eng);
  font-size: 1.7rem;
  letter-spacing: .25em;
  color: var(--text);
  font-weight: 600;
}
.logo-sub {
  font-size: .58rem;
  letter-spacing: .25em;
  color: var(--gold);
  margin-top: 5px;
  text-transform: uppercase;
}

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a.nav-link {
  font-size: .82rem;
  letter-spacing: .12em;
  color: var(--text-soft);
  font-family: var(--eng);
  text-transform: uppercase;
  font-size: .95rem;
}
.nav-menu a.nav-link:hover { color: var(--pink); }

.nav-cta { padding: 11px 22px; font-size: .82rem; }

/* ハンバーガー */
.nav-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

/* ---------- 5. ヒーロー ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--grad-soft);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(247,200,210,.7), transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(227,207,163,.45), transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}
.hero-eng {
  font-family: var(--eng);
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.hero-title {
  font-size: 2.9rem;
  line-height: 1.55;
  letter-spacing: .06em;
  margin-bottom: 24px;
}
.hero-title .accent {
  background: var(--grad-pink);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 38px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: var(--grad-pink);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-visual .ph {
  position: absolute;
  inset: 0;
  border: none;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #fbe0e7 0%, #f3c4d1 55%, #e7b48c 130%);
}
.hero-visual .ph::before { inset: 18px; border-color: rgba(255,255,255,.5); border-radius: 32px; }
.hero-visual .ph::after { color: rgba(255,255,255,.85); }
.hero-badge {
  position: absolute;
  bottom: 22px; left: 22px;
  z-index: 3;
  background: rgba(255,255,255,.92);
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: var(--shadow-sm);
  font-size: .78rem;
  color: var(--pink-deep);
  font-weight: 700;
  letter-spacing: .05em;
}

/* ---------- 6. CONCEPT ---------- */
.concept-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.concept-visual { aspect-ratio: 1 / 1; border-radius: var(--radius); }
.concept-text h2 { font-size: 1.9rem; line-height: 1.7; margin-bottom: 26px; }
.concept-text p { color: var(--text-soft); margin-bottom: 18px; }
.concept-sign {
  font-family: var(--eng);
  letter-spacing: .25em;
  color: var(--gold);
  margin-top: 24px;
}

/* ---------- 7. MENU & PRICE ---------- */
.menu-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.menu-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
}
.menu-card-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.menu-card-head .jp { font-size: 1.25rem; font-family: var(--serif); }
.menu-card-head .en {
  font-family: var(--eng);
  color: var(--gold);
  letter-spacing: .2em;
  font-size: 1rem;
  text-transform: uppercase;
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--bg-soft);
  font-size: .95rem;
}
.menu-list li:last-child { border-bottom: none; }
.menu-list .name { color: var(--text); }
.menu-list .price {
  font-family: var(--eng);
  font-size: 1.15rem;
  color: var(--pink-deep);
  white-space: nowrap;
  font-weight: 600;
}
.menu-note { text-align: center; margin-top: 30px; color: var(--text-soft); font-size: .82rem; }

/* ---------- 8. GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid .ph { aspect-ratio: 1 / 1; }
.gallery-grid .ph:nth-child(3n+1) { background: linear-gradient(160deg,#fbe0e7,#f3c4d1); }
.gallery-grid .ph:nth-child(3n+2) { background: linear-gradient(160deg,#fff4f6,#f1d9c2); }
.gallery-grid .ph:nth-child(3n)   { background: linear-gradient(160deg,#f7d6df,#e7b48c); }

/* ---------- 9. VOICE ---------- */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.voice-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
}
.voice-card .quote {
  font-family: var(--eng);
  font-size: 3rem;
  color: var(--pink-light);
  line-height: 1;
  position: absolute;
  top: 18px; right: 24px;
}
.voice-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; font-size: .9rem; }
.voice-card p { color: var(--text); margin-bottom: 16px; font-size: .95rem; }
.voice-meta { color: var(--text-soft); font-size: .82rem; font-weight: 700; }

/* ---------- 10. FLOW ---------- */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}
.flow-step {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 30px 18px;
  border: 1px solid var(--line);
  position: relative;
}
.flow-num {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--grad-pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--eng);
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.flow-step h4 { font-size: 1rem; margin-bottom: 8px; }
.flow-step p { font-size: .8rem; color: var(--text-soft); line-height: 1.7; }

/* ---------- 11. STAFF ---------- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 760px;
  margin: 0 auto;
}
.staff-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.staff-photo {
  flex: 0 0 110px;
  width: 110px; height: 110px;
  border-radius: 50%;
}
.staff-info .role { color: var(--gold); font-size: .76rem; letter-spacing: .15em; font-family: var(--eng); text-transform: uppercase; }
.staff-info .name { font-size: 1.3rem; margin: 6px 0 10px; font-family: var(--serif); }
.staff-info .name small { font-size: .7rem; color: var(--text-soft); margin-left: 8px; letter-spacing: .1em; }
.staff-info p { font-size: .85rem; color: var(--text-soft); }

/* ---------- 12. ACCESS ---------- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.access-map { border-radius: var(--radius); min-height: 340px; }
.access-info { padding: 12px 0; }
.access-info dl { margin: 0; }
.access-info dt {
  font-family: var(--eng);
  color: var(--gold);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .85rem;
  margin-top: 22px;
}
.access-info dd { margin: 4px 0 0; font-size: 1rem; }
.access-info dd.big { font-size: 1.15rem; font-family: var(--serif); }

/* ---------- 13. FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 56px 22px 26px;
  font-weight: 700;
  font-size: .98rem;
  position: relative;
  display: flex;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q { color: var(--pink); font-family: var(--eng); font-size: 1.2rem; font-weight: 700; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--pink);
  transition: .3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-body {
  padding: 0 26px 24px 56px;
  color: var(--text-soft);
  font-size: .92rem;
}

/* ---------- 14. CONTACT / 予約 ---------- */
.contact { background: var(--grad-soft); }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
}
.contact-icon svg { width: 30px; height: 30px; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.contact-card p { color: var(--text-soft); font-size: .85rem; margin-bottom: 18px; }

/* ---------- 15. フッター ---------- */
.footer {
  background: var(--text);
  color: #f3eef0;
  padding: 60px 0 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer .logo-mark { color: #fff; }
.footer .logo-sub { color: var(--gold-light); }
.footer-info { font-size: .85rem; color: #cfc4c9; line-height: 1.9; }
.footer-sns { display: flex; gap: 16px; }
.footer-sns a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
}
.footer-sns a:hover { background: rgba(255,255,255,.1); }
.footer-sns svg { width: 20px; height: 20px; fill: #fff; }
.footer-copy {
  text-align: center;
  padding-top: 26px;
  font-family: var(--eng);
  letter-spacing: .2em;
  font-size: .8rem;
  color: #b7abb0;
}

/* =========================================================
   LP 専用スタイル（lp.html）
   ========================================================= */

/* LPヘッダー（簡易） */
.lp-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,250,251,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.lp-header .nav { height: 64px; }
.lp-header .nav-cta { padding: 10px 20px; }

/* LP ファーストビュー */
.lp-hero {
  background: var(--grad-soft);
  text-align: center;
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: "";
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 360px;
  background: radial-gradient(circle, rgba(247,200,210,.6), transparent 70%);
}
.lp-hero-inner { position: relative; z-index: 2; }
.lp-flag {
  display: inline-block;
  background: var(--grad-gold);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  padding: 8px 24px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(201,169,106,.3);
}
.lp-hero h1 {
  font-size: 2.5rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.lp-hero h1 .accent {
  background: var(--grad-pink);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-hero .lp-sub { color: var(--text-soft); margin-bottom: 30px; }

.offer-box {
  max-width: 560px;
  margin: 0 auto 34px;
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-md);
}
.offer-label {
  display: inline-block;
  background: var(--grad-pink);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.offer-name { font-size: 1.3rem; font-family: var(--serif); margin-bottom: 14px; }
.offer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.offer-price .was {
  color: var(--text-soft);
  text-decoration: line-through;
  font-family: var(--eng);
  font-size: 1.3rem;
}
.offer-price .now {
  font-family: var(--eng);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--pink-deep);
  line-height: 1;
}
.offer-price .now small { font-size: 1.2rem; }
.offer-tax { font-size: .75rem; color: var(--text-soft); margin-top: 8px; }

.lp-hero-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lp-hero-actions .btn { width: 100%; max-width: 380px; font-size: 1.05rem; padding: 20px; }
.lp-hero-note { font-size: .78rem; color: var(--text-soft); }

/* LP 悩み／共感 */
.worry { background: var(--white); }
.worry-list {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.worry-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 500;
}
.worry-check {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad-pink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.worry-bridge {
  text-align: center;
  margin-top: 40px;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.7;
}
.worry-bridge .accent { color: var(--pink); }

/* LP 選ばれる理由 */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 880px;
  margin: 0 auto;
}
.reason-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.reason-icon {
  flex: 0 0 64px;
  width: 64px; height: 64px;
  border-radius: 20px;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
}
.reason-icon svg { width: 32px; height: 32px; stroke: var(--pink-deep); fill: none; }
.reason-card .rnum { font-family: var(--eng); color: var(--gold); letter-spacing: .15em; font-size: .85rem; }
.reason-card h3 { font-size: 1.2rem; margin: 4px 0 10px; }
.reason-card p { font-size: .88rem; color: var(--text-soft); }

/* LP ビフォーアフター */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}
.ba-item { text-align: center; }
.ba-item .ph { aspect-ratio: 3 / 4; margin-bottom: 12px; }
.ba-item .ba-tag {
  font-family: var(--eng);
  letter-spacing: .2em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .9rem;
}
.ba-item.before .ba-tag { color: var(--text-soft); }
.ba-item.after .ba-tag { color: var(--pink-deep); }
.ba-arrow {
  font-family: var(--eng);
  font-size: 2rem;
  color: var(--gold);
}
.ba-note { text-align: center; margin-top: 22px; font-size: .78rem; color: var(--text-soft); }

/* LP メニュー＆初回価格 */
.lp-price-list {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.lp-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 28px;
  box-shadow: var(--shadow-sm);
}
.lp-price-item .lp-pname { font-size: 1.05rem; font-family: var(--serif); }
.lp-price-item .lp-pname small { display: block; font-size: .75rem; color: var(--text-soft); font-family: var(--sans); margin-top: 4px; }
.lp-price-tags { text-align: right; }
.lp-price-tags .was {
  text-decoration: line-through;
  color: var(--text-soft);
  font-family: var(--eng);
  font-size: 1.05rem;
  margin-right: 10px;
}
.lp-price-tags .now {
  font-family: var(--eng);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--pink-deep);
}
.lp-price-tags .badge {
  display: inline-block;
  background: var(--grad-pink);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 6px;
}

/* LP 予約の流れ 3ステップ */
.lp-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.lp-flow .flow-step { padding: 36px 22px; }

/* LP 最終CTA */
.final-cta {
  background: var(--grad-pink);
  text-align: center;
  color: #fff;
  padding: 90px 0;
}
.final-cta .eng-label { color: rgba(255,255,255,.85); }
.final-cta h2 { font-size: 2.1rem; color: #fff; margin-bottom: 14px; line-height: 1.5; }
.final-cta p { color: rgba(255,255,255,.92); margin-bottom: 32px; }
.final-cta .btn-line { font-size: 1.1rem; padding: 22px 50px; }
.final-cta .final-note { margin-top: 20px; font-size: .8rem; color: rgba(255,255,255,.85); }

/* LP スティッキーCTAバー */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(217,126,149,.14);
  padding: 12px 16px;
  display: none; /* PCでは非表示、スマホで表示 */
}
.sticky-cta .btn { width: 100%; padding: 16px; font-size: 1rem; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .section-title { font-size: 1.7rem; }

  /* ナビ：ハンバーガー化 */
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 76px; right: 0;
    height: calc(100vh - 76px);
    width: 78%;
    max-width: 320px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 30px 28px;
    transform: translateX(110%);
    transition: transform .35s ease;
    overflow-y: auto;
  }
  .nav-menu a.nav-link { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-menu .nav-cta { margin-top: 16px; width: 100%; }
  .nav-toggle:checked ~ .nav-menu { transform: translateX(0); }
  .nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ヒーロー */
  .hero { min-height: auto; padding: 50px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-title { font-size: 2.1rem; }
  .hero-visual { max-width: 380px; margin: 0 auto; width: 100%; }

  /* 各グリッドを1カラム/縮小 */
  .concept-grid { grid-template-columns: 1fr; gap: 34px; }
  .menu-cats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }

  /* LP */
  .lp-hero h1 { font-size: 1.9rem; }
  .offer-price .now { font-size: 2.6rem; }
  .reasons-grid { grid-template-columns: 1fr; }
  .lp-flow { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); justify-self: center; }
  .lp-price-item { flex-direction: column; align-items: flex-start; gap: 12px; }
  .lp-price-tags { text-align: left; }

  /* スティッキーCTA表示 */
  .sticky-cta { display: block; }
  body.lp-page { padding-bottom: 84px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .flow-steps { grid-template-columns: 1fr; }
  .lp-hero h1 { font-size: 1.65rem; }
  .offer-price .now { font-size: 2.3rem; }
  .section-title { font-size: 1.5rem; }
}
