/* 紫星命理 テーマv2 — ダーク×紫×ゴールド＋星空 */

/* JKゴシックM — かわいい丸ゴシック系フォント */
@font-face {
  font-family: 'JK Gothic M';
  src: url('../fonts/JKG-M_3.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* === カラースキーム === */
:root {
  --bg-body: radial-gradient(circle at top, #3B1E5C 0%, #12081F 40%, #05030A 100%);
  --bg-panel: rgba(15, 7, 28, 0.9);
  --bg-panel-soft: rgba(26, 16, 46, 0.85);

  --primary: #9C6BFF;
  --primary-deep: #6C3BBF;
  --primary-dark: #3C1F72;

  --gold: #E3C46F;
  --gold-soft: #F1E1A2;
  --gold-dark: #A48735;

  --accent-pink: #FF7AC7;
  --accent-cyan: #5FE6FF;

  --text-main: #F7F3FF;
  --text-sub: #C7BEDF;
  --text-muted: #8B7FAF;

  --border-soft: rgba(227, 196, 111, 0.35);
  --border-purple: rgba(156, 107, 255, 0.6);

  --font-heading: 'JK Gothic M', 'Zen Maru Gothic', 'Kosugi Maru', 'Noto Sans JP', sans-serif;
  --font-body: 'JK Gothic M', 'Zen Maru Gothic', 'Kosugi Maru', 'Noto Sans JP', sans-serif;
}

/* === 全体背景 === */
#shiseimeiri-app {
  background: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-body);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: 0;
}

/* === 星空レイヤー === */
.site-stars,
.site-stars-back {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.site-stars {
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.7) 0, transparent 50%),
    radial-gradient(1px 1px at 30% 50%, rgba(255,255,255,0.5) 0, transparent 50%),
    radial-gradient(1px 1px at 60% 15%, rgba(255,255,255,0.6) 0, transparent 50%),
    radial-gradient(1px 1px at 80% 70%, rgba(255,255,255,0.4) 0, transparent 50%),
    radial-gradient(1.5px 1.5px at 45% 85%, rgba(159,124,255,0.8) 0, transparent 60%),
    radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,0.5) 0, transparent 50%);
  background-size: 100% 100%;
  opacity: 0.7;
}

.site-stars-back {
  background-image:
    radial-gradient(1px 1px at 15% 60%, rgba(255,255,255,0.3) 0, transparent 50%),
    radial-gradient(1px 1px at 50% 30%, rgba(255,255,255,0.2) 0, transparent 50%),
    radial-gradient(1px 1px at 75% 80%, rgba(159,124,255,0.4) 0, transparent 60%),
    radial-gradient(1px 1px at 25% 90%, rgba(255,255,255,0.3) 0, transparent 50%);
  filter: blur(1.5px);
  opacity: 0.4;
}

/* 星のきらめきドット（JSで動的生成） */
.star-dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--twinkle-duration, 4s) ease-in-out infinite;
  animation-delay: var(--twinkle-delay, 0s);
  z-index: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* === ヒーローセクション === */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 48px 20px 48px;
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero-orb {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  flex-shrink: 0;
}

.hero-orb-core {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #FFEDF8 40%, #7F5BFF 70%, #1A0F33 100%);
  box-shadow: 0 0 60px rgba(127, 91, 255, 0.9), 0 0 120px rgba(127, 91, 255, 0.3);
  animation: orb-pulse 4s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}

.hero-orb-ring {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(227, 196, 111, 0.5);
  box-shadow: 0 0 24px rgba(227, 196, 111, 0.4);
  animation: orb-rotate 12s linear infinite;
  will-change: transform;
}

@keyframes orb-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-orb-glow {
  position: absolute;
  inset: -15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 91, 255, 0.15), rgba(227, 196, 111, 0.05) 50%, transparent 70%);
  animation: orb-glow-breath 4s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes orb-glow-breath {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

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

.hero-tagline {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1.5;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-main), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.8;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  color: #2c1a36;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(227, 196, 111, 0.5);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  font-family: var(--font-body);
}

.hero-authority {
  font-size: 12px;
  color: var(--text-sub);
  opacity: 0.7;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(227, 196, 111, 0.7);
}

.hero-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: hero-shimmer 3s ease-in-out infinite;
}

@keyframes hero-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* === ステップセクション === */
.section-steps {
  padding: 48px 20px;
  position: relative;
  z-index: 1;
}

.steps-title {
  font-family: var(--font-heading);
  font-size: 24px;
  text-align: center;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.steps-grid {
  display: flex;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 20px 12px;
  background: var(--bg-panel);
  border-radius: 16px;
  border: 1px solid rgba(156, 107, 255, 0.2);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-deep);
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-label {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.5;
}

.steps-arrow {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  padding: 0 4px;
}

/* === 診断フォームセクション === */
.section-diagnosis {
  padding: 16px 20px 48px;
  position: relative;
  z-index: 1;
}

.diagnosis-inner {
  max-width: 480px;
  margin: 0 auto;
}

.diagnosis-form {
  background: var(--bg-panel-soft);
  border-radius: 20px;
  padding: 28px 20px;
  border: 1px solid var(--border-purple);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.65);
}

.diagnosis-form .shiseimeiri-label {
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.diagnosis-form .shiseimeiri-date-selects {
  display: flex;
  gap: 8px;
}

.diagnosis-form select,
.diagnosis-form .shiseimeiri-select {
  flex: 1;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--text-main);
  font-size: 15px;
  font-family: var(--font-body);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.diagnosis-form select:focus,
.diagnosis-form .shiseimeiri-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(156, 107, 255, 0.25);
}

