/* =========================================================
   Latier nail school LP — style.css
   配色：ソフトピンク／ヌード（モックアップ準拠）
   ========================================================= */

/* ---------- デザイントークン ---------- */
:root {
  /* ヴィンテージ・コンフェクショナリー風パレット
     中間のローズワイン × 明るいクリーム（参考イメージのトンマナ） */
  /* FVに合わせ全体をローズピンク寄りに微調整（2026-07-23） */
  --pink-50:  #fdf3f5;   /* 最も淡いピンク */
  --pink-100: #f9e7ec;
  --pink-150: #f3dde3;
  --pink-200: #e9c7d0;   /* やわらかいローズの枠線 */
  --pink-300: #d99fae;
  --rose-400: #c26a78;   /* ローズ（細線・サブ） */
  --rose-500: #be3f60;   /* メインアクセント（ローズピンク） */
  --rose-600: #98314d;   /* 濃いローズ（見出し・ホバー） */
  --cream:    #fdf5f6;   /* ページ背景（ほんのりピンクの生成り） */
  --ink:      #5b453d;   /* 本文（温かみのあるブラウン） */
  --ink-soft: #8d7669;   /* サブ文字 */
  --white:    #fffdfe;   /* ほんのりピンクの白（カード） */
  --wine-line:#e3aab5;   /* 装飾の細線（ダスティローズ） */
  --sparkle:  #cfa27d;   /* きらめき装飾（シャンパンゴールド） */
  --shadow-sm: 0 4px 14px rgba(150, 95, 80, .10);
  --shadow-md: 0 10px 34px rgba(150, 95, 80, .16);
  --radius:   18px;
  --radius-lg: 28px;
  --maxw: 1120px;

  --font-serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --font-sans:  "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --font-en:    "Playfair Display", "Cormorant Garamond", serif;
  --font-hand:  "Yomogi", "Klee One", var(--font-serif);
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-family: var(--font-serif); font-weight: 600; line-height: 1.45; }
p { margin: 0; }
em { font-style: normal; color: var(--rose-500); }

/* ---------- レイアウト ---------- */
.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.container-narrow { max-width: 760px; }
.section { padding: clamp(56px, 9vw, 104px) 0; }

/* 共通見出し */
.eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--font-en);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rose-400);
  font-size: 14px;
  margin-bottom: 10px;
}
.eyebrow::before, .eyebrow::after {
  content: ""; flex: none; width: 26px; height: 1px;
  background: currentColor; opacity: .5;
}
.section-title {
  text-align: center;
  font-size: clamp(24px, 4.4vw, 34px);
  letter-spacing: .04em;
  margin-bottom: clamp(32px, 5vw, 56px);
  color: var(--ink);
}
.section-title em { font-size: 1.25em; margin: 0 .05em; }

