@charset "UTF-8";
/* ユキの恋愛占い LP - Production CSS */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Noto+Serif+JP:wght@300;400;500;600;700;900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Serif JP', 'Shippori Mincho', serif;
  color: #efe7d6;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
  background:
    radial-gradient(ellipse at 50% 0%, #3a2160 0%, transparent 55%),
    radial-gradient(ellipse at 80% 60%, #4b1f4f 0%, transparent 50%),
    linear-gradient(180deg, #150a25 0%, #0c0518 60%, #0a0414 100%);
  background-color: #0a0414;
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Utility Classes ─────────────────────────────── */
.gold { color: #d9b665; }
.gold-grad {
  background: linear-gradient(180deg, #f4dca0 0%, #d9b665 45%, #a07b30 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.serif-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.08em;
}
.serif-jp {
  font-family: 'Shippori Mincho', serif;
}

/* ── Container ─────────────────────────────────────── */
.lp-container {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  overflow: clip;
}

/* ── Divider ───────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #d9b665;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.3em;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d9b665, transparent);
}

/* ── Star Field ────────────────────────────────────── */
.starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.starfield::before, .starfield::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, #fff8e0, transparent),
    radial-gradient(1px 1px at 60% 70%, #fff8e0, transparent),
    radial-gradient(1px 1px at 80% 20%, #fff8e0, transparent),
    radial-gradient(1px 1px at 33% 80%, #fff8e0, transparent),
    radial-gradient(1px 1px at 90% 50%, #fff8e0, transparent),
    radial-gradient(0.5px 0.5px at 10% 60%, #d9b665, transparent),
    radial-gradient(0.5px 0.5px at 70% 40%, #d9b665, transparent),
    radial-gradient(0.5px 0.5px at 45% 15%, #fff, transparent),
    radial-gradient(0.5px 0.5px at 25% 50%, #fff, transparent);
  background-size: 300px 300px;
  opacity: 0.7;
}
.starfield::after {
  background-position: 150px 150px;
  opacity: 0.4;
  animation: twinkle 6s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.2; } to { opacity: 0.7; } }

/* ── Header ────────────────────────────────────────── */
.header {
  z-index: 40;
  padding: 11px 18px;
  background: linear-gradient(180deg, rgba(10,4,20,0.96), rgba(10,4,20,0.78));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(217,182,101,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-logo .moon { font-size: 14px; color: #d9b665; }
.header-logo .title {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  color: #f4dca0;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.header-tag {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: rgba(217,182,101,0.75);
}

/* ── Hero Section ──────────────────────────────────── */
.hero {
  padding: 30px 22px 40px;
  text-align: center;
  position: relative;
}
.hero .moon-bg {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(217,182,101,0.12);
  border: 1px solid rgba(217,182,101,0.4);
  color: #f4dca0;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: 'Shippori Mincho', serif;
}
.hero h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.45;
  color: #f4dca0;
  margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(217,182,101,0.35);
  letter-spacing: 0.02em;
}
.hero h1 .large { font-size: 36px; }
.hero-subtitle {
  font-family: 'Shippori Mincho', serif;
  font-size: 14.5px;
  color: #efe7d6;
  line-height: 1.85;
  margin-top: 18px;
}
.hero-description {
  font-size: 12.5px;
  color: rgba(239,231,214,0.78);
  line-height: 1.85;
  margin-top: 18px;
  font-family: 'Shippori Mincho', serif;
}

/* ── Stats Row ─────────────────────────────────────── */
.stats-row {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 14px 4px;
  border-left: 1px solid rgba(217,182,101,0.25);
}
.stat-item:first-child { border-left: none; }
.stat-value {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  color: #f4dca0;
  font-weight: 800;
  line-height: 1;
}
.stat-unit {
  font-size: 11px;
  color: #d9b665;
  margin-left: 1px;
  font-weight: 600;
}
.stat-label {
  font-size: 9.5px;
  color: rgba(239,231,214,0.65);
  letter-spacing: 0.18em;
  margin-top: 6px;
}

/* ── LINE Button ───────────────────────────────────── */
.line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: 16px 18px;
  background: linear-gradient(180deg, #06c755 0%, #04a647 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.15) inset,
    0 8px 24px rgba(6,199,85,0.35),
    0 2px 0 rgba(0,0,0,0.2);
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.line-btn:active {
  transform: scale(0.98);
}
.line-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 3.5s ease-in-out infinite;
}
@keyframes shine {
  0%, 60% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.line-btn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.line-btn-sub {
  font-size: 11px;
  opacity: 0.95;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.line-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.cta-note {
  font-size: 10.5px;
  color: rgba(239,231,214,0.65);
  letter-spacing: 0.06em;
  margin-top: 8px;
  text-align: center;
}

/* ── FV Gift Summary (FV CTA直下) ─────────────── */
.fv-gift-summary {
  margin: 22px auto 0;
  max-width: 320px;
  padding: 16px 18px 14px;
  background: linear-gradient(180deg, rgba(217,182,101,0.1), rgba(217,182,101,0.03));
  border: 1px solid rgba(217,182,101,0.35);
  border-radius: 12px;
  text-align: left;
  box-shadow: inset 0 0 16px rgba(217,182,101,0.05);
}
.fv-gift-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 13.5px;
  color: #f4dca0;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(217,182,101,0.3);
  letter-spacing: 0.04em;
}
.fv-gift-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}
.fv-gift-list li {
  font-family: 'Shippori Mincho', serif;
  font-size: 12.5px;
  color: rgba(239,231,214,0.92);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.fv-gift-num {
  color: #d9b665;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.fv-gift-footer {
  font-family: 'Shippori Mincho', serif;
  font-size: 12px;
  color: rgba(239,231,214,0.85);
  text-align: center;
  padding-top: 8px;
  border-top: 1px dashed rgba(217,182,101,0.2);
}

/* ── Chat Preview ──────────────────────────────────── */
.chat-preview {
  padding: 40px 22px 50px;
  background: rgba(0,0,0,0.3);
}
.chat-preview h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  color: #f4dca0;
  text-align: center;
  line-height: 1.55;
  margin-bottom: 6px;
  font-weight: 700;
}
.chat-preview h2 .large { font-size: 26px; }
.chat-preview .intro {
  text-align: center;
  font-size: 12px;
  color: rgba(239,231,214,0.78);
  line-height: 1.85;
  margin-top: 12px;
  margin-bottom: 22px;
}
.chat-window {
  background: linear-gradient(180deg, #1a0c2e, #120820);
  border: 1px solid rgba(217,182,101,0.22);
  border-radius: 12px;
  padding: 14px 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg {
  display: flex;
  max-width: 78%;
}
.chat-msg.user {
  justify-content: flex-end;
  margin-left: auto;
}
.chat-msg.user .bubble {
  background: #06c755;
  color: #fff;
  border-radius: 14px 14px 4px 14px;
}
.chat-msg.yuki {
  align-items: flex-end;
  gap: 8px;
}
.chat-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d9b665, #8a5a20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Shippori Mincho', serif;
  color: #0a0414;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.chat-msg .bubble {
  padding: 10px 12px;
  font-size: 12.5px;
  line-height: 1.7;
}
.chat-msg.yuki .bubble {
  background: rgba(244,220,160,0.12);
  border: 1px solid rgba(217,182,101,0.3);
  color: #efe7d6;
  border-radius: 4px 14px 14px 14px;
}
.chat-msg.yuki.continued .bubble {
  border-radius: 14px 14px 14px 4px;
}
.chat-msg .highlight { color: #f4dca0; }
.chat-msg .vision {
  color: #d9b665;
  font-family: 'Shippori Mincho', serif;
}
.chat-note {
  text-align: center;
  font-size: 9.5px;
  color: rgba(239,231,214,0.4);
  margin-top: 4px;
  letter-spacing: 0.1em;
}

/* ── Pain Section ──────────────────────────────────── */
.pain-section {
  padding: 50px 22px;
}
.pain-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  color: #f4dca0;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 26px;
  font-weight: 700;
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pain-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(217,182,101,0.05), rgba(217,182,101,0.01));
  border: 1px solid rgba(217,182,101,0.2);
  border-radius: 6px;
}
.pain-item:nth-child(odd) { transform: rotate(-0.2deg); }
.pain-item:nth-child(even) { transform: rotate(0.2deg); }
.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(217,182,101,0.08);
  border: 1px solid rgba(217,182,101,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.pain-text {
  flex: 1;
  font-family: 'Shippori Mincho', serif;
}
.pain-text .title {
  font-size: 14px;
  color: #f4dca0;
  font-weight: 600;
  line-height: 1.5;
}
.pain-text .sub {
  font-size: 11.5px;
  color: rgba(239,231,214,0.72);
  margin-top: 3px;
}
.pain-cta {
  text-align: center;
  margin-top: 28px;
  padding: 20px 18px;
  background: rgba(217,182,101,0.06);
  border: 1px dashed rgba(217,182,101,0.4);
  border-radius: 6px;
}
.pain-cta p {
  font-family: 'Shippori Mincho', serif;
  font-size: 14.5px;
  color: #f4dca0;
  line-height: 1.85;
  font-weight: 700;
}
.pain-cta .emphasis {
  display: inline-block;
  position: relative;
  color: #ffd0b0;
  font-size: 18px;
}

/* ── Empathy Section ───────────────────────────────── */
.empathy-section {
  padding: 54px 22px;
}
.empathy-section p {
  font-family: 'Shippori Mincho', serif;
  line-height: 2.1;
}
.empathy-section .lead {
  font-size: 15px;
  color: #efe7d6;
}
.empathy-section .body {
  font-size: 13.5px;
  color: rgba(239,231,214,0.85);
  margin-top: 18px;
}
.empathy-box {
  margin-top: 28px;
  padding: 20px 18px;
  border-top: 1px solid rgba(217,182,101,0.3);
  border-bottom: 1px solid rgba(217,182,101,0.3);
  background: rgba(217,182,101,0.04);
}
.empathy-box .title {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  color: #efe7d6;
  line-height: 2;
}
.empathy-box ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.empathy-box li {
  font-size: 12.5px;
  color: #f4dca0;
  font-family: 'Shippori Mincho', serif;
}
.empathy-box .note {
  font-size: 11.5px;
  color: rgba(239,231,214,0.7);
  margin-top: 12px;
  line-height: 1.8;
}

/* ── Sensei Section Redesign ─────────────────────────── */
.sensei-section {
  padding: 54px 0 50px;
  background: linear-gradient(180deg, rgba(75,31,79,0.25), rgba(0,0,0,0.4));
}
.sensei-section .inner { padding: 0 22px; }

.sensei-profile-card {
  margin: 16px 0 24px;
  padding: 24px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(217,182,101,0.2);
  border-radius: 12px;
  text-align: center;
  box-shadow: inset 0 0 20px rgba(217,182,101,0.05);
}

.sensei-photo-circle {
  width: 220px;
  height: 220px;
  margin: 0 auto 16px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #d9b665, #7a5520);
  position: relative;
}

.sensei-img-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid #0c0518;
}

.sensei-badge-circle {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #d9b665;
  color: #0c0518;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.sensei-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 12px;
  color: rgba(239,231,214,0.75);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.sensei-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  color: #f4dca0;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.sensei-stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(217,182,101,0.15);
}

.sensei-stat {
  flex: 1;
}

.sensei-stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #d9b665;
  font-family: 'Inter', sans-serif;
  margin-bottom: 2px;
}
.sensei-stat-value span {
  font-size: 10px;
  margin-left: 2px;
}

.sensei-stat-label {
  font-size: 10px;
  color: rgba(239,231,214,0.6);
}

.sensei-stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(217,182,101,0.15);
}

.sensei-quote {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  color: rgba(239,231,214,0.9);
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.7;
  font-style: italic;
}

.sensei-bio p {
  font-family: 'Shippori Mincho', serif;
  line-height: 2.1;
}
.sensei-bio .intro { font-size: 13.5px; color: #efe7d6; }
.sensei-bio .body {
  font-size: 13px;
  color: rgba(239,231,214,0.88);
  margin-top: 14px;
}
.sensei-bio .closing {
  font-size: 13px;
  color: #f4dca0;
  margin-top: 14px;
  font-weight: 600;
}
.sensei-bio .signature {
  margin-top: 22px;
  text-align: right;
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  color: #f4dca0;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-style: italic;
}

/* ── Reasons Section ───────────────────────────────── */
.reasons-section {
  padding: 54px 22px;
}
.reasons-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  color: #f4dca0;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 28px;
  font-weight: 700;
}
.reasons-section h2 .large { font-size: 30px; }
.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.reason-item {
  position: relative;
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, rgba(217,182,101,0.06), rgba(217,182,101,0.01));
  border: 1px solid rgba(217,182,101,0.25);
  border-radius: 4px;
}
.reason-item .label {
  position: absolute;
  top: -14px;
  left: 14px;
  padding: 4px 12px;
  background: #0a0414;
  border: 1px solid rgba(217,182,101,0.5);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: #d9b665;
  letter-spacing: 0.15em;
}
.reason-item .head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  margin-top: 6px;
}
.reason-item .icon {
  font-size: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(217,182,101,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reason-item h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 15.5px;
  color: #f4dca0;
  font-weight: 700;
  line-height: 1.4;
}
.reason-item .desc {
  font-size: 12.5px;
  color: rgba(239,231,214,0.82);
  line-height: 1.85;
}

/* ── Offer Section ─────────────────────────────────── */
.offer-section {
  padding: 56px 22px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,182,101,0.18), transparent 55%),
    rgba(0,0,0,0.4);
}
.offer-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  color: #f4dca0;
  text-align: center;
  line-height: 1.55;
  margin-bottom: 6px;
  font-weight: 700;
}
.offer-section h2 .large { font-size: 28px; }
.offer-section .subtitle {
  text-align: center;
  font-size: 11px;
  color: rgba(239,231,214,0.7);
  margin-bottom: 26px;
}
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-item {
  position: relative;
  padding: 20px 18px 16px;
  background: linear-gradient(180deg, rgba(217,182,101,0.06), rgba(217,182,101,0.02));
  border: 1px solid rgba(217,182,101,0.3);
  border-radius: 4px;
}
.offer-item .free-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  padding: 3px 10px;
  background: #d9b665;
  color: #1a0a2a;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-family: 'Shippori Mincho', serif;
}
.offer-item .head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.offer-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  color: #d9b665;
  line-height: 1;
}
.offer-item h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  color: #f4dca0;
  font-weight: 700;
}
.offer-item .desc {
  font-size: 12.2px;
  color: rgba(239,231,214,0.82);
  line-height: 1.8;
  margin-left: 32px;
}
.offer-item .price {
  margin-left: 32px;
  margin-top: 8px;
  font-size: 10.5px;
  color: rgba(239,231,214,0.55);
}
.offer-item .price s { text-decoration: line-through; }
.offer-total {
  margin-top: 24px;
  padding: 14px;
  background: rgba(0,0,0,0.4);
  border: 1px dashed rgba(217,182,101,0.5);
  border-radius: 4px;
  text-align: center;
}
.offer-total .label {
  font-size: 11px;
  color: rgba(239,231,214,0.7);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.offer-total .value {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  color: rgba(239,231,214,0.7);
}
.offer-total .value s { text-decoration: line-through; }
.offer-total .value .free {
  font-size: 22px;
  color: #f4dca0;
  font-weight: 800;
  margin-left: 6px;
}

/* ── Countdown ─────────────────────────────────────── */
.countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(217,182,101,0.08), rgba(217,182,101,0.02));
  border: 1px solid rgba(217,182,101,0.3);
  border-radius: 12px;
  margin: 24px 0 18px;
}
.countdown .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #d9b665;
}
.countdown .timer {
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.countdown .time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown .time-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: #f4dca0;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown .time-label {
  font-size: 8px;
  letter-spacing: 0.18em;
  color: rgba(217,182,101,0.7);
  margin-top: 4px;
}
.countdown .separator {
  color: #d9b665;
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
}
.countdown .remaining {
  font-size: 11px;
  color: #efe7d6;
  opacity: 0.85;
  margin-top: 2px;
}
.countdown .remaining strong {
  color: #f4dca0;
  font-weight: 700;
  font-size: 14px;
}

/* ── Tarot Section ─────────────────────────────────── */
.tarot-section {
  padding: 54px 22px;
}
.tarot-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  color: #f4dca0;
  text-align: center;
  line-height: 1.55;
  margin-bottom: 6px;
  font-weight: 700;
}
.tarot-section .hint {
  text-align: center;
  font-size: 11.5px;
  color: rgba(239,231,214,0.7);
  margin-bottom: 26px;
}
.tarot-intro {
  text-align: center;
  font-size: 13px;
  color: rgba(239,231,214,0.85);
  margin-bottom: 18px;
  line-height: 1.7;
}
.tarot-cards {
  display: flex;
  gap: 10px;
  justify-content: center;
  perspective: 800px;
  margin-bottom: 16px;
}
.tarot-card {
  width: 78px;
  height: 124px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4a2570 0%, #2a1248 100%);
  border: 1.5px solid #d9b665;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  transition: all 0.5s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tarot-card:hover:not(.picked):not(.other) {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(217,182,101,0.5), inset 0 0 20px rgba(244,220,160,0.2);
}
.tarot-card.picked {
  transform: translateY(-30px) rotateY(180deg) scale(1.05);
}
.tarot-card.other {
  transform: translateY(20px) scale(0.92);
  opacity: 0.3;
  cursor: default;
}
.tarot-card .inner {
  width: 56px;
  height: 102px;
  border-radius: 4px;
  border: 1px solid rgba(217,182,101,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9b665;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
}
.tarot-note {
  text-align: center;
  font-size: 11px;
  color: rgba(239,231,214,0.5);
  letter-spacing: 0.1em;
}
/* Tarot reveal */
.tarot-reveal {
  animation: fadeIn 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.tarot-reveal .card-display {
  width: 130px;
  height: 200px;
  border-radius: 10px;
  background: linear-gradient(180deg, #1a0a2a 0%, #2a1248 100%);
  border: 2px solid #d9b665;
  box-shadow: 0 0 40px rgba(217,182,101,0.4), inset 0 0 30px rgba(244,220,160,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8px;
  animation: cardFlip 0.6s ease;
}
@keyframes cardFlip {
  from { transform: rotateY(180deg) scale(0.9); opacity: 0; }
  to { transform: rotateY(0) scale(1); opacity: 1; }
}
.tarot-reveal .card-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  color: #d9b665;
  letter-spacing: 0.2em;
}
.tarot-reveal .card-symbol {
  font-size: 64px;
  color: #d9b665;
  line-height: 1;
  text-shadow: 0 0 20px #d9b665;
}
.tarot-reveal .card-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  color: #f4dca0;
  font-weight: 600;
}
.tarot-reveal .message {
  padding: 16px 14px;
  background: rgba(217,182,101,0.06);
  border: 1px solid rgba(217,182,101,0.3);
  border-radius: 10px;
  font-size: 13px;
  color: #efe7d6;
  line-height: 1.85;
  font-family: 'Shippori Mincho', serif;
  text-align: center;
}
.tarot-reveal .next-step {
  padding: 14px;
  background: linear-gradient(180deg, rgba(217,182,101,0.12), rgba(217,182,101,0.04));
  border-radius: 10px;
  border: 1px dashed rgba(217,182,101,0.5);
  text-align: center;
  width: 100%;
}
.tarot-reveal .next-step .label {
  font-size: 12px;
  color: #f4dca0;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.tarot-reveal .next-step p {
  font-size: 13px;
  color: #efe7d6;
  line-height: 1.7;
}
.tarot-reveal .retry {
  font-size: 11px;
  color: rgba(239,231,214,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 4px;
}

/* ── Testimonials ──────────────────────────────────── */
.testimonials-section {
  padding: 54px 0;
  background: rgba(0,0,0,0.32);
}
.testimonials-section .inner { padding: 0 22px; }
.testimonials-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  color: #f4dca0;
  text-align: center;
  line-height: 1.55;
  margin-bottom: 28px;
  font-weight: 700;
}
.testimonial-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 0;
  margin: 0 -20px;
  padding: 0 20px;
  scrollbar-width: none;
}
.testimonial-carousel::-webkit-scrollbar { display: none; }
.testimonial-item {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding-right: 12px;
}
.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(217,182,101,0.18);
  border-radius: 14px;
  padding: 20px;
}
.testimonial-card .stars {
  display: flex;
  gap: 1px;
  color: #d9b665;
  font-size: 13px;
  margin-bottom: 10px;
}
.testimonial-card h4 {
  font-size: 15px;
  color: #f4dca0;
  margin-bottom: 10px;
  line-height: 1.5;
  font-family: 'Shippori Mincho', serif;
}
.ba-card {
  padding: 24px 20px;
}
.ba-label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.ba-label.before {
  background: rgba(255,255,255,0.08);
  color: rgba(239,231,214,0.8);
}
.ba-label.after {
  background: rgba(217,182,101,0.15);
  color: #f4dca0;
}
.ba-text {
  font-size: 13px;
  color: rgba(239,231,214,0.85);
  line-height: 1.7;
  font-family: 'Shippori Mincho', serif;
}
.ba-arrow {
  text-align: center;
  color: #d9b665;
  font-size: 14px;
  margin: 12px 0;
  opacity: 0.8;
}
.testimonial-card .body {
  font-size: 12.5px;
  color: rgba(239,231,214,0.85);
  line-height: 1.85;
}
.testimonial-card .footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(217,182,101,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-card .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(217,182,101,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #efe7d6;
}
.testimonial-card .info {
  font-size: 11px;
  color: rgba(239,231,214,0.7);
  line-height: 1.4;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.testimonial-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(217,182,101,0.25);
  transition: all 0.3s;
  padding: 0;
}
.testimonial-dots .dot.active {
  width: 22px;
  background: #d9b665;
}
.testimonials-note {
  text-align: center;
  font-size: 10px;
  color: rgba(239,231,214,0.4);
  margin-top: 8px;
  letter-spacing: 0.1em;
}

/* ── Process Section ───────────────────────────────── */
.process-section {
  padding: 54px 22px;
}
.process-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  color: #f4dca0;
  text-align: center;
  line-height: 1.55;
  margin-bottom: 28px;
  font-weight: 700;
}
.process-list {
  display: flex;
  flex-direction: column;
}
.process-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(217,182,101,0.25);
}
.process-item:last-child { border-bottom: none; }
.process-item .num {
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  color: #d9b665;
  line-height: 1;
  text-shadow: 0 0 18px rgba(217,182,101,0.3);
}
.process-item h3 {
  font-size: 15px;
  color: #f4dca0;
  margin-bottom: 5px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
}
.process-item .desc {
  font-size: 12.2px;
  color: rgba(239,231,214,0.78);
  line-height: 1.8;
}

