/* ============================================================
   CureDrip Plus — styles.css  [Cute & Luxury Redesign]
   Mobile-first, max-width: 480px
   Color palette:
     --rose:     #E8637A  (メインアクセント：ローズピンク)
     --rose-lt:  #F5A0AE  (ライトローズ)
     --rose-dk:  #C04060  (ダークローズ)
     --blush:    #FDE8EC  (ブラッシュピンク・背景)
     --petal:    #FFF0F3  (ペタル・薄ピンク)
     --lavender: #F3EEFF  (ラベンダー薄紫)
     --gold:     #D4A853  (ゴールド)
     --gold-lt:  #F0D9A0  (ライトゴールド)
     --white:    #FFFFFF
     --cream:    #FFFBFC
     --charcoal: #3D2B35  (チャコール・テキスト)
     --gray:     #9A8490
     --gray-lt:  #F5EEF0
============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
  --rose:      #E8637A;
  --rose-lt:   #F5A0AE;
  --rose-dk:   #C04060;
  --blush:     #FDE8EC;
  --petal:     #FFF0F3;
  --lavender:  #F3EEFF;
  --gold:      #D4A853;
  --gold-lt:   #F0D9A0;
  --gold-dk:   #A07830;
  --white:     #FFFFFF;
  --cream:     #FFFBFC;
  --charcoal:  #3D2B35;
  --dark:      #2D1F28;
  --gray:      #9A8490;
  --gray-lt:   #F5EEF0;
  --line-green: #06C755;
  --shadow-sm: 0 2px 12px rgba(232,99,122,0.10);
  --shadow-md: 0 4px 24px rgba(232,99,122,0.15);
  --shadow-lg: 0 8px 40px rgba(232,99,122,0.20);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
  padding-bottom: 80px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  line-height: 1.35;
  font-weight: 800;
}

em {
  font-style: normal;
  color: var(--rose);
}

strong {
  font-weight: 700;
}

/* ===== UTILITY ===== */
.section-inner {
  padding: 40px 20px 0;
}

.section {
  padding: 60px 0;
}

.section-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--rose);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: var(--blush);
  padding: 4px 12px;
  border-radius: 50px;
}

.section-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.4;
}

.section-subtitle {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STICKY LINE BUTTON ===== */
.sticky-line-btn {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--line-green);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(6,199,85,0.45);
  min-height: 52px;
  min-width: 220px;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.sticky-line-btn:hover,
.sticky-line-btn:focus {
  transform: translateX(-50%) scale(1.04);
  box-shadow: 0 6px 28px rgba(6,199,85,0.55);
  outline: 3px solid rgba(6,199,85,0.4);
}

.sticky-line-btn:active {
  transform: translateX(-50%) scale(0.97);
}

.line-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.line-icon-sm {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blush);
  padding: 10px 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 16px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose-dk), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 9px;
  color: var(--gray);
  letter-spacing: 0.1em;
}

