@charset "UTF-8";
/*
Theme Name: Change/me LP
Theme URI: https://marimo-design.com/
Author: marimo design
Description: Change/me（美容コミュニティ）LP専用オリジナルテーマ。TSUMUGIと同構成でACF無料版＋CPTで運用。
Version: 41.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: changeme
*/

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

:root {
  --pink:       #D94F78;
  --pink-mid:   #E8849A;
  --pink-light: #F9EEF1;
  --pink-pale:  #FDF7F8;
  --text:       #333333;
  --text-mid:   #333333;
  --text-muted: #333333;
  --border:     #E8E8E8;
  --white:      #FFFFFF;
  --line-green: #06C755;
}

/* smooth scroll は削除：アンカーリンククリック時に即座に該当セクションへ移動 */
/* WPログイン中は上部に管理バー(32px/46px)が固定表示されるため scroll-padding で対応 */
html { scroll-padding-top: 24px; }
body.admin-bar { scroll-padding-top: 56px; }
@media (max-width: 782px) {
  body.admin-bar { scroll-padding-top: 70px; }
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── LAYOUT ── */
.wrap { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 680px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION DIVIDER ◆◇◆ ── */
.sec-divider {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
}
.sec-divider::before,
.sec-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.sec-divider .diamonds {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 3px;
  padding: 0 12px;
}
.sec-divider--rule { margin: 0 auto 20px; }
.sec-divider--rule::before,
.sec-divider--rule::after { background: var(--pink-light); height: 1px; }

.section { padding: 56px 0 72px; }
.section--gray { background: var(--pink-pale); }
.section--pink { background: var(--pink-light); }
@media (max-width: 640px) {
  .section { padding: 40px 0 48px; }
}

/* ── HEADINGS ── */
.sec-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 4.6vw, 32px);
  letter-spacing: .04em;
  color: var(--text);
  margin: 0 auto 12px;
  line-height: 1.5;
  position: relative;
  display: block;
  padding-bottom: 12px;
  text-align: center;
  overflow-wrap: break-word;
  word-break: normal;
}
/* 見出し内で「ここは1行で保つ」区切りに使う（例：pricing 見出しの前半/後半） */
.sec-title .nb {
  display: inline-block;
  white-space: nowrap;
}
.sec-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--pink);
  opacity: 0.85;
}

.sec-sub {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 44px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  text-align: center;
}

/* ── BUTTONS ── */
.btn-pink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #E15A82 0%, #D94F78 50%, #C74468 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 16px 40px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(217,79,120,0.28), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
}
/* キラッと光るシャイン */
.btn-pink::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btnShine 3.5s ease-in-out infinite;
}
@keyframes btnShine {
  0%   { left: -80%; }
  40%  { left: 130%; }
  100% { left: 130%; }
}
.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(217,79,120,0.36), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-pink--lg { font-size: 16px; padding: 20px 56px; }
.btn-pink--full { width: 100%; justify-content: center; }

.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--line-green);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .08em;
  padding: 18px 40px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-line:hover { opacity: .88; }
.btn-line--lg { font-size: 18px; padding: 22px 60px; }
.btn-line--full { width: 100%; }
.btn-line svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }

.more-link {
  display: inline-block;
  color: var(--pink);
  font-size: 14px;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--pink);
  padding-bottom: 1px;
}

/* ── STICKY CTA（スマホ限定・下部追従） ── */
.sticky-bar { display: none; }
@media (max-width: 640px) {
  .sticky-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.94);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--pink-light);
    box-shadow: 0 -4px 20px rgba(217,79,120,0.08);
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
  }
  .sticky-bar.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .sticky-bar .sticky-btn {
    display: block;
    width: 100%;
    max-width: 480px;
    text-align: center;
    background: var(--pink);
    color: #fff;
    font-weight: 500;
    letter-spacing: .04em;
    font-size: 16px;
    padding: 14px 24px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(217,79,120,0.28);
    text-decoration: none;
  }
  /* 追従バーが最終コンテンツに重ならないよう本文下に余白を確保 */
  body { padding-bottom: 88px; }
}