.diagnosis-form .shiseimeiri-input-group {
  margin-bottom: 24px;
}

.diagnosis-form .shiseimeiri-gender-selects {
  display: flex;
  gap: 16px;
}

.diagnosis-form .shiseimeiri-radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--text-main);
  font-size: 14px;
}

.diagnosis-form .shiseimeiri-radio-label input[type="radio"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.diagnosis-form .shiseimeiri-quiz-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.diagnosis-form .shiseimeiri-quiz-link:hover {
  color: var(--gold);
}

/* 診断ボタン */
.btn-fortune {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: var(--text-main);
  border: none;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(156, 107, 255, 0.4);
}

.btn-fortune:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(156, 107, 255, 0.6);
}

.btn-fortune:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.privacy-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* === パネルカード（共通） === */
.panel-card {
  background: var(--bg-panel);
  border-radius: 20px;
  padding: 24px 20px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.panel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

/* === 結果画面 === */
.result-screen {
  padding: 24px 20px 48px;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.result-screen .shiseimeiri-header {
  text-align: center;
  padding: 24px 0 8px;
}

.result-heading {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

/* 共感メッセージ（女神からのLINEメッセージ風吹き出し） */
.empathy-card {
  text-align: center;
  padding: 10px 20px 20px;
  margin-top: 16px;
  margin-bottom: 20px;
  border-radius: 20px;
  position: relative;
  background: linear-gradient(135deg, rgba(107,33,168,0.35), rgba(30,15,60,0.7)) !important;
  border: 2px solid rgba(201,168,76,0.75) !important;
  box-shadow: 0 0 20px rgba(201,168,76,0.15);
}
.empathy-card::before { content: none; }
/* 吹き出し三角（下向き） */
.empathy-card.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 14px 10px 0;
  border-style: solid;
  border-color: rgba(201,168,76,0.75) transparent transparent;
}
/* インラインラベル */
.empathy-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #6B21A8, #C9A84C);
  padding: 3px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(107,33,168,0.4);
}

.empathy-card .shiseimeiri-empathy-text {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.9;
  font-style: normal;
}

.empathy-card .shiseimeiri-empathy-text[data-phase="good"] {
  color: #7CFFB2;
}

.empathy-card .shiseimeiri-empathy-text[data-phase="neutral"] {
  color: var(--primary);
}

.empathy-card .shiseimeiri-empathy-text[data-phase="bad"] {
  color: var(--gold);
}

/* 結果バッジ */
.result-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.result-badge-card {
  flex: 1;
  text-align: center;
  padding: 20px 12px;
}

.result-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.result-badge-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.result-badge-sub {
  font-size: 13px;
  color: var(--text-sub);
}

/* 霊合星人 */
.reigo-badge {
  background: linear-gradient(135deg, rgba(227, 196, 111, 0.15), rgba(156, 107, 255, 0.15));
  border: 1px solid var(--gold);
  text-align: center;
  margin-bottom: 20px;
}

.reigo-badge span {
  font-weight: 700;
  font-size: 17px;
  color: var(--gold);
}

.reigo-badge p {
  font-size: 16px;
  color: var(--text-main, #fff);
  margin-top: 6px;
  line-height: 1.75;
}

/* 結果タイトル */
.result-title-area {
  text-align: center;
  margin-bottom: 20px;
}

.result-title-text {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--gold);
}

/* セクション見出し */
.section-label {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(156, 107, 255, 0.25);
  letter-spacing: 0.04em;
}

.result-body {
  font-size: 17px;
  line-height: 2;
  color: var(--text-sub);
}

/* 恋愛運ハイライト */
.love-forecast-card {
  border: 1px solid rgba(227, 196, 111, 0.4);
  background: linear-gradient(135deg, var(--bg-panel), rgba(227, 196, 111, 0.04));
}

.love-forecast-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.love-forecast-header .section-label {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.love-timing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(227, 196, 111, 0.08);
  border-radius: 12px;
  margin-bottom: 12px;
}

.love-timing-label {
  font-size: 16px;
  color: var(--text-sub);
}

.love-timing-value {
  font-weight: 700;
  color: var(--gold);
  font-size: 18px;
}

.love-advice-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-main, #fff);
}

/* 運気グラフ */
.cycle-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 100px;
  padding-top: 16px;
}

.cycle-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: all 0.3s;
  min-height: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.cycle-bar.active {
  box-shadow: 0 0 10px var(--primary);
}