/* 写真プレースホルダー */
.photo-placeholder {
  position: relative;
  background:
    repeating-linear-gradient(45deg, #f1e4e0 0 10px, #f7ece9 10px 20px);
  border: 1px dashed var(--pink-200);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  min-height: 120px;
  color: var(--ink-soft);
}
.ph-label {
  font-size: 12px;
  text-align: center;
  letter-spacing: .08em;
  line-height: 1.6;
  opacity: .8;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-icon { font-size: .7em; }
.btn-primary {
  background: linear-gradient(135deg, var(--rose-400), var(--rose-500));
  color: #fff;
  box-shadow: 0 8px 22px rgba(217, 136, 124, .38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(217, 136, 124, .48); }
.btn-outline {
  background: #fff;
  color: var(--rose-600);
  border-color: var(--pink-200);
}
.btn-outline:hover { background: var(--pink-50); border-color: var(--rose-400); }
.btn-lg  { padding: 17px 42px; font-size: 17px; }
.btn-xl  { padding: 20px 52px; font-size: 18px; }
.btn-nav { padding: 10px 22px; font-size: 14px; }

/* =========================================================
   ヘッダー
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 250, 248, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(233, 179, 171, .25);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(200, 140, 130, .12); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo { display: flex; align-items: center; gap: 10px; color: var(--rose-500); }
.logo-mark { display: grid; place-items: center; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-en); font-size: 24px; font-weight: 600; letter-spacing: .16em; color: var(--rose-500); }
.logo-sub  { font-family: var(--font-en); font-size: 10px; letter-spacing: .34em; color: var(--ink-soft); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav > a:not(.btn) { font-size: 14.5px; font-weight: 500; color: var(--ink); transition: color .15s; }
.nav > a:not(.btn):hover { color: var(--rose-500); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; height: 2px; background: var(--rose-500); border-radius: 2px; transition: .25s; }
.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); }

/* =========================================================
   ヒーロー
   ========================================================= */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 88px); }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70% 60% at 82% 12%, #ffffff, transparent 70%),
    linear-gradient(180deg, #fdf7f7, #FAEFEF);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero-visual { position: relative; }
.hero-photo {
  aspect-ratio: 4 / 5;
  border-radius: 40% 40% 42% 42% / 30% 30% 24% 24%;
  min-height: 360px;
  width: 100%;
  object-fit: cover;              /* 横長写真を枠に合わせて中央トリミング */
  object-position: 52% 34%;       /* 人物の顔まわりが見えるよう調整 */
  box-shadow: var(--shadow-md);
}
/* 丸バッジ3つを画像の左下に横並び */
.hero-badge-group {
  position: absolute;
  left: 0; right: 0;          /* 写真の左端〜右端いっぱい */
  bottom: 18px;
  display: flex;
  gap: 12px;
  padding: 0 14px;
  z-index: 3;
}
.hero-float-badge {
  flex: 1 1 0;                 /* 3つで写真幅を均等に分ける */
  aspect-ratio: 1;            /* 正円を保つ */
  max-width: 180px;
  border-radius: 50%;
  background: var(--rose-500); color: #fff;
  display: grid; place-items: center; text-align: center;
  font-size: 16px; font-weight: 700; line-height: 1.5;
  box-shadow: var(--shadow-md);
}

.hero-copy { }
.hero-title { margin-bottom: 22px; }
.hero-title-main {
  font-size: clamp(30px, 6vw, 52px);
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--ink);
  text-shadow: 0 2px 10px rgba(124, 42, 39, .18);
}
.hero-title-main em { display: inline; }
/* 各行をブロック化（縦書き時は各行＝1列に。em inline指定に勝つよう指定） */
.hero-title-main .htl-line { display: block; }
.htl-em { color: var(--rose-500); font-style: normal; }
.hero-lead { font-size: clamp(15px, 2vw, 17px); color: var(--ink-soft); margin-bottom: 26px; font-weight: 500; }

.hero-badges { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.hero-badges li {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 14px; padding: 12px 18px;
  box-shadow: var(--shadow-sm); font-size: 15px; font-weight: 500;
}
.hero-badges li::before {
  content: "✓"; flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--rose-500); color: #fff;
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
.hero-badges strong { color: var(--rose-600); }

.hero-cta { width: 100%; max-width: 420px; }
.hero-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 12px; }

/* =========================================================
   悩みセクション（チェックリスト型・参考デザイン準拠）
   ========================================================= */
.worries { background: linear-gradient(180deg, var(--white), var(--pink-50)); }
.worry-box {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--pink-200);
  border-radius: 18px;
  padding: 50px clamp(22px, 5vw, 60px) 46px;
  overflow: hidden;
}
/* 斜めの CHECK! ラベル（左上・薄く） */
.worry-check-label {
  position: absolute;
  top: 30px; left: -4px;
  transform: rotate(-14deg);
  font-family: var(--font-en);
  font-size: 15px; letter-spacing: .18em; font-weight: 600;
  color: var(--pink-300);
}
/* 両側に短い横線の入った見出し */
.worry-heading {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: clamp(20px, 3.8vw, 29px);
  color: var(--ink);
  margin-bottom: 32px;
}
.worry-heading::before, .worry-heading::after {
  content: ""; height: 2px; width: clamp(22px, 6vw, 46px);
  background: var(--ink); opacity: .55; flex: none;
}
.worry-heading em { color: var(--rose-500); }
/* チェックリスト */
.worry-list {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 470px; margin: 0 auto;
}
.worry-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: clamp(15px, 2.4vw, 18px); font-weight: 500; color: var(--ink);
  line-height: 1.5;
}
.worry-check {
  position: relative; flex: none;
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--pink-100);
  border: 1.5px solid var(--pink-200);
}
.worry-check::after {
  content: ""; position: absolute;
  left: 8px; top: 4px;
  width: 6px; height: 11px;
  border: solid var(--rose-500);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
/* 背景の薄い装飾（たんぽぽ風の飾り。控えめに） */
.worry-deco {
  position: absolute; border-radius: 50%;
  border: 1.5px dashed var(--pink-150);
  opacity: .7; pointer-events: none;
}
.worry-deco-1 { width: 70px; height: 70px; top: 18px; right: 28px; }
.worry-deco-2 { width: 40px; height: 40px; top: 70px; right: 92px; }
.worries-bridge {
  text-align: center; margin-top: 40px;
  font-family: var(--font-serif); font-size: clamp(18px, 3vw, 24px); font-weight: 600;
}
.worries-bridge em { color: var(--rose-500); }

/* =========================================================
   選ばれる3つの理由
   ========================================================= */
.reasons { background: linear-gradient(180deg, var(--pink-50), var(--white)); padding-top: clamp(28px, 4.5vw, 52px); padding-bottom: clamp(28px, 4.5vw, 52px); }
.reason-list { display: flex; flex-direction: column; gap: 28px; }
.reason-card {
  display: grid; grid-template-columns: 42% 1fr; gap: clamp(20px, 4vw, 44px);
  align-items: center;
  background: #fff; border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
}
.reason-card:nth-child(even) { grid-template-columns: 1fr 42%; }
.reason-card:nth-child(even) .reason-photo { order: 2; }
.reason-photo { aspect-ratio: 4 / 3; min-height: 180px; }
.reason-num { font-family: var(--font-en); letter-spacing: .16em; color: var(--rose-400); font-size: 14px; }
.reason-body h3 { font-size: clamp(19px, 2.6vw, 24px); margin: 8px 0 14px; }
.reason-body p { color: var(--ink-soft); }

/* =========================================================
   カリキュラム（タイムライン）
   ========================================================= */
.curriculum { background: var(--white); }
.timeline {
  display: flex; align-items: stretch; justify-content: center;
  gap: 10px; flex-wrap: nowrap;
}
.tl-node {
  flex: none; align-self: center;
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-en); font-size: 15px; letter-spacing: .1em; font-weight: 600;
}
.tl-node img { width: 100%; height: 100%; object-fit: contain; }
.tl-start, .tl-goal { background: none; }
.tl-step {
  position: relative;
  flex: 1 1 0; min-width: 0;
  background: var(--pink-50); border: 1px solid var(--pink-100);
  border-radius: var(--radius); padding: 20px 12px; text-align: center;
}
.tl-step::after {
  content: "▶"; position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
  color: var(--pink-300); font-size: 13px;
}
.tl-step:last-of-type::after { content: none; }
.tl-month {
  display: inline-block; background: var(--rose-500); color: #fff;
  font-size: 12px; font-weight: 700; padding: 3px 12px; border-radius: 999px; margin-bottom: 12px;
}
.tl-icon { margin-bottom: 8px; }
.tl-icon svg { width: 34px; height: 34px; color: var(--rose-500); }
.tl-icon img { width: 62px; height: 62px; object-fit: contain; margin-inline: auto; }
/* ステップに円形写真を入れる場合 */
.tl-icon.tl-photo { width: 78px; height: 78px; margin: 0 auto 10px; border-radius: 50%; overflow: hidden; border: 2px solid #fff; box-shadow: 0 3px 10px rgba(150, 90, 75, .18), 0 0 0 1px var(--wine-line); }
.tl-icon.tl-photo img { width: 100%; height: 100%; object-fit: cover; }
.tl-label { font-size: 13.5px; font-weight: 700; color: var(--ink); }

/* =========================================================
   卒業生の声
   ========================================================= */
.voice { background: linear-gradient(180deg, var(--white), var(--pink-50)); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.voice-card {
  position: relative;
  background: #fff; border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  margin: 0; text-align: center;
}
.voice-card-highlight { border: 2px solid var(--rose-400); }
.voice-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--rose-500); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 999px; white-space: nowrap;
}
.voice-photo { width: 84px; height: 84px; border-radius: 50%; min-height: 0; margin: 6px auto 18px; }
.voice-card blockquote { margin: 0 0 16px; font-size: 15px; color: var(--ink); }
.voice-card figcaption { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.voice-placeholder-note { display: block; font-size: 11px; color: var(--rose-400); margin-top: 4px; }

/* =========================================================
   コース料金
   ========================================================= */
.price { background: var(--pink-50); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  position: relative;
  background: #fff; border: 1px solid var(--pink-100); border-radius: var(--radius-lg);
  padding: 34px 26px; text-align: center;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.price-card-popular {
  border: 2px solid var(--rose-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}
.price-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--rose-500); color: #fff; font-size: 13px; font-weight: 700;
  padding: 5px 20px; border-radius: 999px;
}
.price-name { font-size: 20px; margin-bottom: 8px; }
.price-desc { font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; min-height: 3em; }
.price-amount { font-family: var(--font-serif); font-size: 32px; font-weight: 700; color: var(--rose-600); margin-bottom: 6px; }
.price-amount span { font-size: 13px; color: var(--ink-soft); font-family: var(--font-sans); }
.price-monthly {
  font-size: 13px; color: var(--ink-soft);
  background: var(--pink-50); border-radius: 10px; padding: 8px 10px; margin-bottom: 22px;
}
.price-monthly strong { color: var(--rose-600); font-size: 15px; }
.price-card .btn { margin-top: auto; }
.price-foot { text-align: center; font-size: 12.5px; color: var(--ink-soft); margin-top: 26px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--white); padding-top: clamp(28px, 4.5vw, 52px); padding-bottom: clamp(28px, 4.5vw, 52px); }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--pink-50); border: 1px solid var(--pink-100); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px; font-size: 15.5px; font-weight: 700; color: var(--ink);
  font-family: var(--font-sans);
}
.faq-mark {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--rose-500); color: #fff; display: grid; place-items: center;
  font-family: var(--font-en); font-weight: 600;
}
.faq-toggle { position: relative; flex: none; width: 16px; height: 16px; margin-left: auto; }
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute; background: var(--rose-500); border-radius: 2px;
  transition: transform .25s ease;
}
.faq-toggle::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-toggle::after  { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-q[aria-expanded="true"] .faq-toggle::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px 64px; color: var(--ink-soft); font-size: 14.5px; }