/* ── FADE IN（スクロール発火） ── */
.fi { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.fi.vis { opacity: 1; transform: none; }

/* 動きを減らしたいユーザー向け */
@media (prefers-reduced-motion: reduce) {
  .fi, .fi.vis { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-card > * { animation: none !important; opacity: 1 !important; }
}

/* ── FV：読み込み時にカード内を順番にふわっと出す ── */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-card > * {
  opacity: 0;
  animation: heroRise 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-card > *:nth-child(1) { animation-delay: 0.15s; }
.hero-card > *:nth-child(2) { animation-delay: 0.35s; }
.hero-card > *:nth-child(3) { animation-delay: 0.55s; }
.hero-card > *:nth-child(4) { animation-delay: 0.70s; }
.hero-card > *:nth-child(5) { animation-delay: 0.85s; }
.hero-card > *:nth-child(6) { animation-delay: 1.00s; }
.hero-card > *:nth-child(7) { animation-delay: 1.15s; }

/* ── カード類：スクロールで出るときの微妙な浮き（.fi と組み合わせる） ── */
.ba-side, .plan-card, .value-alt-item, .voice-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ── CTA矢印：ごくゆるやかな左右移動（読者の視線を誘導） ── */
@keyframes hintArrow {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}
.hero-btn-arrow {
  animation: hintArrow 2.4s ease-in-out infinite;
}
.hero-btn:hover .hero-btn-arrow {
  animation: none;
  transform: translateX(6px);
  transition: transform 0.2s ease;
}

/* ══════════════════════════════════════
   ① HERO — 背景画像 + 白カードオーバーレイ
══════════════════════════════════════ */
#hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
/* PC（641px以上）：他セクションと同じ幅（900px）で中央寄せの独立ブロックに */
@media (min-width: 641px) {
  #hero {
    max-width: 900px;
    margin: 48px auto;
    min-height: auto;
    border-radius: 24px;
    padding: 0;
  }
}

/* 背景画像（全面） */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* コンテナ：他セクション（.wrap max-width 900px）と揃える */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  justify-content: center;
}

/* 白カード（半透明ガラス風。背景写真が透けて見える） */
.hero-card {
  background: rgba(255,255,255,0.72);
  border-radius: 24px;
  padding: 56px 60px;
  max-width: 560px;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 20px 60px rgba(217,79,120,0.10);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
}

/* ロゴ（Change/me + 下線） */
.hero-logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.hero-logo-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  letter-spacing: 0.28em;
  color: var(--pink);
  font-weight: 400;
}
.hero-logo-line {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--pink);
  opacity: 0.6;
}

/* メインキャッチ */
.hero-catch {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 6vw, 40px);
  line-height: 1.55;
  color: #333333;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
  line-break: strict;
  overflow-wrap: anywhere;
}
.hero-catch em {
  font-style: normal;
  color: var(--pink);
}

/* 区切り線 + 中央マーク */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
}
.hero-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(217,79,120,0.35);
}
.hero-divider-mark {
  width: 8px;
  height: 8px;
  background: var(--pink);
  opacity: 0.55;
  border-radius: 50%;
  flex-shrink: 0;
}

/* 本文 */
.hero-body {
  font-size: 14px;
  color: #333333;
  line-height: 1.95;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.hero-body:last-of-type { margin-bottom: 28px; }
.hero-body em {
  font-style: normal;
  font-weight: 500;
  color: var(--pink);
}

/* 特徴バッジ：円形アイコン＋ラベル下配置。CTAピルと形状を差別化 */
.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 24px;
}
.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.hero-feature-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(217,79,120,0.22);
  box-shadow: 0 4px 14px rgba(217,79,120,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
}
.hero-feature-icon {
  width: 36px;
  height: 36px;
  display: block;
}
.hero-feature-label {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--text);
  text-align: center;
}

/* 本文の折り返し：日本語標準で／狭い画面でもはみ出さないよう */
.hero-body { line-break: strict; overflow-wrap: anywhere; }

/* CTAボタン（横長ピンクピル・矢印付き） */
.hero-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 32px;
  background: linear-gradient(180deg, #E36591 0%, #D94F78 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(217,79,120,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(217,79,120,0.35);
}
.hero-btn-label {
  flex: 1;
  text-align: center;
  padding-left: 24px;
}
.hero-btn-arrow {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.9;
}

/* タブレット以下 */
@media (max-width: 900px) {
  #hero { min-height: 100svh; padding: 40px 0; }
  .hero-inner { justify-content: center; padding: 20px; }
  .hero-card { padding: 44px 36px; max-width: 500px; }
  .hero-catch { font-size: clamp(24px, 5vw, 30px); }
}