.cycle-bar[data-phase="peak"] { background: #22C55E; }
.cycle-bar[data-phase="rising"] { background: #3B82F6; }
.cycle-bar[data-phase="stable"] { background: var(--primary); }
.cycle-bar[data-phase="caution"] { background: #F59E0B; }
.cycle-bar[data-phase="decline"] { background: #EF4444; }
.cycle-bar[data-phase="recovery"] { background: #06B6D4; }

.cycle-bar-label {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* 運気フェーズ名 */
.cycle-phase-name {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

.cycle-phase-name[data-phase="peak"] { background: rgba(34,197,94,0.2); color: #22C55E; }
.cycle-phase-name[data-phase="rising"] { background: rgba(59,130,246,0.2); color: #3B82F6; }
.cycle-phase-name[data-phase="stable"] { background: rgba(156,107,255,0.2); color: var(--primary); }
.cycle-phase-name[data-phase="caution"] { background: rgba(245,158,11,0.2); color: #F59E0B; }
.cycle-phase-name[data-phase="decline"] { background: rgba(239,68,68,0.2); color: #EF4444; }
.cycle-phase-name[data-phase="recovery"] { background: rgba(6,182,212,0.2); color: #06B6D4; }

/* 相性 */
.compat-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.compat-label {
  color: var(--gold);
  font-weight: 500;
  font-size: 15px;
}

/* ラッキーアイテム */
.lucky-row {
  display: flex;
  justify-content: space-around;
  color: var(--text-sub);
  font-size: 15px;
}

/* === CTAカード（アフィリエイト） === */
.cta-section-title {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-card {
  background: var(--bg-panel);
  border-radius: 20px;
  padding: 24px 20px;
  border: 1px solid rgba(227, 196, 111, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}

.cta-card.primary {
  border: 1.5px solid rgba(227, 196, 111, 0.7);
  background: radial-gradient(circle at top, rgba(255,255,255,0.08), rgba(16,6,32,0.96));
  box-shadow:
    0 0 0 1px rgba(156, 107, 255, 0.15),
    0 18px 40px rgba(0, 0, 0, 0.7);
}

.cta-card.primary::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(95,230,255,0.12), transparent 70%);
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
}

.cta-card-glow {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(227, 196, 111, 0.5));
  border-radius: 0 0 4px 4px;
}

.cta-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.5;
}

.cta-card-text {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 16px;
}

.cta-button {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(227, 196, 111, 0.25), rgba(227, 196, 111, 0.1));
  color: var(--text-main);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(227, 196, 111, 0.35);
  border-radius: 999px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #2c1a36;
  border: none;
  padding: 16px 28px;
  font-size: 15px;
  box-shadow: 0 6px 18px rgba(227, 196, 111, 0.45);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 196, 111, 0.3);
}

.cta-button.primary:hover {
  box-shadow: 0 10px 28px rgba(227, 196, 111, 0.6);
}

.cta-button.primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  animation: cta-shimmer 3s infinite;
}

@keyframes cta-shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.cta-service-badge {
  display: inline-block;
  font-size: 11px;
  color: var(--text-muted);
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

/* === SNSシェア === */
.share-section {
  margin: 24px 0;
}

.share-buttons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.share-btn {
  flex: 1;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
  font-family: var(--font-body);
}

.share-btn:hover { opacity: 0.8; }
.share-btn-twitter { background: #1DA1F2; color: white; }
.share-btn-line { background: #00C300; color: white; }
.share-btn-copy { background: rgba(255, 255, 255, 0.08); color: var(--text-main); border: 1px solid rgba(255,255,255,0.1); }

/* === もう一度占うボタン === */
.btn-retry {
  display: block;
  width: 100%;
  padding: 16px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 24px;
}

.btn-retry:hover {
  background: rgba(156, 107, 255, 0.1);
}

/* === クイズ画面 === */
.quiz-screen {
  padding: 24px 20px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quiz-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.quiz-back {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.quiz-back:hover { color: var(--primary); }

.quiz-title {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--gold);
}

.quiz-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 999px;
  transition: width 0.3s ease;
}

.quiz-progress-text {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.quiz-question {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.7;
}

.quiz-choice {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-panel);
  border: 1px solid rgba(156, 107, 255, 0.2);
  border-radius: 14px;
  color: var(--text-main);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.quiz-choice:hover {
  border-color: var(--primary);
  background: rgba(156, 107, 255, 0.08);
}

.quiz-result-badge {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--gold);
  text-align: center;
  margin: 16px 0 8px;
}

.quiz-result-desc {
  font-size: 14px;
  color: var(--text-sub);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* === 広告表記 === */
.ad-disclosure {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin: 24px 0 12px;
}

/* === スクロールアニメーション === */
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === フッター === */
.site-footer {
  text-align: center;
  padding: 32px 20px;
  font-size: 11px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: underline;
  margin: 0 8px;
}

/* === ローディングオーバーレイ === */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 3, 10, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.loading-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.loading-stars {
  position: relative;
  width: 120px;
  height: 120px;
}

.loading-star {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: star-gather 2.5s ease-in-out forwards;
}

.loading-star:nth-child(1) { top: 0; left: 50%; animation-delay: 0s; }
.loading-star:nth-child(2) { top: 15%; left: 85%; animation-delay: 0.15s; }
.loading-star:nth-child(3) { top: 50%; left: 100%; animation-delay: 0.3s; }
.loading-star:nth-child(4) { top: 85%; left: 85%; animation-delay: 0.45s; }
.loading-star:nth-child(5) { top: 100%; left: 50%; animation-delay: 0.6s; }
.loading-star:nth-child(6) { top: 85%; left: 15%; animation-delay: 0.75s; }
.loading-star:nth-child(7) { top: 50%; left: 0; animation-delay: 0.9s; }
.loading-star:nth-child(8) { top: 15%; left: 15%; animation-delay: 1.05s; }

@keyframes star-gather {
  0% { opacity: 0; transform: scale(0.3); }
  30% { opacity: 1; transform: scale(1); }
  70% { opacity: 1; transform: scale(1) translate(0, 0); }
  100% { opacity: 1; transform: scale(0.5) translate(calc(60px - 100%), calc(60px - 100%)); }
}

.loading-text {
  margin-top: 28px;
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.1em;
  animation: loading-pulse 1.5s ease-in-out infinite;
}

@keyframes loading-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* === レスポンシブ === */
@media (min-width: 768px) {
  .hero-title { font-size: 40px; }
  .hero-orb { width: 260px; height: 260px; }
  .result-screen { max-width: 640px; }
  .diagnosis-inner { max-width: 560px; }
}

@media (min-width: 1024px) {
  .hero-inner {
    max-width: 900px;
    flex-direction: row;
    text-align: left;
  }
  .hero-copy {
    align-items: flex-start;
    flex: 1.2;
  }
  .hero-orb {
    flex: 1;
    width: 280px;
    height: 280px;
  }
  .hero-title { font-size: 44px; }
  .result-screen { max-width: 720px; }
}

/* ブログカルーセル */
.section-blog-carousel {
  padding: 40px 16px 16px;
  text-align: center;
  overflow: hidden;
}

.blog-carousel-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.blog-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
}

.blog-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.blog-carousel-card {
  flex: 0 0 260px;
  margin: 0 10px;
  background: rgba(26, 19, 51, 0.8);
  border: 1px solid rgba(227, 196, 111, 0.15);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-main);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-carousel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 196, 111, 0.4);
  box-shadow: 0 8px 24px rgba(107, 33, 168, 0.3);
}

.blog-carousel-card-thumb {
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0533, #2D1B4E);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-carousel-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-carousel-card-placeholder {
  font-size: 36px;
  opacity: 0.5;
}

.blog-carousel-card-body {
  padding: 14px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-carousel-card-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-carousel-card-excerpt {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* カルーセルインジケーター */
.blog-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.blog-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(227, 196, 111, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.blog-carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* もっと見るボタン */
.blog-more-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 32px;
  color: var(--gold);
  border: 1px solid rgba(227, 196, 111, 0.4);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: background 0.3s, border-color 0.3s;
}

.blog-more-button:hover {
  background: rgba(227, 196, 111, 0.1);
  border-color: var(--gold);
}

/* モバイル対応 */
@media (max-width: 600px) {
  .blog-carousel-card {
    flex: 0 0 220px;
  }
  .blog-carousel-card-thumb {
    height: 120px;
  }
}

.ad-slot {
  margin: 24px 0;
  min-height: 50px;
}

/* select option背景 */
select option {
  background: #12081F;
  color: var(--text-main);
}

/* ============================
   フルスクリーンテンプレート用 body スタイル
   ============================ */
body.shiseimeiri-fullscreen {
  margin: 0;
  padding: 0;
  background: var(--bg-deep, #0F0520);
  color: var(--text-main, #EDE6F5);
  min-height: 100vh;
}


/* ユーティリティ */
.hidden { display: none !important; }

/* 運気周期の詳細テキスト */
.cycle-detail-text {
  margin-top: 16px;
  font-size: 16px;
  line-height: 2;
  color: var(--text-sub);
  white-space: pre-line;
}

/* 相性の詳細テキスト */
.compat-detail {
  margin-top: 12px;
  font-size: 16px;
  line-height: 2;
  color: var(--text-sub);
}
.compat-detail .compat-question {
  display: block;
  margin: 12px 0;
  color: var(--gold-soft);
  font-style: italic;
}

/* 恋愛運ハイライトの詳細テキスト */
.love-detail-text {
  margin-top: 12px;
  font-size: 16px;
  line-height: 2;
  color: var(--text-sub);
}


/* === クイズ画面: ゴージャス×神秘的 === */
.quiz-screen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  justify-content: center;
}

#quiz-question-area {
  text-align: center;
}

.quiz-question {
  font-family: var(--font-heading);
  text-align: center;
  position: relative;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(15,7,28,0.95), rgba(60,31,114,0.3));
  border: 1px solid rgba(227, 196, 111, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(156, 107, 255, 0.15), 0 0 80px rgba(227, 196, 111, 0.05);
}

.quiz-question::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.quiz-question::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 2px;
}

.quiz-choice {
  text-align: center;
  border: 1px solid rgba(227, 196, 111, 0.15);
  background: linear-gradient(135deg, rgba(15,7,28,0.8), rgba(26,16,46,0.6));
  position: relative;
  overflow: hidden;
}

.quiz-choice::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(227, 196, 111, 0.06) 50%, transparent 60%);
  pointer-events: none;
}

.quiz-choice:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(227,196,111,0.08), rgba(156,107,255,0.08));
  box-shadow: 0 0 20px rgba(227, 196, 111, 0.15);
}

.quiz-header {
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 8px;
}

.quiz-title {
  font-size: 20px;
  letter-spacing: 0.12em;
}

.quiz-progress {
  height: 3px;
  background: rgba(227, 196, 111, 0.1);
}

.quiz-progress-fill {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-soft));
  box-shadow: 0 0 8px rgba(227, 196, 111, 0.6);
}

/* === 結果ページロゴ: ゴージャス神秘的 === */
.shiseimeiri-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), #D4A843, var(--gold-soft));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logo-gradient 4s ease infinite;
  position: relative;
  display: inline-block;
  text-shadow: none;
}

.shiseimeiri-logo--small {
  font-size: 28px;
}

@keyframes logo-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.result-screen .shiseimeiri-header {
  position: relative;
  padding: 32px 0 16px;
}

.result-screen .shiseimeiri-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(227, 196, 111, 0.08), transparent 70%);
  pointer-events: none;
}