.header-cta-btn {
  background: var(--line-green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  min-height: 36px;
  display: flex;
  align-items: center;
  transition: background var(--transition);
  white-space: nowrap;
}

.header-cta-btn:hover,
.header-cta-btn:focus {
  background: #05a847;
  outline: 3px solid rgba(6,199,85,0.4);
}

/* ===== CTA BUTTONS ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 15px;
  min-height: 54px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  width: 100%;
  max-width: 360px;
}

.cta-btn:hover,
.cta-btn:focus {
  transform: scale(1.03);
}

.cta-btn:active {
  transform: scale(0.97);
}

.cta-btn--primary {
  background: var(--line-green);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(6,199,85,0.4);
}

.cta-btn--primary:hover,
.cta-btn--primary:focus {
  background: #05a847;
  box-shadow: 0 6px 24px rgba(6,199,85,0.5);
}

.cta-btn--gold {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dk) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(232,99,122,0.4);
}

.cta-btn--gold:hover,
.cta-btn--gold:focus {
  box-shadow: 0 6px 24px rgba(232,99,122,0.55);
}

.cta-btn--large {
  font-size: 17px;
  padding: 18px 36px;
  min-height: 60px;
}

.cta-note {
  font-size: 11px;
  color: var(--gray);
  margin-top: 10px;
  text-align: center;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--petal) 0%, var(--blush) 100%);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(232,99,122,0.15);
  border-bottom: 1px solid rgba(232,99,122,0.15);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '✦';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--rose-lt);
  letter-spacing: 16px;
}

.cta-band--dark {
  background: linear-gradient(135deg, var(--dark) 0%, #2a1520 100%);
}

.cta-band--dark .cta-band-text {
  color: rgba(255,255,255,0.85);
}

.cta-band--dark .cta-band-text strong {
  color: var(--gold-lt);
}

.cta-band--dark::before {
  color: rgba(255,255,255,0.15);
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-band-text {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.8;
}

.cta-band-text strong {
  color: var(--rose-dk);
}

/* ===== FV SECTION ===== */
.fv-section {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.fv-image-only {
  display: block;
  line-height: 0;
}

.fv-img-full {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.fv-cta-area {
  background: linear-gradient(180deg, var(--petal) 0%, var(--white) 100%);
  padding: 28px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-top: 3px solid var(--rose-lt);
  position: relative;
}

.fv-cta-area::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-lt), var(--rose), var(--rose-lt));
  border-radius: 50px;
}

.fv-image-wrap { display: none; }
.fv-overlay { display: none; }
.fv-content { display: none; }
.fv-badges { display: none; }
.badge { display: none; }
.fv-headline { display: none; }
.fv-subtext { display: none; }

/* ===== SECTION BG IMAGE (worry / solution / after) ===== */
.section-bg-image {
  position: relative;
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61,43,53,0.35) 0%,
    rgba(61,43,53,0.70) 100%
  );
}

.section-bg-overlay--light {
  background: linear-gradient(
    to bottom,
    rgba(61,43,53,0.25) 0%,
    rgba(61,43,53,0.60) 100%
  );
}

.section-bg-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 24px;
  z-index: 1;
}

.section-bg-content .section-label {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.section-bg-content .section-title {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ===== WORRY SECTION ===== */
.worry-section {
  background: var(--white);
  padding-top: 0;
}

.worry-image-wrap { display: none; }
.worry-image { display: none; }

.worry-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.worry-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--petal), var(--white));
  border: 1px solid rgba(232,99,122,0.18);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.worry-card:hover {
  transform: translateX(4px);
}

.worry-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blush), var(--petal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  box-shadow: 0 2px 8px rgba(232,99,122,0.2);
}

.worry-icon svg {
  width: 18px;
  height: 18px;
}

.worry-text {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
  background: linear-gradient(160deg, var(--petal) 0%, var(--lavender) 100%);
  padding-top: 0;
}

.solution-image-wrap { display: none; }
.solution-image { display: none; }

.solution-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--rose-lt);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.solution-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blush), var(--lavender));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--rose);
  box-shadow: 0 2px 8px rgba(232,99,122,0.2);
}

.solution-card-icon svg {
  width: 20px;
  height: 20px;
}

.solution-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.solution-card-text {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== FLOW SECTION ===== */
.flow-section {
  background: linear-gradient(160deg, var(--charcoal) 0%, #2a1520 100%);
  position: relative;
  overflow: hidden;
}

.flow-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232,99,122,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.flow-section .section-label {
  background: rgba(232,99,122,0.2);
  color: var(--rose-lt);
}

.flow-section .section-title {
  color: var(--white);
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,99,122,0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: background var(--transition);
}

.flow-step:hover {
  background: rgba(232,99,122,0.08);
}

.flow-step-num {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose-lt), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 36px;
  letter-spacing: -0.02em;
}

.flow-step-content {
  flex: 1;
}

.flow-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.flow-step-text {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.flow-arrow {
  text-align: center;
  color: var(--rose-lt);
  font-size: 14px;
  padding: 4px 0;
  line-height: 1;
}

/* ===== MENU SECTION ===== */
.menu-section {
  background: var(--white);
}

.menu-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--petal), var(--white));
  border: 1px solid rgba(232,99,122,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
  gap: 12px;
  transition: transform var(--transition);
}