/* ── Final CTA Additions (Offer Box & Arrow) ──────────────── */
.offer-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(217,182,101,0.4);
  border-radius: 12px;
  padding: 16px;
  margin: 24px auto;
  max-width: 320px;
  text-align: left;
  box-shadow: inset 0 0 20px rgba(217,182,101,0.05);
}
.offer-title {
  color: #f4dca0;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(217,182,101,0.3);
  padding-bottom: 8px;
}
.offer-list li {
  font-size: 13px;
  color: rgba(239,231,214,0.9);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.offer-list li:last-child {
  margin-bottom: 0;
}
.offer-list .check {
  color: #d9b665;
  font-weight: bold;
}

.bouncing-arrow {
  color: #f4dca0;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  margin: 16px 0 8px;
  animation: bounce 1.5s infinite;
}
.bouncing-arrow span {
  display: inline-block;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* ── FAQ Section ───────────────────────────────────── */
.faq-section {
  padding: 54px 22px;
  background: rgba(0,0,0,0.3);
}
.faq-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  color: #f4dca0;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 700;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border-top: 1px solid rgba(217,182,101,0.2);
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(217,182,101,0.2);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 4px;
  text-align: left;
}
.faq-question .q-wrap {
  display: flex;
  gap: 10px;
}
.faq-question .q-mark {
  color: #d9b665;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  flex-shrink: 0;
}
.faq-question .q-text {
  font-size: 13.5px;
  color: #efe7d6;
  font-weight: 500;
  line-height: 1.55;
}
.faq-question .toggle {
  color: #d9b665;
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-question .toggle.open { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer.open { max-height: 600px; }
.faq-answer .content {
  padding: 0 4px 18px 28px;
  font-size: 12.5px;
  color: rgba(239,231,214,0.78);
  line-height: 1.75;
}

/* ── Final CTA ─────────────────────────────────────── */
.final-cta {
  padding: 60px 22px 40px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(75,31,79,0.3), rgba(0,0,0,0.4));
}
.final-cta .moon-bg {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}
.final-cta .content { position: relative; padding-top: 30px; }
.final-cta .badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(217,182,101,0.15);
  border: 1px solid rgba(217,182,101,0.5);
  color: #f4dca0;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-family: 'Shippori Mincho', serif;
  margin-bottom: 16px;
}
.final-cta h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  color: #f4dca0;
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: 800;
}
.final-cta h2 .large { font-size: 28px; }
.final-cta .lead {
  font-size: 13px;
  color: rgba(239,231,214,0.88);
  line-height: 2;
  margin-bottom: 18px;
  font-family: 'Shippori Mincho', serif;
}
.final-cta .message-box {
  font-size: 12px;
  color: #ffd0b0;
  line-height: 1.85;
  margin-bottom: 24px;
  padding: 12px 14px;
  background: rgba(217,182,101,0.06);
  border: 1px dashed rgba(217,182,101,0.4);
  font-family: 'Shippori Mincho', serif;
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  padding: 24px 22px 100px;
  border-top: 1px solid rgba(217,182,101,0.2);
  font-size: 10px;
  color: rgba(239,231,214,0.45);
  line-height: 1.85;
  text-align: center;
}
.footer .logo {
  margin-bottom: 8px;
  color: rgba(217,182,101,0.7);
  letter-spacing: 0.2em;
  font-family: 'Shippori Mincho', serif;
}
.footer .links a {
  margin: 0 4px;
}
.footer .copyright {
  margin-top: 10px;
  opacity: 0.7;
}

