/* ==========================================================================
   ほの花酵素 LP - Luxury Beauty D2C Design System (Ginza Salon Standard)
   ========================================================================== */

:root {
  /* Brand Luxury Palette */
  --primary-pink: #E91E63;
  --primary-pink-dark: #C2185B;
  --primary-pink-light: #F8BBD0;
  --primary-pink-soft: #FFF5F8;
  --primary-pink-subtle: rgba(233, 30, 99, 0.04);
  --primary-pink-border: rgba(233, 30, 99, 0.18);
  
  /* Champagne Gold Accents */
  --accent-gold: #D4AF37;
  --accent-gold-dark: #7A5200;
  --accent-gold-light: #FFFDF7;
  --accent-gold-soft: #FFF8EA;
  --accent-gold-border: rgba(212, 175, 55, 0.35);
  --accent-gold-subtle: rgba(212, 175, 55, 0.08);
  
  /* Botanical Green & Trust */
  --accent-green: #2E7D32;
  --accent-green-light: #E8F5E9;
  --accent-green-border: rgba(46, 125, 50, 0.25);

  /* Typography Colors */
  --text-main: #1A1A1A;
  --text-body: #3A3A3A;
  --text-sub: #666666;
  --text-muted: #888888;
  
  /* Fonts */
  --font-serif: 'Shippori Mincho', "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-en-serif: 'Cinzel', 'Shippori Mincho', serif;
  --font-number: 'Plus Jakarta Sans', 'Cinzel', sans-serif;

  /* Shadows & Glassmorphism */
  --shadow-pink: 0 10px 28px rgba(233, 30, 99, 0.22);
  --shadow-pink-subtle: 0 6px 20px rgba(233, 30, 99, 0.08);
  --shadow-card: 0 8px 28px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(233, 30, 99, 0.03);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: 1px solid rgba(255, 255, 255, 0.85);
  --glass-blur: blur(14px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #0E0E0E;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background-color: #FFFFFF;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 480px; /* スマホファースト最適化 */
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.45);
  position: relative;
  min-height: 100vh;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: pretty;
  overflow-x: clip; /* clip does not break position: sticky on WebKit */
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 0;
}

main {
  width: 100%;
  box-sizing: border-box;
}

.container {
  width: 100%;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

@media (max-width: 390px) {
  .container {
    padding: 0 0.95rem;
  }
}

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

.text-center { text-align: center; }
.text-pink { color: var(--primary-pink); }
.text-gold { color: var(--accent-gold-dark); }
.text-green { color: var(--accent-green); }

/* ==========================================================================
   Typography & Line Wrap Utilities (Anti-Orphan & Balanced Wrapping)
   ========================================================================== */
p,
.story-paragraph,
.mechanism-body-text p,
.review-body,
.faq-answer-content p,
.taste-desc,
.empathy-card-desc,
.insight-text {
  text-align: left;
  line-height: 1.85;
  letter-spacing: 0.035em;
  color: var(--text-body);
  font-size: 0.88rem;
  word-break: normal;
  overflow-wrap: break-word;
}

.title-line {
  display: inline-block;
  line-height: inherit;
  vertical-align: top;
}

.u-nowrap {
  white-space: nowrap !important;
}

.sp-only {
  display: inline;
}

.pc-only {
  display: none;
}

@media (min-width: 481px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: inline;
  }
}

.u-block-sp {
  display: inline-block;
}

@media (max-width: 480px) {
  .u-block-sp {
    display: block;
  }
}

/* Headings Crisp Wrap (No mid-word balancing breaks) */
h1, h2, h3, h4, h5, h6,
.hero-giant-title,
.section-title,
.stage-title-serif-large,
.survey-headline,
.story-headline,
.story-overlay-title,
.mechanism-title,
.taste-headline,
.offer-master-title,
.cancel-guide-title,
.r-card-title,
.review-title,
.step-question,
.result-title {
  word-break: normal;
  overflow-wrap: break-word;
}

/* ==========================================================================
   Editorial & Luxury Component Styling
   ========================================================================== */

/* 数字タイポグラフィ (Cinzel / Serif) */
.num-serif {
  font-family: var(--font-en-serif);
  font-weight: 800;
  color: var(--accent-gold-dark);
  letter-spacing: 0.04em;
}

/* ラグジュアリーバッジ (ベタ塗りを廃止し、繊細なグラデーション＋細線ボーダーへ) */
.luxury-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.08), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(233, 30, 99, 0.25);
  color: var(--primary-pink-dark);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 20px;
  padding: 0.32rem 0.95rem;
  box-shadow: 0 2px 10px rgba(233, 30, 99, 0.04);
  font-size: clamp(0.7rem, 2.8vw, 0.78rem);
  line-height: 1.3;
}

/* エディトリアル引用文ボックス */
.editorial-quote {
  position: relative;
  background: var(--primary-pink-soft);
  border-left: 3px solid var(--primary-pink);
  padding: 1.1rem 1.25rem;
  border-radius: 0 16px 16px 0;
  line-height: 1.8;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.04);
}

/* Section Header Utilities (余白リズムの統一) */
.section-title-wrap {
  text-align: center;
  margin-bottom: 1.65rem;
}

.section-subtitle {
  font-family: var(--font-en-serif);
  font-size: clamp(0.72rem, 3vw, 0.82rem);
  font-weight: 700;
  color: var(--primary-pink-dark);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.35rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.22rem, 5vw, 1.6rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.48;
  letter-spacing: 0.02em;
}