.menu-card:hover {
  transform: translateX(4px);
}

.menu-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  flex: 1;
  line-height: 1.4;
}

.menu-card-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--rose-dk);
  white-space: nowrap;
}

.menu-card-tag-old {
  /* 旧スタイル（使用停止） */
  position: absolute;
  top: -8px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(212,168,83,0.4);
}

.menu-card-tag--popular {
  background: linear-gradient(135deg, var(--rose), var(--rose-dk));
  box-shadow: 0 2px 6px rgba(232,99,122,0.4);
}

/* ===== PREMIUM SECTION ===== */
.premium-section {
  background: linear-gradient(160deg, var(--charcoal) 0%, #1a0d15 100%);
  position: relative;
  overflow: hidden;
}

.premium-section::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212,168,83,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.premium-section .section-label {
  background: rgba(212,168,83,0.2);
  color: var(--gold-lt);
}

.premium-section .section-title {
  color: var(--white);
}

.premium-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.premium-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.premium-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(212,168,83,0.07) 100%);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

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

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-lt), var(--gold-lt), var(--rose-lt));
}

.premium-card-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-lt);
  margin-bottom: 8px;
}

.premium-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.premium-card-icon {
  font-size: 22px;
  margin-bottom: 6px;
}

.premium-card-effect {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.premium-card-price {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-lt), var(--rose-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

/* ===== DIET SECTION ===== */
.diet-section {
  background: var(--white);
}

.diet-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.diet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 300px;
}

.diet-table th,
.diet-table td {
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid var(--gray-lt);
}

.diet-table th {
  background: linear-gradient(135deg, var(--charcoal), var(--dark));
  color: var(--gold-lt);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.diet-table tbody tr:nth-child(even) {
  background: var(--petal);
}

.diet-table td:first-child {
  font-weight: 700;
  color: var(--rose-dk);
}

/* ===== CAUTION BANNER ===== */
.caution-banner {
  background: linear-gradient(135deg, #fff8f0, #fff3e8);
  border: 2px solid #e8a020;
  border-radius: var(--radius-md);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
}

.caution-banner-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #b85c00;
}

.caution-banner-header svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.caution-banner-header strong {
  font-size: 14px;
  font-weight: 800;
  color: #b85c00;
}

.caution-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.caution-list li {
  font-size: 13px;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.caution-list li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  font-size: 11px;
  color: #e8a020;
  top: 1px;
}

/* ===== EFFECT SECTION ===== */
.effect-section {
  background: linear-gradient(160deg, var(--petal) 0%, var(--lavender) 100%);
  padding-top: 0;
}

.after-image-wrap { display: none; }
.after-image { display: none; }

.effect-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.effect-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--rose);
  transition: transform var(--transition), box-shadow var(--transition);
}

.effect-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.effect-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.effect-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.effect-tag--before {
  background: var(--blush);
  color: var(--rose-dk);
}

.effect-tag--after {
  background: var(--lavender);
  color: #7B5EA7;
}

.effect-item {
  color: var(--charcoal);
  font-weight: 600;
}

.effect-arrow {
  color: var(--rose);
  font-weight: 700;
}

.effect-result {
  font-size: 14px;
  font-weight: 800;
  color: var(--rose-dk);
}

/* ===== PLAN SECTION ===== */
.plan-section {
  background: var(--white);
}

.plan-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.plan-card {
  background: linear-gradient(135deg, var(--petal), var(--white));
  border: 1px solid rgba(232,99,122,0.2);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.plan-card--featured {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a1520 100%);
  border-color: var(--rose);
  box-shadow: 0 6px 28px rgba(232,99,122,0.25);
}

.plan-card--featured .plan-card-name {
  color: var(--white);
}

.plan-card--featured .plan-card-discount {
  color: rgba(255,255,255,0.75);
}

.plan-card--featured .plan-card-discount strong {
  color: var(--rose-lt);
}