/* ── Sticky CTA ────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,4,20,0.85) 30%, rgba(10,4,20,0.98) 100%);
  z-index: 50;
  backdrop-filter: blur(4px);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
  pointer-events: none;
}
.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta .line-btn {
  max-width: 100%;
}

/* ── Underline decoration ──────────────────────────── */
.underline-wrap {
  position: relative;
  display: inline-block;
}
.underline-svg {
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  width: 100%;
  height: 8px;
}

/* ── Moon SVG ──────────────────────────────────────── */
.moon-svg {
  filter: drop-shadow(0 0 30px rgba(217,182,101,0.5));
}

/* ── Social Proof Bar ──────────────────────────────── */
.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(12, 5, 24, 0.85); /* 視認性を確保するため濃くする */
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(217,182,101,0.25);
  font-size: 13px;
  color: #f4dca0;
  letter-spacing: 0.06em;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.social-proof-bar strong {
  font-size: 15px;
  font-weight: 800;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #06c755;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(6,199,85,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(6,199,85,0); }
}

/* ── Hero Response Badge ───────────────────────────── */
.hero-response-badge {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 14px;
  background: rgba(6,199,85,0.12);
  border: 1px solid rgba(6,199,85,0.35);
  border-radius: 20px;
  font-size: 11px;
  color: rgba(239,231,214,0.9);
  letter-spacing: 0.04em;
}