.section-desc {
  font-size: clamp(0.8rem, 3.4vw, 0.88rem);
  color: var(--text-sub);
  margin-top: 0.5rem;
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Announcement Bar & Header
   ========================================================================== */
.top-announcement-bar {
  display: block;
  text-decoration: none;
  background: linear-gradient(90deg, #880E4F 0%, #AD1457 50%, #880E4F 100%);
  color: #FFFFFF;
  font-size: clamp(0.68rem, 2.8vw, 0.76rem);
  font-weight: 700;
  text-align: center;
  padding: 0.55rem 0.4rem;
  line-height: 1.35;
  transition: opacity 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(136, 14, 79, 0.25);
}

.top-announcement-bar:hover {
  opacity: 0.92;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(233, 30, 99, 0.08);
  padding: 0.75rem 1.25rem;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-sub {
  font-family: var(--font-en-serif);
  font-size: 0.58rem;
  color: var(--primary-pink);
  letter-spacing: 0.08em;
  display: block;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.02em;
}

.yt-header-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
}

.yt-badge {
  background: #FF0000;
  color: #FFF;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.yt-sub {
  font-size: 0.65rem;
  color: #555;
  font-weight: 700;
}

/* ==========================================================================
   Buttons & CTA Styling
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #FF4081 0%, #E91E63 50%, #C2185B 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-pink);
}

.btn-large {
  padding: 0.95rem 1.25rem;
  border-radius: 50px;
}

.btn-huge {
  padding: 1rem 1.35rem;
  border-radius: 50px;
}

.btn-main-text {
  font-size: clamp(0.96rem, 4vw, 1.12rem);
  font-weight: 800;
  line-height: 1.2;
}

.btn-sub-text {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 0.2rem;
}

/* Sleek High-Converting CTA Action Buttons */
.cta-action-wrapper {
  width: 100%;
  max-width: 380px;
  margin: 1.2rem auto 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.cta-ribbon-sub {
  background: #FFFFFF;
  color: var(--primary-pink-dark);
  font-size: clamp(0.72rem, 3.2vw, 0.8rem);
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  border: 1.5px solid var(--primary-pink);
  box-shadow: 0 3px 10px rgba(233, 30, 99, 0.12);
  margin-bottom: -10px;
  position: relative;
  z-index: 2;
}

.btn-cta-sleek {
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #FF4081 0%, #E91E63 50%, #C2185B 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.32);
  font-size: clamp(0.95rem, 4vw, 1.12rem);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-sleek:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(233, 30, 99, 0.42);
}

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

.btn-cta-sleek .btn-main-text {
  font-size: inherit;
  font-weight: 800;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.btn-cta-sleek .arrow-symbol {
  font-size: 1.1em;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.btn-cta-sleek:hover .arrow-symbol {
  transform: translateX(3px);
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 80%);
  transform: rotate(30deg) translateX(-100%);
  animation: shimmer 3.2s infinite;
}

@keyframes shimmer {
  0% { transform: rotate(30deg) translateX(-100%); }
  35%, 100% { transform: rotate(30deg) translateX(100%); }
}

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

/* ==========================================================================
   Floating CTA (半透明フロストグラス ＆ セーフエリア対応)
   ========================================================================== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 999;
  background: rgba(233, 30, 99, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.18), 0 -2px 10px rgba(233, 30, 99, 0.15);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  box-sizing: border-box;
}

.floating-cta.hidden {
  transform: translate(-50%, calc(100% + 30px));
  opacity: 0;
  pointer-events: none;
}

.floating-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.floating-info {
  display: flex;
  flex-direction: column;
}

.floating-badge {
  font-size: 0.64rem;
  background: #FFFFFF;
  color: var(--primary-pink-dark);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 800;
  width: fit-content;
  margin-bottom: 2px;
  border: 1px solid rgba(233, 30, 99, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.floating-price {
  font-size: 0.85rem;
  color: #FFF;
  line-height: 1.15;
}

.floating-price strong {
  color: #FFFFFF;
  font-size: 1.18rem;
  font-family: var(--font-number);
}

.floating-microcopy {
  font-size: 0.62rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-top: 2px;
  display: block;
}

.btn-floating {
  width: auto;
  flex: 1;
  padding: 0.75rem 0.85rem;
  font-size: clamp(0.82rem, 3.4vw, 0.94rem);
  font-weight: 800;
  flex-direction: row;
  background: #FFFFFF;
  color: var(--primary-pink-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: 1.5px solid #FFFFFF;
  white-space: nowrap;
}

.btn-floating:hover {
  background: #FFF5F8;
}

/* ==========================================================================
   Glassmorphism Card Architecture (繊細な境界線と柔らかな影)
   ========================================================================== */
.card-glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(233, 30, 99, 0.12);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 1.5rem 1.25rem;
  box-sizing: border-box;
}

/* ==========================================================================
   CINEMATIC 3-STAGE SCROLL SEQUENCE HERO
   ========================================================================== */
.cinematic-hero-section {
  position: relative;
  width: 100%;
  height: 350vh;
  background: linear-gradient(180deg, #FFF0F4 0%, #FFFFFF 100%);
}

.sticky-hero-stage {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.sequence-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.25rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
}

/* インジケーター */
.hero-sequence-indicators {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 0.4rem;
  z-index: 30;
}

.seq-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.25);
  transition: all 0.3s ease;
}

.seq-dot.active {
  width: 20px;
  border-radius: 10px;
  background: var(--primary-pink);
}

/* Stage 1 */
.stage-1 {
  z-index: 10;
  text-align: center;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-tag-wrap {
  margin-bottom: 0.5rem;
  text-align: center;
}

.hero-gold-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(233, 30, 99, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--accent-gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.35rem 1.1rem;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.12);
  letter-spacing: 0.04em;
}

.hero-head-title-group {
  text-align: center;
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
}

.hero-sub-lead {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary-pink-dark);
  margin-bottom: 0.2rem;
}

.hero-giant-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.4;
  color: #111111;
  margin-bottom: 0.35rem;
}

.title-line-1 { display: inline-block; }
.title-line-2 { display: inline-block; white-space: nowrap; }

.text-serif-pink {
  font-family: var(--font-serif);
  color: var(--primary-pink);
  background: linear-gradient(transparent 65%, rgba(233, 30, 99, 0.15) 65%);
  padding: 0 4px;
}

.hero-desc-sub {
  font-size: 0.78rem;
  color: var(--text-sub);
  line-height: 1.45;
  text-align: center;
  word-break: normal;
  overflow-wrap: break-word;
}

.hero-impact-image-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.hero-owner-full-image {
  width: 100%;
  height: auto;
  display: block;
}

.owner-image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 100%);
  color: #FFFFFF;
  padding: 0.75rem 0.85rem 0.45rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.7rem;
}

.owner-image-label strong {
  font-size: 0.92rem;
  color: var(--primary-pink-light);
}

.scroll-down-guide {
  margin-top: 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  color: var(--primary-pink-dark);
  font-weight: 700;
}