/* =========================================================
   最終CTA
   ========================================================= */
.cta { position: relative; text-align: center; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(50% 60% at 20% 20%, var(--pink-200), transparent 70%),
    radial-gradient(50% 60% at 85% 80%, var(--pink-150), transparent 70%),
    linear-gradient(135deg, var(--pink-100), var(--pink-50));
}
.cta-title { font-size: clamp(24px, 4.6vw, 38px); margin-bottom: 16px; }
.cta-lead { color: var(--ink-soft); margin-bottom: 34px; font-weight: 500; }
.cta-line { box-shadow: 0 12px 30px rgba(217, 136, 124, .45); }
.cta-tel { margin-top: 22px; font-size: 15px; color: var(--ink); font-weight: 500; }
.cta-tel a { color: var(--rose-600); font-weight: 700; }
.cta-sub { display: flex; justify-content: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.cta-sub-btn {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  background: #fff; border-radius: var(--radius); padding: 16px 30px;
  font-size: 13px; font-weight: 700; color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .18s ease;
}
.cta-sub-btn:hover { transform: translateY(-3px); }
.cta-sub-icon { display: grid; place-items: center; }
.cta-sub-icon svg { width: 24px; height: 24px; color: var(--rose-500); }

/* =========================================================
   フッター
   ========================================================= */
.site-footer { background: var(--ink); color: #f4ebe8; padding: 48px 0 34px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer-brand .logo-name { color: #fff; font-size: 24px; }
.footer-brand .logo-sub { color: #d8c7c2; }
.footer-brand p { font-size: 13px; color: #cbb9b4; margin-top: 6px; }
.footer-info { font-style: normal; font-size: 13px; line-height: 1.9; color: #cbb9b4; }
.footer-info a { color: var(--pink-200); text-decoration: underline; }
.footer-copy { font-size: 12px; color: #a99893; margin-top: 8px; }

/* =========================================================
   追従CTA（モバイル）
   ========================================================= */
.sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  display: none; align-items: center; justify-content: center;
  background: #06C755;
  color: #fff; font-weight: 700; font-size: 15px;
  padding: 16px; border-radius: 999px;
  box-shadow: 0 8px 26px rgba(6, 199, 85, .5);
  transform: translateY(140%); opacity: 0; pointer-events: none;
  transition: transform .32s ease, opacity .32s ease;
}
.sticky-cta.is-visible { transform: none; opacity: 1; pointer-events: auto; }

/* ヘッダーの新ロゴ（ハート＋横にLatier・小さめ） */
.logo { gap: 7px; }
.logo-heart { height: 28px; width: auto; display: block; }
.logo-word { height: 19px; width: auto; display: block; }

/* 公式LINEボタンはLINEブランドカラー（緑） */
.btn.btn-line { background: #06C755; color: #fff; border-color: transparent; box-shadow: 0 8px 22px rgba(6, 199, 85, .35); }
.btn.btn-line:hover { background: #05b34c; box-shadow: 0 12px 28px rgba(6, 199, 85, .45); }

/* =========================================================
   スクロール演出
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   改行・表示コントロール（PC / スマホ 出し分け用ユーティリティ）
   使い方：
   ・PCだけ改行したい <br> には  class="br-pc"  → スマホでは1行になる
   ・スマホだけ改行したい <br> には class="br-sp"  → PCでは1行になる
   ・要素ごとPC/スマホで出し分け： class="pc-only" / class="sp-only"
   ========================================================= */
.sp-only { display: none !important; }
@media (min-width: 861px) {
  .br-sp { display: none; }              /* スマホ用改行をPCで無効化 */
}
@media (max-width: 860px) {
  .br-pc { display: none; }              /* PC用改行をスマホで無効化（＝1行になる） */
  .pc-only { display: none !important; }
  .sp-only { display: revert !important; }
}

/* =========================================================
   セクションの陰影（ふんわり装飾ブロブ・奥行きを出す）
   ========================================================= */
.reasons, .price, .voice { position: relative; overflow: hidden; }
.reasons > .container,
.price > .container,
.voice > .container { position: relative; z-index: 1; }
.reasons::before {
  content: ""; position: absolute; top: -120px; right: -110px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 179, 171, .30), transparent 70%);
  z-index: 0; pointer-events: none;
}
.price::before {
  content: ""; position: absolute; bottom: -150px; left: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 179, 171, .24), transparent 70%);
  z-index: 0; pointer-events: none;
}
.voice::before {
  content: ""; position: absolute; top: 40px; left: -90px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 207, 201, .35), transparent 70%);
  z-index: 0; pointer-events: none;
}

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 1000px) {
  .voice-grid, .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card-popular { transform: none; }
  .price-desc { min-height: 0; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 64px; }
  .header-inner { height: 60px; }
  .nav {
    position: fixed; inset: 60px 0 auto 0;
    flex-direction: column; gap: 4px;
    background: var(--cream);
    padding: 16px 20px 26px;
    border-bottom: 1px solid var(--pink-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform .3s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav > a:not(.btn) { width: 100%; padding: 12px 4px; border-bottom: 1px solid var(--pink-100); }
  .btn-nav { width: 100%; margin-top: 10px; }
  .nav-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    position: relative;          /* 見出しを画像に重ねる基準 */
    max-width: 400px;            /* 画像と見出しの位置を揃える */
    margin-inline: auto;
  }

  /* スマホ：見出しをキャッチ写真の上に重ねる（上部に白の半透明パネルを敷いて可読性確保） */
  .hero-title {
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: min(340px, 100%);
    z-index: 4;
    margin: 0;
    padding: 30px 16px 48px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.72) 42%, rgba(255,255,255,0) 100%);
    border-radius: 46% 46% 0 0 / 30% 30% 0 0;
    pointer-events: none;
  }
  .hero-title-main {
    writing-mode: horizontal-tb;
    display: inline-block;
    font-size: clamp(27px, 7.4vw, 40px);
    line-height: 1.55;
    letter-spacing: .03em;
    color: var(--ink);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(124, 42, 39, .16);
  }
  .hero-title-main em { color: var(--rose-500); }
  .hero-br2 { display: inline; }   /* スマホは3行：資格よりも／サロンで通用する／技術を */

  .hero-visual { width: min(340px, 100%); max-width: 340px; margin: 0 auto; }

  /* スマホ：POINTバッジ3つを正円のまま横並び（ヒーロー幅を3等分・真円維持） */
  /* 両端の円の外縁を、トップ画像の左右の枠線に合わせる（写真幅いっぱいに両端揃え） */
  /* 円の上半分をキャッチ画像の下側に重ねる（半径ぶん上へ引き上げ・画像の上に重ねる） */
  .hero-point-group { display: flex; justify-content: center; gap: 11px; width: 100%; margin: 4px auto 22px; position: relative; z-index: 3; }
  .hero-point { flex: 0 0 auto; width: min(110px, calc((100% - 46px) / 3)); aspect-ratio: 1; height: auto; min-width: 0; padding: 4px; gap: 1px; }
  .hp-no { font-size: 16px; margin-top: 0; }
  .hp-text { font-size: 8.5px; line-height: 1.28; }
  .hp-icon svg { width: 15px; height: 15px; }
  .hp-label { font-size: 7px; padding: 0 8px; }
  .hero-visual::after { display: none; }
  .hero-badges li { text-align: left; }
  .hero-cta { margin-inline: auto; }
  .hero-note { text-align: center; }

  /* タイムラインをジグザグ（左右交互・斜め）配置に */
  .timeline { flex-direction: column; align-items: stretch; max-width: 440px; margin-inline: auto; gap: 16px; position: relative; }
  .tl-node { width: 76px; height: 76px; margin-inline: auto; position: relative; z-index: 1; }
  .tl-step { width: 74%; position: relative; z-index: 1; }
  .tl-step:nth-child(odd)  { align-self: flex-start; transform: rotate(3.5deg); }      /* 1・3ステップ目＝左スタート（傾きは維持） */
  .tl-step:nth-child(even) { align-self: flex-end; transform: rotate(-3.5deg); }       /* 2・4ステップ目＝右 */
  .tl-step::after { display: none; }

  .reason-card, .reason-card:nth-child(even) { grid-template-columns: 1fr; text-align: center; }
  .reason-card:nth-child(even) .reason-photo { order: 0; }

  .sticky-cta { display: flex; }
  main { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 32px, var(--maxw)); }
}

