/* ==================== WIDGET_1_STYLE ==================== */
:root {
    --purple-deep: #2e2a4a;
    --purple-mid: #7b5ea7;
    --purple-light: #a98fd4;
    --purple-pale: #e8dff5;
    --purple-faint: #f5f0fb;
    --gold: #c9a96e;
    --line-green: #06C755;
    --text-dark: #1e1c2e;
    --text-mid: #3d3a52;
    --text-light: #7a6f8a;
    --border: #e2dced;
    --white: #ffffff;
  }

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

  body {
    font-family: 'Noto Sans JP', sans-serif;
  }

  /* ══════════════════════════
     HEADER BAR
  ══════════════════════════ */
  .rv-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }

  .rv-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: var(--purple-deep);
    text-decoration: none;
  }

  .rv-logo span {
    font-style: italic;
    color: var(--purple-light);
    font-size: 18px;
  }

  /* ── HAMBURGER BUTTON ── */
  .rv-hamburger {
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    background: var(--white);
    border: none;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
    position: relative;
    z-index: 1100;
  }

  .rv-hamburger:hover {
    background: var(--purple-faint);
  }

  .rv-hamburger .bar {
    width: 28px;
    height: 1.5px;
    background: var(--purple-deep);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s ease, width 0.3s ease;
    transform-origin: center;
  }
  
  @media (min-width: 769px) {
  
    .rv-hamburger {
        top: 40px;
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    background: var(--white);
    border: none;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
    position: relative;
    z-index: 1100;
  }
    
      
  }

  /* open state */
  .rv-hamburger.is-open .bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .rv-hamburger.is-open .bar:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  .rv-hamburger.is-open .bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* ══════════════════════════
     OVERLAY
  ══════════════════════════ */
  .rv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 16, 36, 0.45);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
  }

  .rv-overlay.is-open {
    opacity: 1;
    pointer-events: all;
  }

  /* ══════════════════════════
     DRAWER
  ══════════════════════════ */
  .rv-drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(340px, 88vw);
    height: 100dvh;
    background: var(--white);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .rv-drawer.is-open {
    transform: translateX(0);
  }

  /* drawer top bar */
  .rv-drawer-top {
    height: 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
  }

  .rv-drawer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    color: var(--purple-light);
    text-transform: uppercase;
  }

  /* drawer scroll area */
  .rv-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 14px 0 24px;
    -webkit-overflow-scrolling: touch;
  }

  /* ── NAV SECTION LABEL ── */
  .rv-nav-section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: var(--purple-light);
    text-transform: uppercase;
    padding: 0 28px;
    margin-bottom: 8px;
    display: block;
  }

  /* ── NAV LIST ── */
  .rv-nav-list {
    list-style: none;
    margin-bottom: 20px;
  }

  .rv-nav-item a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    text-decoration: none;
    position: relative;
    transition: background 0.2s;
    border-left: 2px solid transparent;
  }

  .rv-nav-item a:hover {
    background: var(--purple-faint);
    border-left-color: var(--purple-light);
  }

  .rv-nav-item a .rv-nav-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--purple-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .rv-nav-item a:hover .rv-nav-icon {
    background: var(--purple-pale);
  }

  .rv-nav-item a .rv-nav-icon i {
    font-size: 12px;
    color: var(--purple-mid);
  }

  .rv-nav-item a .rv-nav-text {
    flex: 1;
  }

  .rv-nav-item a .rv-nav-text .rv-nav-ja {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.03em;
    line-height: 1.4;
  }

  .rv-nav-item a .rv-nav-text .rv-nav-en {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--purple-light);
    text-transform: uppercase;
    margin-top: 2px;
  }

  .rv-nav-item a .rv-nav-arrow {
    flex-shrink: 0;
    color: var(--border);
    transition: color 0.2s, transform 0.2s;
  }

  .rv-nav-item a:hover .rv-nav-arrow {
    color: var(--purple-light);
    transform: translateX(3px);
  }

  /* ── DIVIDER ── */
  .rv-nav-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 28px 28px;
  }

  /* ── CTA FOOTER ── */
  .rv-drawer-footer {
    padding: 10px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    background: var(--white);
  }

  /* LINE button */
  .rv-btn-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--line-green);
    color: var(--white);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    border-radius: 10px;
    text-decoration: none;
    transition: filter 0.2s, transform 0.2s;
  }

  .rv-btn-line:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
  }

  .rv-btn-line i {
    font-size: 18px;
  }

  /* Register button */
  .rv-btn-register {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--purple-deep);
    color: var(--white);
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
  }

  .rv-btn-register:hover {
    background: var(--purple-mid);
    transform: translateY(-1px);
  }

  .rv-btn-register i {
    font-size: 13px;
    color: var(--gold);
  }

  /* ── CLOSE BUTTON ── */
  .rv-close-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-faint);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--purple-mid);
    font-size: 13px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    flex-shrink: 0;
  }

  .rv-close-btn:hover {
    background: var(--purple-pale);
    color: var(--purple-deep);
    transform: rotate(90deg);
  }

  /* ── SP/TABLET: ハンバーガー スクロール表示 ── */
  @media (max-width: 768px) {
    .rv-header {
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease;
    }
    .rv-header.is-visible {
      opacity: 1;
      pointer-events: all;
    }
  }

  /* demo page bg */
  .rv-demo-bg {
    padding-top: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rv-demo-hint {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    letter-spacing: 0.05em;
  }

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

body {
  font-family: 'Noto Serif JP', serif;
  color: var(--text-dark);
  background: var(--white);
  margin: 0 auto;
}

/* ── HEADER ── */
.howto-header {
  background: linear-gradient(135deg, #7a6ab8, #5a4a9a);
  padding: 32px 28px;
  text-align: center;
}

.howto-header-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: white;
  letter-spacing: 0.18em;
  line-height: 1;
}

.howto-header-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
  letter-spacing: 0.12em;
}

/* ── STEP BLOCK ── */
.step-block {
  padding: 36px 28px;
  border-bottom: 1px solid var(--lavender);
  background: var(--white);
}

.step-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.step-number-block {
  flex-shrink: 0;
  line-height: 1;
}

.step-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.18em;
  margin-bottom: 2px;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 300;
  color: var(--purple);
  line-height: 0.88;
}

.step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.55;
  padding-top: 6px;
}

/* ── IMAGE AREA ── */
.step-img-wrap {
  position: relative;
  margin-bottom: 6px;
}

.step-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  background: linear-gradient(135deg, #d8e0ea, #c8d0dc);
}

.step-img-note {
  font-size: 11px;
  color: var(--text-light);
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 4px;
  margin-bottom: 20px;
}

/* ── BODY TEXT ── */
.step-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 2;
  color: var(--text-mid);
}

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  background: linear-gradient(135deg, rgba(100,80,160,0.08), rgba(100,80,160,0.03));
  border: 1px dashed rgba(100,80,160,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(100,80,160,0.35);
  font-size: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════
   SECTION 2 — 1クールの流れ
══════════════════════════════════════ */

.flow-section {
  background: linear-gradient(160deg, #f5f2fc 0%, #edf0fa 100%);
}

/* セクションヘッダー */
.flow-header {
  background: linear-gradient(135deg, #5a4a9a, #3a2a7a);
  padding: 32px 28px;
  text-align: center;
}

.flow-header-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.flow-header-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.flow-header-period {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

.flow-header-period-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e8c97a;
  flex-shrink: 0;
}

/* フェーズラベル */
.phase-label-bar {
  padding: 0 20px;
  margin-top: 36px;
  margin-bottom: 15px;
}

.phase-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  border-radius: 6px 6px 0 0;
  padding: 5px 10px;
  min-height: 48px;
  width: 100%;
}

.phase-label-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.12em;
}

.phase-label-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500
  ;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* タイムラインコンテナ */
.flow-timeline {
  padding: 0 28px 8px;
  position: relative;
}

/* 縦線 */
.flow-timeline::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple-light), rgba(140,120,200,0.15));
}

/* 各ステップカード */
.flow-step {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  position: relative;
}

/* 左の丸番号 */
.flow-step-dot-col {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
  position: relative;
  z-index: 1;
}

.flow-step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(100,80,160,0.3);
  flex-shrink: 0;
}

.flow-step-dot span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  color: white;
}

/* 右のカード本体 */
.flow-step-card {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 2px 16px rgba(90,70,150,0.07);
  border: 1px solid rgba(140,120,200,0.12);
}

/* タイミングバッジ */
.flow-step-timing {
  display: inline-block;
  background: linear-gradient(135deg, rgba(100,80,160,0.1), rgba(100,80,160,0.05));
  border: 1px solid rgba(100,80,160,0.2);
  border-radius: 50px;
  padding: 3px 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--purple);
  margin-bottom: 8px;
  font-weight: 500;
}

.flow-step-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.45;
  margin-bottom: 10px;
}

.flow-step-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 12px;
}

/* バッジ類 */
.flow-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.flow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
  padding: 5px 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.flow-badge.outline {
  border: 1.5px solid rgba(100,80,160,0.35);
  color: var(--purple);
  background: rgba(100,80,160,0.04);
}

.flow-badge.filled {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: white;
}