@media (max-width: 560px) {
  #hero { padding: 32px 0; align-items: flex-start; }
  .hero-inner { padding: 24px 20px; }
  .hero-card {
    padding: 40px 24px;
    border-radius: 24px;
    max-width: 100%;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(18px) saturate(1.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    border: 1px solid rgba(255,255,255,0.6);
  }
  .hero-logo { margin-bottom: 28px; }
  .hero-logo-text { font-size: 16px; letter-spacing: 0.22em; }
  .hero-catch {
    line-height: 1.5;
    margin-bottom: 22px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255,255,255,0.6);
  }
  .hero-divider { margin-bottom: 24px; }
  .hero-body {
    font-size: 15px;
    line-height: 1.9;
    text-shadow: 0 1px 2px rgba(255,255,255,0.55);
  }
  .hero-features { gap: 14px; margin-bottom: 32px; }
  .hero-feature-circle { width: 68px; height: 68px; }
  .hero-feature-icon { width: 32px; height: 32px; }
  .hero-feature-label { font-size: 11px; line-height: 1.4; }
  .hero-btn { padding: 20px 24px; font-size: 15px; letter-spacing: 0.1em; }
  .hero-btn-label { padding-left: 18px; }
  .hero-btn-arrow { font-size: 18px; }
}

/* ══════════════════════════════════════
   ② EMPATHY
══════════════════════════════════════ */
.pain-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}
.pain-img {
  border-radius: 16px;
  overflow: hidden;
}
.pain-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.pain-item::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pink-mid);
  margin-top: 3px;
}
.pain-item-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-mid);
}
@media (max-width: 640px) {
  .pain-layout { gap: 24px; }
  /* スマホ：お悩み画像を画面いっぱいに（.wrap--narrow の 24px パディングを打ち消す） */
  .pain-img {
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
  }
}
/* お悩み → 解決 バナーセクション：HTML/CSSでレンダリング（色差・レンダリング境目を発生させない） */
.resolve-section {
  background: var(--pink-pale);
  padding: 16px 24px 40px;
  text-align: center;
}
.resolve-frame {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px;
  background: #fff;
  border: 2px solid var(--pink-mid);
  border-radius: 16px;
}
.resolve-frame p {
  margin: 0;
  color: var(--pink);
  font-weight: 700;
  font-size: clamp(17px, 2.6vw, 22px);
  line-height: 1.9;
  letter-spacing: .05em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (max-width: 640px) {
  .resolve-section { padding: 8px 16px 24px; }
  .resolve-frame { padding: 28px 20px; border-radius: 14px; }
}

@media (max-width: 640px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   ③ ABOUT
══════════════════════════════════════ */
.about-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 2;
  color: var(--text);
  margin-bottom: 48px;
  text-align: left;
}

.about-lead span { color: var(--pink); }

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.promise-item {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.promise-item:last-child { border-bottom: none; padding-bottom: 0; }

.promise-num {
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--text-muted);
  padding-top: 4px;
}

.promise-num strong {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--pink-mid);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 4px;
}

.promise-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.promise-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}

@media (max-width: 560px) {
  .promise-item { grid-template-columns: 60px 1fr; }
}

/* ══════════════════════════════════════
   ④ ACTIVITIES
══════════════════════════════════════ */
.activity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.activity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.activity-card .card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0;
}
.activity-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.activity-card .card-body { padding: 20px; }

.activity-card h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.activity-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.85;
}

@media (max-width: 640px) {
  .activity-cards { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   ⑤ VOICES (editorial magazine-style)
══════════════════════════════════════ */
.voice-list {
  max-width: 780px;
  margin: 8px auto 64px;
}

.voice-item {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.voice-item:first-child { padding-top: 32px; }
.voice-item:last-child  { border-bottom: none; }

/* 上部バイライン（顔写真+名前+VOICE番号） */
.vi-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.vi-byline-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(217,79,120,0.12);
}
.vi-byline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vi-byline-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.vi-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--pink);
  font-weight: 500;
}
.vi-num::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--pink);
  opacity: 0.4;
}
.vi-name-line { font-size: 14px; color: var(--text); font-weight: 500; letter-spacing: 0.02em; }
.vi-attr-line { font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; }

/* 匿名（写真も名前もない）ときはVOICE番号だけシンプルに */
.vi-byline.anonymous { display: block; margin-bottom: 16px; }
.vi-byline.anonymous .vi-num { margin: 0; }

.vi-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--pink);
}

/* 見出し直下の写真スロット */
.vi-hero {
  margin: 0 0 24px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--pink-pale);
}
.vi-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .vi-hero { margin-bottom: 20px; border-radius: 12px; }
}

.vi-body {
  font-size: 14px;
  line-height: 2.1;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}