/* ── Trust Badges ──────────────────────────────────── */
.trust-badges {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(217,182,101,0.04);
  border: 1px solid rgba(217,182,101,0.15);
  border-radius: 8px;
  font-size: 11px;
  color: rgba(239,231,214,0.8);
  line-height: 1.4;
}
.trust-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* ── Chat Typing Indicator ─────────────────────────── */
.chat-typing {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 78%;
  opacity: 0;
  animation: chatFadeIn 0.5s ease forwards;
  animation-delay: 2.5s;
}
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(244,220,160,0.12);
  border: 1px solid rgba(217,182,101,0.3);
  border-radius: 14px;
}
.typing-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d9b665;
  animation: typingBounce 1.4s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ── Chat Animation ────────────────────────────────── */
.chat-animate {
  opacity: 0;
  transform: translateY(10px);
}
.chat-animate.visible {
  animation: chatFadeIn 0.6s ease forwards;
}
.chat-animate:nth-child(1) { animation-delay: 0.3s; }
.chat-animate:nth-child(2) { animation-delay: 1s; }
.chat-animate:nth-child(3) { animation-delay: 1.8s; }
.chat-animate:nth-child(4) { animation-delay: 2.5s; }
@keyframes chatFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Diagnosis Section ─────────────────────────────── */
.diagnosis-section {
  padding: 54px 22px;
  background: rgba(0,0,0,0.3);
}
.diagnosis-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  color: #f4dca0;
  text-align: center;
  line-height: 1.55;
  margin-bottom: 6px;
  font-weight: 700;
}
.diagnosis-section h2 .large { font-size: 26px; }
.diagnosis-intro {
  text-align: center;
  font-size: 12px;
  color: rgba(239,231,214,0.7);
  margin-bottom: 24px;
}
.diagnosis-card {
  background: linear-gradient(180deg, rgba(217,182,101,0.08), rgba(217,182,101,0.02));
  border: 1px solid rgba(217,182,101,0.3);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}