.flow-badge.gold {
  background: linear-gradient(135deg, #c9a84c, #e8c97a);
  color: white;
}

.flow-badge-icon {
  font-size: 14px;
}

/* CTAボタン */
.flow-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  margin-top: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.flow-cta-btn:hover { opacity: 0.85; }

.flow-cta-btn.line {
  background: #06C755;
  color: white;
}

.flow-cta-btn.booking {
  background: linear-gradient(135deg, #5a4a9a, #7a6ab8);
  color: white;
}

.flow-cta-btn.anchor {
  background: var(--lavender);
  color: var(--purple);
  border: 1.5px solid rgba(100,80,160,0.25);
}

/* 最終フェーズのライン色変更 */
.phase-4 .flow-timeline::before {
  background: linear-gradient(to bottom, #c9a84c, rgba(201,168,76,0.15));
}

.phase-4 .flow-step-dot {
  background: linear-gradient(135deg, #c9a84c, #e8c97a);
  box-shadow: 0 2px 10px rgba(201,168,76,0.3);
}

/* フェーズ間スペーサー */
.phase-spacer {
  height: 8px;
}

/* 期間バー */
.period-bar {
  margin: 0 28px 20px;
  background: white;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(90,70,150,0.07);
  border: 1px solid rgba(140,120,200,0.15);
}

.period-bar-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.period-bar-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

.period-bar-text strong {
  color: var(--navy-dark);
  font-weight: 600;
}

/* セルフ vs 出張 並列バッジ */
.plan-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.plan-badge-item {
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
}

.plan-badge-item.visit {
  background: linear-gradient(135deg, rgba(90,70,150,0.1), rgba(90,70,150,0.06));
  border: 1px solid rgba(90,70,150,0.2);
}

.plan-badge-item.self {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
  border: 1px solid rgba(201,168,76,0.3);
}

.plan-badge-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.plan-badge-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: var(--text-light);
}

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

  body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.8;
  }

  /* ─── HERO ─── */
  .hero {
    text-align: center;
    padding: 80px 24px 30px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(122,94,167,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero h1 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: clamp(22px, 5vw, 26px);
    color: var(--purple-deep);
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--purple-mid);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
  }

  .hero-sub {
    font-size: 15px;
    color: var(--purple-mid);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
  }

  .hero-lead {
    max-width: 660px;
    margin: 0 auto;
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 2.1;
    text-align: left;
  }

  /* ─── CARDS SECTION ─── */
  .cards-section {
    padding: 30px 20px;
    max-width: 760px;
    margin: 0 auto;
  }

  .section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
  }

  .section-divider::before,
  .section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border));
  }
  .section-divider::after {
    background: linear-gradient(to left, transparent, var(--border));
  }

  .section-divider span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--purple-light);
    white-space: nowrap;
  }

  /* 全開閉ボタン */
  .accordion-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 14px;
  }

  .acc-ctrl-btn {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    color: var(--purple-mid);
    background: none;
    border: 1px solid var(--purple-pale);
    border-radius: 50px;
    padding: 4px 14px;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background 0.2s, color 0.2s;
  }

  .acc-ctrl-btn:hover {
    background: var(--purple-pale);
    color: var(--purple-deep);
  }

  .cards-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    min-width: 0;
  }

  /* ─── アコーディオンカード ─── */
  .card {
    background: var(--white);
    border: 1px solid var(--purple-pale);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(74,53,104,0.07);
    transition: box-shadow 0.3s ease;
    position: relative;
    animation: fadeUp 0.5s ease both;
    width: 100%;
    min-width: 0;
  }

  /* 左アクセントライン */
  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--purple-mid), var(--purple-light));
    border-radius: 4px 0 0 4px;
    z-index: 1;
  }

  .card.open {
    box-shadow: 0 8px 32px rgba(74,53,104,0.13);
  }

  /* ── トリガー行（アイコン＋タイトル＋トグル） ── */
  .card-trigger {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px 16px 24px;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: none;
    border: none;
    text-align: left;
    transition: background 0.2s;
  }

  .card-trigger:hover { background: var(--purple-faint); }

  .card-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--purple-faint);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }

  .card.open .card-icon { background: var(--purple-pale); }

  .card-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--purple-deep);
    letter-spacing: 0.03em;
    flex: 1 1 0%;
    min-width: 0;
    max-width: 100%;
    line-height: 1.5;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  /* ── ＋／ー トグルボタン ── */
  .card-toggle {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--purple-faint);
    border: 1.5px solid var(--purple-pale);
    position: relative;
    transition: background 0.25s, border-color 0.25s;
  }

  /* 横棒（常に表示） */
  .card-toggle::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 11px; height: 1.5px;
    background: var(--purple-mid);
    border-radius: 2px;
    transition: background 0.2s;
  }

  /* 縦棒（閉じているとき表示、開くと消える） */
  .card-toggle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 1.5px; height: 11px;
    background: var(--purple-mid);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.25s ease, background 0.2s;
  }

  .card.open .card-toggle {
    background: var(--purple-pale);
    border-color: var(--purple-light);
  }

  /* 開いたとき縦棒を横に倒してーにする */
  .card.open .card-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
  }

  /* ── 折りたたみ本文 ── */
  .card-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 24px 0 84px;
    transition:
      max-height 0.38s cubic-bezier(0.4,0,0.2,1),
      opacity    0.28s ease,
      padding    0.28s ease;
  }

  .card.open .card-body {
    max-height: 600px;
    opacity: 1;
    padding: 0 24px 20px 84px;
  }

  .card-text {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.9;
    padding-top: 12px;
    border-top: 1px solid var(--purple-pale);
  }

  .card-text strong { color: var(--purple-mid); font-weight: 500; }

  .card-badge {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--purple-mid);
    background: var(--purple-faint);
    border: 1px solid var(--purple-pale);
    padding: 3px 10px;
    border-radius: 50px;
  }

  /* ─── SYNERGY FOOTER ─── */
  .synergy {
    margin: 0 20px 64px;
    border-radius: 20px;
    background: linear-gradient(175deg, #4e3480 0%, #6b4eaa 45%, #5a3e98 100%);
    padding: 52px 28px 56px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .synergy::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 15% 20%, rgba(255,255,255,0.05) 0%, transparent 55%),
      radial-gradient(ellipse at 85% 80%, rgba(100,60,180,0.3) 0%, transparent 55%);
    pointer-events: none;
  }

  .synergy-inner { position: relative; max-width: 520px; margin: 0 auto; }

  .synergy-label {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: 11px;
    letter-spacing: 0.38em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
    text-transform: uppercase;
  }

  .synergy h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: clamp(18px, 5.5vw, 20px);
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .synergy-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-bottom: 32px;
  }

  .synergy-divider::before,
  .synergy-divider::after {
    content: ''; width: 44px; height: 1px;
    background: rgba(255,255,255,0.3);
  }

  .synergy-divider-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(255,255,255,0.55);
  }

  .synergy-body {
    font-family: 'Noto Serif JP', serif;
    font-size: 13px; line-height: 2.15;
    color: rgba(255,255,255,0.82);
    margin-bottom: 20px;
  }

  .synergy-body strong { color: var(--white); font-weight: 700; }

  .synergy-brand {
    font-family: 'Noto Serif JP', serif;
    font-style: italic; font-size: 13px;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.45);
    margin: 20px 0 40px;
  }

  .cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--white); color: var(--purple-deep);
    font-family: 'Noto Serif JP', serif;
    font-size: 20px; font-weight: 500;
    letter-spacing: 0.1em; padding: 18px 64px;
    border-radius: 60px; text-decoration: none;
    border: none; cursor: pointer;
    box-shadow: 0 6px 28px rgba(0,0,0,0.22);
    transition: transform 0.2s, box-shadow 0.3s;
  }
  .cta-btn::before { content: '◆'; font-size: 9px; color: var(--purple-mid); }
  .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,0,0,0.28); }

  .cta-btn02 {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--white); color: var(--purple-deep);
    font-family: 'Noto Serif JP', serif;
    font-size: 14px; font-weight: 500;
    letter-spacing: 0.1em; padding: 12px 40px;
    border-radius: 60px; text-decoration: none;
    margin-top: 15px; border: none; cursor: pointer;
    box-shadow: 0 6px 28px rgba(0,0,0,0.22);
    transition: transform 0.2s, box-shadow 0.3s;
  }
  .cta-btn02::before { content: '◆'; font-size: 9px; color: var(--purple-mid); }
  .cta-btn02:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,0,0,0.28); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero { animation: fadeUp 0.7s ease both; }
  .card:nth-child(1)  { animation-delay: 0.05s; }
  .card:nth-child(2)  { animation-delay: 0.10s; }
  .card:nth-child(3)  { animation-delay: 0.15s; }
  .card:nth-child(4)  { animation-delay: 0.20s; }
  .card:nth-child(5)  { animation-delay: 0.25s; }
  .card:nth-child(6)  { animation-delay: 0.30s; }
  .card:nth-child(7)  { animation-delay: 0.35s; }
  .card:nth-child(8)  { animation-delay: 0.40s; }
  .card:nth-child(9)  { animation-delay: 0.45s; }
  .card:nth-child(10) { animation-delay: 0.50s; }
  .synergy { animation: fadeUp 0.7s 0.4s ease both; }

  @media (max-width: 480px) {
    .hero { padding: 56px 20px 44px; }
    .card-body,
    .card.open .card-body { padding-left: 20px; }
    .synergy { padding: 32px 24px; margin: 0 16px 48px; }
    .cta-btn { padding: 14px 36px; font-size: 17px; }
  }

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

  body {
    background: var(--lavender-ultra);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
  }

  /* ===== WRAPPER ===== */
  .revia-safety {
    background: var(--lavender-ultra);
    padding: 40px 0 88px;
  }

  .container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ===== SECTION HEADER ===== */
  .section-header {
    text-align: center;
    margin-bottom: 52px;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }

  .eyebrow-line {
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-soft));
  }
  .eyebrow-line.right {
    background: linear-gradient(90deg, var(--purple-soft), transparent);
  }

  .eyebrow-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--purple-soft);
    text-transform: uppercase;
  }

  .section-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 4.5vw, 32px);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
  }

  .section-title span {
    color: var(--purple-deep);
  }

  .section-lead {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 2.1;
    max-width: 580px;
    margin: 0 auto;
  }

  /* ===== ALERT BLOCK ===== */
  .alert-block {
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-mid) 100%);
    border-radius: 16px;
    padding: 36px 40px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
  }

  .alert-block::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 150px; height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
  }

  .alert-block::after {
    content: '';
    position: absolute;
    bottom: -30px; left: 60px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
  }

  .alert-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 14px;
  }

  .alert-title {
    font-family: var(--font-serif);
    font-size: clamp(16px, 3vw, 21px);
    font-weight: 400;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    position: relative;
  }

  .alert-body {
    font-size: 13px;
    color: rgba(255,255,255,0.82);
    line-height: 2.1;
    position: relative;
  }

  .alert-body strong {
    color: #fff;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 1px;
  }

  /* ===== COMPARISON TABLE ===== */
  .block-title {
    font-family: var(--font-serif);
    font-size: clamp(17px, 3vw, 22px);
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
  }

  .block-title span {
    color: var(--purple-deep);
  }

  .compare-wrap {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 52px;
    box-shadow: 0 4px 32px rgba(107, 91, 149, 0.1);
    border: 1px solid var(--border);
  }

  .compare-table {
    width: 100%;
    border-collapse: collapse;
  }

  .compare-table thead tr {
    background: var(--lavender-bg);
  }

  .compare-table thead th {
    padding: 16px 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-mid);
    text-align: left;
    border-right: 1px solid var(--border);
  }

  .compare-table thead th:last-child {
    border-right: none;
    background: var(--purple-deep);
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.08em;
  }

  .compare-table thead th:first-child {
    width: 30%;
  }

  .compare-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
  }

  .compare-table tbody tr:last-child {
    border-bottom: none;
  }

  .compare-table tbody tr:nth-child(even) {
    background: var(--lavender-light);
  }

  .compare-table tbody td {
    padding: 15px 20px;
    font-size: 12.5px;
    color: var(--text-mid);
    vertical-align: middle;
    border-right: 1px solid var(--border);
    line-height: 1.75;
    font-weight: 300;
  }

  .compare-table tbody td:last-child {
    border-right: none;
    background: linear-gradient(135deg, var(--lavender-light) 0%, #F3F0FB 100%);
    color: var(--purple-deep);
    font-weight: 400;
  }

  .compare-table tbody td:nth-child(2) {
    color: var(--warn-red);
    font-size: 12px;
  }

  .compare-table tbody td:first-child {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-dark);
  }

  .td-check {
    display: flex;
    align-items: flex-start;
    gap: 7px;
  }

  .td-check::before {
    content: '✓';
    color: var(--purple-deep);
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 0;
    line-height: 1.75;
  }

  /* ===== DIVIDER ===== */
  .divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 48px 0;
  }

  .divider::before,
  .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  .divider-inner {
    display: flex;
    gap: 6px;
  }

  .divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--purple-pale);
  }

  /* ===== REASON CARDS ===== */
  .reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 52px;
  }

  @media (max-width: 600px) {
    .reasons-grid { grid-template-columns: 1fr; }
    .alert-block { padding: 28px 22px; }
    .compare-table thead th,
    .compare-table tbody td { padding: 12px 12px; font-size: 11.5px; }
  }

  .reason-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(107, 91, 149, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .reason-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-deep), var(--purple-soft));
    border-radius: 16px 16px 0 0;
  }

  .reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 36px rgba(107, 91, 149, 0.14);
  }

  .reason-num {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    background: linear-gradient(135deg, var(--purple-deep), var(--purple-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
  }

  .reason-title {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.65;
    letter-spacing: 0.02em;
  }

  .reason-body {
    font-size: 12.5px;
    color: var(--text-mid);
    line-height: 1.95;
    font-weight: 300;
  }

  /* ===== CAUTION BLOCK ===== */
  .caution-block {
    background: var(--lavender-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 36px;
  }

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

  .caution-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--purple-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    color: var(--purple-deep);
  }

  .caution-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-mid);
  }

  .caution-intro {
    font-size: 12.5px;
    color: var(--text-mid);
    margin-bottom: 18px;
    line-height: 2;
    font-weight: 300;
  }

  .caution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  .caution-list li {
    font-size: 12.5px;
    color: var(--text-mid);
    padding-left: 18px;
    position: relative;
    line-height: 1.75;
    font-weight: 300;
  }

  .caution-list li::before {
    content: '·';
    position: absolute;
    left: 4px;
    color: var(--purple-soft);
    font-size: 18px;
    line-height: 1.4;
  }

  

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

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
  }

  .pricing-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 72px 24px 80px;
  }

  /* ── HEADER ── */
  .pricing-header {
    text-align: center;
    margin-bottom: 52px;
    animation: fadeUp 0.6s ease both;
  }

  .pricing-header .en {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(30px, 10vw, 44px);
    color: var(--purple-deep);
    letter-spacing: 0.14em;
    line-height: 1;
    display: block;
  }

  .pricing-header .ja {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.25em;
    color: var(--text-light);
    margin-top: 10px;
  }

  /* ── POLICY NOTE ── */
  .policy-note {
    background: var(--purple-faint);
    border: 1px solid var(--purple-pale);
    border-radius: 10px;
    padding: 18px 24px;
    margin-bottom: 48px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: fadeUp 0.6s 0.08s ease both;
  }

  .policy-note-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--purple-badge);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }

  .policy-note-icon::after {
    content: 'i';
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--white);
    line-height: 1;
  }

  .policy-note p {
    font-family: 'Noto Serif JP', serif;
    font-size: 13.5px;
    font-weight: 300;
    color: var(--purple-deep);
    line-height: 1.8;
  }

  .policy-note strong {
    font-weight: 500;
  }

  /* ── SECTION LABEL ── */
  .section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    animation: fadeUp 0.5s 0.12s ease both;
  }

  .section-label::before,
  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  .section-label span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    color: var(--purple-light);
    white-space: nowrap;
  }

  /* ── COMPARISON TABLE ── */
  .comparison-wrap {
    animation: fadeUp 0.5s 0.18s ease both;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 40px;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }

  thead tr {
    background: var(--purple-deep);
  }

  thead th {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.75);
    padding: 16px 20px;
    text-align: left;
  }

  thead th:last-child {
    text-align: right;
  }

  tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
  }

  tbody tr:last-child {
    border-bottom: none;
  }

  /* Japan rows */
  tbody tr.row-japan {
    background: var(--white);
  }

  tbody tr.row-japan:hover {
    background: var(--red-faint);
  }

  /* Revia rows */
  tbody tr.row-revia {
    background: var(--purple-faint);
  }

  tbody tr.row-revia:hover {
    background: #ede5f8;
  }

  td {
    padding: 20px 20px;
    vertical-align: middle;
  }

  .td-label {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.65;
  }

  .td-price {
    text-align: right;
    white-space: nowrap;
  }

  /* Japan prices */
  .row-japan .td-price .price-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--red-muted);
    letter-spacing: 0.02em;
  }

  .row-japan .td-price .price-note {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
    letter-spacing: 0.05em;
  }

  /* Revia prices */
  .row-revia .td-label {
    color: var(--purple-deep);
  }

  .revia-tag {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--white);
    background: var(--purple-badge);
    padding: 2px 8px;
    border-radius: 50px;
    margin-right: 6px;
    vertical-align: middle;
  }

  .row-revia .td-price .price-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--purple-mid);
    letter-spacing: 0.02em;
  }

  .row-revia .td-price .price-note {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    color: var(--purple-light);
    margin-top: 2px;
    letter-spacing: 0.05em;
  }

  /* ── HIGHLIGHT CALLOUT ── */
  .callout {
    background: linear-gradient(135deg, var(--purple-deep) 0%, #5e3d9a 100%);
    border-radius: 14px;
    padding: 28px 28px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeUp 0.5s 0.26s ease both;
  }

  .callout-icon {
    font-size: 28px;
    flex-shrink: 0;
  }

  .callout-text {
    flex: 1;
  }

  .callout-text .callout-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
  }

  .callout-text .callout-sub {
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
  }

  .callout-badge {
    flex-shrink: 0;
    background: var(--gold);
    color: var(--white);
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.05em;
  }

  /* ── CTA BUTTON ── */
  .cta-wrap {
    text-align: center;
    animation: fadeUp 0.5s 0.32s ease both;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--purple-deep);
    color: var(--white);
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.08em;
    padding: 18px 40px;
    border-radius: 60px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(46, 42, 74, 0.22);
  }

  .cta-btn::before {
    content: '◆';
    font-size: 8px;
    color: var(--gold);
  }

  .cta-btn:hover {
    background: var(--purple-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(123, 94, 167, 0.32);
  }

  .cta-note {
    margin-top: 12px;
    font-family: 'Noto Serif JP', serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.05em;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 540px) {
    .pricing-section { padding: 52px 16px 60px; }
    td { padding: 16px 14px; }
    .td-label { font-size: 13px; }
    .row-revia .td-price .price-main { font-size: 18px; }
    .callout { flex-direction: column; text-align: center; gap: 14px; }
    .cta-btn { padding: 16px 28px; font-size: 14px; }
  }

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

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
  }

  .pricing-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 72px 24px 80px;
  }

  /* ── HEADER ── */
  .pricing-header {
    text-align: center;
    margin-bottom: 52px;
    animation: fadeUp 0.6s ease both;
  }

  .pricing-header .en {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(30px, 10vw, 44px);
    color: var(--purple-deep);
    letter-spacing: 0.14em;
    line-height: 1;
    display: block;
  }

  .pricing-header .ja {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.25em;
    color: var(--text-light);
    margin-top: 10px;
  }

  /* ── POLICY NOTE ── */
  .policy-note {
    background: var(--purple-faint);
    border: 1px solid var(--purple-pale);
    border-radius: 10px;
    padding: 18px 24px;
    margin-bottom: 48px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: fadeUp 0.6s 0.08s ease both;
  }

  .policy-note-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--purple-badge);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }

  .policy-note-icon::after {
    content: 'i';
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--white);
    line-height: 1;
  }

  .policy-note p {
    font-family: 'Noto Serif JP', serif;
    font-size: 13.5px;
    font-weight: 300;
    color: var(--purple-deep);
    line-height: 1.8;
  }

  .policy-note strong {
    font-weight: 500;
  }

  /* ── SECTION LABEL ── */
  .section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    animation: fadeUp 0.5s 0.12s ease both;
  }

  .section-label::before,
  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  .section-label span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    color: var(--purple-light);
    white-space: nowrap;
  }

  /* ── COMPARISON TABLE ── */
  .comparison-wrap {
    animation: fadeUp 0.5s 0.18s ease both;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 40px;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }

  thead tr {
    background: var(--purple-deep);
  }

  thead th {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.75);
    padding: 16px 20px;
    text-align: left;
  }

  thead th:last-child {
    text-align: right;
  }

  tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
  }

  tbody tr:last-child {
    border-bottom: none;
  }

  /* Japan rows */
  tbody tr.row-japan {
    background: var(--white);
  }

  tbody tr.row-japan:hover {
    background: var(--red-faint);
  }

  /* Revia rows */
  tbody tr.row-revia {
    background: var(--purple-faint);
  }

  tbody tr.row-revia:hover {
    background: #ede5f8;
  }

  td {
    padding: 20px 20px;
    vertical-align: middle;
  }

  .td-label {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.65;
  }

  .td-price {
    text-align: right;
    white-space: nowrap;
  }

  /* Japan prices */
  .row-japan .td-price .price-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--red-muted);
    letter-spacing: 0.02em;
  }

  .row-japan .td-price .price-note {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
    letter-spacing: 0.05em;
  }

  /* Revia prices */
  .row-revia .td-label {
    color: var(--purple-deep);
  }

  .revia-tag {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--white);
    background: var(--purple-badge);
    padding: 2px 8px;
    border-radius: 50px;
    margin-right: 6px;
    vertical-align: middle;
  }

  .row-revia .td-price .price-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--purple-mid);
    letter-spacing: 0.02em;
  }

  .row-revia .td-price .price-note {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    color: var(--purple-light);
    margin-top: 2px;
    letter-spacing: 0.05em;
  }

  /* ── HIGHLIGHT CALLOUT ── */
  .callout {
    background: linear-gradient(135deg, var(--purple-deep) 0%, #5e3d9a 100%);
    border-radius: 14px;
    padding: 28px 28px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeUp 0.5s 0.26s ease both;
  }

  .callout-icon {
    font-size: 28px;
    flex-shrink: 0;
  }

  .callout-text {
    flex: 1;
  }

  .callout-text .callout-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
  }

  .callout-text .callout-sub {
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
  }

  .callout-badge {
    flex-shrink: 0;
    background: var(--gold);
    color: var(--white);
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.05em;
  }

  /* ── CTA BUTTON ── */
  .cta-wrap {
    text-align: center;
    animation: fadeUp 0.5s 0.32s ease both;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--purple-deep);
    color: var(--white);
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.08em;
    padding: 18px 40px;
    border-radius: 60px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(46, 42, 74, 0.22);
  }

  .cta-btn::before {
    content: '◆';
    font-size: 8px;
    color: var(--gold);
  }

  .cta-btn:hover {
    background: var(--purple-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(123, 94, 167, 0.32);
  }

  .cta-note {
    margin-top: 12px;
    font-family: 'Noto Serif JP', serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.05em;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 540px) {
    .pricing-section { padding: 52px 16px 60px; }
    td { padding: 16px 14px; }
    .td-label { font-size: 13px; }
    .row-revia .td-price .price-main { font-size: 18px; }
    .callout { flex-direction: column; text-align: center; gap: 14px; }
    .cta-btn { padding: 16px 28px; font-size: 14px; }
  }

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

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
  }

  .reg-flow-section {
    max-width: 680px;
    margin: 0 auto;
    padding: 72px 24px 80px;    background: #f8f6fc;

  }

  /* ── HEADER ── */
  .reg-flow-header {
    text-align: center;
    margin-bottom: 52px;
    animation: fadeUp 0.6s ease both;
  }

  .reg-flow-header .en {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(30px, 12vw, 34px);
    letter-spacing: 0.18em;
    color: var(--purple-deep);
    display: block;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .reg-flow-header h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 0.3em;
    line-height: 1;
  }

  /* ── FLOW LIST ── */
  .reg-flow-list {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  /* vertical line */
  .reg-flow-list::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 52px;
    bottom: 52px;
    width: 2px;
    background: linear-gradient(to bottom, var(--purple-pale), var(--purple-light), var(--purple-pale));
  }

  /* ── STEP ITEM ── */
  .reg-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    margin-bottom: 8px;
    animation: fadeUp 0.5s ease both;
    position: relative;
  }

  .reg-step:nth-child(1) { animation-delay: 0.08s; }
  .reg-step:nth-child(2) { animation-delay: 0.16s; }
  .reg-step:nth-child(3) { animation-delay: 0.24s; }
  .reg-step:nth-child(4) { animation-delay: 0.32s; }
  .reg-step:nth-child(5) { animation-delay: 0.40s; }

  /* circle icon */
  .reg-step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 2px solid var(--purple-pale);
    background: var(--white);
    transition: transform 0.2s;
  }

  .reg-step-circle i {
    font-size: 18px;
    color: var(--purple-mid);
    margin-bottom: 1px;
  }

  .reg-step-circle .reg-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--purple-light);
    line-height: 1;
  }

  /* special colors */
  .reg-step.reg-step-highlight .reg-step-circle {
    background: var(--purple-deep);
    border-color: var(--purple-deep);
  }

  .reg-step.reg-step-highlight .reg-step-circle i {
    color: var(--white);
  }

  .reg-step.reg-step-highlight .reg-step-circle .reg-step-num {
    color: rgba(255,255,255,0.55);
  }

  .reg-step.reg-step-complete .reg-step-circle {
    background: var(--purple-faint);
    border-color: var(--purple-pale);
  }

  /* card body */
  .reg-step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 0;
    transition: box-shadow 0.25s, border-color 0.25s;
  }

  .reg-step-card:hover {
    box-shadow: 0 6px 24px rgba(74,53,104,0.09);
    border-color: var(--purple-pale);
  }

  .reg-step.reg-step-highlight .reg-step-card {
    background: var(--purple-faint);
    border-color: var(--purple-pale);
  }

  .reg-step-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10.5px;
    letter-spacing: 0.28em;
    color: var(--purple-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
  }

  .reg-step-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--purple-deep);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    line-height: 1.5;
  }

  .reg-step.reg-step-highlight .reg-step-title {
    color: var(--purple-deep);
  }

  .reg-step-desc {
    font-family: 'Noto Serif JP', serif;
    font-size: 13.5px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.85;
  }

  /* tag badges */
  .reg-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
  }

  .reg-step-tag {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid var(--border);
    color: var(--text-light);
  }

  .reg-step-tag.required {
    background: var(--purple-faint);
    border-color: var(--purple-pale);
    color: var(--purple-mid);
  }

  .reg-step-tag.warning {
    background: #fff8ec;
    border-color: #f0ddb0;
    color: #a07020;
  }

  /* form fields preview */
  .form-fields {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-field {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-mid);
  }

  .form-field i {
    width: 16px;
    text-align: center;
    color: var(--purple-light);
    font-size: 13px;
    flex-shrink: 0;
  }

  .form-field.field-required i {
    color: var(--purple-mid);
  }

  .form-field .field-note {
    font-size: 11px;
    color: var(--text-light);
    margin-left: 4px;
  }

  /* checkbox warning */
  .checkbox-notice {
    margin-top: 12px;
    padding: 10px 14px;
    background: #fff8ec;
    border: 1px solid #f0ddb0;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Noto Serif JP', serif;
    font-size: 12.5px;
    font-weight: 300;
    color: #7a5800;
    line-height: 1.75;
  }

  .checkbox-notice i {
    color: #c9900a;
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 13px;
  }

    display: flex;
    justify-content: flex-start;
    padding-left: 27px;
    margin: 2px 0;
    position: relative;
    z-index: 1;
  }

    color: var(--purple-light);
    font-size: 14px;
    opacity: 0.7;
  }

  /* complete step */
  .reg-step.reg-step-complete .reg-step-card {
    background: linear-gradient(135deg, var(--purple-faint) 0%, #ede4fa 100%);
    border-color: var(--purple-pale);
  }

  .reg-step.reg-step-complete .reg-step-title {
    color: var(--purple-mid);
  }

  /* ── STEP INLINE BUTTON ── */
  .reg-step-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--white);
    background: var(--purple-deep);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 3px 14px rgba(46,42,74,0.18);
  }

  .reg-step-btn i {
    font-size: 11px;
    color: var(--gold);
  }

  .reg-step-btn:hover {
    background: var(--purple-mid);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(123,94,167,0.28);
  }

  /* ── STEP01 CTA BUTTON ── */
  .reg-step-cta-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    padding: 11px 22px;
    background: var(--purple-deep);
    color: var(--white);
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 3px 14px rgba(46,42,74,0.18);
  }

  .reg-step-cta-btn:hover {
    background: var(--purple-mid);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(123,94,167,0.28);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 480px) {
    .reg-flow-section { padding: 52px 16px 60px; }
    .reg-step { grid-template-columns: 48px 1fr; gap: 14px; }
    .reg-step-circle { width: 48px; height: 48px; }
    .reg-step-circle i { font-size: 16px; }
    .reg-flow-list::before { left: 23px; }
    .reg-step-card { padding: 18px 16px; }
  }

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

  body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.8;
  }

  .faq-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 72px 24px 80px;
  }

  /* ── HEADING ── */
  .faq-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .faq-header .en {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(30px, 14vw, 60px);
    color: var(--purple-deep);
    letter-spacing: 0.15em;
    line-height: 1;
    display: block;
  }

  .faq-header .ja {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.25em;
    color: var(--text-light);
    margin-top: 12px;
  }

  /* ── LIST ── */
  .faq-list {
    display: flex;
    flex-direction: column;
  }

  .faq-item {
    border-top: 1px solid var(--border);
    padding: 36px 0;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    cursor: pointer;
  }

  .faq-item:last-child {
    border-bottom: 1px solid var(--border);
  }

  .faq-q-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--purple-badge);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .faq-q-badge span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
  }

  .faq-question {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
    transition: color 0.2s;
  }

  .faq-item:hover .faq-question {
    color: var(--purple-mid);
  }

  .faq-answer {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: 14.5px;
    color: var(--text-mid);
    line-height: 2.05;
    overflow: hidden;
    max-height: 600px;
    opacity: 1;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  .faq-item.collapsed .faq-answer {
    max-height: 0;
    opacity: 0;
  }

  .faq-item.collapsed .faq-question {
    margin-bottom: 0;
  }

  .faq-toggle {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .faq-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 4px;
    position: relative;
  }

  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--purple-mid);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .faq-icon::before {
    width: 14px; height: 1.5px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }

  .faq-icon::after {
    width: 1.5px; height: 14px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }

  .faq-item:not(.collapsed) .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
  }

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

  .faq-header { animation: fadeUp 0.6s ease both; }
  .faq-item:nth-child(1) { animation: fadeUp 0.5s 0.08s ease both; }
  .faq-item:nth-child(2) { animation: fadeUp 0.5s 0.18s ease both; }

  @media (max-width: 480px) {
    .faq-section { padding: 52px 20px 60px; }
    .faq-item { gap: 14px; grid-template-columns: 38px 1fr; }
    .faq-q-badge { width: 36px; height: 36px; }
    .faq-question { font-size: 15px; }
    .faq-answer { font-size: 14px; }
  }