.plan-card--featured .plan-card-price {
  color: var(--white);
}

.plan-card--enterprise {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffbf0, var(--white));
}

.plan-card-badge {
  position: absolute;
  top: -1px;
  right: 16px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dk));
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 10px 10px;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(232,99,122,0.3);
}

.plan-card-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.plan-card-discount {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 8px;
}

.plan-card-discount strong {
  font-size: 20px;
  color: var(--rose-dk);
}

.plan-card-price {
  font-size: 26px;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.plan-card-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
}

.plan-card-btn {
  display: block;
  text-align: center;
  background: var(--gray-lt);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: 50px;
  transition: background var(--transition);
  min-height: 42px;
  line-height: 22px;
}

.plan-card-btn:hover,
.plan-card-btn:focus {
  background: var(--blush);
  outline: 3px solid rgba(232,99,122,0.3);
}

.plan-card-btn--featured {
  background: var(--line-green);
  color: var(--white);
}

.plan-card-btn--featured:hover,
.plan-card-btn--featured:focus {
  background: #05a847;
}

.plan-card-btn--enterprise {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--white);
}

.plan-card-btn--enterprise:hover,
.plan-card-btn--enterprise:focus {
  opacity: 0.9;
}

.plan-note {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== START SECTION ===== */
.start-section {
  background: linear-gradient(160deg, var(--petal) 0%, var(--lavender) 100%);
}

.start-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.start-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 3px solid var(--rose-lt);
  transition: transform var(--transition), box-shadow var(--transition);
}

.start-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.start-step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--rose);
  margin-bottom: 8px;
}

.start-step-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blush), var(--lavender));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--rose);
  box-shadow: 0 2px 8px rgba(232,99,122,0.2);
}

.start-step-icon svg {
  width: 20px;
  height: 20px;
}

.start-step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.3;
}

.start-step-text {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== VOICE SECTION ===== */
.voice-section {
  background: linear-gradient(160deg, var(--white) 0%, var(--petal) 100%);
}

.voice-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.voice-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--rose-lt);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.voice-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--blush);
  line-height: 1;
  pointer-events: none;
}

.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.voice-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.voice-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--blush), var(--petal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(232,99,122,0.2);
}

.voice-avatar svg {
  width: 22px;
  height: 22px;
}

.voice-avatar--purple {
  background: linear-gradient(135deg, var(--lavender), #e8e0ff);
  color: #7B5EA7;
  box-shadow: 0 2px 8px rgba(123,94,167,0.2);
}

.voice-avatar--gold {
  background: linear-gradient(135deg, #fff8e6, #fff0c0);
  color: var(--gold-dk);
  box-shadow: 0 2px 8px rgba(212,168,83,0.2);
}

.voice-meta {
  flex: 1;
}

.voice-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.3;
}

.voice-role {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray);
  margin-top: 2px;
}

.voice-stars {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
}

.voice-text {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 14px;
  padding-left: 0;
  border: none;
  font-style: normal;
  position: relative;
  z-index: 1;
}

.voice-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--blush), var(--petal));
  color: var(--rose-dk);
  letter-spacing: 0.03em;
}

.voice-tag--purple {
  background: linear-gradient(135deg, var(--lavender), #e8e0ff);
  color: #6B4EA7;
}

.voice-tag--gold {
  background: linear-gradient(135deg, #fff8e6, #fff0c0);
  color: var(--gold-dk);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232,99,122,0.15);
}

.faq-item {
  border-bottom: 1px solid rgba(232,99,122,0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.5;
  min-height: 54px;
  transition: background var(--transition);
}

.faq-question:hover,
.faq-question:focus {
  background: var(--petal);
  outline: none;
}

.faq-question[aria-expanded="true"] {
  background: var(--petal);
  color: var(--rose-dk);
}

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--rose);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 18px 16px;
  background: var(--petal);
}
.faq-answer[hidden] {
  display: none !important;
}

.faq-answer p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61,43,53,0.72) 0%,
    rgba(61,43,53,0.88) 100%
  );
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-cta-inner .section-title {
  color: var(--white);
}