/* スマホ：悩みボックスを参考画像と同じく幅広＆横長（平たい）に */
@media (max-width: 600px) {
  .worries .container { width: min(100% - 24px, var(--maxw)); } /* 左右12px */
  .worry-box { padding: 24px 16px 22px; }          /* 上下を詰めて横長に */
  .worry-list { max-width: none; padding-left: 4px; gap: 12px; }
  .worry-heading { gap: 10px; margin-bottom: 16px; font-size: clamp(18px, 4.6vw, 24px); }
  .worry-heading::before, .worry-heading::after { width: clamp(14px, 4vw, 30px); }
  .worry-list li { font-size: clamp(14px, 3.6vw, 17px); }
  .worry-check { width: 24px; height: 24px; }
  .worry-check::after { left: 7px; top: 4px; width: 6px; height: 10px; }
  .worry-check-label { top: 22px; font-size: 13px; }
}

/* 悩みセクションの見出しだけ、スマホで少し小さくして必ず1行に収める */
@media (max-width: 600px) {
  .worries .section-title {
    font-size: clamp(17px, 5.2vw, 23px);
    white-space: nowrap;
  }
}

/* =========================================================
   素材（パーツ画像）差し込み用スタイル
   ========================================================= */

/* 選ばれる理由：透過アイコンをやわらかいピンク面の中央に */
.reason-photo {
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 42%, var(--pink-50), var(--white));
  border-radius: var(--radius);
}
.reason-photo img { width: 66%; max-width: 190px; height: auto; }
/* 実写真を入れる場合（アイコンでなく写真）：枠いっぱいにトリミング表示 */
.reason-photo.has-photo { position: relative; background: none; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); }
.reason-photo.has-photo img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center 38%; }

