/* =============================================
   le chel LP — style.css  (v3: 参考LP準拠リデザイン)
   ============================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---- カラー・フォント・シャドウ変数 ---- */
:root {
  /* 柔らかいピーチピンク・ベージュ系（参考LP準拠） */
  --color-primary:   #E8B4B8;
  --color-accent:    #D49A9E;
  --color-secondary: #FDF6F5;
  --color-pink:      #FCF0F0;
  --color-pink-light:#FDF8F7;

  /* 文字 */
  --color-text:      #5A4C4D;
  --color-text-sub:  #6b4a44;
  --color-text-muted:#7a6060;
  --color-white:     #ffffff;

  /* ブラウン・ゴールド */
  --color-brown:     #7A5C58;
  --color-gold:      #d4a574;
  --color-gold-dark: #C89B6F;
  --color-border:    #f0ddd8;

  --font-serif: 'Noto Serif JP', serif;
  --font-sans:  'Zen Maru Gothic', sans-serif;

  --shadow-soft:     0 3px 18px rgba(120,80,80,0.08);
  --shadow-card:     0 5px 30px rgba(120,80,80,0.13), 0 2px 8px rgba(120,80,80,0.06);
  --shadow-elevated: 0 10px 50px rgba(120,80,80,0.18), 0 4px 14px rgba(120,80,80,0.08);
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  font-size: 16px;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lp {
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

/* ---- セクション見出し共通 ---- */
.sec-head {
  text-align: center;
  margin-bottom: 36px;
}
.sec-head h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.65;
  letter-spacing: .06em;
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
}
.sec-head h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}
.sec-head p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-top: 20px;
  letter-spacing: .04em;
}

/* ---- プレースホルダー ---- */
.ph-box {
  background: linear-gradient(160deg, #f0e0d8, #e8d0c8);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.ph-box span {
  font-size: 11px;
  color: #b09080;
  line-height: 1.6;
}

/* ---- スマホのみ表示する改行 ---- */
.sp-only { display: block; }

/* ---- 区切り線 ---- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0c8c0, transparent);
}

/* =============================================
   アニメーション定義
   ============================================= */
@keyframes shimmer {
  0%   { left: -100%; }
  60%  { left: 100%; }
  100% { left: 100%; }
}

@keyframes sparkle {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50%       { background-position: 100% center; }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(212,154,158,0.30);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 15px 45px rgba(212,154,158,0.50);
  }
}

@keyframes floatGold {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 8px 28px rgba(200,155,111,0.38);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(200,155,111,0.52);
  }
}

/* =============================================
   CTA ボタン
   ============================================= */
.cta-wrap {
  padding: 20px 28px 44px;
  background: linear-gradient(180deg, var(--color-secondary), var(--color-pink));
  text-align: center;
}
.cta-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: #b07070;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

/* ピンクCTA */
.cta-btn {
  display: inline-block;
  padding: 20px 50px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  animation: pulse 2.4s ease-in-out infinite;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(212,154,158,0.30);
  text-align: center;
}
.cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.cta-btn:hover::before { width: 340px; height: 340px; }
.cta-btn:hover {
  animation: none;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px rgba(212,154,158,0.50);
}
.cta-btn:active {
  animation: none;
  transform: scale(.97);
}
.cta-note {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-top: 14px;
}
.cta-note strong {
  color: #A05860;
  font-weight: 700;
}

/* ゴールドCTA（closing用） */
.cta-btn-gold {
  display: inline-block;
  padding: 20px 50px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
  background: linear-gradient(135deg, #C47880, #A05860);
  box-shadow: 0 10px 30px rgba(180,100,110,0.32);
  animation: floatGold 2.4s ease-in-out infinite;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(200,155,111,0.38);
  text-align: center;
}
.cta-btn-gold:hover {
  animation: none;
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(180,100,110,0.50);
}
.cta-btn-gold:active {
  animation: none;
  transform: scale(.97);
}

/* =============================================
   LINE CTA — アイコン共通
   ============================================= */
.cta-line-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #A05860;
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  padding: 3px 7px;
  margin-right: 10px;
  vertical-align: middle;
  line-height: 1;
}
.cta-wrap--line .cta-btn {
  background: linear-gradient(135deg, #C47880, #A05860);
  box-shadow: 0 10px 30px rgba(180,100,110,0.32);
  animation: pulseLine 2.4s ease-in-out infinite;
}
.cta-wrap--line .cta-btn:hover {
  box-shadow: 0 20px 50px rgba(180,100,110,0.48);
}
@keyframes pulseLine {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(180,100,110,0.32);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 15px 45px rgba(180,100,110,0.48);
  }
}

/* =============================================
   SECTION 1 — HERO
   ============================================= */