.final-cta-text {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.final-cta-note {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.final-cta-sub-link {
  font-size: 13px;
  color: var(--rose-lt);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta-sub-link:hover,
.final-cta-sub-link:focus {
  color: var(--gold-lt);
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--dark) 100%);
  padding: 40px 20px 30px;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose-lt), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

.footer-line-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--line-green);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  min-height: 48px;
  transition: background var(--transition);
  margin-top: 8px;
}

.footer-line-btn svg {
  width: 20px;
  height: 20px;
}

.footer-line-btn:hover,
.footer-line-btn:focus {
  background: #05a847;
  outline: 3px solid rgba(6,199,85,0.4);
}

.footer-copy {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
}

/* ===== RESPONSIVE GUARD ===== */
@media (min-width: 481px) {
  body {
    border-left: 1px solid var(--gray-lt);
    border-right: 1px solid var(--gray-lt);
  }
}

@media (max-width: 320px) {
  .solution-cards {
    grid-template-columns: 1fr;
  }
  .start-steps {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   背景画像フルセクション（bg-section）スタイル
   ============================================================ */

/* ベース */
.bg-section {
  position: relative;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.bg-section--cta {
  min-height: 480px;
}

/* オーバーレイ */
.bg-section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.bg-section-overlay--dark {
  background: linear-gradient(
    180deg,
    rgba(30,10,15,0.52) 0%,
    rgba(30,10,15,0.42) 50%,
    rgba(30,10,15,0.62) 100%
  );
}
.bg-section-overlay--light {
  /* 視認性改善：明るい背景でも白文字が読めるよう暗色オーバーレイに変更 */
  background: linear-gradient(
    180deg,
    rgba(20,8,12,0.62) 0%,
    rgba(20,8,12,0.50) 50%,
    rgba(20,8,12,0.68) 100%
  );
}
.bg-section-overlay--top {
  /* 視認性改善：上部の白飛び対策として上部オーバーレイを強化 */
  background: linear-gradient(
    180deg,
    rgba(20,5,10,0.82) 0%,
    rgba(20,5,10,0.55) 50%,
    rgba(20,5,10,0.70) 100%
  );
}
.bg-section-overlay--pink {
  /* 視認性改善：ローズ系の濃いオーバーレイで白文字を確保 */
  background: linear-gradient(
    180deg,
    rgba(140,40,65,0.72) 0%,
    rgba(100,20,45,0.65) 50%,
    rgba(140,40,65,0.78) 100%
  );
}

/* 内コンテンツ */
.bg-section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 56px 24px 56px;
}
.bg-section-inner--cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ラベル（白文字・ダーク文字） */
.section-label-light {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 50px;
}
.section-label-dark {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--rose-dk);
  text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 50px;
}

/* タイトル */
.bg-section-title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
/* bg-section-title--darkは廃止（全て白文字に統一） */
.bg-section-title em {
  font-style: italic;
  color: #ffd1dc;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

/* 悩みリスト */
.worry-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.worry-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.worry-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--rose);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.worry-item p {
  font-size: 14px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  line-height: 1.6;
}
.worry-item strong {
  color: var(--rose-lt);
}

/* 解決グリッド */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.solution-item {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.solution-item-icon {
  font-size: 26px;
  margin-bottom: 6px;
}
.solution-item h3 {
  font-size: 13px;
  font-weight: 700;
  color: #3d1a28;
  margin-bottom: 3px;
}
.solution-item p {
  font-size: 10px;
  color: #5a3a48;
  line-height: 1.5;
}

/* 導入後の変化リスト */
.effect-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.effect-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.effect-before {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: line-through;
  flex: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.effect-arrow-icon {
  font-size: 18px;
  color: var(--rose-lt);
  flex-shrink: 0;
}
.effect-after {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex: 1;
  text-align: right;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* 最終CTAテキスト */
.final-cta-text {
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.final-cta-note {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ============================================================
   旧セクション（worry-section / solution-section / effect-section）
   背景画像セクションに置き換えたため非表示
   ============================================================ */
.worry-section,
.solution-section,
.effect-section {
  /* 旧スタイルは残しつつ、新しい bg-section で上書き */
}


/* ============================================================
   改善追加スタイル v3
   ============================================================ */

/* 改善①：信頼バッジ */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.95);
  border: 1.5px solid var(--blush);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 10px;
  color: var(--charcoal);
  font-weight: 700;
  min-width: 58px;
  box-shadow: 0 2px 8px rgba(232,99,122,0.08);
}
.trust-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--rose);
}

/* 改善⑦：実績数字セクション */
.stats-section {
  background: linear-gradient(135deg, #fff0f5 0%, #fce4ec 60%, #f8bbd0 100%);
  padding: 28px 20px;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num span {
  font-size: 16px;
  font-weight: 400;
}
.stat-label {
  font-size: 10px;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--rose-lt);
  opacity: 0.5;
  margin: 0 6px;
}

/* 改善⑥：ウェーブ区切り */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin: 0;
  display: block;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 50px;
}

/* 改善③：メニューカード（アイコン・効果説明付き） */
.menu-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--blush);
  border-radius: 16px;
  padding: 14px 14px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(232,99,122,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,99,122,0.13);
}
.menu-card-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  padding-top: 1px;
}
.menu-card-body {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.menu-card-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 3px;
  /* 文字切れ修正：改行を許可して全文表示 */
  word-break: break-all;
  overflow-wrap: break-word;
  white-space: normal;
}
.menu-card-effect {
  font-size: 10px;
  color: var(--rose);
  font-weight: 500;
  line-height: 1.4;
}
.menu-card-right {
  text-align: right;
  flex-shrink: 0;
  min-width: 72px;
  padding-left: 8px;
  padding-top: 1px;
}
.menu-card-price {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  display: block;
}
.menu-card-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--rose), var(--rose-lt));
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.menu-card-tag--popular {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--charcoal);
}