/* 写真の上に重ねる：ピンクの長方形ラベル（左上） */
.rp-label {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: #ef97b3; color: #fff; font-weight: 700; font-size: 13px;
  letter-spacing: .02em; padding: 6px 14px; border-radius: 8px;
  box-shadow: 0 4px 12px rgba(200, 90, 120, .28);
}
/* 写真の上に重ねる：丸バッジ（右下・就職率など） */
.rp-badge {
  position: absolute; right: 12px; top: 8px; z-index: 2;
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255, 244, 247, .96); border: 1.5px solid var(--wine-line);
  box-shadow: 0 6px 16px rgba(150, 90, 75, .18);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--rose-600); line-height: 1.1;
}
.rp-badge small { font-size: 9px; font-weight: 600; }
.rp-badge em { font-style: normal; font-size: 10px; font-weight: 700; }
.rp-badge strong { font-family: var(--font-en); font-size: 23px; font-weight: 700; }
.rp-badge strong i { font-style: normal; font-size: 12px; }

/* 卒業生の声：顔写真は円形にトリミング／代替アイコンはそのまま表示 */
.voice-photo { overflow: hidden; }
.voice-photo img { width: 100%; height: 100%; object-fit: cover; }
.voice-photo-icon { overflow: visible; }
.voice-photo-icon img { object-fit: contain; }