.result-screen .shiseimeiri-header::after {
  content: '';
  display: block;
  margin: 12px auto 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* === クイズ リード文（アジテーション） === */
.quiz-lead {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  opacity: 0.85;
  font-style: italic;
}
/* === デイリー占いセクション === */
.daily-fortune-section {
  max-width: 480px;
  margin: 0 auto 40px;
  padding: 0 20px;
}
.daily-fortune-card {
  background: linear-gradient(145deg, rgba(40, 20, 70, 0.9), rgba(25, 10, 50, 0.95));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 16px;
  padding: 28px 24px 20px;
  position: relative;
  overflow: hidden;
}
.daily-fortune-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.daily-fortune-header {
  text-align: center;
  margin-bottom: 16px;
}
.daily-fortune-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 4px;
}
.daily-fortune-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin: 0 0 4px;
}
.daily-fortune-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}
.daily-fortune-stars {
  text-align: center;
  margin: 12px 0 4px;
  font-size: 0;
}
.daily-star {
  display: inline-block;
  font-size: 24px;
  margin: 0 2px;
  transition: transform 0.3s ease;
}
.daily-star.filled {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}
.daily-star.empty {
  color: rgba(255, 255, 255, 0.2);
}
.daily-fortune-label {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.daily-fortune-advice {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  margin: 0 0 20px;
  padding: 0 8px;
}
.daily-fortune-lucky {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.daily-lucky-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}
.daily-lucky-color {
  font-size: 14px;
  font-weight: 600;
  color: var(--lucky-color, var(--gold));
  padding: 3px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--lucky-color, var(--gold));
}
.daily-fortune-share {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 8px;
}
.daily-share-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
}
.daily-share-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.daily-share-x:hover {
  border-color: #1DA1F2;
  color: #1DA1F2;
}
.daily-share-line:hover {
  border-color: #06C755;
  color: #06C755;
}
.daily-fortune-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
}