/* 改善④：プランカード利用目安 */
.plan-card-usage {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 8px;
  font-weight: 500;
}
.plan-card--enterprise {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffdf0 0%, #fff8e1 100%);
}
.plan-card-btn--enterprise {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--charcoal);
  border: none;
}

/* 改善⑤：お客様の声 引用符装飾 */
.voice-card {
  position: relative;
  overflow: hidden;
}
.voice-quote-mark {
  position: absolute;
  top: 8px;
  left: 12px;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(232,99,122,0.10);
  font-weight: 700;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.voice-quote-mark--purple { color: rgba(156,39,176,0.08); }
.voice-quote-mark--gold   { color: rgba(212,168,83,0.10); }
.voice-card-header,
.voice-text,
.voice-tag {
  position: relative;
  z-index: 1;
}

/* 改善⑧：Before→After エフェクトカード */
.effect-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.effect-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 14px;
  padding: 12px 14px;
}
.effect-card-before,
.effect-card-after {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.effect-card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}
.effect-card-label--after {
  color: #ffd1dc;
}
.effect-card-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.effect-card-arrow {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.effect-card-arrow svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}

/* 改善⑨：タイムライン型フロー */
.timeline {
  position: relative;
  padding-left: 28px;
  margin-top: 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose), var(--blush));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 20px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-marker {
  position: absolute;
  left: -28px;
  top: 0;
}
.timeline-num {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--rose), var(--rose-lt));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(232,99,122,0.3);
}
.timeline-content {
  background: var(--white);
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid var(--blush);
  box-shadow: 0 2px 8px rgba(232,99,122,0.05);
}
.timeline-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.timeline-text {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* 改善⑩：FAQ Q/Aアイコン */
.faq-q-icon,
.faq-a-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-q-icon {
  background: linear-gradient(135deg, var(--rose), var(--rose-lt));
  color: #fff;
  margin-right: 8px;
}
.faq-a-icon {
  background: var(--blush);
  color: var(--rose);
  margin-right: 8px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}
.faq-question {
  display: flex;
  align-items: center;
}
.faq-question span:not(.faq-q-icon) {
  flex: 1;
}
.faq-answer {
  display: flex;
  align-items: flex-start;
  padding: 12px 16px 14px;
  background: var(--petal);
  border-top: 1px solid var(--blush);
}
/* hidden属性があるときは非表示（CSS側でも強制） */
.faq-answer[hidden] {
  display: none !important;
}
.faq-answer p {
  flex: 1;
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
}

/* 改善⑪：パルスアニメーション */
.cta-pulse {
  position: relative;
}
.cta-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  border: 2px solid rgba(6,199,85,0.5);
  animation: pulse-ring 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.07); opacity: 0; }
  100% { transform: scale(1.07); opacity: 0; }
}
@keyframes sticky-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(6,199,85,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(6,199,85,0.65), 0 0 0 6px rgba(6,199,85,0.12); }
}
.sticky-line-btn {
  animation: sticky-pulse 3s ease-in-out infinite;
}