/* コース料金：カード上部のアイコン */
.price-icon { width: 68px; margin: 0 auto 14px; }
.price-icon img { width: 100%; height: auto; }

/* 最終CTA：電話・LINE のブランドアイコン */
.cta-sub-icon img { width: 40px; height: 40px; object-fit: contain; }
.cta-tel { display: inline-flex; align-items: center; gap: 8px; }
.cta-tel-icon { width: 28px; height: 28px; object-fit: contain; }

/* =========================================================
   ヴィンテージ・テーマ（参考イメージのトンマナ再現）
   楕円フレーム／ワインの細線／きらめき装飾／
   温かいフィルム調フィルター
   ========================================================= */

/* --- 卒業生写真：暖色のフィルム調フィルター --- */
.voice-photo img {
  filter: sepia(.12) saturate(.92) contrast(.97) brightness(1.03);
}

/* --- ヒーロー写真：アーチ型＋細線フレーム（参考: CandyDoll 15th Anniversary）
       明るくエアリーなフィルターでイメージの色味に寄せる --- */
.hero-photo {
  border-radius: 46% 46% 12px 12px / 33% 33% 4% 4%;
  box-shadow:
    0 0 0 6px #faefef,
    0 0 0 7px var(--wine-line),
    0 18px 40px rgba(150, 90, 75, .16);
  filter: brightness(1.07) contrast(.93) saturate(.9) sepia(.04);
}
/* 写真まわりの小さなきらめき（参考の角の装飾） */
.hero-visual::before {
  content: "✦"; position: absolute; top: -8px; left: 2px;
  color: var(--sparkle); font-size: 22px; z-index: 4; pointer-events: none;
}
.hero-visual::after {
  content: "✧"; position: absolute; bottom: 60px; right: -4px;
  color: var(--sparkle); font-size: 15px; z-index: 4; pointer-events: none;
}