.hero {
  background: linear-gradient(160deg, #FFF7F8 0%, var(--color-secondary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232,180,184,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  padding: 56px 28px 20px;
  position: relative;
  z-index: 1;
}

/* ---- グラスモーフィズム ブランドボックス ---- */
.hero-brand-box {
  text-align: center;
  margin: 0 -28px 34px;
  padding: 48px 36px 40px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.95) 0%,
    rgba(254,250,245,0.90) 50%,
    rgba(255,255,255,0.95) 100%);
  box-shadow:
    0 20px 60px rgba(139,111,71,0.14),
    0 8px 24px rgba(139,111,71,0.08),
    inset 0 2px 4px rgba(255,255,255,1);
  backdrop-filter: blur(20px);
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg,
    rgba(212,165,116,0.2),
    rgba(255,255,255,0.8),
    rgba(212,165,116,0.2)) 1;
  position: relative;
  overflow: hidden;
}
.hero-brand-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
  animation: shimmer 6s ease-in-out infinite;
}
.hero-brand-box::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  bottom: 8px;
  border-top: 1px solid rgba(212,165,116,0.18);
  border-bottom: 1px solid rgba(212,165,116,0.18);
  pointer-events: none;
}

/* ブランド名 — ゴールドグラデーションテキスト */
.hero-brand-name {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 700;
  background: linear-gradient(135deg,
    #5a4332 0%,
    #8B6F47 25%,
    var(--color-gold) 50%,
    #8B6F47 75%,
    #5a4332 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .20em;
  line-height: 1.15;
  margin-bottom: 14px;
  animation: gradientShift 6s ease infinite;
  filter: drop-shadow(0 2px 8px rgba(139,111,71,0.18));
  position: relative;
  z-index: 1;
}

/* スパークル装飾 */
.hero-brand-sparkle {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
  animation: sparkle 2.5s ease-in-out infinite;
  margin: 0 6px;
  position: relative;
  z-index: 1;
}
.hero-brand-sparkle + .hero-brand-sparkle {
  animation-delay: 1.25s;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: #b09888;
  letter-spacing: .18em;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.hero-tagline::before,
.hero-tagline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #d4b8a8;
}
.hero-tagline::before { right: calc(100% + 10px); }
.hero-tagline::after  { left:  calc(100% + 10px); }

/* ヒーロービジュアル */
.hero-visual {
  width: 110%;
  margin-left: -5%;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
  position: relative;
}
.hero-visual .ph-box {
  height: 100%;
  background: linear-gradient(160deg, #f0e0d8, #e4d0c8);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  mask-image:
    radial-gradient(ellipse 90% 85% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image:
    radial-gradient(ellipse 90% 85% at 50% 50%, black 20%, transparent 100%);
}

/* キャッチコピー */
.hero-catchphrase {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.7;
  margin-bottom: 14px;
  letter-spacing: .06em;
}
.hero-sub {
  font-size: 15px;
  color: rgba(90,76,77,0.68);
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.8;
}

/* 旧クラス互換（念のため残す） */
.hero-brand {
  font-family: var(--font-serif);
  font-size: 46px;
  letter-spacing: .22em;
  color: var(--color-brown);
  margin-bottom: 14px;
  line-height: 1.1;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.65;
  margin-bottom: 12px;
  letter-spacing: .06em;
}
.hero-deco {
  width: 24px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto 24px;
  opacity: .7;
}

/* Hero badges — 満席サロン社会的証明 */
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 16px;
  background: rgba(255,255,255,0.7);
  border-radius: 14px;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}
.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.hero-badge strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-gold-dark);
  line-height: 1.1;
  letter-spacing: .02em;
}
.hero-badge span {
  font-size: 10px;
  color: var(--color-text-sub);
  margin-top: 4px;
  letter-spacing: .04em;
}
.hero-badge-sep {
  width: 1px;
  height: 28px;
  background: var(--color-border);
}

/* =============================================
   COMPARE — 他サロン比較表
   ============================================= */
.compare {
  padding: 64px 24px;
  background: var(--color-white);
}

/* --- Compare タイトル --- */
.compare-title {
  text-align: center;
  margin-bottom: 36px;
}
.compare-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .22em;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.compare-title h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.55;
  letter-spacing: .04em;
  position: relative;
  padding-bottom: 20px;
}
.compare-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

/* --- スクロールラッパー --- */
.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -24px;
  padding: 0 24px 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) var(--color-pink);
}
.compare-scroll::-webkit-scrollbar {
  height: 6px;
}
.compare-scroll::-webkit-scrollbar-track {
  background: var(--color-pink);
  border-radius: 3px;
}
.compare-scroll::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px;
}

/* --- Compare フレーム・カード --- */
.compare-frame {
  position: relative;
  min-width: 520px;
}
.compare-self-bg {
  position: absolute;
  right: 0;
  top: -14px;
  bottom: -14px;
  width: 44%;
  background: linear-gradient(160deg, #fff0f3 0%, #f8d0d8 100%);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(212,154,158,0.40);
  z-index: 0;
}
.compare-table {
  position: relative;
  z-index: 1;
  overflow: visible;
  background: transparent;
}

/* --- 行・セル --- */
.compare-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px dashed rgba(0,0,0,0.07);
}
.compare-row:last-child { border-bottom: none; }