/* === サイトフッター === */
.shiseimeiri-footer {
  text-align: right;
  padding: 24px 20px 16px;
  margin-top: 8px;
}
.footer-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  margin: 0 6px;
}
.privacy-policy-link {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.03em;
}
.privacy-policy-link:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* === プライバシーポリシーモーダル === */
.privacy-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.privacy-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.privacy-modal {
  background: #1a0e2e;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.8;
}
.privacy-modal h2 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 20px;
  margin: 0 0 20px;
  text-align: center;
}
.privacy-modal h3 {
  color: var(--gold);
  font-size: 15px;
  margin: 24px 0 8px;
}
.privacy-modal p,
.privacy-modal ul,
.privacy-modal ol {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.75);
}
.privacy-modal ul {
  padding-left: 20px;
}
.privacy-modal a {
  color: var(--gold);
  text-decoration: underline;
}
.privacy-modal-close {
  display: block;
  margin: 24px auto 0;
  padding: 8px 32px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  border-radius: 24px;
  color: var(--gold);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.privacy-modal-close:hover {
  background: rgba(201, 168, 76, 0.3);
}

/* === 診断カウンター === */
.diagnosis-counter {
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  padding: 8px 16px;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 20px;
  display: inline-block;
  width: auto;
}
.result-screen .diagnosis-counter {
  display: block;
  max-width: 320px;
  margin: 0 auto 16px;
}

/* === 運気ピークカウントダウン === */
.peak-countdown-card {
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.08), rgba(40, 20, 70, 0.9));
}
.peak-countdown-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.peak-countdown-value {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin: 0;
  text-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}

/* === シェアセクション強化 === */
.share-catch {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin: 0 0 16px;
  padding: 0 16px;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.9;
}
.share-hint {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}

/* === 隠しアドバイス === */
.hidden-advice-card {
  border: 1px solid rgba(201, 168, 76, 0.5);
  background: linear-gradient(145deg, rgba(60, 30, 100, 0.6), rgba(25, 10, 50, 0.9));
  position: relative;
  overflow: hidden;
}
.hidden-advice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hidden-advice-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.hidden-advice-header .section-label {
  margin: 0;
}
.hidden-advice-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* === 利用実績セクション === */
.section-social-proof {
  text-align: center;
  padding: 32px 24px 16px;
}
.social-proof-text {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--text-sub);
  letter-spacing: 0.04em;
}
.social-proof-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.social-proof-note {
  font-size: 11px;
  color: var(--text-sub);
  opacity: 0.6;
  margin-top: 4px;
}

/* === 選ばれる理由セクション === */
.section-reasons {
  max-width: 800px;
  margin: 24px auto 32px;
  padding: 0 24px;
}
.reasons-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--gold);
  text-align: center;
  margin: 0 0 24px;
  letter-spacing: 0.08em;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reason-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(227, 196, 111, 0.15);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
}
.reason-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.reason-heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.6;
  margin: 0 0 10px;
}
.reason-text {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0;
}
.site-rating-summary {
  text-align: center;
  font-size: 14px;
  color: var(--gold);
  margin-top: 20px;
}
@media (max-width: 600px) {
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* === 評価フォーム（診断結果ページ用） === */
.feedback-section {
  text-align: center;
  padding: 24px 20px;
}
.feedback-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}
.feedback-star {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.2);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  padding: 4px;
}
.feedback-star:hover,
.feedback-star.active {
  color: var(--gold);
  transform: scale(1.15);
}
.feedback-comment {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 12px auto;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(227, 196, 111, 0.2);
  border-radius: 10px;
  color: var(--text-main);
  font-size: 14px;
  resize: vertical;
  min-height: 60px;
}
.feedback-comment::placeholder {
  color: var(--text-sub);
  opacity: 0.6;
}
.feedback-submit {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.3), rgba(212, 168, 67, 0.15));
  color: var(--text-main);
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.feedback-submit:disabled {
  opacity: 0.4;
  cursor: default;
}
.feedback-message {
  font-size: 14px;
  margin-top: 12px;
  min-height: 20px;
}
.feedback-aggregate {
  font-size: 13px;
  color: var(--gold);
  margin-top: 8px;
}