/* --- ヒーロー下の POINT バッジ（細い輪郭の円形・参考イメージ準拠） --- */
/* 共通（全デバイス）：見た目のみ。サイズ・配置は各ブレークポイントで指定 */
.hero-point-group { display: flex; }
.hero-point {
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .6);
  background: linear-gradient(158deg, rgba(255, 253, 248, .84), rgba(249, 242, 234, .7));
  -webkit-backdrop-filter: blur(9px) saturate(1.08);
  backdrop-filter: blur(9px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .75),
    0 0 0 1px rgba(212, 165, 163, .55),
    0 10px 24px rgba(120, 42, 39, .16);
}
.hp-point { display: flex; flex-direction: column; align-items: center; line-height: 1; color: var(--rose-500); }
.hp-label {
  font-family: var(--font-en); letter-spacing: .22em; position: relative;
}
.hp-label::before, .hp-label::after {
  content: ""; position: absolute; top: 50%; width: 8px; height: 1px; background: var(--sparkle);
}
.hp-label::before { left: 0; }
.hp-label::after  { right: 0; }
.hp-no { font-family: var(--font-en); font-weight: 600; color: var(--rose-600); }
.hp-text { font-weight: 700; color: var(--ink); line-height: 1.45; }
.hp-icon { color: var(--rose-500); line-height: 0; }

/* PC（≥861px）：バッジのサイズ・配置 */
@media (min-width: 861px) {
  .hero-point-group { justify-content: center; gap: 14px; margin: 26px auto 0; }
  .hero-point { flex: 0 0 152px; width: 152px; height: 152px; gap: 7px; padding: 12px; }
  .hp-label { font-size: 9.5px; padding: 0 13px; }
  .hp-no { font-size: 25px; margin-top: 3px; }
  .hp-text { font-size: 12px; }
  .hp-icon svg { width: 30px; height: 30px; }
}

/* --- 見出し：ワインカラー＋きらめき装飾 --- */
.section-title { color: var(--rose-600); }
.section-title em { color: var(--rose-500); }
.section-title::before,
.section-title::after {
  content: "✦"; color: var(--sparkle);
  font-size: .46em; vertical-align: .55em; margin: 0 .55em; font-weight: 400;
}
.eyebrow { font-style: italic; }

/* --- 卒業生写真：ワインの二重リング --- */
.voice-photo { box-shadow: 0 0 0 2px var(--cream), 0 0 0 3px var(--wine-line); }
.voice-photo-icon { box-shadow: 0 0 0 2px var(--cream), 0 0 0 3px var(--pink-200); }

/* --- コース料金：金額を英字セリフ（Playfair）でエレガントに --- */
.price-amount { font-family: var(--font-en); letter-spacing: .01em; }
.price-amount span { font-family: var(--font-sans); }

/* --- 悩みボックス・FAQ：やわらかいワインの細線 --- */
.worry-box { border-color: var(--wine-line); }