/* ==================== SP_WIDGET_7 ==================== */
/* ========== LINE CTA SECTION ========== */
.line-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #3d2f78 0%, #5a4a9e 50%, #6b5b9e 100%);
}

.line-cta-inner {
  padding: 60px 28px 64px;
  position: relative;
  z-index: 1;
}

/* 装飾円 */
.line-cta::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -80px; right: -70px;
  pointer-events: none;
}

.line-cta::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -60px; left: -40px;
  pointer-events: none;
}

/* 見出しエリア */
.line-cta-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.32em;
  color: rgba(255,255,255,0.5);
  text-align: center; margin-bottom: 12px;
}

.line-cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px; font-weight: 500;
  color: white; text-align: center;
  line-height: 1.55; letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.line-cta-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px; color: rgba(255,255,255,0.7);
  text-align: center; letter-spacing: 0.06em;
  margin-bottom: 36px;
}

/* カード */
.line-cta-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 30px 24px;
  max-width: 360px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

/* QRエリア */
.line-cta-qr-wrap {
  text-align: center;
  margin-bottom: 0;
}

.line-cta-qr-placeholder {
  width: 128px; height: 128px;
  background: white;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* QRダミーSVG */
.line-cta-qr-placeholder svg {
  display: block;
}

.line-cta-qr-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px; color: #aaa;
  line-height: 1.5; text-align: center;
}