.scroll-arrow-anim {
  animation: bounce 1.8s infinite;
  font-size: 1rem;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Stage 2: テキストのみのエレガントなメッセージ */
.stage-2 {
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translate3d(0, 40px, 0) scale(0.95);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.text-only-stage {
  padding: 1.35rem 1.1rem;
  text-align: center;
  border-top: 3px solid var(--accent-gold);
  max-width: 95%;
  margin: 0 auto;
}

.stage-ribbon-gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(233, 30, 99, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--accent-gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
}

.stage-title-serif-large {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 4.3vw, 1.32rem);
  font-weight: 800;
  color: #111111;
  line-height: 1.5;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.stage-title-serif-large .title-line {
  display: block;
  white-space: nowrap;
}

.text-pink-highlight {
  color: var(--primary-pink);
  background: linear-gradient(transparent 65%, rgba(233, 30, 99, 0.15) 65%);
  padding: 0 4px;
  display: inline;
}

.stage-quote-box-clean {
  background: var(--primary-pink-soft);
  border-radius: 14px;
  padding: 1rem 0.95rem;
  margin-bottom: 0.85rem;
  text-align: left;
  border-left: 3px solid var(--primary-pink);
}

.quote-text-main {
  font-size: clamp(0.84rem, 3.4vw, 0.92rem);
  font-weight: 700;
  color: var(--primary-pink-dark);
  line-height: 1.6;
  margin-bottom: 0.45rem;
}

.quote-text-sub {
  font-size: clamp(0.76rem, 3.1vw, 0.82rem);
  color: var(--text-sub);
  line-height: 1.65;
}

.stage-author-signature {
  text-align: right;
  border-top: 1px solid rgba(233, 30, 99, 0.1);
  padding-top: 0.45rem;
  margin-bottom: 0.5rem;
}

.author-title {
  font-size: 0.68rem;
  color: #888;
  display: block;
}

.author-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #111;
  font-weight: 800;
}

.stage-authority-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding-top: 0.25rem;
}