/* === フッター改修 === */
.footer-about-links,
.footer-legal-links {
  margin-bottom: 8px;
}
.footer-about-links a,
.footer-legal-links a {
  color: var(--text-sub, #C7BEDF);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}
.footer-about-links a:hover,
.footer-legal-links a:hover {
  color: var(--gold, #E3C46F);
}
.footer-credit {
  font-size: 11px;
  color: var(--text-sub, #C7BEDF);
  opacity: 0.6;
  margin-top: 8px;
}

/* === モバイル全体レスポンシブ修正 === */
@media (max-width: 480px) {
  /* ヒーローオーブ: モバイルでも見やすいサイズ */
  .hero-orb {
    width: 160px;
    height: 160px;
  }

  /* 結果画面の余白調整 */
  .result-screen {
    padding: 0 12px;
  }

  /* パネルカードの溢れ防止 */
  .panel-card {
    padding: 16px 14px;
    margin-left: 4px;
    margin-right: 4px;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* 評価フォーム: 枠内に収める */
  .feedback-section {
    padding: 16px 12px;
    margin-left: 4px;
    margin-right: 4px;
  }
  .feedback-stars {
    gap: 4px;
  }
  .feedback-star {
    font-size: 28px;
    padding: 2px;
  }
  .feedback-comment {
    max-width: 100%;
    box-sizing: border-box;
  }
  .feedback-submit {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* シェアセクション */
  .share-section {
    padding: 16px 12px;
  }
  .share-buttons {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* フッター: モバイルで中央寄せ */
  .shiseimeiri-footer {
    text-align: center;
    padding: 20px 12px 16px;
  }
  .footer-about-links,
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  /* 診断フォーム */
  .diagnosis-inner {
    padding: 0 8px;
  }
  .diagnosis-form {
    padding: 0 4px;
  }

  /* ステップセクション: SP では縦積みに変更 */
  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 300px;
  }
  .steps-arrow {
    transform: rotate(90deg);
    font-size: 16px;
    padding: 0;
  }
  .step-item {
    width: 100%;
    max-width: 300px;
  }
  .step-label {
    font-size: 13px;
    white-space: normal;
  }

  /* 選ばれる理由 */
  .section-reasons {
    padding: 24px 12px;
  }
  .reason-card {
    padding: 16px 14px;
  }

  /* ソーシャルプルーフ */
  .section-social-proof {
    padding: 16px 12px;
  }

  /* LINE・メルマガ */
  #line-friend-section,
  #newsletter-section {
    margin-left: 4px;
    margin-right: 4px;
  }

  /* ブログカルーセル */
  .section-blog-carousel {
    padding: 24px 8px 16px;
  }
}


/* ========================================
   星魂コード・レーダーチャート・相性バー（v2.5.0追加）
======================================== */

/* 星魂コード読み方テキスト */
.soul-code-reading {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-top: 2px;
  line-height: 1.4;
}

/* レーダーチャートカード */
.soul-radar-card {
  text-align: center;
  padding: 24px 16px;
}

.soul-radar-chart-wrap {
  max-width: 400px;
  margin: 0 auto 16px;
}

.soul-radar-chart-wrap canvas {
  width: 100% !important;
  height: auto !important;
}

.soul-radar-scores-text {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin: 8px 0 0;
  letter-spacing: 0.03em;
}

/* 相性バーカード */
.compat-bars-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.compat-bar-card {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.compat-bar-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.compat-bar-card-header .compat-char-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.compat-bar-wrap {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}

.compat-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s ease;
}

.compat-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.compat-bar-label {
  color: var(--text-sub);
}

.compat-bar-score {
  color: var(--gold);
  font-weight: 700;
}

/* 星魂コードバッジ（タイプバッジ内） */
#result-type-code {
  cursor: help;
}

/* ===== 星魂診断 新UIスタイル（v2.6）===== */

/* ステップインジケーター */
.quiz-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 12px 0 8px;
}
.quiz-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s;
}
.quiz-step-dot.active {
  background: var(--gold, #C9A84C);
}
.quiz-step-line {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.15);
}

/* クイズ進捗バー */
.quiz-progress {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin: 8px 16px 0;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary, #6B21A8), var(--gold, #C9A84C));
  border-radius: 2px;
  transition: width 0.4s ease;
}
.quiz-progress-text {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-sub, #aaa);
  margin: 4px 0 12px;
  letter-spacing: 0.08em;
}

/* クイズパネル */
.quiz-step-panel {
  padding: 0 8px;
}

/* ステップリードテキスト */
.quiz-step-lead {
  font-size: 1.1rem;
  color: var(--text-main, #fff);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 700;
}

/* === 生年月日フォーム === */
.quiz-birth-form {
  max-width: 380px;
  margin: 0 auto 8px;
}
.quiz-date-selects {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.quiz-select {
  flex: 1;
  padding: 14px 8px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(212,168,67,0.5);
  border-radius: 12px;
  color: var(--text-main, #fff);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.quiz-select:focus {
  outline: none;
  border-color: var(--gold, #C9A84C);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.25);
}
.quiz-select option {
  background: #1a0e2e;
  color: #fff;
}
.quiz-gender-selects {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* === 質問ラベル === */
.quiz-questions-label {
  font-size: 1rem;
  color: var(--gold, #C9A84C);
  text-align: center;
  margin: 16px 0 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* === 全問コンテナ === */
.quiz-all-questions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 20px;
}

/* === 質問カード（ゴールド太枠）=== */
.quiz-question-card {
  background: rgba(255,255,255,0.03);
  border: 3px solid var(--gold, #C9A84C);
  border-radius: 18px;
  padding: 18px 16px 20px;
  transition: background 0.25s, border-color 0.25s;
}
.quiz-question-card.answered {
  background: rgba(201,168,76,0.08);
  border-color: #D4B96B;
}

/* 質問テキスト */
.quiz-question-card-text {
  font-size: 1.05rem;
  color: var(--text-main, #fff);
  margin-bottom: 20px;
  line-height: 1.65;
  font-weight: 700;
  text-align: center;
}

/* === ダイヤモンドスケール === */
.quiz-diamond-scale {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: nowrap;
  overflow: visible;
}

/* 左右ラベル */
.scale-label {
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  min-width: 46px;
  flex-shrink: 0;
  padding: 0 4px;
  align-self: flex-start;
  padding-top: 6px;
}
.scale-label-agree {
  color: var(--gold, #C9A84C);
  text-align: right;
}
.scale-label-disagree {
  color: #D46BAA;
  text-align: left;
}

/* ダイヤモンド列 */
.scale-diamonds-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* 個別ダイヤボタン */
.scale-diamond {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.scale-diamond:hover { transform: scale(1.2); }
.scale-diamond:active { transform: scale(0.92); }
.scale-diamond.selected { transform: scale(1.15); }

/* ステップ次へボタン */
.quiz-step-next-btn {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 8px auto 24px;
}

/* CTA診断セクション */
.diagnosis-quiz-cta {
  text-align: center;
  padding: 20px 16px 24px;
}
.diagnosis-quiz-lead {
  font-size: 0.92rem;
  color: var(--text-sub, #aaa);
  margin-bottom: 20px;
  line-height: 1.7;
}
.btn-soul-quiz-start {
  display: block;
  font-size: 1.05rem;
  padding: 16px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary, #6B21A8), var(--gold, #C9A84C));
  color: #fff;
  font-weight: 700;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  cursor: pointer;
  border: none;
  text-align: center;
  box-shadow: 0 4px 20px rgba(107,33,168,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-soul-quiz-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107,33,168,0.55);
}
/* ===== 星魂診断 新UIスタイルここまで ===== */

/* === 性別選択アニメーション === */
.quiz-gender-selects {
  position: relative;
}
.quiz-gender-selects .shiseimeiri-radio-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 24px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-sub, #aaa);
  background: rgba(255,255,255,0.04);
  transition: color 0.25s ease, background 0.25s ease;
  user-select: none;
}
.quiz-gender-selects .shiseimeiri-radio-label input[type="radio"] {
  display: none;
}
.quiz-gender-selects .shiseimeiri-radio-label::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}
.quiz-gender-selects .shiseimeiri-radio-label.gender-active {
  color: var(--gold, #C9A84C);
  background: rgba(201,168,76,0.12);
}
.quiz-gender-selects .shiseimeiri-radio-label.gender-active::before {
  border-color: var(--gold, #C9A84C);
  box-shadow: 0 0 14px rgba(201,168,76,0.5), inset 0 0 8px rgba(201,168,76,0.1);
  animation: gender-pulse 0.4s ease-out;
}
@keyframes gender-pulse {
  0%   { box-shadow: 0 0 0px rgba(201,168,76,0); }
  50%  { box-shadow: 0 0 22px rgba(201,168,76,0.7); }
  100% { box-shadow: 0 0 14px rgba(201,168,76,0.5); }
}
/* === 性別選択アニメーションここまで === */

/* ===== ソウルタグ分析 凡例 ===== */
.soul-radar-legend-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.soul-radar-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.soul-radar-legend-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.soul-radar-legend-main {
  flex: 1;
}
.soul-radar-legend-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold, #C9A84C);
  margin-bottom: 4px;
}
.soul-radar-legend-desc {
  font-size: 11px;
  color: var(--text-sub, #aaa);
  margin-bottom: 4px;
}
.soul-radar-legend-bar-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-sub, #aaa);
}
.soul-radar-legend-axis-label {
  font-size: 12px;
  color: var(--text-sub, #bbb);
  white-space: nowrap;
  min-width: 28px;
}
.soul-radar-legend-track {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.soul-radar-legend-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.4s ease;
}
/* ===== ソウルタグ分析 凡例ここまで ===== */

/* ===== 相性1位キャラ セクション ===== */
.compat-best-card {
  margin-bottom: 20px;
}
.compat-best-note {
  font-size: 12px;
  color: var(--text-sub, #aaa);
  text-align: center;
  margin: -4px 0 14px;
}
.compat-best-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compat-loading {
  font-size: 13px;
  color: var(--text-sub, #aaa);
  text-align: center;
  padding: 12px 0;
}
.compat-best-item {
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.compat-best-cat-label {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px 6px;
  background: rgba(201,168,76,0.1);
  color: var(--gold, #C9A84C);
  letter-spacing: 0.05em;
}
.compat-best-body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}
.compat-best-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 14px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  display: block;
}
.compat-best-detail {
  flex: 1;
  min-width: 0;
}
.compat-best-soul-name {
  font-size: 12px;
  color: var(--text-sub, #aaa);
  margin-bottom: 2px;
}
.compat-best-char-name {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-main, #fff);
  margin-bottom: 8px;
  line-height: 1.45;
  white-space: normal;
  overflow: visible;
}
.compat-score-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.compat-score-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold, #C9A84C);
  min-width: 44px;
}
.compat-score-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.compat-score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary, #6B21A8), var(--gold, #C9A84C));
  border-radius: 3px;
  transition: width 0.6s ease;
}
/* ===== 相性1位キャラ セクションここまで ===== */

/* ===== ユーザー評価実績 ===== */
.section-reviews {
  padding: 0 20px 32px;
  text-align: center;
}
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.review-score {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold, #C9A84C);
  font-family: var(--font-heading);
}
.review-stars-row {
  font-size: 20px;
  color: #F5C518;
  letter-spacing: 2px;
}
.review-count {
  font-size: 13px;
  color: var(--text-sub);
}
.review-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  padding: 12px 16px;
  text-align: left;
}
.review-card-stars {
  font-size: 14px;
  color: #F5C518;
  margin-bottom: 6px;
  letter-spacing: 2px;
}
.review-card-text {
  font-size: 13px;
  color: var(--text-main, #fff);
  line-height: 1.6;
  margin-bottom: 6px;
}
.review-card-author {
  font-size: 11px;
  color: var(--text-sub);
  text-align: right;
}
/* ===== ユーザー評価実績ここまで ===== */

/* ===== TOPキャラカードカルーセル + 女神ビジュアル ===== */
.hero-visual-wrap{
  position:relative;overflow:hidden;
  padding-top:52px;
  height:420px;
  background:linear-gradient(180deg,#0c0820 0%,#110d2e 60%,#080518 100%);
}
/* カルーセルフィールド全体への半透明オーバーレイ */
.hero-visual-overlay{
  position:absolute;inset:0;z-index:2;
  background:rgba(6,3,20,.52);
  pointer-events:none;
}
/* 左右フェードマスク */
.hero-visual-fade{
  position:absolute;top:0;bottom:0;width:160px;z-index:3;pointer-events:none;
}
.hero-visual-fade--l{left:0;background:linear-gradient(to right,#080518 0%,transparent 100%);}
.hero-visual-fade--r{right:0;background:linear-gradient(to left,#080518 0%,transparent 100%);}

/* カルーセル行 */
.carousel-row{
  position:absolute;left:0;right:0;
  overflow:hidden;
}
.carousel-row--fwd{top:16px;}
.carousel-row--rev{top:210px;}

.carousel-track{
  display:flex;gap:14px;
  width:max-content;
  will-change:transform;
  transform:translate3d(0,0,0);
  -webkit-transform:translate3d(0,0,0);
}
.carousel-row--fwd .carousel-track{
  animation:scroll-fwd 28s linear infinite;
  -webkit-animation:scroll-fwd 28s linear infinite;
}
.carousel-row--rev .carousel-track{
  animation:scroll-rev 32s linear infinite;
  -webkit-animation:scroll-rev 32s linear infinite;
}

@keyframes scroll-fwd{
  0%  {transform:translate3d(0,0,0);}
  100%{transform:translate3d(-50%,0,0);}
}
@keyframes scroll-rev{
  0%  {transform:translate3d(-50%,0,0);}
  100%{transform:translate3d(0,0,0);}
}
@-webkit-keyframes scroll-fwd{
  0%  {-webkit-transform:translate3d(0,0,0);}
  100%{-webkit-transform:translate3d(-50%,0,0);}
}
@-webkit-keyframes scroll-rev{
  0%  {-webkit-transform:translate3d(-50%,0,0);}
  100%{-webkit-transform:translate3d(0,0,0);}
}

.carousel-card{
  height:170px;width:auto;
  border-radius:14px;
  flex-shrink:0;
  object-fit:contain;
  opacity:.88;
  transition:opacity .2s;
}
.carousel-card:hover{opacity:1;}

/* 中央オーバーレイ */
.hero-visual-center{
  position:absolute;inset:0;z-index:4;
  display:flex;align-items:center;justify-content:center;
  gap:32px;
  pointer-events:none;
}
.goddess-hero-img{
  height:340px;width:auto;
  object-fit:cover;
  border-radius:20px;
  filter:drop-shadow(0 0 24px rgba(180,140,255,.5));
  flex-shrink:0;
  pointer-events:auto;
}
.hero-visual-glass{
  background:rgba(8,5,24,.72);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(180,140,255,.2);
  border-radius:20px;
  padding:28px 32px;
  text-align:center;
  max-width:360px;
  pointer-events:auto;
}
.hero-visual-title{
  font-size:1.35rem;font-weight:700;
  color:#e8d5ff;line-height:1.55;
  margin:0 0 10px;
}
.hero-visual-sub{
  font-size:.85rem;color:#a78bde;
  margin:0 0 16px;line-height:1.5;
}
.hero-button--sm{
  font-size:.9rem;padding:10px 24px;
}

/* レスポンシブ */
@media(max-width:700px){
  .hero-visual-wrap{height:360px;}
  .goddess-hero-img{height:220px;}
  .hero-visual-center{gap:12px;padding:0 12px;}
  .carousel-row--rev{top:190px;}
  .carousel-card{height:140px;}
  .hero-visual-glass{padding:20px 18px;max-width:260px;}
  .hero-visual-title{font-size:1.1rem;}
}
/* ===== SP（〜480px）ヒーローカルーセル縦積み ===== */
@media(max-width:480px){
  .hero-visual-wrap{height:340px;padding-top:0;}
  .hero-visual-center{
    flex-direction:column;
    gap:6px;
    justify-content:center;
    align-items:center;
    padding:8px 16px;
  }
  .goddess-hero-img{
    height:200px;
    width:200px;
    object-fit:cover;
    object-position:50% 8%;
    border-radius:50%;
  }
  .hero-visual-glass{
    max-width:calc(100% - 24px);
    padding:12px 14px;
    border-radius:14px;
  }
  .hero-visual-title{
    font-size:.9rem;
    margin:0 0 6px;
  }
  .hero-visual-sub{
    font-size:.75rem;
    margin:0 0 10px;
  }
  .carousel-row--fwd{top:8px;}
  .carousel-row--rev{top:178px;}
  .carousel-card{height:120px;}
}
/* ===== TOPキャラカードカルーセルここまで ===== */