.compare-axis {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 10px;
  text-align: center;
  letter-spacing: .03em;
  line-height: 1.5;
}
.compare-col {
  font-size: 15px;
  line-height: 1.7;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 10px;
}
.compare-others {
  color: #7a7a7a;
  background: transparent;
}
.compare-self {
  color: var(--color-text);
  font-weight: 500;
  background: transparent;
}
.compare-self strong {
  color: var(--color-accent);
  font-weight: 700;
}

/* Head row */
.compare-head {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.compare-head .compare-axis { padding: 20px 8px; }
.compare-head .compare-others {
  font-size: 14px;
  font-weight: 600;
  color: #999999;
  letter-spacing: .05em;
  justify-content: center;
  align-items: center;
}
.compare-head .compare-self {
  gap: 6px;
  padding-top: 22px;
  padding-bottom: 22px;
  justify-content: center;
  align-items: center;
}
.compare-col-crown {
  font-size: 13px;
  color: var(--color-primary);
  line-height: 1;
}
.compare-col-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .1em;
}

/* ◎ / △ marks */
.cmp-mark {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-sans);
  line-height: 1;
}
.cmp-ok {
  background: var(--color-accent);
  color: #fff;
}
.cmp-ng {
  background: #e8e8e8;
  color: #b8b8b8;
}

/* =============================================
   HOPE COMPACT — 1スクリーン版
   ============================================= */
.hope.hope--compact {
  padding: 56px 28px 60px;
}
.hope.hope--compact::after { display: none; }
.hope.hope--compact .hope-glow {
  width: 240px;
  height: 240px;
  top: -40px;
}
.hope.hope--compact .hope-eyebrow {
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--color-gold);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hope.hope--compact .hope-heading {
  font-size: 28px;
  line-height: 1.7;
  margin-bottom: 26px;
}
.hope.hope--compact .hope-body {
  font-size: 14px;
  line-height: 2.1;
  margin-bottom: 0;
}

/* =============================================
   MENU — 施術フロー（タイムライン）
   ============================================= */
.menu-flow {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--color-border);
}
.menu-flow-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gold-dark);
  letter-spacing: .12em;
  margin-bottom: 18px;
  margin-top: 16px;
}
.menu-flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-flow-list li {
  position: relative;
  padding: 0 0 20px 40px;
}
.menu-flow-list li:last-child { padding-bottom: 0; }
.menu-flow-list li::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 22px;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--color-primary), rgba(232,180,184,0));
}
.menu-flow-list li:last-child::after { display: none; }
.mfl-num {
  position: absolute;
  left: 0;
  top: 3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .02em;
}
.mfl-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 3px;
}
.mfl-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}
.mfl-note {
  display: inline-block;
  width: fit-content;
  font-size: 13px;
  color: var(--color-text-muted);
  background: var(--color-pink-light);
  padding: 3px 12px;
  border-radius: 4px;
  font-weight: 500;
}
.mfl-feel {
  font-size: 15px;
  color: var(--color-accent);
  font-style: italic;
  font-family: var(--font-serif);
  line-height: 1.7;
  opacity: 0.9;
}

/* MENU — アコーディオン */
.menu-flow-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1.5px solid var(--color-accent);
  border-radius: 12px;
  background: var(--color-pink-light);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .04em;
  text-align: left;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(160,88,96,0.12);
}
.menu-flow-toggle:hover {
  background: #fff;
  box-shadow: 0 4px 14px rgba(160,88,96,0.20);
}
.menu-flow-toggle:active {
  transform: scale(0.98);
}
.menu-flow-toggle::before {
  content: '▼';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.menu-flow-toggle[aria-expanded="true"]::before {
  transform: rotate(180deg);
}
.menu-flow-panel[hidden] {
  display: none;
}

/* MENU — オプション */
.menu-options {
  margin-top: 22px;
  padding: 22px 22px 8px;
  background: var(--color-pink-light);
  border-radius: 14px;
  border: 1px solid var(--color-border);
}
.menu-options-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.menu-opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.menu-opt:last-child { border-bottom: none; }
.menu-opt-name {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
}
.menu-opt-name span {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-left: 8px;
  font-weight: 400;
}
.menu-opt-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-serif);
}

/* =============================================
   FLOATING CTA
   ============================================= */
.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px 14px 22px;
  line-height: 1;
  text-align: center;
  background: linear-gradient(135deg, #06C755, #04A647);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(6,199,85,0.42), 0 4px 10px rgba(0,0,0,0.10);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, box-shadow .25s ease;
  font-family: var(--font-sans);
}
.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: floatPulse 2.6s ease-in-out infinite;
}
.floating-cta:hover {
  box-shadow: 0 14px 40px rgba(6,199,85,0.58);
}
.floating-cta-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.floating-cta-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(6,199,85,0.42), 0 4px 10px rgba(0,0,0,0.10); }
  50%       { box-shadow: 0 16px 42px rgba(6,199,85,0.58), 0 6px 14px rgba(0,0,0,0.12); }
}