.authority-sub-tag {
  font-size: 0.72rem;
  color: var(--accent-gold-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.authority-sub-tag .line-deco {
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--accent-gold);
}

.authority-main-tag {
  font-size: clamp(0.78rem, 3.4vw, 0.88rem);
  color: var(--primary-pink-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
}

/* Stage 3: リアルなお声 */
.stage-3 {
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translate3d(0, 40px, 0) scale(0.95);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.future-voice-stage {
  padding: 1.35rem 1.1rem;
  text-align: center;
  border-top: 3px solid var(--primary-pink);
  max-width: 95%;
  margin: 0 auto;
}

.stage-ribbon-pink {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(233, 30, 99, 0.3);
  color: var(--primary-pink-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
}

.stage-reviews-clean-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  text-align: left;
}

.clean-review-item {
  background: #FFFFFF;
  border: 1px solid rgba(233, 30, 99, 0.1);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
}

.review-user-badge {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary-pink-dark);
  margin-bottom: 0.2rem;
}

.review-quote {
  font-size: clamp(0.76rem, 3.2vw, 0.82rem);
  color: var(--text-body);
  line-height: 1.55;
  font-weight: 500;
}

.stage-scroll-hint-clean {
  margin-top: 0.55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.72rem;
  color: var(--primary-pink-dark);
  font-weight: 700;
}

.stage-scroll-hint-clean .scroll-arrow-anim {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

/* ==========================================================================
   Section Spacing Standard (余白の統一リズム: 2.75rem 0)
   ========================================================================== */
.master-offer-inline-section,
.empathy-section,
.widget-section,
.reviews-section,
.proof-banner-section,
.developer-story-section,
.solution-section,
.taste-section,
.quality-section,
.comparison-section,
.offer-section,
.faq-section {
  padding: 2.75rem 0;
  box-sizing: border-box;
}

/* ==========================================================================
   商品＆オファーインラインセクション (FV直下オファー)
   ========================================================================== */
.master-offer-inline-section {
  background: #FFFFFF;
}

.hero-product-impact-stage {
  position: relative;
  text-align: center;
  margin-bottom: 1.25rem;
}

.product-huge-img {
  max-width: 320px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 24px rgba(233, 30, 99, 0.2));
}

.gift-seal-huge-bounce {
  position: absolute;
  top: -10px;
  right: 15px;
  background: linear-gradient(135deg, #FF1744, #D50000);
  color: #FFF;
  border-radius: 50%;
  width: 78px;
  height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 23, 68, 0.4);
  line-height: 1.15;
}

.seal-txt-small { font-size: 0.62rem; font-weight: 700; }
.seal-txt-big { font-size: 0.88rem; font-weight: 900; }

.pulse { animation: pulse 2.2s infinite ease-in-out; }
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-trust-pills-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.pill-item {
  background: #FFFFFF;
  border: 1px solid rgba(233, 30, 99, 0.15);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.32rem 0.75rem;
  border-radius: 20px;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.hero-master-cta-card {
  padding: 1.35rem 1.15rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.discount-tag-pink {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(233, 30, 99, 0.3);
  color: var(--primary-pink-dark);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.28rem 0.95rem;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 0.45rem;
}

.price-callout-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.price-strike {
  font-size: 0.85rem;
  color: #888;
  text-decoration: line-through;
}

.price-arrow-pink {
  font-size: 0.85rem;
  color: var(--primary-pink);
}

.price-master-big {
  font-size: 0.95rem;
  color: #111;
  font-weight: 700;
}

.price-master-big strong {
  font-family: var(--font-number);
  font-size: 2.1rem;
  color: var(--primary-pink);
  font-weight: 900;
}

.cta-button-impact { margin-bottom: 0.65rem; }
.reassurance-notes-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.73rem;
  color: var(--text-sub);
}

/* CTA直下「お客様の感想5選」スワイプ＆アニメーションカルーセル */
.cta-direct-reviews-section {
  background: linear-gradient(180deg, #FFF5F8 0%, #FFFFFF 100%);
  border: 1.5px solid var(--primary-pink-light);
  border-radius: 20px;
  padding: 1.35rem 1rem;
  margin-top: 1rem;
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.08);
  text-align: center;
}

.reviews-header-inline h3 {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
  color: #111;
  margin-bottom: 0.85rem;
}

.reviews-carousel-wrapper {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 0.65rem;
}

.reviews-carousel-wrapper::-webkit-scrollbar { display: none; }
.reviews-track { display: flex; gap: 16px; padding: 0.4rem 0.2rem; }

.review-slide-card {
  flex: 0 0 88%;
  scroll-snap-align: center;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.15rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--primary-pink);
  border-top: 1px solid rgba(233, 30, 99, 0.1);
  border-right: 1px solid rgba(233, 30, 99, 0.1);
  border-bottom: 1px solid rgba(233, 30, 99, 0.1);
  text-align: left;
}

.r-user-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.r-avatar { font-size: 1.4rem; }
.r-user-meta strong { display: block; font-size: 0.85rem; color: #111; }
.r-stars { color: #E65100; font-size: 0.78rem; font-weight: 700; }
.r-card-title { font-size: 0.95rem; font-weight: 800; color: var(--primary-pink-dark); line-height: 1.35; margin-bottom: 0.35rem; }
.r-card-body { font-size: 0.82rem; color: var(--text-body); line-height: 1.65; }

.carousel-nav-dots { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.c-dot { width: 7px; height: 7px; border-radius: 50%; background: #DDD; transition: all 0.3s ease; cursor: pointer; }
.c-dot.active { width: 20px; border-radius: 10px; background: var(--primary-pink); }
.swipe-hint { font-size: 0.68rem; color: #888; font-weight: 600; }

/* ==========================================================================
   実績バナーカード
   ========================================================================== */
.proof-banner-section {
  background: #FFFFFF;
}

.proof-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.proof-banner-img {
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
}

/* ==========================================================================
   DEVELOPER STORY SECTION
   ========================================================================== */
.developer-story-section {
  background: #FFFFFF;
}

.story-yt-banner {
  background: #FF0000;
  border-radius: 14px;
  margin-bottom: 1.15rem;
  overflow: hidden;
}

.yt-banner-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.95rem;
  color: #FFF;
  text-decoration: none;
}

.yt-logo-box {
  background: #FFF;
  color: #FF0000;
  font-weight: 900;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
}

.yt-info strong { display: block; font-size: 0.88rem; }
.yt-info small { font-size: 0.7rem; opacity: 0.9; }

.story-visual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.story-photo-thumb {
  border-radius: 12px;
  height: 135px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  width: 100%;
}

.story-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.06rem, 4.5vw, 1.32rem);
  line-height: 1.5;
  color: var(--primary-pink-dark);
  margin-bottom: 1.1rem;
}

.story-quote {
  background: var(--primary-pink-soft);
  border-left: 3px solid var(--primary-pink);
  padding: 1rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-pink-dark);
  margin: 1.25rem 0;
  border-radius: 0 14px 14px 0;
  line-height: 1.7;
  box-shadow: 0 3px 12px rgba(233, 30, 99, 0.04);
}

.owner-sign-box {
  text-align: right;
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(233, 30, 99, 0.1);
}

.sign-sub { font-size: 0.75rem; color: #888; display: block; line-height: 1.4; }
.sign-name { font-family: var(--font-serif); font-size: 1.25rem; color: #111; font-weight: 800; }

.story-premium-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 245, 248, 0.8), rgba(255, 255, 255, 1));
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-top: 0.85rem;
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.story-premium-layout .story-photo-single {
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.story-image-with-text {
  position: relative;
  display: inline-block;
  width: 100%;
}

.story-overlay-title {
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  text-align: center;
  margin-bottom: 1.25rem;
  z-index: 2;
}

/* ==========================================================================
   QUIZ DIAGNOSIS WIDGET
   ========================================================================== */
.widget-section {
  background: linear-gradient(180deg, #FFF5F8 0%, #FFFFFF 100%);
  position: relative;
}

.diagnosis-attention-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
  color: #fff;
  font-weight: 800;
  font-size: clamp(0.76rem, 3.4vw, 0.85rem);
  padding: 0.45rem 1.25rem;
  border-radius: 30px;
  margin: 0 auto 0.85rem;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce-badge 2s infinite;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.35);
  white-space: nowrap;
}

.diagnosis-attention-badge::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: var(--primary-pink-dark) transparent transparent transparent;
}

@keyframes bounce-badge {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

.quiz-pulse-effect {
  animation: quiz-glow 3s infinite alternate;
}

@keyframes quiz-glow {
  0% { box-shadow: 0 8px 24px rgba(233, 30, 99, 0.08); }
  100% { box-shadow: 0 10px 32px rgba(233, 30, 99, 0.22); border: 1px solid rgba(233, 30, 99, 0.35); }
}

.quiz-progress-wrapper { margin-bottom: 1.25rem; }
.quiz-progress-text { font-size: 0.75rem; font-weight: 700; color: var(--primary-pink-dark); text-align: right; margin-bottom: 0.25rem; }
.quiz-progress-bar { height: 7px; background: #F0F0F0; border-radius: 4px; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary-pink), var(--accent-gold)); transition: width 0.4s ease; }

.step-badge {
  display: inline-block;
  background: var(--primary-pink-soft);
  color: var(--primary-pink-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  margin-bottom: 0.45rem;
  border: 1px solid rgba(233, 30, 99, 0.2);
}

.step-question {
  font-size: clamp(0.98rem, 4.2vw, 1.18rem);
  font-weight: 700;
  margin-bottom: 1.1rem;
  line-height: 1.45;
  text-wrap: balance;
}

.quiz-options { display: flex; flex-direction: column; gap: 0.75rem; }
.quiz-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: #FFFFFF;
  border: 1.5px solid #EFEFEF;
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
}

.quiz-btn:hover, .quiz-btn:active {
  border-color: var(--primary-pink);
  background: var(--primary-pink-soft);
  transform: translateY(-1px);
}

.quiz-icon { font-size: 1.6rem; flex-shrink: 0; }
.quiz-btn-content { flex: 1; }
.quiz-title { display: block; font-size: clamp(0.85rem, 3.6vw, 0.94rem); font-weight: 700; color: #111; line-height: 1.4; text-wrap: balance; }
.quiz-sub { display: block; font-size: clamp(0.72rem, 3vw, 0.78rem); color: var(--text-sub); margin-top: 0.15rem; line-height: 1.4; text-wrap: balance; }

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-result { animation: fadeIn 0.4s ease; text-align: center; }
.result-badge-gold {
  background: #FFF8E1;
  border: 1.5px solid #FFA000;
  color: #7A5200;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.35rem 1.15rem;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(255, 160, 0, 0.15);
}

.result-title {
  font-size: clamp(1.12rem, 4.8vw, 1.32rem);
  font-weight: 800;
  margin: 0.7rem 0 1.1rem;
  line-height: 1.45;
  color: #111111;
}

.result-card-inner {
  background: #FFFFFF;
  border: 1.5px solid rgba(233, 30, 99, 0.18);
  border-radius: 16px;
  padding: 1.25rem 1.15rem;
  margin-bottom: 1.35rem;
  font-size: 0.88rem;
  line-height: 1.8;
  text-align: left;
  box-shadow: 0 4px 18px rgba(233, 30, 99, 0.06);
}

.result-type-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.95rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(233, 30, 99, 0.2);
}

.result-type-badge {
  background: linear-gradient(135deg, #C2185B 0%, #880E4F 100%);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: 8px;
  letter-spacing: 0.04em;
  display: inline-block;
}

.result-type-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #C2185B;
  line-height: 1.4;
}

.result-advice-p {
  margin-bottom: 0.75rem;
  color: #333333;
}

.result-advice-p:last-child {
  margin-bottom: 0;
}

.recommend-title { font-size: 0.85rem; font-weight: 800; color: var(--primary-pink-dark); display: block; margin-bottom: 0.35rem; }
.recommend-sub { font-size: 0.85rem; margin-bottom: 0.85rem; line-height: 1.5; }

/* ==========================================================================
   EMPATHY & SURVEY
   ========================================================================== */
.empathy-section {
  background: #FFFFFF;
}

.hero-authority-stats-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.85rem;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 0.55rem 1.15rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(233, 30, 99, 0.1);
}

@media (max-height: 720px) {
  .sequence-stage { padding: 0.5rem 0.75rem 1rem; }
  .hero-giant-title { font-size: clamp(1.1rem, 4vw, 1.35rem); margin-bottom: 0.2rem; }
  .hero-impact-image-container { max-height: 34vh; width: auto; aspect-ratio: 1/1; }
  .hero-owner-full-image { height: 100%; object-fit: cover; }
  .fv-authority-badges { margin: 0.5rem auto 0.6rem !important; padding: 0.4rem 0.9rem !important; }
}

.empathy-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.85rem;
}

.empathy-card-rich {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.15rem 1.35rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  border-left: 4px solid var(--primary-pink);
  border-top: 1px solid rgba(233, 30, 99, 0.08);
  border-right: 1px solid rgba(233, 30, 99, 0.08);
  border-bottom: 1px solid rgba(233, 30, 99, 0.08);
}

.empathy-badge {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary-pink-dark);
  margin-bottom: 0.2rem;
}

.empathy-card-title {
  font-size: clamp(0.94rem, 4vw, 1.06rem);
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #111;
  line-height: 1.45;
  text-wrap: balance;
}

.empathy-card-desc {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.65;
}

.survey-data-box {
  border-top: 3px solid var(--accent-gold);
}

.survey-tag {
  background: var(--accent-gold-soft);
  color: var(--accent-gold-dark);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.2rem 0.75rem;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 0.45rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.survey-headline {
  font-size: clamp(0.96rem, 4vw, 1.15rem);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 1.15rem;
  color: #111;
  text-wrap: balance;
}

.graph-bar-wrap { margin: 1.15rem 0; }
.graph-bar-label { font-size: 0.84rem; font-weight: 700; margin-bottom: 0.35rem; line-height: 1.4; }
.graph-bar-bg { background: #EFEFEF; height: 26px; border-radius: 13px; overflow: hidden; }
.graph-bar-fill {
  background: linear-gradient(90deg, var(--primary-pink), #FF4081);
  height: 100%;
  color: #FFF;
  font-weight: 800;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
}

.survey-insight {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 1.15rem;
  margin-top: 1.15rem;
  border: 1px solid rgba(233, 30, 99, 0.1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.02);
}

.insight-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary-pink-dark);
  margin-bottom: 0.45rem;
  line-height: 1.4;
}

.insight-text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #333;
}

/* ==========================================================================
   MECHANISM / SOLUTION SECTION
   ========================================================================== */
.solution-section {
  background: linear-gradient(180deg, #FFF0F4 0%, #FFFFFF 100%);
}

.mechanism-card {
  margin-bottom: 1.5rem;
  position: relative;
}

.step-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #C2185B 0%, #880E4F 100%);
  color: #FFFFFF !important;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.32rem 1.05rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
  box-shadow: 0 3px 10px rgba(194, 24, 91, 0.3);
}

.step-ribbon * {
  color: #FFFFFF !important;
}

.step-ribbon.gold {
  background: linear-gradient(135deg, #996515 0%, #7A5200 100%);
  box-shadow: 0 3px 10px rgba(122, 82, 0, 0.3);
}

.step-ribbon.dark {
  background: linear-gradient(135deg, #1B5E20 0%, #0D3311 100%);
  box-shadow: 0 3px 10px rgba(27, 94, 32, 0.3);
}

.mechanism-title {
  font-size: clamp(1.02rem, 4.4vw, 1.25rem);
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 0.75rem;
  color: #111;
}

.mechanism-body-text {
  font-size: 0.86rem;
  color: var(--text-body);
  margin-bottom: 1.15rem;
  line-height: 1.75;
}

.mechanism-body-text p { margin-bottom: 0.75rem; }
.mechanism-body-text p:last-child { margin-bottom: 0; }

.enzyme-saving-diagram {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 1.25rem 1.1rem;
  margin: 1.15rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(233, 30, 99, 0.08);
}

.stacked-bar-group { margin-bottom: 1.25rem; }
.stacked-bar-group:last-child { margin-bottom: 0; }
.bar-group-title { display: block; font-size: 0.88rem; font-weight: 800; margin-bottom: 0.45rem; color: #333; }
.stacked-bar-track { display: flex; width: 100%; height: 30px; border-radius: 15px; overflow: hidden; background: #F0F0F0; }
.stacked-bar-segment { display: flex; align-items: center; justify-content: center; height: 100%; transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1); width: 0; }
.segment-label { font-size: 0.7rem; font-weight: 700; color: #FFF; white-space: nowrap; opacity: 0; transition: opacity 0.5s ease 1s; padding: 0 0.5rem; }

/* Colors */
.color-digest { background: #9E9E9E; }
.color-meta { background: #E0E0E0; }
.color-meta .segment-label { color: #555; }
.color-digest-saved { background: #4CAF50; }
.color-meta-boost { background: linear-gradient(90deg, #E91E63, #FF6B8B); }

.mechanism-card.visible .reveal-bar { width: var(--target-width); }
.mechanism-card.visible .segment-label { opacity: 1; }
.mechanism-sub-desc { font-size: 0.85rem; font-weight: 700; color: var(--primary-pink-dark); }

.charcoal-feature-box {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.15rem 0;
}

.charcoal-point {
  background: #FFFFFF;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  border-left: 3px solid var(--accent-gold-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-right: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.charcoal-point span { display: block; font-weight: 800; font-size: 0.88rem; color: var(--accent-gold-dark); }
.charcoal-point small { font-size: 0.75rem; color: var(--text-sub); }

.ranking-section-title {
  font-size: clamp(1.02rem, 4.4vw, 1.22rem);
  font-weight: 800;
  color: var(--primary-pink-dark);
  text-align: center;
  margin-bottom: 0.85rem;
  text-wrap: balance;
}

.ranking-image-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.75rem;
}

.hide-date-overlay { position: absolute; top: 0; right: 0; width: 38%; height: 6%; background: #FFFFFF; z-index: 1; }
.mechanism-img-box { border-radius: 14px; overflow: hidden; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05); }

/* ==========================================================================
   TASTE & EASY SECTION (3列整然グリッドレイアウト)
   ========================================================================== */
.taste-section {
  background: #FFFFFF;
}

.taste-card {
  text-align: center;
  padding: 1.5rem 1.25rem;
}

.taste-headline {
  font-size: clamp(1.02rem, 4.3vw, 1.2rem);
  font-weight: 800;
  color: var(--primary-pink-dark);
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.taste-desc {
  margin-bottom: 1.25rem;
  text-align: left;
  word-break: normal;
  overflow-wrap: break-word;
}

/* 美味しさ・手軽さのラグジュアリー特徴カードリスト */
.taste-features-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

.taste-feat-pill {
  background: linear-gradient(135deg, rgba(255, 240, 245, 0.8), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(233, 30, 99, 0.18);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  box-shadow: 0 2px 10px rgba(233, 30, 99, 0.04);
  box-sizing: border-box;
}

.taste-feat-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.taste-feat-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.taste-feat-label {
  font-size: clamp(0.88rem, 3.6vw, 0.96rem);
  font-weight: 800;
  color: var(--primary-pink-dark);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.taste-feat-sub {
  font-size: clamp(0.72rem, 2.8vw, 0.78rem);
  color: #666666;
  line-height: 1.35;
}

/* ==========================================================================
   QUALITY & GMP SECTION
   ========================================================================== */
.quality-section {
  background: linear-gradient(180deg, #FFF0F4 0%, #FFFFFF 100%);
}

.quality-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quality-card {
  background: #FFFFFF;
  padding: 1.25rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(233, 30, 99, 0.08);
}

.quality-icon { font-size: 1.85rem; margin-bottom: 0.25rem; }
.quality-title { font-size: 0.98rem; font-weight: 700; margin-bottom: 0.35rem; line-height: 1.4; text-wrap: balance; }
.quality-desc { font-size: 0.8rem; color: var(--text-sub); line-height: 1.6; }

/* ==========================================================================
   COMPARISON TABLE SECTION (視認性と高級感を極めたプロクオリティ)
   ========================================================================== */
.comparison-section {
  background: #FFFFFF;
}

.scroll-hint-wrapper { position: relative; }
.scroll-hint-text {
  text-align: center;
  font-size: 0.78rem;
  color: #888;
  font-weight: 700;
  margin-bottom: 0.5rem;
  animation: slide-hint 1.5s infinite;
}

@keyframes slide-hint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  border-radius: 18px;
}

.rich-comparison-table {
  width: 100%;
  min-width: 580px;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFFFFF;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(233, 30, 99, 0.15);
  font-size: 0.84rem;
}

.rich-comparison-table th,
.rich-comparison-table td {
  padding: 0.95rem 0.6rem;
  text-align: center;
  border-bottom: 1px solid #F0ECEE;
  white-space: nowrap;
}

.rich-comparison-table th {
  background: #FAF8F8;
  font-size: 0.84rem;
  font-weight: 700;
  color: #333;
}

.honoka-col-header {
  background: linear-gradient(180deg, #FFF0F4 0%, #FFE4EC 100%) !important;
  color: var(--primary-pink-dark) !important;
  font-size: 0.94rem !important;
  font-weight: 800 !important;
  border-left: 2px solid var(--primary-pink-light);
  border-right: 2px solid var(--primary-pink-light);
}

.honoka-crown { display: block; font-size: 1rem; margin-bottom: 0.15rem; }

.honoka-col {
  background: rgba(255, 245, 248, 0.85);
  color: var(--primary-pink-dark);
  font-weight: 700;
  border-left: 2px solid var(--primary-pink-light);
  border-right: 2px solid var(--primary-pink-light);
}

.honoka-col strong {
  color: var(--primary-pink-dark);
}

.feature-label {
  font-weight: 700;
  background: #FAF9F9;
  color: #333;
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-section {
  background: linear-gradient(180deg, #FFF0F4 0%, #FFFFFF 100%);
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.review-card-rich {
  padding: 1.35rem 1.15rem;
  border: 1px solid rgba(233, 30, 99, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-pink-light);
}

.review-meta { display: flex; flex-direction: column; }
.review-user-info { font-size: 0.88rem; font-weight: 700; }
.review-stars { color: #E65100; font-size: 0.82rem; font-weight: 700; margin: 2px 0; }
.review-verified { font-size: 0.7rem; color: var(--accent-green); font-weight: 700; }

.review-title {
  font-size: clamp(0.94rem, 3.8vw, 1.05rem);
  line-height: 1.45;
  margin-bottom: 0.45rem;
  color: #111;
  font-weight: 800;
  text-wrap: balance;
}

/* ==========================================================================
   OFFER SECTION & 3大特典ボックス (純粋ワンオファー)
   ========================================================================== */
.offer-section {
  background: linear-gradient(180deg, #FFF0F5 0%, #FFFFFF 100%);
}

.offer-card-master {
  border: 1.5px solid rgba(233, 30, 99, 0.25);
  border-radius: 22px;
  padding: 1.85rem 1.15rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9FA 100%);
  box-shadow: 0 10px 32px rgba(233, 30, 99, 0.08);
}

.offer-top-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(212, 175, 55, 0.12));
  border: 1px solid rgba(233, 30, 99, 0.3);
  color: var(--primary-pink-dark);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.35rem 1.15rem;
  border-radius: 30px;
  margin-bottom: 0.75rem;
  box-shadow: 0 3px 10px rgba(233, 30, 99, 0.08);
  white-space: nowrap;
}

.offer-master-title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 4.8vw, 1.45rem);
  line-height: 1.45;
  margin-bottom: 1.25rem;
  font-weight: 800;
  text-wrap: balance;
}

.countdown-card {
  background: linear-gradient(135deg, #FFFDF8 0%, #FFF8EA 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.06);
}

.countdown-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-gold-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.timer-display {
  font-family: var(--font-number);
  font-size: 1.15rem;
  font-weight: 800;
}

.timer-unit {
  background: #111;
  color: #FFF;
  padding: 3px 7px;
  border-radius: 6px;
  margin: 0 3px;
  font-size: 1.2rem;
}

.offer-visual-center {
  position: relative;
  margin: 1.25rem 0;
}

.offer-product-img {
  max-width: 310px;
  margin: 0 auto;
  border-radius: 16px;
  filter: drop-shadow(0 10px 24px rgba(233, 30, 99, 0.15));
}

.gift-seal-master {
  position: absolute;
  bottom: -10px;
  right: 5px;
  background: linear-gradient(135deg, #FF1744, #D50000);
  color: #FFF;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(255, 23, 68, 0.35);
}

/* Offer Benefits Box (3大特典ボックス) */
.offer-benefits-box {
  margin-top: 1.25rem;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  background: linear-gradient(180deg, #FFFCF7 0%, #FFF8F0 100%);
  padding: 1.15rem 0.95rem;
  text-align: left;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.08);
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.benefits-header-ribbon {
  background: linear-gradient(135deg, #996515 0%, #7A5200 100%);
  color: #FFFFFF !important;
  text-align: center;
  padding: 0.65rem 0.5rem;
  font-weight: 800;
  font-size: clamp(0.85rem, 3.8vw, 1.02rem);
  border-radius: 12px 12px 0 0;
  margin: -1.15rem -0.95rem 1rem -0.95rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 10px rgba(122, 82, 0, 0.25);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 700;
  color: #222;
  line-height: 1.55;
}

.benefits-item {
  margin-bottom: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.25);
}

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

.benefits-num {
  font-family: var(--font-en-serif);
  color: var(--accent-gold-dark);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
  flex-shrink: 0;
}

.benefits-text {
  flex: 1;
  font-size: clamp(0.82rem, 3.5vw, 0.9rem);
  line-height: 1.5;
}

.benefits-tag-inline {
  display: block;
  width: fit-content;
  background: rgba(212, 175, 55, 0.14);
  color: var(--accent-gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.25rem;
  letter-spacing: 0.03em;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.benefits-highlight {
  color: var(--primary-pink-dark);
  font-size: 1.02em;
  font-weight: 800;
  display: block;
}

.benefits-sub {
  font-weight: 500;
  color: #666;
  font-size: 0.74rem;
  display: block;
  margin-top: 0.2rem;
  line-height: 1.4;
}

/* 価格表示ボックス */
.price-master-box {
  margin: 1.35rem 0;
  width: 100%;
  box-sizing: border-box;
}

.price-original {
  font-size: 0.82rem;
  color: #888;
  text-decoration: line-through;
}

.price-discount-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.45rem 0;
}

.discount-percent {
  background: var(--primary-pink);
  color: #FFF;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
}

.gift-bonus {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-gold-dark);
  line-height: 1.35;
}

.price-final { margin-top: 0.45rem; }
.final-label { display: block; font-size: 0.88rem; font-weight: 800; color: var(--primary-pink-dark); }
.final-number { font-size: 1.25rem; }
.final-number strong {
  font-family: var(--font-number);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary-pink);
}

.price-sub-note {
  display: block;
  font-size: 0.74rem;
  color: #777;
  margin-top: 0.2rem;
}

.reassurance-grid {
  background: #FAF9F9;
  border-radius: 14px;
  padding: 1.15rem;
  margin: 1.25rem 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border: 1px solid #ECECEC;
}

.reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.82rem;
}

.reassurance-check {
  color: var(--accent-green);
  font-weight: 900;
  font-size: 1.05rem;
}

.master-cta-wrap { margin-bottom: 0.85rem; }

/* ==========================================================================
   FAQ & CANCEL GUIDE SECTION
   ========================================================================== */
.faq-section {
  background: #FFFFFF;
}

.cancel-guide-card {
  margin-bottom: 1.75rem;
  border-left: 3px solid var(--accent-green);
}

.cancel-guide-title {
  font-size: clamp(0.94rem, 4vw, 1.08rem);
  color: var(--accent-green);
  margin-bottom: 0.35rem;
  font-weight: 800;
  line-height: 1.45;
  text-wrap: balance;
}

.cancel-guide-desc {
  font-size: 0.8rem;
  color: var(--text-sub);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.cancel-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  background: #F5F7F5;
  padding: 0.85rem;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.c-step {
  background: #FFF;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  color: #2E7D32;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-step-arrow {
  color: var(--accent-green);
  font-size: 0.85rem;
  transform: rotate(90deg);
  line-height: 1;
}

.cancel-note {
  font-size: 0.7rem;
  color: #888;
  display: block;
  margin-top: 0.55rem;
  text-align: center;
  line-height: 1.45;
}

@media (min-width: 601px) {
  .cancel-steps {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .c-step {
    flex: 1;
  }
  .c-step-arrow {
    transform: rotate(0deg);
  }
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item-rich {
  border: 1px solid #E5E5E5;
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
}

.faq-question-btn {
  width: 100%;
  padding: 1rem;
  background: #FAFAFA;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question-btn:active {
  background: #FCE4EC;
}

.q-badge {
  background: var(--primary-pink);
  color: #FFF;
  font-size: 0.78rem;
  font-weight: 800;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.q-title {
  flex: 1;
  color: #111;
  font-size: clamp(0.85rem, 3.6vw, 0.94rem);
  line-height: 1.45;
  word-break: normal;
  overflow-wrap: break-word;
}

.faq-arrow {
  font-size: 1.25rem;
  color: #999;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  overflow: hidden;
  padding: 0 1.15rem;
  background: #FFFFFF;
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.75;
}

.faq-answer-content > p {
  min-height: 0;
}

.faq-item-rich.open .faq-answer-content {
  grid-template-rows: 1fr;
  padding: 0.95rem 1.15rem 1.15rem;
  border-top: 1px solid #EAEAEA;
}

.faq-item-rich.open .faq-arrow {
  transform: rotate(45deg);
  color: var(--primary-pink);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #181818;
  color: #888888;
  padding: 1.25rem 0 1rem;
  font-size: 0.72rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.55rem;
}

.footer-link-item {
  color: #A0A0A0;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.footer-link-item:hover {
  color: #FFFFFF;
}

.footer-dot {
  color: #666666;
  font-size: 0.55rem;
}

.site-footer .copyright {
  margin: 0;
  padding: 0;
  color: #777777;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.footer-brand-logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-pink-light);
}

.footer-brand-sub {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 1.15rem;
}

.footer-links-grid {
  display: flex;
  justify-content: center;
  gap: 1.15rem;
  margin-bottom: 1.35rem;
  flex-wrap: wrap;
}

.footer-links-grid a {
  color: #CCCCCC;
  text-decoration: none;
}

.footer-links-grid a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.copyright {
  color: #777777;
  font-size: 0.7rem;
}

/* ==========================================================================
   SCROLL REVEAL & CINEMATIC ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

.reveal-blur {
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(0, 28px, 0) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform, filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.reveal-blur.visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-fade-up {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.reveal-fade-up.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }

/* 圧倒的な商品画像登場演出 */
.product-hero-reveal {
  opacity: 0;
  transform: translate3d(0, 60px, 0) scale(0.88) rotate(-2deg);
  filter: drop-shadow(0 0 0 rgba(233, 30, 99, 0)) blur(10px);
  transition: all 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.product-hero-reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  filter: drop-shadow(0 20px 40px rgba(233, 30, 99, 0.32)) blur(0);
}

/* LPO: 限定性・緊急性のマイクロコピー装飾 */
.urgency-badge-urgent {
  background: linear-gradient(135deg, #D50000 0%, #FF1744 100%);
  color: #FFF;
  font-weight: 900;
  padding: 0.38rem 1.15rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  animation: pulse-urgent 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(213, 0, 0, 0.35);
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

@keyframes pulse-urgent {
  0% { box-shadow: 0 0 0 0 rgba(213, 0, 0, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(213, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(213, 0, 0, 0); }
}

.stock-alert {
  font-size: 0.75rem;
  color: #D50000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.45rem;
}

.stock-alert .blink {
  animation: blink-anim 1s infinite;
}

@keyframes blink-anim { 50% { opacity: 0.3; } }

/* Swipe Hint Animation */
.swipe-hint .reviews-track {
  animation: swipe-nudge-track 2.5s 4 cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
}

@keyframes swipe-nudge-track {
  0%, 100% { transform: translateX(0); }
  20%, 40% { transform: translateX(-35px); }
  30% { transform: translateX(15px); }
}

.swipe-hint-removed .reviews-track {
  animation: none !important;
}

/* Ranking Mask Text Overlay */
.ranking-mask-overlay {
  position: absolute;
  top: 15%;
  left: 55%;
  width: 40%;
  height: 25%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ranking-mask-text {
  font-size: 0.8rem;
  font-weight: 800;
  color: #333;
  margin: 0;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Floating Supplement Stick on Hand */
.floating-stick-img {
  position: absolute;
  top: 18%;
  left: 15%;
  width: 10%;
  max-width: 45px;
  z-index: 3;
  animation: float-stick 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

@keyframes float-stick {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(0deg); }
}

/* ==========================================================================
   LP内 WooCommerce チェックアウト
   ========================================================================== */
.checkout-section {
  background: linear-gradient(180deg, #fff 0%, #fff5f8 100%);
  scroll-margin-top: 76px;
  padding: clamp(2.5rem, 8vw, 5rem) 0;
}

.checkout-section[hidden] {
  display: none !important;
}

.checkout-container {
  max-width: 940px;
}

.checkout-heading-wrap {
  margin-bottom: 1.35rem;
}

.checkout-lead {
  max-width: 720px;
  margin: 0.75rem auto 1rem;
  color: #4f4147;
  font-size: 0.95rem;
  line-height: 1.75;
}

.checkout-assurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-assurances li {
  border: 1px solid rgba(194, 24, 91, 0.2);
  border-radius: 999px;
  background: #fff;
  color: #7d123f;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.42rem 0.75rem;
}

.checkout-frame-shell {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(194, 24, 91, 0.22);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(78, 24, 46, 0.1);
}

.checkout-frame {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  background: #fff;
  transition: height 0.2s ease;
}

.checkout-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.5rem;
  background: #fff;
  color: #5f4650;
  text-align: center;
}

.checkout-loading[hidden] {
  display: none;
}

.checkout-loading.is-delayed {
  color: #8b173f;
  line-height: 1.7;
}

.checkout-frame-shell.has-error .checkout-loading {
  position: relative;
  min-height: 0;
  padding: 1.25rem;
}

.checkout-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid #f4cfdd;
  border-top-color: #c2185b;
  border-radius: 50%;
  animation: honoka-checkout-spin 0.8s linear infinite;
}

.checkout-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 10px;
  background: #fff0f2;
  color: #a20f38;
  text-align: center;
}

.checkout-retry-button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: #c2185b;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0.7rem 1.2rem;
}

.checkout-retry-button:focus-visible {
  outline: 3px solid rgba(194, 24, 91, 0.28);
  outline-offset: 3px;
}

.master-cta-btn.is-loading {
  pointer-events: none;
  opacity: 0.8;
}

@keyframes honoka-checkout-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
  .checkout-section {
    scroll-margin-top: 56px;
    padding: 2.5rem 0;
  }

  .checkout-frame-shell {
    min-height: 0;
    border-radius: 14px;
  }

  .checkout-frame {
    height: 360px;
  }
}