/* --- 最終CTA見出し：ワイン＋きらめき --- */
.cta-title { color: var(--rose-600); }
.cta-title::after {
  content: " ✦"; color: var(--sparkle); font-size: .5em; vertical-align: .6em;
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ ヒーロー：参考構成（プリヘッド／権威性／縦タイトル／商品／USP）============ */
.hero { padding-top: 0; }
.hero-prehead { text-align: center; padding: 6px 14px; background: var(--rose-500); color: #fff; }
.hero-prehead-main { font-family: var(--font-serif); font-weight: 700; font-size: clamp(12px, 3.6vw, 15px); letter-spacing: .02em; margin: 0; line-height: 1.5; white-space: nowrap; }
.hero-prehead-sub { display: none; }

@media (max-width: 860px) {
  /* プリヘッドの直下から画像。ヒーローの余白を全て除去 */
  .hero { padding: 0 !important; }
  .hero-inner { padding-top: 0; margin-top: 0; gap: 0; }

  /* 商品（左下・角丸カード） */
  .hero-product {
    position: absolute; left: 10px; bottom: 122px; z-index: 6;
    background: rgba(255, 255, 255, .95); color: var(--ink); text-align: center;
    font-size: 12.5px; font-weight: 700; line-height: 1.35; padding: 9px 13px; border-radius: 14px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--pink-100);
  }
  .hero-product small { display: block; font-size: 9px; color: var(--rose-500); font-weight: 700; margin-bottom: 2px; letter-spacing: .04em; }
  .hero-product b { display: block; font-weight: 600; font-size: 10px; color: var(--ink-soft); margin-top: 2px; }

  /* 参考構成：横書き・各行を白い角丸長方形に・右上に段状で重ねる */
  .hero-title {
    position: absolute; right: 6px; left: auto; top: 8%; bottom: auto;
    transform: none; width: auto; margin: 0; padding: 0; z-index: 4;
    background: none;
  }
  .hero-title-main {
    display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
    font-size: clamp(21px, 6.3vw, 33px); line-height: 1.32; letter-spacing: .03em;
    font-weight: 800; color: #4a3730;
  }
  /* 一行ごとに白い角丸長方形（文字幅ぶん）＝参考画像と同じ構成 */
  .htl-line {
    writing-mode: horizontal-tb; text-orientation: mixed;
    font-family: var(--font-serif);
    background: rgba(255, 253, 248, .8);
    -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
    padding: 5px 15px;
    border-radius: 9px;
    box-shadow: 0 9px 24px rgba(90, 55, 45, .18);
    text-shadow: none;
  }
  .htl-line:nth-child(2) { margin-right: 10px; }  /* 段差は控えめ＝より右に揃える */
  .htl-line:nth-child(3) { margin-right: 20px; }
  /* 強調行は通常フォント（手書きなし）＋メインカラーのみ */
  .hero-title-main .htl-em {
    color: var(--rose-500);
    font-size: 1em; font-weight: 800; padding: 5px 15px;
  }
}

/* 左上のキラキラ装飾を削除 */
.hero-visual::before { content: none !important; display: none !important; }

/* メイン画像：枠線を消して全体表示（横幅いっぱいの長方形） */
@media (max-width: 860px) {
  .hero-visual { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); transform: none; }
  .hero-photo {
    border-radius: 0 !important;
    box-shadow: none !important;
    aspect-ratio: 3 / 4;
    min-height: 0;
    filter: none;
  }
  /* オーバーレイの余白を画面端に合わせて調整 */
  .hero-title { top: 8%; right: 6px; left: auto; }
  .hero-point-group { width: calc(100% - 24px); margin-inline: auto; }
}

/* メインビジュアルをモバイル1画面ちょうどの高さに */
@media (max-width: 860px) {
  .hero-photo { aspect-ratio: auto; height: 440px; min-height: 0; object-position: 85% 28%; }
  /* リードを写真の下ぎわまで引き上げる（[2] もっと上） */
  .hero-copy .hero-lead { margin-top: -4px; position: relative; z-index: 4; }
}

/* ===== 新ファーストビュー（画像FV・2026-07-22 差し替え）===== */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hero-fv-section { padding: 0; overflow: hidden; background: #fff; }
.hero-fv { display: block; width: 100%; height: auto; }
.hero-fv-cta { text-align: center; padding: 20px 16px 24px; background: linear-gradient(180deg, #ffffff, #fff4f7); }
.hero-fv-cta .btn { width: 100%; max-width: 420px; }
.hero-fv-note { margin-top: 10px; font-size: 13px; color: #d6336c; font-weight: 700; letter-spacing: .02em; }
@media (min-width: 861px) {
  .hero-fv-section { background: linear-gradient(180deg, #fff6f9, #ffeef4); padding: 32px 0 10px; }
  .hero-fv { max-width: 460px; margin: 0 auto; border-radius: 20px; box-shadow: 0 20px 54px rgba(214,51,108,.18); }
  .hero-fv-cta { background: none; padding-top: 22px; }
}

/* 見出し内のブランド名は大文字化しない */
.eyebrow .brand-tc { text-transform: none; }