/* =============================================
   FOOTER SOCIALS
   ============================================= */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .06em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.footer-social--line {
  background: #06C755;
  color: #fff;
}
.footer-social--insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.footer-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* =============================================
   TWEAKS PANEL
   ============================================= */
.tweaks-panel {
  position: fixed;
  right: 16px;
  top: 16px;
  z-index: 200;
  width: 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  border: 1px solid var(--color-border);
  overflow: hidden;
  font-family: var(--font-sans);
}
.tweaks-panel[hidden] { display: none; }
.tweaks-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--color-brown);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.tweaks-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  padding: 2px 6px;
}
.tweaks-body {
  padding: 14px 16px;
}
.tweaks-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text);
  padding: 6px 0;
  cursor: pointer;
}
.tweaks-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

/* =============================================
   SECTION 1.5 — サロンコンセプト
   ============================================= */
.concept {
  background: var(--color-white);
  position: relative;
}
.concept-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.concept-ph {
  height: 100%;
  border-radius: 0;
}
.concept-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.concept-inner {
  padding: 64px 28px 64px;
  text-align: center;
}
.concept-lead {
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-serif);
  letter-spacing: .18em;
  color: var(--color-gold-dark);
  margin-bottom: 16px;
}
.concept-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.75;
  margin-bottom: 24px;
  letter-spacing: .06em;
}
.concept-body {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 2.2;
  margin-bottom: 24px;
}
.concept-body strong {
  color: var(--color-brown);
  font-weight: 700;
  background: linear-gradient(transparent 70%, rgba(220,170,170,0.35) 70%);
  padding: 0 2px;
}
.concept-body .em-pink {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.05em;
  letter-spacing: .02em;
}
.concept-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.concept-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-brown);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: .06em;
}
.concept-photo {
  margin-top: 36px;
  border-radius: 16px;
  overflow: hidden;
}
.concept-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* =============================================
   SECTION 2 — 問題提起
   ============================================= */
.problem {
  padding: 64px 28px;
  background: var(--color-secondary);
}
.problem-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 32px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.problem-photo .ph-box {
  height: 100%;
  border-radius: 18px;
}
.problem-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.prob-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.prob-item {
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  color: #5a4040;
  line-height: 1.85;
  text-align: left;
  border-bottom: 1px solid rgba(220,200,195,0.5);
  padding-left: 26px;
  position: relative;
}
.prob-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}
.prob-item:last-child {
  border-bottom: none;
}

/* お悩みブリッジ */
.prob-bridge {
  margin-top: 40px;
  text-align: center;
  padding: 36px 20px 0;
  border-top: 1px solid rgba(220,200,195,0.6);
}
.prob-bridge-q {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.9;
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.prob-bridge-em {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .04em;
  line-height: 1.7;
}

/* お悩みビジュアル */
.prob-visual {
  margin-top: 28px;
  margin-bottom: 4px;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}
.prob-visual .ph-box {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--color-primary), var(--color-accent));
}
.prob-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* =============================================
   SECTION 2.5 — なぜ変われなかったのか（統合）
   ============================================= */
.why-section {
  padding: 80px 28px;
  background: var(--color-white);
}
.why-inner {
  max-width: 480px;
  margin: 0 auto;
}
.why-lead {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.8;
  margin-bottom: 36px;
  letter-spacing: .06em;
  text-align: center;
}
.why-narrative {
  margin-bottom: 40px;
}
.why-narrative p {
  font-size: 16px;
  color: var(--color-text-sub);
  line-height: 2.2;
  margin-bottom: 20px;
  text-align: center;
}
.why-narrative p:last-child {
  margin-bottom: 0;
}
.why-narrative strong {
  color: var(--color-accent);
}
.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 40px;
}
.why-reason {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}
.why-reason:first-child {
  border-top: 1px solid var(--color-border);
}
.why-r-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  min-width: 36px;
  opacity: 0.6;
}
.why-r-content {
  flex: 1;
}
.why-r-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-brown);
  margin-bottom: 8px;
  line-height: 1.6;
}
.why-r-body {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 2.0;
}
.why-closing {
  font-size: 16px;
  color: #4a3030;
  line-height: 2.1;
  text-align: center;
  padding: 28px 20px;
  background: var(--color-secondary);
  border-radius: 16px;
}
.why-closing strong {
  color: var(--color-accent);
}

/* =============================================
   SECTION 2.7 — 希望
   ============================================= */