/* 実際のQR画像を使う場合はこちら */
.line-cta-qr-img {
  width: 128px; height: 128px;
  border-radius: 14px;
  display: block; margin: 0 auto 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.line-cta-qr-caption {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px; color: rgba(255,255,255,0.55);
  text-align: center; letter-spacing: 0.06em;
}

/* 区切り */
.line-cta-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 22px 0;
}

.line-cta-divider-line {
  flex: 1; height: 1px;
  background: rgba(255,255,255,0.2);
}

.line-cta-divider-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px; color: rgba(255,255,255,0.5);
  white-space: nowrap; letter-spacing: 0.06em;
}

/* ボタン */
.line-cta-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  background: #06C755;
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 15px 28px;
  border-radius: 50px;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 24px rgba(6,199,85,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.line-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(6,199,85,0.45);
}

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

.line-cta-btn-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px; color: rgba(255,255,255,0.55);
  text-align: center; margin-top: 12px;
  line-height: 1.7; letter-spacing: 0.04em;
}

/* ==================== STICKY_BAR_STYLE ==================== */
/* =============================================
   REVIA スティッキーLINEバー
   WordPress に組み込む場合：
   このCSSを 外観 > カスタマイズ > 追加CSS に追加
   HTMLを footer.php の </body> 直前に追加
============================================= */