/* 改善②：フローセクション背景 */
.flow-section {
  background: linear-gradient(160deg, #fff8f9 0%, #fce4ec 100%) !important;
}

/* 改善⑫：注意事項アイコン付きリスト */
.caution-list--icon {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.caution-list--icon li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.5;
}
.caution-list--icon li svg {
  width: 16px;
  height: 16px;
  stroke: var(--rose);
  flex-shrink: 0;
  margin-top: 2px;
}

/* 悩みリスト（背景画像上） */
.worry-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.worry-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  padding: 10px 12px;
}
.worry-check {
  color: #ffd1dc;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.worry-item p {
  font-size: 13px;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}
.worry-item strong {
  color: #ffd1dc;
}

/* 解決グリッド（背景画像上） */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.solution-item {
  /* 視認性改善：白背景カードに濃色テキストで確実に読める */
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: none;
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.solution-item-icon {
  font-size: 26px;
  margin-bottom: 6px;
}
.solution-item h3 {
  font-size: 13px;
  font-weight: 700;
  color: #3d1a28;
  margin-bottom: 3px;
}
.solution-item p {
  font-size: 10px;
  color: #5a3a48;
  line-height: 1.4;
  margin: 0;
}

/* bg-section-title em */
.bg-section-title em {
  font-style: italic;
  color: #ffd1dc;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* CTAバンド（新） */
.cta-band-text {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.8;
}
.cta-band-text strong {
  color: var(--rose-dk);
}


/* ===== DESIGN ENHANCEMENT v2 ===== */

/* パルスアニメーション強化 */
@keyframes pulse-ring {
  0%   { box-shadow: 0 4px 20px rgba(6,199,85,0.45), 0 0 0 0 rgba(6,199,85,0.35); }
  70%  { box-shadow: 0 4px 20px rgba(6,199,85,0.45), 0 0 0 12px rgba(6,199,85,0); }
  100% { box-shadow: 0 4px 20px rgba(6,199,85,0.45), 0 0 0 0 rgba(6,199,85,0); }
}

.sticky-line-btn {
  animation: pulse-ring 2.5s ease-in-out infinite;
}

/* グラデーション見出し強化 */
.section-title--gradient {
  background: linear-gradient(135deg, var(--rose-dk) 0%, var(--rose) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* FV CTAエリア 信頼バッジ */
.trust-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--rose-dk);
  background: var(--blush);
  border: 1px solid rgba(232,99,122,0.25);
  border-radius: 50px;
  padding: 4px 10px;
  letter-spacing: 0.02em;
}

/* 数字セクション強化 */
.stats-section {
  background: linear-gradient(135deg, var(--petal) 0%, #fff5f7 50%, var(--lavender) 100%);
  padding: 32px 20px;
  border-top: 1px solid rgba(232,99,122,0.12);
  border-bottom: 1px solid rgba(232,99,122,0.12);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(232,99,122,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
}

.stat-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(232,99,122,0.3), transparent);
}

.stat-number {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose-dk), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-unit {
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-dk), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 10px;
  color: var(--gray);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ウェーブ区切り */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* タイムラインフロー強化 */
.flow-timeline {
  position: relative;
  padding-left: 20px;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose-lt), var(--gold-lt), var(--rose-lt));
  border-radius: 2px;
}