.vi-body p { margin-bottom: 1.2em; }
.vi-body p:last-child { margin-bottom: 0; }
.vi-body strong {
  color: var(--text);
  font-weight: 600;
}
.vi-body mark {
  background: linear-gradient(180deg, transparent 60%, rgba(255,224,102,0.65) 60%);
  color: inherit;
  padding: 0 2px;
  font-weight: 500;
}

.av1 { background: linear-gradient(135deg, #F2C5D0, #E8A4B8); }
.av2 { background: linear-gradient(135deg, #F5D5DF, #EEC0D0); }
.av3 { background: linear-gradient(135deg, #F8E0E8, #F0C8D8); }
.av4 { background: linear-gradient(135deg, #F4CDD8, #EBB0C4); }
.av5 { background: linear-gradient(135deg, #F7DAE3, #EEC5D3); }
.av6 { background: linear-gradient(135deg, #F3C8D3, #E9A8BC); }
.av7 { background: linear-gradient(135deg, #F6D2DC, #EDBAC9); }

@media (max-width: 640px) {
  .voice-list { margin-bottom: 48px; }
  .voice-item { padding: 40px 0; }
  .vi-byline { gap: 12px; margin-bottom: 20px; }
  .vi-byline-photo { width: 52px; height: 52px; font-size: 24px; }
  .vi-title { font-size: 18px; padding-left: 16px; margin-bottom: 20px; }
  .vi-body  { font-size: 14px; line-height: 2; }
  .vi-num::after { width: 24px; }
}

/* ══════════════════════════════════════
   BEFORE / AFTER — 2カラム比較（装飾タイポ+マーカー強調）
══════════════════════════════════════ */
.ba-story {
  background: linear-gradient(180deg, #FDF7F8 0%, #F9EEF1 100%);
  padding: 72px 40px 80px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.ba-story::before,
.ba-story::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,132,154,0.18) 0%, rgba(232,132,154,0) 70%);
  pointer-events: none;
}
.ba-story::before { top: -90px;  left: -90px; }
.ba-story::after  { bottom: -90px; right: -90px; }

.ba-story-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.ba-title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 8px;
}
.ba-title .ba-title-mark {
  color: var(--pink);
  font-weight: 500;
  margin: 0 8px;
}

.ba-lead {
  text-align: center;
  font-size: 14px;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  margin-bottom: 56px;
}

/* ── Before/After 比較（PC・スマホともに縦積み） ── */
.ba-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
/* 縦積みでは中央矢印を下向きに */
.ba-compare .ba-arrow-big {
  transform: rotate(90deg);
  padding: 8px 0;
}

.ba-side {
  padding: 0;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ba-side.before {
  background: #F6F1EF;
  border: 1px solid rgba(190,180,185,0.28);
}
.ba-side.after {
  background: #FDF4F3;
  border: 1px solid rgba(217,79,120,0.22);
  box-shadow: 0 12px 32px rgba(217,79,120,0.08);
}

/* 写真エリア（カード上部・幅いっぱい） */
.ba-photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: rgba(0,0,0,0.03);
}
.ba-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.ba-side:hover .ba-photo img { transform: scale(1.02); }

/* 写真下のコンテンツエリア */
.ba-side-body {
  padding: 32px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ba-side-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid;
}
.ba-side.before .ba-side-head { border-color: rgba(0,0,0,0.06); }
.ba-side.after  .ba-side-head { border-color: rgba(217,79,120,0.15); }

.ba-label-big {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
.ba-side.before .ba-label-big { color: #B5A6AC; }
.ba-side.after  .ba-label-big { color: var(--pink); }

.ba-side-caption {
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
}
.ba-side.before .ba-side-caption { background: rgba(181,166,172,0.15); color: #8B7A80; }
.ba-side.after  .ba-side-caption { background: rgba(217,79,120,0.12); color: var(--pink); }

/* 日本語見出し（ラベル下・要点上） */
.ba-headline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.55;
  margin: 4px 0 22px;
}
.ba-side.before .ba-headline { color: #7A6970; }
.ba-side.after  .ba-headline { color: var(--text); }

.ba-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.ba-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.75;
}

.ba-item .mark {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
  font-weight: 700;
}
.ba-side.before .ba-item {
  color: #8B7A80;
  font-weight: 300;
}
.ba-side.before .ba-item .mark { color: #B5A6AC; }

.ba-side.after .ba-item {
  color: var(--text);
  font-weight: 400;
}
.ba-side.after .ba-item .mark { color: var(--pink); }

/* マーカー強調（<strong>を蛍光ペン風に） */
.ba-side.before .ba-item strong {
  background: linear-gradient(180deg, transparent 62%, rgba(181,166,172,0.35) 62%);
  font-weight: 500;
  color: var(--text-mid);
  padding: 0 2px;
}
.ba-side.after .ba-item strong {
  background: linear-gradient(180deg, transparent 62%, rgba(217,79,120,0.28) 62%);
  font-weight: 700;
  color: var(--text);
  padding: 0 2px;
}

/* ── Before/After 直下のCTAブロック ── */
.ba-cta {
  margin-top: 48px;
  padding: 36px 24px 32px;
  text-align: center;
  background: rgba(255,255,255,0.55);
  border-radius: 8px;
  position: relative;
}
.ba-cta::before {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(217,79,120,0.35);
  margin: -60px auto 20px;
}
.ba-cta-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  margin: 0 0 20px;
  line-height: 1.6;
}
.ba-cta-btn {
  min-width: 280px;
  padding: 18px 40px;
  font-size: 16px;
  letter-spacing: 0.06em;
}
.ba-cta-note {
  font-size: 12px;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  margin: 16px 0 0;
}

/* 中央矢印 */
.ba-arrow-big {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ba-arrow-big::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.1;
}
.ba-arrow-big span {
  position: relative;
  color: var(--pink);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 780px) {
  .ba-story { padding: 48px 20px 56px; }
  .ba-title { font-size: 18px; }
  .ba-lead  { font-size: 12px; margin-bottom: 36px; }

  .ba-compare {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ba-side { padding: 0; }
  .ba-photo { aspect-ratio: 3 / 2; }
  .ba-side-body { padding: 24px 22px 24px; }
  .ba-label-big { font-size: 40px; }
  .ba-side-head { margin-bottom: 12px; padding-bottom: 12px; }
  .ba-headline { font-size: 18px; margin: 4px 0 18px; }

  .ba-arrow-big {
    transform: rotate(90deg);
    padding: 12px 0;
  }
  .ba-arrow-big::before { width: 36px; height: 36px; }
  .ba-arrow-big span { font-size: 24px; }

  .ba-cta { margin-top: 36px; padding: 28px 18px 26px; }
  .ba-cta::before { margin: -46px auto 16px; height: 26px; }
  .ba-cta-lead { font-size: 14px; margin-bottom: 16px; }
  .ba-cta-btn { min-width: 0; width: 100%; padding: 16px 24px; font-size: 14px; }
  .ba-cta-note { font-size: 12px; }
}

@media (max-width: 560px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); padding: 8px 0; }
  .ba-wrap { padding: 28px 20px; }
}

/* ══════════════════════════════════════
   ⑥ PRICING
══════════════════════════════════════ */
.compare-wrap {
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}

.compare-scroll-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin: -12px 0 24px;
}

.compare-table th,
.compare-table td {
  padding: 18px 16px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child td { border-bottom: none; }

/* ── ヘッダー ── */
.compare-table thead th {
  background: #EEEAEC;
  font-weight: 500;
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.05em;
  padding: 22px 16px;
}
.compare-table thead th.highlight {
  background: var(--pink);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  padding-top: 50px;
}
.compare-table thead th.highlight::before {
  content: "おすすめ";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--pink);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--pink);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.15em;
  box-shadow: 0 2px 8px rgba(217,79,120,0.15);
}

/* ── 1列目：項目名 ── */
.compare-table tbody td:first-child {
  text-align: left;
  color: var(--text);
  background: #FAFAFA;
  font-weight: 500;
  font-size: 14px;
  width: 130px;
  border-right: 1px solid var(--border);
  padding-left: 20px;
}

/* ── 2列目：一般的な方法 ── */
.compare-table tbody td:nth-child(2) {
  color: var(--text-mid);
  background: #F5F1F2;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  padding-left: 36px;
}
.compare-table tbody td:nth-child(2)::before {
  content: "✕";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #A08890;
  font-size: 16px;
  font-weight: 700;
}

/* ── 3列目：Change/me（強調） ── */
.compare-table tbody td.highlight {
  background: rgba(217,79,120,0.05);
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding-left: 38px;
  border-left: 2px solid rgba(217,79,120,0.25);
}
.compare-table tbody td.highlight::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  font-size: 16px;
  font-weight: 700;
}

/* ── 合計行 ── */
.compare-table tbody tr.total-row td {
  padding: 24px 16px;
  border-top: 2px solid var(--border);
  background: #F5F2F3;
  font-size: 16px;
}
.compare-table tbody tr.total-row td:first-child {
  background: #EFEBED;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.compare-table tbody tr.total-row td:nth-child(2) {
  color: var(--text-mid);
  background: #EBE5E8;
  padding-left: 36px;
}
.compare-table tbody tr.total-row td:nth-child(2) strong {
  text-decoration: line-through;
  text-decoration-color: rgba(102,102,102,0.7);
  font-weight: 500;
}
.compare-table tbody tr.total-row td.highlight {
  background: var(--pink);
  color: #fff;
  padding-left: 38px;
  border-left: 2px solid var(--pink);
}
.compare-table tbody tr.total-row td.highlight::before {
  color: #fff;
  font-size: 18px;
}
.compare-table tbody tr.total-row td.highlight strong {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ── 節約額コールアウト ── */
.compare-savings {
  text-align: center;
  margin: 24px 0 48px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 400;
  letter-spacing: 0.05em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.compare-savings strong {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--pink);
  font-size: 32px;
  font-weight: 500;
  margin: 0 4px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.compare-savings-arrow {
  display: block;
  margin: 12px auto 8px;
  color: var(--pink);
  font-size: 18px;
  line-height: 1;
  opacity: 0.6;
}

/* ── モバイル：スクロールヒント表示（テーブル自体はデスクトップサイズを維持） ── */
@media (max-width: 780px) {
  .compare-scroll-hint { display: block; }
  .compare-savings strong { font-size: 24px; }
}

.plan-card {
  max-width: 560px;
  margin: 0 auto;
  border: 2px solid var(--pink);
  border-radius: 8px;
  overflow: hidden;
}

.plan-head {
  background: var(--pink);
  padding: 32px 24px 28px;
  color: #fff;
  text-align: center;
  /* 日本語の変な位置での改行を防ぐ */
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.plan-head .plan-label {
  font-size: 12px;
  letter-spacing: .2em;
  opacity: .9;
  margin-bottom: 16px;
}

/* 料金メイン部：¥＋数字は横並び（baseline揃え）、単位（税込・送料込 / 月）は改行 */
.plan-head .price-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 4px 6px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.plan-head .price-unit {
  flex-basis: 100%;
  text-align: center;
}
.plan-head .price-yen {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.plan-head .price-number {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.plan-head .price-unit {
  font-size: 14px;
  letter-spacing: 0.03em;
  opacity: 0.95;
  white-space: nowrap;
}

.plan-body {
  background: var(--white);
  padding: 32px 28px;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.benefit-list li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  /* 日本語のカクカク改行を軽減 */
  word-break: keep-all;
  overflow-wrap: anywhere;
}
/* 「Change/me」等の英数字ブロックはひと塊で扱う */
.benefit-list li,
.plan-head .price-note {
  hanging-punctuation: allow-end;
}

.benefit-list li::before {
  content: '●';
  color: var(--pink);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 8px;
}

.plan-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.7;
}

/* SP：フォント調整（¥＋9,360は横並びのまま維持） */
@media (max-width: 560px) {
  .plan-head { padding: 28px 18px 24px; }
  .plan-head .price-yen { font-size: 24px; }
  .plan-head .price-number { font-size: 48px; }
  .plan-head .price-unit { font-size: 12px; }
  .plan-body { padding: 26px 20px; }
  .benefit-list li { font-size: 14px; line-height: 1.7; }
}
@media (max-width: 380px) {
  .plan-head .price-number { font-size: 40px; }
}

/* ══════════════════════════════════════
   ⑦ FAQ
══════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0; }

details {
  border-bottom: 1px solid var(--border);
}

details:first-of-type { border-top: 1px solid var(--border); }

summary {
  padding: 20px 8px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  color: var(--text);
  list-style: none;
  position: relative;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }

.q-mark {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 1px;
}

summary .toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 300;
  transition: transform .25s;
}

details[open] summary .toggle { transform: translateY(-50%) rotate(45deg); }

.faq-answer {
  padding: 0 8px 24px 36px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ══════════════════════════════════════
   FINAL CTA — エレガントなピンクグラデ背景 + 力強い見出し
══════════════════════════════════════ */
.final-cta {
  position: relative;
  padding: 130px 24px 120px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 15%, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(160deg, #FDF7F8 0%, #F9EEF1 45%, #F1D8E0 100%);
}

/* 装飾ブロブ（背景に浮かぶ淡いピンクの円） */
.final-cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.final-cta-blob-1 {
  width: 420px;
  height: 420px;
  top: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(232,132,154,0.35) 0%, rgba(232,132,154,0) 70%);
}
.final-cta-blob-2 {
  width: 480px;
  height: 480px;
  bottom: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(217,79,120,0.28) 0%, rgba(217,79,120,0) 70%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

/* 英語アイキャッチ */
.final-cta .fc-eyebrow {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  letter-spacing: 0.35em;
  color: var(--pink);
  margin-bottom: 24px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* メインキャッチ — 力強く */
.final-cta .fc-catch {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 5.4vw, 46px);
  line-height: 1.5;
  color: #2A2A2A;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.final-cta .fc-catch strong {
  color: var(--pink);
  font-weight: 600;
  padding: 0 4px;
  background-image: linear-gradient(180deg, transparent 62%, rgba(217,79,120,0.22) 62%);
}

/* 装飾線 */
.final-cta .fc-divider {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--pink) 50%, transparent 100%);
  margin: 0 auto 28px;
}

.final-cta .fc-sub {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 44px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.final-cta .fc-note {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 16px;
  letter-spacing: 0.06em;
}

/* CTAボタン特別強化 */
.final-cta .btn-pink--lg {
  min-width: 320px;
  padding: 22px 40px;
  font-size: 16px;
  letter-spacing: 0.15em;
  box-shadow: 0 14px 32px rgba(217,79,120,0.28);
}

@media (max-width: 900px) {
  .final-cta { padding: 100px 24px 90px; }
  .final-cta-blob-1 { width: 300px; height: 300px; }
  .final-cta-blob-2 { width: 360px; height: 360px; }
}

@media (max-width: 560px) {
  .final-cta { padding: 80px 20px 72px; }
  .final-cta .fc-eyebrow { font-size: 12px; letter-spacing: 0.28em; margin-bottom: 18px; }
  .final-cta .fc-catch { font-size: 24px; line-height: 1.55; margin-bottom: 20px; }
  .final-cta .fc-divider { margin-bottom: 22px; }
  .final-cta .fc-sub { font-size: 14px; margin-bottom: 32px; }
  .final-cta .btn-pink--lg { min-width: 0; width: 100%; padding: 18px 24px; font-size: 16px; letter-spacing: 0.1em; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--text);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 36px 24px;
  font-size: 12px;
  letter-spacing: .08em;
}

.footer-logo {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,.7);
  letter-spacing: .15em;
  margin-bottom: 12px;
}

.footer-links {
  margin-bottom: 16px;
  font-size: 12px;
}
.footer-links a {
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.footer-links a:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.6);
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 300;
  backdrop-filter: blur(4px);
}

.header-logo {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  letter-spacing: .15em;
  color: var(--text);
}

.header-cta { display: flex; gap: 12px; }

.header-btn {
  font-size: 12px;
  padding: 8px 20px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-btn svg { width: 16px; height: 16px; fill: #fff; }

@media (max-width: 480px) {
  .header-cta .btn-pink { display: none; }
}


/* ── PROMISE CARD GRID (with images) ── */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 700px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .promise-grid { grid-template-columns: 1fr; }
}
.promise-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
}
.promise-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.promise-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.promise-card-num {
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.promise-card-num strong {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--pink-mid);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}
.promise-card-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}
.promise-card-body-text {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1;
}

.final-cta .fc-price {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  color: var(--pink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.final-cta .fc-price strong {
  font-size: 1.2em;
  font-weight: 400;
}

/* Final CTA の最後のひと押しキャッチコピー */
.final-cta .fc-catch {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(20px, 3.4vw, 30px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.08em;
  line-height: 1.65;
  margin-bottom: 16px;
}
.final-cta .fc-catch strong {
  color: var(--pink);
  font-weight: 500;
  padding: 0 2px;
}

/* Pricing の 1日あたり価格アピール（ピンク背景の中で使う想定） */
.price-daily {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 22px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  white-space: nowrap;
  max-width: 100%;
}
.price-daily-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  white-space: nowrap;
}
.price-daily-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}
.plan-head .price-note {
  font-size: 14px;
  opacity: 1;
  color: rgba(255,255,255,0.92);
  margin-top: 16px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  /* 「未来のわたし」等が変な位置で改行しないように */
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.plan-head .price-note strong {
  display: inline-block;
  color: #FFFFFF;
  font-weight: 700;
  border-bottom: 1px dotted rgba(255,255,255,0.6);
  padding-bottom: 1px;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .price-daily { padding: 8px 18px; margin-top: 16px; }
  .price-daily-num { font-size: 18px; }
  .plan-head .price-note { font-size: 12px; }
}

/* ══════════════════════════════════════
   特定商取引法に基づく表記ページ
══════════════════════════════════════ */
.tokushoho-page {
  padding: 80px 0 100px;
  background: #fff;
}

.tokushoho-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 500;
  text-align: center;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--pink);
  display: inline-block;
  width: auto;
}

.tokushoho-page .wrap--narrow { text-align: center; }
.tokushoho-page .wrap--narrow > *:not(.tokushoho-title) { text-align: left; }

.tokushoho-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin: 12px auto 48px;
  padding: 12px 16px;
  background: #FDF7F8;
  border-left: 3px solid var(--pink);
  max-width: 560px;
}

.tokushoho-list {
  margin-bottom: 48px;
}

.tokushoho-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.tokushoho-row dt {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
}

.tokushoho-row dd {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}

.tokushoho-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.tokushoho-inline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tokushoho-inline-list li {
  padding: 4px 0;
  font-size: 14px;
}
.tokushoho-inline-list li strong {
  color: var(--pink);
  font-weight: 500;
  margin-right: 4px;
}

.tokushoho-back {
  margin-top: 48px;
  text-align: center;
}
.tokushoho-back a {
  color: var(--text-mid);
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.tokushoho-back a:hover { border-bottom-color: var(--pink); }

@media (max-width: 640px) {
  .tokushoho-page { padding: 48px 0 64px; }
  .tokushoho-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }
  .tokushoho-row dt {
    color: var(--pink);
    font-size: 12px;
    letter-spacing: 0.1em;
  }
}

/* ══════════════════════════════════════
   HERO FV2 — 一枚画像 + 画像内オーバーレイCTA
   （他セクションと同じ .section + .wrap 幅。
    CTAは画像内の「3つの丸の下・余白部分」に重ねる）
══════════════════════════════════════ */
.hero-fv2-inner {
  display: flex;
  justify-content: center;
}
.hero-fv2-frame {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(180, 120, 130, 0.12);
}
.hero-fv2-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-fv2-cta {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px 32px;
  background: #fff;
}
.hero-fv2-cta .btn-pink {
  min-width: 260px;
  padding: 18px 32px;
  font-size: 15px;
}
.hero-fv2-cta-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}
/* FV は上下パディング0（上端に密着＋直後セクションと連続）
   旧 #hero スタイル（min-height: 100svh / padding / margin / border-radius など）を
   ID セレクタで確実に打ち消す */
#hero.hero-fv2,
#hero.hero-fv2.section {
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  max-width: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  display: block !important;
  align-items: initial !important;
}
/* FV 直後のセクションも上パディング0（section-empathy に付与済み） */
.section--flush-top { padding-top: 0 !important; }

/* スマホ：FVを画面いっぱいに（左右余白・角丸・影すべてなし） */
@media (max-width: 640px) {
  .hero-fv2 .wrap { padding: 0; }
  .hero-fv2-frame {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
}

/* ══════════════════════════════════════
   v48 OVERRIDES (2026-07-31)
   ・フォント全体をNoto Sansゴシックに統一済（sed置換）
   ・見出し系の視認性UP（font-weight強化）
══════════════════════════════════════ */
.sec-title { font-weight: 600; letter-spacing: .05em; }

/* ══════════════════════════════════════
   v51 OVERRIDES (2026-07-31)
   ・全btn-pinkに白丸+チェブロン
   ・料金比較テーブル合計行の税込表示を金額下に小さく
══════════════════════════════════════ */

/* すべての btn-pink に白丸+チェブロン（画像内ボタンと同じ意匠） */
.btn-pink::after {
  content: '›';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 4px;
  background: #fff;
  color: var(--pink);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 3px;
  flex-shrink: 0;
}
.btn-pink--lg::after {
  width: 32px;
  height: 32px;
  font-size: 22px;
}

/* 料金比較テーブル合計行：税込・送料込を金額下に小さく別行で */
.compare-table tbody tr.total-row td .total-tax-note {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 2px;
  letter-spacing: 0;
  white-space: nowrap;
}
.compare-table tbody tr.total-row td.highlight .total-tax-note {
  color: #fff;
  opacity: 0.95;
}
@media (max-width: 560px) {
  .compare-table tbody tr.total-row td .total-tax-note {
    font-size: 10px;
  }
}

/* empathyセクション → resolveバナーの間隔を詰める（適切な余白） */
.section.section--gray.section--flush-top { padding-bottom: 32px; }
@media (max-width: 640px) {
  .section.section--gray.section--flush-top { padding-bottom: 20px; }
}