/* ── スティッキーバー本体 ── */
.sticky-line-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  background: linear-gradient(135deg, #3d2f78 0%, #5a4a9e 100%);
  border-top: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 -4px 24px rgba(30,20,60,0.25);

  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  /* 下からスライドイン */
  animation: slideUp 0.5s cubic-bezier(0.22,1,0.36,1) 1s both;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* 左テキスト */
.sticky-line-bar-text {
  flex: 1;
  min-width: 0;
}

.sticky-line-bar-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  line-height: 1.6;
  white-space: normal;
}

.sticky-line-bar-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* LINEボタン */
.sticky-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06C755;
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 11px 40px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(6,199,85,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.03em;
}

.sticky-line-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6,199,85,0.5);
}

.sticky-line-btn:active {
  transform: translateY(0);
}

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

/* 閉じるボタン */
.sticky-line-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  padding: 0;
}

.sticky-line-close:hover {
  background: rgba(255,255,255,0.2);
}

.sticky-line-close svg {
  width: 12px;
  height: 12px;
  fill: rgba(255,255,255,0.7);
}

/* ページ下部に余白（バーに隠れないよう） */
body {
  padding-bottom: 72px;
}

/* バーを非表示にするクラス */
.sticky-line-bar.hidden {
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

/* ── レスポンシブ ── */
@media (max-width: 600px) {
  .sticky-line-bar {
    padding: 10px 12px;
    gap: 8px;
  }
  .sticky-line-bar-text {
    flex: 1 1 auto;
    min-width: 0;
  }
  .sticky-line-bar-title {
    font-size: 12px;
    line-height: 1.35;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .sticky-line-btn {
    font-size: 13px;
    padding: 10px 16px;
    flex-shrink: 0;
  }
  /* Hide the redundant login link on mobile — already in header */
  .sticky-login-link { display: none !important; }
  .sticky-close-btn { margin-left: 0; padding: 4px 8px; font-size: 16px; }
}

@media (max-width: 380px) {
  .sticky-line-bar-title br { display: none; }
  .sticky-line-btn { padding: 9px 12px; font-size: 12px; }
}

/* PC では少しリッチに */
@media (min-width: 600px) {
  .sticky-line-bar {
    padding: 14px 32px;
  }

  .sticky-line-bar-title { font-size: 14px; }
  .sticky-line-bar-sub   { font-size: 11px; }
  .sticky-line-btn       { font-size: 14px; padding: 12px 28px; }
  .sticky-line-icon      { width: 20px; height: 20px; }

  body { padding-bottom: 80px; }
}
/* ==================== LAYOUT: SP-FRAME TWO-COLUMN ==================== */

/* Reset & base */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Two-column wrapper: PC = aside + sp-frame side by side (matches original pc-fix.css spec) */
.sp-frame-wrap {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  width: 100%;
}

/* PC left aside: LINE CTA panel (hidden on mobile) */
.sp-frame-aside {
  display: none;
  background: var(--purple-faint, #f5f0fb);
  flex-shrink: 0;
}

/* Right: scrollable smartphone-frame column */
.sp-frame {
  flex: 1 1 auto;
  min-height: 100vh;
  width: 100%;
}

/* Hero image: full width within sp-frame */
.sp-frame-hero {
  width: 100%;
  display: block;
  line-height: 0;
}

.sp-frame-hero img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Revia_09 accent image */
.sp-frame-accent {
  width: 100%;
  display: block;
  line-height: 0;
}

.sp-frame-accent img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Before/after gallery */
.before-after-section {
  padding: 48px 20px;
  background: var(--purple-faint, #f5f0fb);
}

.before-after-header {
  text-align: center;
  margin-bottom: 32px;
}

.before-after-header .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold, #c9a96e);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.before-after-header .ja {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--purple-deep, #2e2a4a);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}

.before-after-grid img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* PC layout: aside + sp-frame side by side, each 430px, 40px gap, centered in 960px
   Faithfully matches original WordPress pc-fix.css spec */
@media (min-width: 1024px) {
  html, body {
    height: 100% !important;
    overflow: hidden !important;
  }

  .sp-frame-wrap {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 40px !important;
    width: 100% !important;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 0 40px 0;
    height: 100vh;
    box-sizing: border-box;
  }

  .sp-frame-aside {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 430px !important;
    width: 430px !important;
    max-width: 430px !important;
    height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    order: 1 !important;
    scrollbar-width: none;
  }
  .sp-frame-aside::-webkit-scrollbar { display: none; }

  .sp-frame {
    flex: 0 0 430px !important;
    width: 430px !important;
    max-width: 430px !important;
    height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    order: 2 !important;
    background: #fff !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .sp-frame::-webkit-scrollbar { display: none; }

  /* Hide mobile hamburger on PC */
  .rv-hamburger { display: none !important; }

  /* Hide floating header (logo overlays hero top) on PC */
  .rv-header { display: none !important; }

  /* Hide bottom sticky LINE bar on PC — left aside already shows LINE CTA */
  .sticky-line-bar { display: none !important; }

  /* Hero: let image flow at natural aspect ratio (image-based 1-column LP spec) */
  .rv-hero { overflow: visible !important; }
  .rv-hero-img-wrap {
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
  }
  .rv-hero-img {
    height: auto !important;
    width: 100% !important;
    object-fit: contain !important;
  }

  /* LP spec: main column is image-stack 1-column. Collapse all multi-col grids
     inside the sp-frame so nothing splits into 2 columns on PC. */
  .sp-frame .ba-grid,
  .sp-frame .before-after-grid,
  .sp-frame .reasons-grid,
  .sp-frame .synergy-section,
  .sp-frame .safety-reasons,
  .sp-frame .howto-step,
  .sp-frame [class*="-grid"],
  .sp-frame [class*="-reasons"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Safety net: nothing inside the 430px mobile-spec frame may exceed its width.
     The LP was authored with @media (min-width:769px) desktop rules that assume
     a full-width viewport; on PC (>=1024px) those rules activate inside the
     430px sp-frame and cause overflow/clipping. Force mobile behavior. */
  .sp-frame,
  .sp-frame * {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  .sp-frame img,
  .sp-frame picture,
  .sp-frame video,
  .sp-frame svg {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  /* Let decorative overlays keep their own sizing */
  .sp-frame .hero::before,
  .sp-frame .line-icon {
    max-width: none !important;
  }
}

/* Ultra-wide: a little more breathing room */
@media (min-width: 1440px) {
  .sp-frame-wrap {
    max-width: 1000px;
    gap: 60px !important;
  }
}

/* Mobile: normal page scroll */
@media (max-width: 1023px) {
  body {
    overflow-x: hidden;
  }

  .sp-frame-wrap {
    display: block;
  }

  .sp-frame-aside {
    display: none !important;
  }

  .sp-frame {
    width: 100%;
    box-shadow: none;
  }
}

/* ========== HERO SECTION ========== */
.rv-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.rv-hero-img-wrap {
  width: 100%;
  height: 65vh;
  min-height: 340px;
  max-height: 600px;
  display: block;
  line-height: 0;
}

.rv-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.rv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 27, 46, 0.8) 0%, rgba(30, 27, 46, 0.2) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
}

.rv-hero-content {
  padding: 40px 24px;
  color: #fff;
  width: 100%;
}

.rv-hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.rv-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 400;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 14px;
}

.rv-hero-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 28px;
}

.rv-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--line-green, #06C755);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.rv-hero-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ========== BEFORE-AFTER SECTION ========== */
.ba-section {
  padding: 48px 20px;
  background: var(--purple-faint, #f5f0fb);
}

.ba-header {
  text-align: center;
  margin-bottom: 28px;
}

.ba-header .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold, #c9a96e);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ba-header .ja {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--purple-deep, #2e2a4a);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
}

.ba-item {
  overflow: hidden;
  border-radius: 8px;
  line-height: 0;
}

.ba-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.ba-cta-wrap {
  text-align: center;
}

.ba-cta-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 1.5px solid var(--purple-mid, #7b5ea7);
  color: var(--purple-mid, #7b5ea7);
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.ba-cta-btn:hover {
  background: var(--purple-mid, #7b5ea7);
  color: #fff;
}

/* ============================================================
   REMEDIATION: additive styles for HTML class vocabulary
   Mystic palette · Cormorant Garamond / Noto Serif JP / Noto Sans JP
   ============================================================ */

/* ---------- Shared section chrome ---------- */
.howto-section,
.benefits-hero,
.revia-safety,
.reg-flow-section,
.faq-section {
  position: relative;
  padding: clamp(56px, 7vw, 112px) 20px;
  background: linear-gradient(180deg, #fbf9ff 0%, #f5f0fb 100%);
  color: var(--text-dark, #1e1c2e);
}
.howto-section::before,
.benefits-hero::before,
.revia-safety::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169,143,212,.4), transparent);
}

/* Shared header treatment */
.howto-header,
.benefits-header,
.safety-header,
.reg-flow-header,
.pricing-header,
.faq-header,
.course-flow-header,
.safety-comparison-header,
.benefits-intro {
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 56px);
  text-align: center;
}
.howto-header h2,
.benefits-header h2,
.safety-header h2,
.reg-flow-header h2 {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: .04em;
  font-size: clamp(28px, 4.2vw, 44px);
  color: var(--purple-deep, #2e2a4a);
  margin: 0 0 12px;
}
.howto-header p,
.benefits-header p,
.safety-header p,
.reg-flow-header p,
.benefits-intro p {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid, #3d3a52);
}

/* ---------- HOWTO / Flow ---------- */
.howto-steps {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  max-width: 960px;
  margin: 0 auto;
}
.howto-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: clamp(20px, 3vw, 32px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px -20px rgba(46,42,74,.25);
  border: 1px solid rgba(169,143,212,.18);
  position: relative;
  overflow: hidden;
}
.howto-step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at 0 0, rgba(201,169,110,.18), transparent 70%);
}
.howto-step-img {
  line-height: 0;
  border-radius: 12px;
  overflow: hidden;
}
.howto-step-img img {
  width: 100%;
  height: clamp(180px, 28vw, 260px);
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.howto-step:hover .howto-step-img img { transform: scale(1.04); }

.howto-step-body { display: flex; flex-direction: column; gap: 12px; }
.howto-step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  color: var(--gold, #c9a96e);
  letter-spacing: .05em;
  line-height: 1;
}
.howto-step-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--purple-deep, #2e2a4a);
  margin: 0;
  line-height: 1.5;
}
.howto-step-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-mid, #3d3a52);
  margin: 0;
}
.howto-step-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.howto-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--purple-faint, #f5f0fb);
  color: var(--purple-mid, #7b5ea7);
  letter-spacing: .05em;
}
.howto-step-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.howto-btn-line,
.howto-btn-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.howto-btn-line {
  background: var(--line-green, #06C755);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(6,199,85,.6);
}
.howto-btn-line:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(6,199,85,.7); }
.howto-btn-sub {
  background: transparent;
  color: var(--purple-mid, #7b5ea7);
  border: 1.5px solid var(--purple-mid, #7b5ea7);
}
.howto-btn-sub:hover { background: var(--purple-mid, #7b5ea7); color: #fff; }

@media (min-width: 769px) {
  .howto-step { grid-template-columns: 380px 1fr; align-items: center; }
  .howto-step-rev { direction: rtl; }
  .howto-step-rev > * { direction: ltr; }
}

/* ---------- COURSE flow (phases + cs-steps) ---------- */
.course-flow {
  max-width: 960px;
  margin: clamp(56px, 7vw, 96px) auto 0;
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px dashed rgba(123,94,167,.3);
}
.course-flow-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--purple-deep, #2e2a4a);
  font-weight: 500;
  letter-spacing: .04em;
  margin: 0 0 10px;
}
.course-flow-header p {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-mid, #3d3a52);
}
.course-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 32px 0 40px;
}
.course-phase {
  padding: 18px 20px;
  background: #fff;
  border-radius: 12px;
  border-left: 3px solid var(--purple-light, #a98fd4);
  box-shadow: 0 4px 14px -10px rgba(46,42,74,.2);
  transition: transform .25s ease, box-shadow .25s ease;
}
.course-phase:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px -14px rgba(46,42,74,.35);
  border-left-color: var(--gold, #c9a96e);
}
.phase-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--purple-mid, #7b5ea7);
  font-weight: 600;
  margin-bottom: 6px;
}
.phase-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--purple-deep, #2e2a4a);
  margin: 0 0 4px;
}
.phase-period {
  font-size: 12px;
  color: var(--text-light, #7a6f8a);
  margin: 0;
}

.course-steps { display: grid; gap: 16px; }
.course-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px -14px rgba(46,42,74,.25);
  position: relative;
}
.course-step::before {
  content: "";
  position: absolute;
  left: 44px;
  top: 60px;
  bottom: -16px;
  width: 2px;
  background: linear-gradient(180deg, var(--purple-light, #a98fd4), transparent);
}
.course-step:last-child::before { display: none; }
.cs-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid, #7b5ea7), var(--purple-light, #a98fd4));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  flex-shrink: 0;
  z-index: 1;
}
.cs-body { display: flex; flex-direction: column; gap: 6px; }
.cs-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--purple-deep, #2e2a4a);
  margin: 0;
}
.cs-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-mid, #3d3a52);
  margin: 0;
}
.cs-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.cs-btn-line,
.cs-btn-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 12px;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.cs-btn-line {
  background: var(--line-green, #06C755);
  color: #fff;
}
.cs-btn-line:hover { transform: translateY(-1px); }
.cs-btn-sub {
  background: var(--purple-faint, #f5f0fb);
  color: var(--purple-mid, #7b5ea7);
  border: 1px solid transparent;
}
.cs-btn-sub:hover { border-color: var(--purple-mid, #7b5ea7); }

/* ---------- BENEFITS accordion ---------- */
.benefits-accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefit-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(169,143,212,.2);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.benefit-card:hover { box-shadow: 0 10px 24px -16px rgba(46,42,74,.3); border-color: var(--purple-light, #a98fd4); }
.benefit-card-header {
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}
.benefit-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-faint, #f5f0fb), var(--purple-pale, #e8dff5));
}
.benefit-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--purple-deep, #2e2a4a);
  margin: 0;
  line-height: 1.5;
}
.benefit-chevron {
  color: var(--purple-mid, #7b5ea7);
  transition: transform .3s ease;
  font-size: 14px;
}
.benefit-card:not(.collapsed) .benefit-chevron { transform: rotate(180deg); }
.benefit-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1);
  padding: 0 20px;
}
.benefit-card:not(.collapsed) .benefit-card-body {
  max-height: 400px;
  padding: 0 20px 20px;
}
.benefit-card-body p {
  font-size: 13px;
  line-height: 1.95;
  color: var(--text-mid, #3d3a52);
  margin: 0;
  padding-left: 58px;
}

.benefits-accordion-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 40px;
}
.benefits-ctrl-btn {
  padding: 8px 20px;
  font-size: 12px;
  background: transparent;
  border: 1px solid var(--purple-mid, #7b5ea7);
  color: var(--purple-mid, #7b5ea7);
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.benefits-ctrl-btn:hover { background: var(--purple-mid, #7b5ea7); color: #fff; }

/* Synergy block */
.synergy-section {
  max-width: 900px;
  margin: clamp(48px, 6vw, 80px) auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: clamp(24px, 3vw, 40px);
  background: linear-gradient(135deg, var(--purple-deep, #2e2a4a), #3a3460);
  border-radius: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.synergy-section::after {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 60%; height: 180%;
  background: radial-gradient(ellipse, rgba(201,169,110,.18), transparent 60%);
  pointer-events: none;
}
.synergy-img-wrap { line-height: 0; border-radius: 14px; overflow: hidden; }
.synergy-img-wrap img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; }
.synergy-body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.synergy-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold, #c9a96e);
  font-size: 14px;
  letter-spacing: .1em;
}
.synergy-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 26px);
  margin: 0;
  line-height: 1.5;
}
.synergy-desc { font-size: 13.5px; line-height: 1.9; opacity: .85; margin: 0; }
.synergy-btn {
  align-self: flex-start;
  padding: 11px 24px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: background .2s, border-color .2s;
}
.synergy-btn:hover { background: var(--gold, #c9a96e); border-color: var(--gold, #c9a96e); }

@media (min-width: 769px) {
  .synergy-section { grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
}

.benefits-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}
.benefits-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--line-green, #06C755);
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 12px 28px -14px rgba(6,199,85,.6);
  transition: transform .2s, box-shadow .2s;
}
.benefits-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(6,199,85,.7); }
.benefits-cta-sub {
  font-size: 12px;
  color: var(--purple-mid, #7b5ea7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- SAFETY ---------- */
.safety-comparison {
  max-width: 860px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.safety-comparison-header h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--purple-deep, #2e2a4a);
  margin: 0 0 16px;
  text-align: center;
}
.safety-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px -16px rgba(46,42,74,.3);
}
.safety-table thead th {
  background: var(--purple-deep, #2e2a4a);
  color: #fff;
  padding: 14px 12px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .05em;
  text-align: left;
}
.safety-table thead th.revia-col {
  background: linear-gradient(135deg, var(--gold, #c9a96e), #d8bd85);
  color: var(--purple-deep, #2e2a4a);
  font-weight: 600;
}
.safety-table tbody td {
  padding: 12px;
  border-bottom: 1px solid rgba(169,143,212,.15);
  color: var(--text-mid, #3d3a52);
  line-height: 1.6;
}
.safety-table tbody td.revia-col {
  background: var(--purple-faint, #f5f0fb);
  color: var(--purple-deep, #2e2a4a);
  font-weight: 500;
}
.safety-table tbody tr:last-child td { border-bottom: none; }

.safety-reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto clamp(32px, 4vw, 48px);
}
.safety-reason {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  border-left: 3px solid var(--purple-mid, #7b5ea7);
  box-shadow: 0 6px 18px -14px rgba(46,42,74,.2);
  transition: transform .25s, border-left-color .25s;
}
.safety-reason:hover { transform: translateY(-3px); border-left-color: var(--gold, #c9a96e); }
.safety-reason-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-faint, #f5f0fb), var(--purple-pale, #e8dff5));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-mid, #7b5ea7);
  font-size: 22px;
  flex-shrink: 0;
}
.safety-reason-body h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--purple-deep, #2e2a4a);
  margin: 0 0 6px;
}
.safety-reason-body p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-mid, #3d3a52);
  margin: 0;
}

@media (min-width: 769px) {
  .safety-reasons { grid-template-columns: 1fr 1fr; gap: 20px; }
}

.safety-caution {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px;
  background: #fff7ec;
  border: 1px solid rgba(201,169,110,.35);
  border-radius: 14px;
}
.safety-caution-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold, #c9a96e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.safety-caution-body h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 600;
  color: #7a5a1f;
  margin: 0 0 10px;
}
.safety-caution-body ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-mid, #3d3a52);
}
.safety-caution-body li { margin-bottom: 4px; }

/* ---------- PRICE enhancements ---------- */
.policy-note {
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 14px 20px;
  background: var(--purple-faint, #f5f0fb);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-mid, #3d3a52);
  text-align: center;
  border: 1px dashed rgba(123,94,167,.3);
}
.section-label {
  display: block;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold, #c9a96e);
  letter-spacing: .15em;
  font-size: 14px;
  margin: 32px 0 16px;
}
.comparison-wrap {
  max-width: 760px;
  margin: 0 auto 32px;
  overflow-x: auto;
}
.comparison-wrap table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px -16px rgba(46,42,74,.25);
}
.comparison-wrap .td-label {
  padding: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--purple-deep, #2e2a4a);
  border-bottom: 1px solid rgba(169,143,212,.15);
  width: 40%;
}
.comparison-wrap .td-price {
  padding: 16px;
  text-align: right;
  border-bottom: 1px solid rgba(169,143,212,.15);
}
.comparison-wrap tr:last-child td { border-bottom: none; }
.row-japan { background: #faf8fc; }
.row-revia { background: linear-gradient(90deg, var(--purple-faint, #f5f0fb), #fff); }
.price-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--purple-deep, #2e2a4a);
  display: block;
}
.row-revia .price-main { color: var(--gold, #c9a96e); font-size: 26px; }
.price-note {
  display: block;
  font-size: 11px;
  color: var(--text-light, #7a6f8a);
  margin-top: 2px;
}
.revia-tag {
  display: inline-block;
  font-size: 10px;
  padding: 3px 8px;
  background: var(--gold, #c9a96e);
  color: #fff;
  border-radius: 10px;
  margin-left: 6px;
  letter-spacing: .08em;
  vertical-align: middle;
}

.callout {
  max-width: 760px;
  margin: 32px auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--purple-deep, #2e2a4a), #3a3460);
  border-radius: 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,169,110,.25), transparent 70%);
}
.callout-text { position: relative; z-index: 1; }
.callout-title {
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
}
.callout-sub { font-size: 13px; opacity: .8; margin: 0; }
.callout-badge {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--gold, #c9a96e);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.cta-wrap {
  text-align: center;
  margin-top: 32px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--line-green, #06C755);
  color: #fff;
  border-radius: 32px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 14px 30px -14px rgba(6,199,85,.6);
  transition: transform .2s, box-shadow .2s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(6,199,85,.7); }
.cta-note {
  font-size: 12px;
  color: var(--text-light, #7a6f8a);
  margin-top: 10px;
}

/* ---------- REGISTER form-fields ---------- */
.form-fields {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding: 16px;
  background: var(--purple-faint, #f5f0fb);
  border-radius: 10px;
}
.form-field {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-mid, #3d3a52);
}
.form-field i { color: var(--purple-mid, #7b5ea7); }
.field-required .field-note {
  font-size: 10px;
  padding: 2px 8px;
  background: #ef4444;
  color: #fff;
  border-radius: 10px;
  letter-spacing: .05em;
}
.checkbox-notice {
  margin-top: 10px;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-mid, #3d3a52);
  background: #fff8e1;
  border-left: 3px solid var(--gold, #c9a96e);
  border-radius: 6px;
}

/* ---------- ACCENT image ---------- */
.accent-image-wrap {
  max-width: 1080px;
  margin: clamp(40px, 5vw, 72px) auto;
  padding: 0 20px;
  line-height: 0;
}
.accent-image {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 20px 40px -24px rgba(46,42,74,.3);
}

/* ---------- FOOTER override ---------- */
.revia-footer {
  background: linear-gradient(180deg, #1a1530 0%, #0f0c22 100%) !important;
  color: #d8d4e8 !important;
  padding: clamp(48px, 6vw, 72px) 24px 28px !important;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}
.revia-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold, #c9a96e), transparent);
}
.revia-footer h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold, #c9a96e);
  font-size: 15px;
  letter-spacing: .12em;
  font-weight: 500;
  margin: 0 0 14px;
}
.revia-footer a {
  color: #b9b3d0;
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}
.revia-footer a:hover { color: #fff; }
.revia-footer ul { list-style: none; padding: 0; margin: 0; }
.revia-footer li { margin-bottom: 8px; }

/* ---------- STICKY bar refinements ---------- */
.sticky-login-link {
  display: inline-flex !important;
  align-items: center;
  padding: 8px 14px;
  background: transparent;
  color: var(--purple-mid, #7b5ea7) !important;
  font-size: 12px;
  border: 1px solid var(--purple-mid, #7b5ea7);
  border-radius: 20px;
  text-decoration: none !important;
  transition: background .2s, color .2s;
  margin-left: 8px;
}
.sticky-login-link:hover {
  background: var(--purple-mid, #7b5ea7);
  color: #fff !important;
}
.sticky-close-btn {
  background: transparent;
  border: none;
  color: var(--text-light, #7a6f8a);
  font-size: 18px;
  cursor: pointer;
  padding: 6px 10px;
  margin-left: 4px;
  transition: color .2s;
}
.sticky-close-btn:hover { color: var(--purple-deep, #2e2a4a); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .howto-step-img img,
  .course-phase,
  .safety-reason,
  .benefit-card,
  .howto-btn-line,
  .cta-btn,
  .benefits-cta-btn { transition: none; }
  .howto-step:hover .howto-step-img img { transform: none; }
}

/* ============================================================
   A11y: skip link + focus ring (launch-day additions)
   ============================================================ */
.skip-link {
  position: fixed;
  top: -40px;
  left: 12px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--purple-deep, #2e2a4a);
  color: #fff;
  font: 500 14px/1 "Noto Sans JP", sans-serif;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--gold, #c9a96e);
  outline-offset: 2px;
}

:focus:not(:focus-visible) { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold, #c9a96e);
  outline-offset: 3px;
  border-radius: 4px;
}
.benefit-card-header:focus-visible,
.faq-question:focus-visible {
  outline-offset: -2px;
}
.benefit-card-header,
.faq-question { cursor: pointer; }

/* ==================== STICKY BAR — FINAL RESPONSIVE OVERRIDES ==================== */
/* Must come after .sticky-login-link / .sticky-close-btn declarations to win cascade */
@media (max-width: 600px) {
  .sticky-line-bar {
    padding: 10px 12px !important;
    gap: 8px !important;
  }
  .sticky-line-bar-text { flex: 1 1 auto; min-width: 0; }
  .sticky-line-bar-title {
    font-size: 12px;
    line-height: 1.35;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .sticky-line-bar-title br { display: none; }
  .sticky-line-btn {
    font-size: 13px !important;
    padding: 10px 16px !important;
    flex-shrink: 0;
  }
  .sticky-login-link { display: none !important; }
  .sticky-close-btn {
    margin-left: 0 !important;
    padding: 4px 8px !important;
    font-size: 16px !important;
  }
}
@media (max-width: 380px) {
  .sticky-line-btn { padding: 9px 12px !important; font-size: 12px !important; }
  .sticky-line-bar-title { font-size: 11px; }
}

/* ========== REVIA IMAGE STACK (pre-rendered LP tiles) ========== */
.revia-stack {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
}
.revia-stack img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

/* ============================================================
   v5 fixes: callout stacking + badge contrast + FAQ Q + hero overlay
   ============================================================ */
.sp-frame .callout {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 14px !important;
}
.sp-frame .callout-badge {
  color: #fff !important;
  font-size: 13px !important;
  font-style: normal !important;
  font-family: 'Noto Serif JP', serif !important;
  background: var(--gold, #c9a96e) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  align-self: flex-start !important;
  white-space: nowrap !important;
}
.sp-frame .faq-q-badge {
  background: var(--purple-deep, #3a3460) !important;
}
.sp-frame .faq-q-badge span {
  color: #fff !important;
}
.sp-frame .rv-hero-eyebrow,
.sp-frame .rv-hero-title,
.sp-frame .rv-hero-sub,
.sp-frame .rv-hero-cta,
.sp-frame .rv-hero-copy {
  display: none !important;
}

/* ============================================================
   v6: hide LINE button in hero + PC header nav
   ============================================================ */

/* PC nav inside header: hidden on mobile */
.rv-nav-pc { display: none; }

/* Hide the LINE CTA button inside hero on all viewports (duplicates aside CTA) */
.sp-frame .rv-hero-btn { display: none !important; }

@media (min-width: 1024px) {
  /* Unhide header on PC (override v-earlier display:none !important) */
  .rv-header {
    display: flex !important;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 68px;
    padding: 0 32px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(1.2) blur(10px);
    -webkit-backdrop-filter: saturate(1.2) blur(10px);
    border-bottom: 1px solid rgba(46, 42, 74, 0.08);
    z-index: 100;
    align-items: center;
    justify-content: space-between;
  }
  .rv-header .rv-logo { font-size: 24px; }
  .rv-header .rv-logo span {
    display: inline-block;
    margin-left: 10px;
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--purple-light, #7a6fa8);
    text-transform: uppercase;
  }

  .rv-hamburger { display: none !important; }

  .rv-nav-pc {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .rv-nav-pc ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .rv-nav-pc li { margin: 0; }
  .rv-nav-pc a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.22em;
    color: var(--purple-deep, #2e2a4a);
    text-decoration: none;
    padding: 6px 0;
    position: relative;
    transition: color .2s ease;
  }
  .rv-nav-pc a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 1px;
    background: var(--gold, #c9a96e);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s ease;
  }
  .rv-nav-pc a:hover { color: var(--gold, #c9a96e); }
  .rv-nav-pc a:hover::after { transform: scaleX(1); }

  .rv-nav-pc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #06C755;
    color: #fff !important;
    border-radius: 999px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
  }
  .rv-nav-pc-cta::after { display: none !important; }
  .rv-nav-pc-cta:hover {
    background: #05b04c;
    transform: translateY(-1px);
  }
  .rv-nav-pc-cta i { font-size: 18px; }

  /* Ensure sp-frame-wrap sits below the sticky header cleanly */
  .sp-frame-wrap { padding-top: 0; }
}

/* ============================================================
   v7: fix LINE CTA button layout in PC header
   ============================================================ */
@media (min-width: 1024px) {
  .rv-nav-pc-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    height: 36px !important;
    padding: 0 16px !important;
    background: #06C755 !important;
    color: #fff !important;
    border-radius: 999px !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: 0.04em !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 8px rgba(6, 199, 85, 0.25);
  }
  .rv-nav-pc-cta span {
    display: inline-block;
    line-height: 1;
  }
  .rv-nav-pc-cta-icon {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
    display: block;
  }
  .rv-nav-pc-cta:hover {
    background: #05b04c !important;
    transform: translateY(-1px);
  }
}

/* ============================================================
   v8 — Mobile header: solid white bg + content offset fix
   ============================================================ */
@media (max-width: 1023.98px) {
  .rv-header {
    background: #ffffff !important;
    background-color: #ffffff !important;
    -webkit-backdrop-filter: saturate(1.2);
    backdrop-filter: saturate(1.2);
    border-bottom: 1px solid rgba(46, 42, 74, 0.08) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    height: 56px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }
  .rv-header .rv-logo {
    color: var(--purple-deep, #2e2a4a) !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 16px;
    line-height: 1.1;
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
  }
  .rv-header .rv-logo span {
    color: var(--gold, #c9a96e) !important;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.18em;
    margin-top: 2px;
  }
  .rv-hamburger {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 40px;
    height: 40px;
  }
  .rv-hamburger span,
  .rv-hamburger::before,
  .rv-hamburger::after {
    background: var(--purple-deep, #2e2a4a) !important;
  }
  /* Push content below fixed header so it doesn't collide */
  body { padding-top: 56px !important; }
  .sp-frame-wrap { padding-top: 0 !important; }
}

/* ============================================================
   v8b — Prevent horizontal overflow on mobile (Top image clipping fix)
   ============================================================ */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
@media (max-width: 1023.98px) {
  .sp-frame-wrap,
  .sp-frame,
  .sp-frame-aside {
    max-width: 100vw !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }
  .sp-frame > *,
  .sp-frame section,
  .sp-frame .revia-stack,
  .sp-frame .rv-hero,
  .sp-frame .rv-hero-img-wrap {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .sp-frame img,
  .sp-frame picture,
  .sp-frame video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  /* Ensure aside doesn't occupy layout space on mobile */
  .sp-frame-aside {
    display: none !important;
    width: 0 !important;
    flex-basis: 0 !important;
  }
}

/* ============================================================
   v8c — Hero image: show full natural height on mobile (no crop)
   ============================================================ */
@media (max-width: 1023.98px) {
  .rv-hero-img-wrap {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
  }
  .rv-hero-img,
  .sp-frame .rv-hero img,
  .sp-frame .rv-hero-img-wrap img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center top !important;
    display: block !important;
  }
  .rv-hero,
  .sp-frame .rv-hero {
    min-height: 0 !important;
    height: auto !important;
  }
}

/* ==========================================================================
   SEO / Accessibility — visually-hidden text for crawlers & screen readers
   ========================================================================== */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.seo-content.sr-only {
  /* keep content out of visual flow but crawlable */
  left: -10000px;
}

/* ==========================================================================
   v9 — Hero overlay clear (remove shadow), drawer overlap fix, anchor offset
   ========================================================================== */

/* Hero: remove dark gradient so the image displays clean.
   Text content is kept for SEO but hidden visually via sr-only below. */
.rv-hero-overlay {
  background: transparent !important;
  pointer-events: none !important;
}
.rv-hero-content .rv-hero-eyebrow,
.rv-hero-content .rv-hero-title,
.rv-hero-content .rv-hero-sub {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/* Hide hero floating CTA — the sticky bottom bar already handles LINE CTA */
.rv-hero-content .rv-hero-btn {
  display: none !important;
}

/* Drawer footer: ensure register button isn't hidden behind floating CTA bar */
.rv-drawer-footer {
  padding-bottom: 96px !important;
}
/* Hide sticky bottom CTA bar while drawer is open */
body.drawer-open .sticky-line-bar,
body.rv-drawer-open .sticky-line-bar {
  display: none !important;
}

/* Primary variant for STEP 03 "registration form" CTA */
.reg-step-cta-primary {
  background: linear-gradient(135deg, #3d2f78 0%, #5a4a9e 100%) !important;
  color: #ffffff !important;
  border: none !important;
  margin-top: 12px !important;
}
.reg-step-cta-primary:hover {
  filter: brightness(1.08);
}

/* Scroll-anchor offset so fixed header doesn't cover target */
#service, #service-detail, #flow, #benefits, #safety,
#before-after, #price, #register, #faq,
figure#flow, figure#benefits, figure#safety, figure#before-after {
  scroll-margin-top: 80px;
}

/* ============================================================
   v10 — Desktop (PC) hero/header overlap fix
   On desktop the fixed transparent .rv-header overlayed the top
   of the hero image, clipping the "初上陸" crown decoration.
   Push the page down by the header height and give the header
   a solid surface so it reads as a true bar rather than a
   transparent overlay over the hero artwork.
   ============================================================ */
@media (min-width: 1024px) {
  body {
    padding-top: 64px;
  }
  .rv-header {
    height: 64px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    -webkit-backdrop-filter: saturate(1.15) blur(8px);
    backdrop-filter: saturate(1.15) blur(8px);
    border-bottom: 1px solid rgba(46, 42, 74, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  }
  /* Keep hero proportions, but anchor the image to the top so
     the "初上陸" crown is preserved by the cover crop. */
  .rv-hero-img {
    object-position: center top;
  }
  /* Bump scroll-anchor offset to match desktop header height */
  #service, #service-detail, #flow, #benefits, #safety,
  #before-after, #price, #register, #faq,
  figure#flow, figure#benefits, figure#safety, figure#before-after {
    scroll-margin-top: 84px;
  }
}