@keyframes hopeAura {
  0%, 100% { opacity: .55; transform: translateX(-50%) scale(1); }
  50%       { opacity: .85; transform: translateX(-50%) scale(1.12); }
}
.hope {
  background:
    radial-gradient(ellipse 120% 55% at 50% 0%, rgba(255,215,210,0.55) 0%, transparent 65%),
    linear-gradient(180deg, #fff8f7 0%, var(--color-secondary) 45%, #fff8f7 100%);
  padding: 80px 28px 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hope::after {
  content: '変';
  position: absolute;
  bottom: -48px;
  right: -16px;
  font-family: var(--font-serif);
  font-size: 220px;
  font-weight: 700;
  color: rgba(232,180,184,0.055);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.hope-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,195,190,0.45) 0%, transparent 68%);
  animation: hopeAura 5s ease-in-out infinite;
  pointer-events: none;
}
.hope-inner {
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}
.hope-eyebrow {
  font-family: var(--font-serif);
  font-size: 11px;
  color: var(--color-gold);
  letter-spacing: .22em;
  margin-bottom: 18px;
  opacity: .85;
}
.hope-heading {
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .06em;
  margin-bottom: 0;
  background: linear-gradient(140deg, var(--color-brown) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hope-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px auto 32px;
  width: 140px;
}
.hope-ornament span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary));
}
.hope-ornament span:last-child {
  background: linear-gradient(90deg, var(--color-primary), transparent);
}
.hope-ornament i {
  font-style: normal;
  font-size: 9px;
  color: var(--color-primary);
  opacity: .75;
}
.hope-photo {
  width: 100%;
  margin: 0 auto 36px;
  aspect-ratio: 16 / 9;
  overflow: visible;
}
.hope-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 30%, transparent 100%);
}
.hope-body {
  font-size: 16px;
  color: var(--color-text-sub);
  line-height: 2.3;
  margin-bottom: 20px;
}
.hope-body strong {
  color: var(--color-accent);
  font-weight: 700;
}
.hope-body--sub {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 44px;
}
.hope-impact {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 2.0;
  letter-spacing: .04em;
  color: var(--color-accent);
  text-align: center;
  margin: 8px 0 40px;
  padding: 22px 16px;
  border-top: 1px solid rgba(212,154,158,0.28);
  border-bottom: 1px solid rgba(212,154,158,0.28);
  background: linear-gradient(180deg, rgba(255,248,247,0.6) 0%, rgba(252,227,231,0.4) 100%);
}
.hope-impact strong {
  color: #A05860;
  font-weight: 700;
  background: linear-gradient(transparent 65%, rgba(232,180,184,0.45) 65%);
  padding: 0 2px;
}
.hope-coda {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hope-coda-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-brown);
  letter-spacing: .08em;
}
.hope-coda-mark {
  font-size: 11px;
  color: var(--color-primary);
  letter-spacing: .35em;
  opacity: .7;
}

/* (Affinity styles removed — merged into .why-section) */

/* =============================================
   SECTION 4 — 解決策
   ============================================= */
.solution {
  padding: 64px 28px;
  background: var(--color-pink);
}
.solution-photo {
  margin: 0 0 28px;
  border-radius: 16px;
  overflow: hidden;
}
.solution-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 260px;
}
.pt-card {
  border-radius: 14px;
  padding: 28px 26px;
  margin-bottom: 16px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.pt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gold), var(--color-primary));
}
.pt-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--color-gold-dark);
  margin-bottom: 8px;
  padding-left: 8px;
}
.pt-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 12px;
  padding-left: 8px;
  line-height: 1.5;
}
.pt-body {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 2.0;
  padding-left: 8px;
}

/* =============================================
   SECTION 5 — オーナー（編集デザイン）
   ============================================= */
.owner {
  position: relative;
  padding: 88px 24px 96px;
  background: linear-gradient(180deg, var(--color-pink) 0%, #FBE4DA 100%);
  overflow: hidden;
}
.owner::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 36px;
  background: var(--color-gold-dark);
  opacity: 0.5;
}
.owner-eyebrow {
  position: relative;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .36em;
  color: var(--color-gold-dark);
  margin-bottom: 36px;
  padding-top: 10px;
}
.owner .sec-head {
  margin-bottom: 44px;
}
.owner .sec-head h2::after {
  display: none;
}

/* Layout */
.owner-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}
.owner-name-block {
  text-align: center;
  width: 100%;
  max-width: 420px;
}

/* Photo - editorial frame */
.owner-photo-wrap {
  position: relative;
  width: 260px;
}
.owner-photo-back {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-gold-dark);
  border-radius: 2px;
  z-index: 0;
  opacity: 0.55;
}
.owner-ph-single {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #FBF7F0;
  padding: 10px 10px 14px;
  border-radius: 2px;
  box-shadow: 0 14px 40px rgba(120, 80, 80, 0.18);
  margin: 0;
  max-width: none;
  overflow: hidden;
  box-sizing: border-box;
}
.owner-ph-single img {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 1px;
}
.owner-ph-single::after {
  content: 'le chel';
  flex: 0 0 auto;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 12px;
  font-style: italic;
  letter-spacing: .25em;
  color: var(--color-gold-dark);
  padding-top: 10px;
  line-height: 1;
}