.diagnosis-progress {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: #d9b665;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.diagnosis-progress span {
  font-size: 22px;
  font-weight: 700;
}
.diagnosis-question {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  color: #f4dca0;
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 24px;
}
.diagnosis-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.diagnosis-btn {
  flex: 1;
  max-width: 140px;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.diagnosis-btn.yes {
  background: linear-gradient(180deg, rgba(217,182,101,0.2), rgba(217,182,101,0.08));
  border: 1.5px solid rgba(217,182,101,0.5);
  color: #f4dca0;
}
.diagnosis-btn.no {
  background: rgba(239,231,214,0.05);
  border: 1.5px solid rgba(239,231,214,0.25);
  color: rgba(239,231,214,0.7);
}
.diagnosis-btn:active { transform: scale(0.95); }
.diagnosis-result {
  animation: fadeIn 0.6s ease;
  text-align: center;
}
.diagnosis-result .score-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid #d9b665;
  background: rgba(217,182,101,0.08);
  box-shadow: 0 0 30px rgba(217,182,101,0.3);
}
.diagnosis-result .score-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: #f4dca0;
  line-height: 1;
}
.diagnosis-result .score-unit {
  font-size: 12px;
  color: #d9b665;
  margin-top: 2px;
}
.diagnosis-result .score-label {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  color: #f4dca0;
  font-weight: 600;
  margin-bottom: 12px;
}
.diagnosis-result .score-msg {
  font-size: 13px;
  color: rgba(239,231,214,0.85);
  line-height: 1.85;
  margin-bottom: 20px;
  font-family: 'Shippori Mincho', serif;
}

/* ── Live Notification ─────────────────────────────── */
.live-notification {
  position: fixed;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(10,4,20,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217,182,101,0.3);
  border-radius: 24px;
  font-size: 11.5px;
  color: rgba(239,231,214,0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(.2,.7,.2,1);
  z-index: 45;
  white-space: nowrap;
  max-width: 90vw;
}
.live-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #06c755;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

/* ── Scroll Animations ─────────────────────────────── */
.fade-in-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Safety Checklist (CTA直前の不安解消) ───────── */
.safety-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 18px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.safety-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(239,231,214,0.8);
  line-height: 1.3;
}
.safety-icon {
  font-size: 12px;
  flex-shrink: 0;
}