/* メニューカード強化 */
.menu-card {
  position: relative;
  overflow: visible; /* バッジが見切れないようにvisibleに変更 */
}

.menu-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--rose-lt), var(--gold-lt));
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.menu-card:hover::after {
  opacity: 1;
}

/* お客様の声 引用符強化 */
.voice-card {
  position: relative;
  overflow: hidden;
}

.voice-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(232,99,122,0.08);
  line-height: 1;
  pointer-events: none;
}

/* FAQ強化 */
.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 10px;
  border: 1px solid rgba(232,99,122,0.12);
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

/* 最終CTAセクション強化 */
.final-cta-section {
  position: relative;
}

.final-cta-section .bg-section-overlay {
  /* 視認性改善：最終CTAのローズオーバーレイを強化 */
  background: linear-gradient(
    to bottom,
    rgba(140,40,65,0.72) 0%,
    rgba(100,20,45,0.65) 50%,
    rgba(140,40,65,0.78) 100%
  );
}

/* セクション背景画像の高さをより大きく */
.bg-section {
  min-height: 420px;
}

/* メニューセクション背景グラデーション強化 */
.menu-section {
  background: linear-gradient(160deg, var(--white) 0%, var(--petal) 40%, var(--blush) 100%);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232,99,122,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* 料金プランカード強化 */
.plan-card {
  position: relative;
  overflow: hidden;
}

.plan-card.featured {
  transform: scale(1.02);
  border: 2px solid var(--rose);
  box-shadow: 0 8px 32px rgba(232,99,122,0.25);
}

.plan-card.featured::before {
  content: 'おすすめ';
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--rose), var(--rose-dk));
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 var(--radius-sm) 0 var(--radius-sm);
  letter-spacing: 0.05em;
}

/* スクロールアニメーション遅延 */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }
.reveal:nth-child(7) { transition-delay: 0.6s; }

/* ヘッダーロゴ強化 */
.logo-mark {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dk));
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(232,99,122,0.35);
  flex-shrink: 0;
}

/* フッター強化 */
.site-footer {
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-lt), var(--gold-lt), var(--rose-lt));
}

/* ボタンシマーエフェクト */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.cta-btn--shimmer {
  background: linear-gradient(
    90deg,
    var(--line-green) 0%,
    #08e060 40%,
    var(--line-green) 60%,
    #05a847 100%
  );
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

/* セクションラベル強化 */
.section-label {
  position: relative;
}

.section-label::before {
  content: '—';
  margin-right: 6px;
  opacity: 0.5;
}

.section-label::after {
  content: '—';
  margin-left: 6px;
  opacity: 0.5;
}

/* 区切り線デコレーション */
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,99,122,0.3), transparent);
}

.section-divider-icon {
  color: var(--rose-lt);
  font-size: 14px;
}

/* bg-section 内テキストシャドウ強化 */
.bg-section .section-title {
  text-shadow: 0 2px 12px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.3);
}

.bg-section .section-subtitle {
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* カードグリッドアニメーション */
@keyframes float-up {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.solution-cards .solution-card:nth-child(1) { animation: float-up 0.5s ease 0.1s both; }
.solution-cards .solution-card:nth-child(2) { animation: float-up 0.5s ease 0.2s both; }
.solution-cards .solution-card:nth-child(3) { animation: float-up 0.5s ease 0.3s both; }
.solution-cards .solution-card:nth-child(4) { animation: float-up 0.5s ease 0.4s both; }

/* プレミアムカード背景を少し明るく */
.premium-section {
  background: linear-gradient(160deg, #2a1525 0%, #1a0d18 100%) !important;
}

.premium-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(212,168,83,0.10) 100%) !important;
  border: 1px solid rgba(212,168,83,0.4) !important;
}

/* ページ全体のスクロールバー */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--petal);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--rose-lt), var(--rose));
  border-radius: 4px;
}