.owner-name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-brown);
  letter-spacing: .14em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.owner-name-en {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  letter-spacing: .26em;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.owner-role {
  font-size: 14px;
  color: var(--color-brown);
  letter-spacing: .08em;
  font-weight: 500;
  margin-bottom: 18px;
}
.owner-credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 155, 111, 0.4);
  font-size: 14px;
  color: var(--color-brown);
  letter-spacing: .04em;
  line-height: 1.6;
}
.owner-credentials strong {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 16px;
  margin: 0 2px;
}
.owner-credentials-sep {
  color: var(--color-gold-dark);
  opacity: 0.6;
}

/* Bio flow */
.owner-bio-flow {
  max-width: 640px;
  margin: 56px auto 0;
  font-size: 16px;
  line-height: 2.0;
  color: #3a2828;
  position: relative;
}
.owner-bio-flow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-gold-dark);
  opacity: 0.5;
  margin: 0 auto 32px;
}
.owner-bio-flow p {
  margin-bottom: 22px;
}
.owner-bio-flow p:last-child {
  margin-bottom: 0;
}
.owner-em {
  color: #A05860;
  font-weight: 700;
  background: linear-gradient(transparent 65%, rgba(220, 170, 170, 0.45) 65%);
  padding: 0 2px;
}
.owner-signature {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px dashed rgba(160, 88, 96, 0.3);
  font-size: 15px;
  color: #4a3030;
  font-style: normal;
  line-height: 1.95;
}

/* =============================================
   SECTION 6 — メニュー
   ============================================= */
.menu {
  padding: 64px 28px;
  background: var(--color-white);
}
.menu-card {
  border-radius: 14px;
  border: 1px solid var(--color-border);
  padding: 26px 24px;
  margin-bottom: 14px;
  position: relative;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}
.menu-card.pop {
  border-color: var(--color-primary);
  border-width: 1.5px;
  box-shadow: var(--shadow-card);
}
.pop-tag {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 0 0 12px 12px;
  letter-spacing: .06em;
}
.menu-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 8px;
}
.menu-time {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.menu-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-serif);
  margin-bottom: 8px;
}
.menu-price small {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 400;
  font-family: var(--font-sans);
}
.menu-for {
  font-size: 14px;
  color: var(--color-text-sub);
  background: var(--color-pink);
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-block;
}
.new-badge {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-pink));
  border: 1.5px dashed var(--color-primary);
  border-radius: 20px;
  padding: 20px 22px;
  text-align: center;
  margin-top: 18px;
  box-shadow: var(--shadow-soft);
}
.new-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.new-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-serif);
}
.new-orig {
  font-size: 14px;
  color: #b09090;
  text-decoration: line-through;
  margin-right: 8px;
}
.new-reason {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(232,180,184,0.4);
}

/* =============================================
   メニュー価格 — LINE限定統一ブロック（v15）
   ============================================= */
.menu-price-line-block {
  text-align: center;
  margin: 4px 0 14px;
  padding: 16px 16px 14px;
  background: linear-gradient(135deg, rgba(248, 232, 230, 0.55), rgba(255, 248, 245, 0.5));
  border: 1px dashed rgba(220, 165, 170, 0.5);
  border-radius: 14px;
}
.menu-price-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .14em;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  margin-bottom: 10px;
}
.menu-price-orig {
  font-size: 14px;
  color: #b09090;
  text-decoration: line-through;
  margin-bottom: 2px;
  letter-spacing: .03em;
}
.menu-price-now {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-serif);
  line-height: 1.15;
}
.menu-price-now small {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 400;
  font-family: var(--font-sans);
  margin-left: 4px;
}
.menu-price-note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* =============================================
   SECTION 7 — お客様の声
   ============================================= */
.voice {
  padding: 64px 28px;
  background: var(--color-white);
}
.v-card {
  background: var(--color-secondary);
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 16px;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}
.v-card::before {
  content: '\201C';
  font-size: 90px;
  font-family: Georgia, serif;
  color: var(--color-primary);
  opacity: 0.22;
  position: absolute;
  top: 8px;
  left: 14px;
  line-height: 1;
  z-index: 0;
}
.v-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.v-ba-single {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 18px rgba(120,80,80,0.12);
}
.v-ba-single img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.v-ba-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.v-ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v-ba-item .ph-box {
  height: 100%;
  border-radius: 0;
}
.v-ba-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #fff;
  background: rgba(90,60,55,0.55);
  padding: 5px 0;
  backdrop-filter: blur(2px);
}
.v-hl {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-pink));
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 18px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 15px rgba(212,165,116,0.15);
}
.v-hl::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 22px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--color-pink);
}
.v-body {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 2.0;
  position: relative;
  z-index: 1;
}
.v-auth {
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: right;
  margin-top: 14px;
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
}

/* =============================================
   SECTION 8 — ビフォーアフター
   ============================================= */
.gallery {
  padding: 64px 28px;
  background: var(--color-white);
}
.g-item {
  margin-bottom: 22px;
}
.g-item .ph-box {
  box-shadow: var(--shadow-soft);
  border-radius: 18px;
}
.g-item img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: var(--shadow-soft);
}
.g-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 10px;
  letter-spacing: .04em;
}

/* =============================================
   SECTION 9 — FAQ
   ============================================= */
.faq {
  padding: 64px 28px;
  background: var(--color-secondary);
}
.faq-item {
  background: var(--color-white);
  border-radius: 12px;
  padding: 24px 22px;
  margin-bottom: 12px;
  box-shadow: none;
  border: 1px solid var(--color-border);
}
.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.faq-qi {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--color-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.faq-a {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 2.0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.faq-ai {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* =============================================
   SECTION 10 — 最終CTA
   ============================================= */
.closing {
  padding: 0 28px 70px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-pink) 100%);
  text-align: center;
}
.closing-menu-link {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .04em;
  margin-bottom: 24px;
  text-decoration: none;
}
.closing-menu-link:hover { text-decoration: underline; }
.closing-box {
  background: var(--color-white);
  border-radius: 28px;
  padding: 52px 32px;
  box-shadow: 0 20px 60px rgba(139,111,71,0.14);
  margin-top: 36px;
}
.closing h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.75;
  margin-bottom: 22px;
  letter-spacing: .06em;
}
.closing p {
  font-size: 16px;
  color: var(--color-text-sub);
  line-height: 2.2;
  margin-bottom: 36px;
}
.closing-note {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 16px;
  letter-spacing: .04em;
}

/* =============================================
   フッター
   ============================================= */
.footer {
  background: var(--color-brown);
  color: var(--color-white);
  padding: 52px 28px 32px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .12em;
  opacity: .95;
}
.footer-info {
  font-size: 15px;
  line-height: 2.0;
  margin-bottom: 28px;
  opacity: .85;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  color: var(--color-white);
  font-size: 13px;
  opacity: .85;
  text-decoration: none;
  transition: opacity .3s ease;
}
.footer-links a:hover { opacity: 1; }
.footer-copyright {
  font-size: 12px;
  opacity: .6;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* =============================================
   フェードインアニメーション
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   PC レイアウト（768px以上）
   ============================================= */
@media (min-width: 768px) {
  .lp { max-width: 960px; }

  /* --- Hero 2カラム --- */
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 56px;
    align-items: center;
    padding: 72px 56px 48px;
    text-align: left;
  }
  .hero-brand-box {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 28px;
    text-align: center;
  }
  .hero-brand-box .hero-tagline { text-align: center; }
  .hero-visual {
    grid-column: 2;
    grid-row: 1 / 4;
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
    aspect-ratio: 3 / 4;
  }
  .hero-catchphrase {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
    font-size: 38px;
  }
  .hero-sub {
    grid-column: 1;
    grid-row: 3;
    text-align: left;
  }
  .hero-tagline { text-align: left; }

  /* --- Concept --- */
  .concept-inner { padding: 0 56px; max-width: 100%; }
  .concept { padding: 80px 0; }
  .concept-body { font-size: 15px; }

  /* --- Why section --- */
  .why-section { padding: 80px 56px; }
  .why-inner { max-width: 100%; }

  /* --- Hope --- */
  .hope { padding: 100px 56px 88px; }
  .hope-inner { max-width: 600px; }
  .hope-photo { width: 85%; }
  .hope-heading { font-size: 30px; }
  .hope-impact { font-size: 23px; padding: 28px 20px; }

  /* --- Solution 3カラム --- */
  .solution { padding: 80px 56px; }
  .solution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
  }
  .solution-cards .pt-card { margin-bottom: 0; }
  .solution-photo img { max-height: 340px; }

  /* --- Owner 編集レイアウト --- */
  .owner { padding: 120px 56px 120px; }
  .owner::before { top: 56px; height: 56px; }
  .owner-eyebrow { font-size: 14px; margin-bottom: 48px; padding-top: 18px; }
  .owner .sec-head { margin-bottom: 64px; }
  .owner-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    column-gap: 72px;
    align-items: center;
    max-width: 880px;
    margin: 0 auto;
  }
  .owner-photo-wrap {
    width: 280px;
    margin: 0;
  }
  .owner-photo-back {
    top: 18px;
    left: 18px;
  }
  .owner-name-block {
    text-align: left;
    max-width: none;
  }
  .owner-name {
    font-size: 36px;
    margin-bottom: 12px;
  }
  .owner-name-en { font-size: 15px; margin-bottom: 16px; }
  .owner-role { font-size: 16px; margin-bottom: 22px; }
  .owner-credentials {
    justify-content: flex-start;
    font-size: 16px;
    padding-top: 20px;
  }
  .owner-credentials strong { font-size: 18px; }
  .owner-bio-flow {
    margin-top: 80px;
    max-width: 760px;
    font-size: 18px;
    line-height: 2.1;
  }
  .owner-bio-flow::before { margin-bottom: 40px; width: 32px; }
  .owner-bio-flow p { margin-bottom: 26px; }
  .owner-signature { font-size: 17px; padding-top: 26px; margin-top: 32px; }

  /* --- Voice 2x2グリッド --- */
  .voice { padding: 80px 56px; }
  .voice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .voice-grid .v-card { margin-bottom: 0; }

  /* --- Menu --- */
  .menu { padding: 80px 56px; }

  /* --- FAQ --- */
  .faq-section { padding: 80px 56px; }

  /* --- CTA --- */
  .cta-wrap { padding: 24px 56px; }
  .closing { padding: 80px 56px; }

  /* --- Compare PC --- */
  .compare { padding: 80px 56px; }
  .compare-title h2 { font-size: 30px; }
  .compare-scroll { margin: 0; padding: 0 0 12px; }
  .compare-frame { min-width: 0; }
  .compare-row { grid-template-columns: 110px 1fr 1fr; }
  .compare-axis { font-size: 16px; padding: 26px 12px; }
  .compare-col { font-size: 16px; padding: 26px 18px; gap: 12px; }
  .compare-col-name { font-size: 22px; }
  .cmp-mark { width: 52px; height: 52px; font-size: 24px; }

  /* --- Hope PC --- */
  .hope.hope--compact { padding: 80px 56px; }
  .hope.hope--compact .hope-heading { font-size: 32px; }

  /* --- Floating CTA PC --- */
  .floating-cta { right: 24px; bottom: 24px; }

  /* --- PC 文字サイズ全体引き上げ --- */
  .sp-only { display: none; }
  body { font-size: 18px; }
  .sec-head h2 { font-size: 30px; }
  .sec-head p { font-size: 17px; }
  .why-lead { font-size: 28px; }
  .why-narrative p { font-size: 18px; }
  .why-r-title { font-size: 19px; }
  .why-r-body { font-size: 17px; }
  .why-closing { font-size: 18px; }
  .concept-title { font-size: 26px; }
  .concept-body { font-size: 17px; }
  .prob-item { font-size: 17px; }
  .prob-bridge-q { font-size: 18px; }
  .prob-bridge-em { font-size: 19px; }
  .hope-body { font-size: 18px; }
  .hope-impact { font-size: 24px; }
  .pt-body { font-size: 17px; }
  .menu-name { font-size: 20px; }
  .menu-price { font-size: 30px; }
  .menu-for { font-size: 16px; }
  .menu-flow-toggle { font-size: 16px; }
  .mfl-name { font-size: 18px; }
  .mfl-feel { font-size: 16px; }
  .mfl-note { font-size: 14px; }
  .menu-options-title { font-size: 17px; }
  .menu-opt-name { font-size: 17px; }
  .menu-opt-name span { font-size: 15px; }
  .menu-opt-price { font-size: 18px; }
  .v-hl { font-size: 17px; }
  .v-body { font-size: 17px; }
  .v-auth { font-size: 15px; }
  .faq-q { font-size: 19px; }
  .faq-a { font-size: 17px; }
  .closing h2 { font-size: 28px; }
  .closing p { font-size: 18px; }
  .cta-btn, .cta-btn-gold { font-size: 18px; padding: 22px 64px; }
  .cta-note { font-size: 17px; }
  .cta-eyebrow { font-size: 15px; }
  .footer-info { font-size: 16px; }
  .new-reason { font-size: 16px; }
  .new-label { font-size: 15px; }
  .new-price { font-size: 28px; }
  .menu-price-now { font-size: 34px; }
  .menu-price-eyebrow { font-size: 13px; }
  .menu-price-orig { font-size: 15px; }
  .menu-price-note { font-size: 13px; }
}

/* =============================================
   レスポンシブ（小さいスマホ）
   ============================================= */
@media (max-width: 480px) {
  .hero-brand-name   { font-size: 46px; letter-spacing: .14em; }
  .hero-catchphrase  { font-size: 25px; }
  .hero h1           { font-size: 23px; }
  .sec-head h2       { font-size: 22px; }
  .concept-title     { font-size: 20px; }
  .empathy-quote     { font-size: 22px; }
  .hope-heading      { font-size: 21px; }
  .problem-deep h2   { font-size: 20px; }
  .pt-title          { font-size: 16px; }
  .menu-price        { font-size: 22px; }
  .menu-price-now    { font-size: 24px; }
  .closing h2        { font-size: 21px; }
  .cta-btn,
  .cta-btn-gold      { padding: 18px 36px; font-size: 15px; }
  .hero-brand-box    { padding: 38px 24px 32px; }
}
