/* ==========================================================================
   一般社団法人 日本魔法少女育成推進機構 (JMPO)
   公式募集LP - プリキュア・魔法少女風 超華やか＆カラフルスタイルシート
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. デザインシステム・カスタム変数
   -------------------------------------------------------------------------- */
:root {
  /* 多色パレット（魔法少女カラー） */
  --c-pink: #ff2d87;
  --c-pink-hover: #e01b70;
  --c-pink-light: #fff0f6;
  --c-pink-subtle: #fdf2f8;
  --c-pink-border: #fbcfe8;

  --c-purple: #8b5cf6;
  --c-purple-dark: #6d28d9;
  --c-purple-light: #f5f3ff;
  --c-purple-subtle: #faf5ff;
  --c-purple-border: #ddd6fe;

  --c-cyan: #0284c7;
  --c-cyan-light: #f0f9ff;
  --c-cyan-border: #bae6fd;
  --c-sky: #38bdf8;

  --c-mint: #059669;
  --c-mint-light: #ecfdf5;
  --c-mint-border: #a7f3d0;

  --c-yellow: #d97706;
  --c-yellow-light: #fffbeb;
  --c-yellow-border: #fde68a;
  --c-gold: #f59e0b;

  --c-text-main: #1e1b4b;       /* 濃いネイビーパープル（可読性を保ちつつ魔法少女感） */
  --c-text-sub: #475569;        /* スレートグレー */
  --c-text-muted: #64748b;
  --c-white: #ffffff;
  --c-border: #e2e8f0;

  /* 多色グラデーション定義 */
  --grad-hero: radial-gradient(circle at 50% 20%, #fff0f7 0%, #fdf4ff 35%, #f0f9ff 70%, #fffbeb 100%);
  --grad-pink-purple: linear-gradient(135deg, #ff2d87 0%, #a855f7 100%);
  --grad-cyan-mint: linear-gradient(135deg, #0284c7 0%, #10b981 100%);
  --grad-yellow-pink: linear-gradient(135deg, #fbbf24 0%, #ff2d87 100%);
  --grad-purple-cyan: linear-gradient(135deg, #8b5cf6 0%, #38bdf8 100%);
  --grad-gold-pink: linear-gradient(135deg, #f59e0b 0%, #ff2d87 50%, #8b5cf6 100%);

  /* タイポグラフィ */
  --font-pop: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
  --font-base: 'Noto Sans JP', sans-serif;
  --font-en: 'Plus Jakarta Sans', sans-serif;

  /* 影とエフェクト */
  --shadow-pop-sm: 0 4px 12px rgba(255, 45, 135, 0.12);
  --shadow-pop-md: 0 8px 24px rgba(139, 92, 246, 0.15);
  --shadow-pop-lg: 0 16px 36px rgba(255, 45, 135, 0.2);
  --shadow-card: 0 10px 25px -5px rgba(30, 27, 75, 0.08), 0 8px 10px -6px rgba(30, 27, 75, 0.05);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   2. リセット＆ベーススタイル
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  color: var(--c-text-main);
  background-color: #faf5ff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   3. 共通装飾コンポーネント（キッカー・セクション見出し・ボタン・波形）
   -------------------------------------------------------------------------- */
.section {
  position: relative;
  padding: 100px 0 120px;
}

/* セクション境界（波形・スカラップ） */
.section-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

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

.divider-wave-bottom {
  bottom: 0;
  height: 60px;
  fill: #faf5ff; /* aboutセクションの背景色に合わせる */
}

.divider-scallop-bottom {
  bottom: 0;
  height: 40px;
  fill: #f0fdf4; /* activitiesセクションの背景色に合わせる */
}

.divider-wave-activities {
  bottom: 0;
  height: 50px;
  fill: #faf5ff; /* scheduleセクションの背景色に合わせる */
}

.divider-scallop-schedule {
  bottom: 0;
  height: 40px;
  fill: #fffdf5; /* requirementsセクションの背景色に合わせる */
}

.divider-wave-req {
  bottom: 0;
  height: 50px;
  fill: #f0fdfa; /* supportセクションの背景色に合わせる */
}

.divider-scallop-support {
  bottom: 0;
  height: 40px;
  fill: #fff5f7; /* flowセクションの背景色に合わせる */
}

.divider-wave-flow {
  bottom: 0;
  height: 50px;
  fill: #f5f3ff; /* faqセクションの背景色に合わせる */
}

.divider-wave-faq {
  bottom: 0;
  height: 50px;
  fill: #ff2d87; /* apply-heroセクションの上部に合わせる */
}

/* ポップセクションキッカー */
.pop-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-pop);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.kicker-pink {
  background: var(--c-pink-light);
  color: var(--c-pink);
  border: 1.5px solid var(--c-pink-border);
}

.kicker-purple {
  background: var(--c-purple-light);
  color: var(--c-purple);
  border: 1.5px solid var(--c-purple-border);
}

.kicker-cyan {
  background: var(--c-cyan-light);
  color: var(--c-cyan);
  border: 1.5px solid var(--c-cyan-border);
}

.kicker-mint {
  background: var(--c-mint-light);
  color: var(--c-mint);
  border: 1.5px solid var(--c-mint-border);
}

.kicker-amber {
  background: var(--c-yellow-light);
  color: var(--c-yellow);
  border: 1.5px solid var(--c-yellow-border);
}

.kicker-star {
  font-size: 1rem;
}

/* 中央寄せセクション見出し */
.section-header-center {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.pop-section-title {
  font-family: var(--font-pop);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 900;
  color: var(--c-text-main);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.pop-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--grad-pink-purple);
  border-radius: 4px;
  margin: 10px auto 0;
}

.pop-section-desc {
  font-size: 1.05rem;
  color: var(--c-text-sub);
  max-width: 640px;
  margin: 0 auto;
}

/* ボタンスタイル */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-pop);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  text-align: center;
}

/* --------------------------------------------------------------------------
   4. サイトヘッダー
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(255, 45, 135, 0.15);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-crest {
  width: 40px;
  height: 40px;
  background: var(--grad-pink-purple);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* 四角ではなく円形にして、シンボルマークとしての独立性を強調 */
  border: 2px solid #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 45, 135, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-brand:hover .brand-crest {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(255, 45, 135, 0.45);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.org-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  line-height: 1.2;
}

.org-title {
  font-family: var(--font-pop);
  font-size: 0.88rem;
  font-weight: 800;
  background: var(--grad-pink-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-text-sub);
  padding: 6px 8px;
  border-radius: 6px;
  transition: color 0.15s ease;
}

.header-nav a:hover {
  color: var(--c-pink);
}

.btn-header-apply {
  background: var(--grad-pink-purple) !important;
  color: #ffffff !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--font-pop);
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 14px rgba(255, 45, 135, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.btn-header-apply:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(255, 45, 135, 0.45);
}

/* --------------------------------------------------------------------------
   5. ファーストビュー (Hero Section) - 最派手＆画像なし＆背景直配置
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 140px;
  background: var(--grad-hero);
  text-align: center;
  z-index: 1;
}

/* ふわふわ浮遊する星・光・リボンの背景装飾 */
.hero-sparkle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: pulseOrb 8s infinite alternate ease-in-out;
}

.orb-1 {
  width: 450px;
  height: 450px;
  background: rgba(255, 45, 135, 0.25);
  top: -100px;
  left: 5%;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.22);
  top: 10%;
  right: 5%;
  animation-delay: -3s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: rgba(56, 189, 248, 0.25);
  bottom: 10%;
  left: 20%;
  animation-delay: -5s;
}

.orb-4 {
  width: 350px;
  height: 350px;
  background: rgba(251, 191, 36, 0.22);
  top: 30%;
  left: 50%;
  animation-delay: -2s;
}

@keyframes pulseOrb {
  0% { transform: scale(0.9) translate(0, 0); }
  100% { transform: scale(1.15) translate(20px, 30px); }
}

/* 浮遊する星たち */
.floating-star {
  position: absolute;
  font-size: 1.5rem;
  color: var(--c-pink);
  user-select: none;
  animation: floatStar 6s infinite ease-in-out;
  filter: drop-shadow(0 2px 8px rgba(255, 45, 135, 0.4));
}

.star-1 { top: 15%; left: 8%; font-size: 2.2rem; color: #ff2d87; animation-delay: 0s; }
.star-2 { top: 28%; left: 14%; font-size: 1.6rem; color: #a855f7; animation-delay: -1.5s; }
.star-3 { top: 18%; right: 10%; font-size: 2.4rem; color: #f59e0b; animation-delay: -2.5s; }
.star-4 { top: 35%; right: 16%; font-size: 1.8rem; color: #0284c7; animation-delay: -4s; }
.star-5 { top: 65%; left: 6%; font-size: 2rem; color: #ec4899; animation-delay: -3s; }
.star-6 { top: 72%; right: 8%; font-size: 2.2rem; color: #10b981; animation-delay: -1s; }
.star-7 { top: 5%; left: 50%; font-size: 1.8rem; color: #fbbf24; animation-delay: -5s; }

@keyframes floatStar {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-16px) rotate(15deg) scale(1.15); }
}

/* コンテナと直配置テキスト */
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

/* 上部リボン公募バッジ */
.hero-ribbon-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-ribbon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-pink-purple);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-pop);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 16px rgba(255, 45, 135, 0.35);
}

.badge-star {
  color: #fef08a;
  font-size: 1.1rem;
}

.hero-org-code {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--c-purple);
}

/* メイン見出しグループ（ぷっくり文字・多色グラデーション） */
.hero-title-group {
  margin-bottom: 40px;
}

.hero-sub-catch {
  font-family: var(--font-pop);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 800;
  color: var(--c-purple-dark);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-main-title {
  font-family: var(--font-pop);
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.title-decor-star {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--c-gold);
  position: absolute;
  top: 15%;
  animation: floatStar 3s infinite ease-in-out;
}

.decor-left { left: -40px; }
.decor-right { right: -40px; animation-delay: -1.5s; }

.title-keyword {
  display: block;
  font-size: clamp(3.2rem, 7.5vw, 5.4rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #ff1493 0%, #a855f7 45%, #0284c7 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 18px rgba(255, 20, 147, 0.3));
  margin-bottom: 4px;
}

.title-action {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #1e1b4b;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9);
}

.hero-lead-text {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #334155;
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 500;
}

/* 4大募集条件（背景上に直接浮かぶカラフル立体バッジ） */
.hero-highlight-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 40px;
}

.magical-badge {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.magical-badge:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.badge-pink {
  border-color: var(--c-pink-border);
  background: linear-gradient(135deg, #ffffff 60%, var(--c-pink-light) 100%);
}
.badge-pink .badge-icon-shape {
  background: var(--c-pink);
  color: #ffffff;
}
.badge-pink .badge-value {
  color: var(--c-pink);
}

.badge-purple {
  border-color: var(--c-purple-border);
  background: linear-gradient(135deg, #ffffff 60%, var(--c-purple-light) 100%);
}
.badge-purple .badge-icon-shape {
  background: var(--c-purple);
  color: #ffffff;
}
.badge-purple .badge-value {
  color: var(--c-purple);
}

.badge-cyan {
  border-color: var(--c-cyan-border);
  background: linear-gradient(135deg, #ffffff 60%, var(--c-cyan-light) 100%);
}
.badge-cyan .badge-icon-shape {
  background: var(--c-cyan);
  color: #ffffff;
}
.badge-cyan .badge-value {
  color: var(--c-cyan);
}

.badge-yellow {
  border-color: var(--c-yellow-border);
  background: linear-gradient(135deg, #ffffff 60%, var(--c-yellow-light) 100%);
}
.badge-yellow .badge-icon-shape {
  background: var(--c-yellow);
  color: #ffffff;
}
.badge-yellow .badge-value {
  color: var(--c-yellow);
}

.badge-icon-shape {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

.badge-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--c-text-muted);
}

.badge-value {
  font-family: var(--font-pop);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.2;
}

.badge-desc {
  font-size: 0.7rem;
  color: var(--c-text-sub);
  font-weight: 600;
}

/* 2大アクションボタン */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--grad-gold-pink);
  color: #ffffff;
  padding: 16px 36px;
  font-size: 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(255, 45, 135, 0.45);
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 45, 135, 0.55);
}

.btn-star-sparkle {
  color: #fef08a;
  font-size: 1.2rem;
}

.btn-hero-sub {
  background: #ffffff;
  color: var(--c-purple-dark);
  border: 2px solid var(--c-purple);
  padding: 15px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.18);
}

.btn-hero-sub:hover {
  background: var(--c-purple-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.25);
}

.hero-legal-note {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

/* --------------------------------------------------------------------------
   6. 魔法少女とは (About Section) - 2カラム＆巨大多色サークル
   -------------------------------------------------------------------------- */
.about-section {
  background: linear-gradient(180deg, #faf5ff 0%, #fdf2f8 60%, #f0fdf4 100%);
}

.about-colorful-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-grand-title {
  font-family: var(--font-pop);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 900;
  line-height: 1.35;
  color: #0f172a;
  margin-bottom: 24px;
}

.gradient-text-purple {
  background: var(--grad-pink-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-statement-box {
  background: #ffffff;
  border-left: 5px solid var(--c-pink);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(255, 45, 135, 0.08);
  position: relative;
}

.statement-ribbon {
  display: inline-block;
  background: var(--c-pink);
  color: #ffffff;
  font-family: var(--font-pop);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.statement-lead {
  font-weight: 700;
  color: #1e293b;
  line-height: 1.7;
}

.about-body-text p {
  color: var(--c-text-sub);
  margin-bottom: 16px;
  line-height: 1.85;
}

/* 右カラム：巨大多色サークル装飾ビジュアル */
.magical-circle-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-glow-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 135, 0.25) 0%, rgba(139, 92, 246, 0.2) 50%, rgba(56, 189, 248, 0.15) 75%, transparent 85%);
  animation: pulseOrb 6s infinite alternate ease-in-out;
}

.middle-star-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px dashed rgba(139, 92, 246, 0.45);
  animation: rotateRing 30s linear infinite;
}

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

.ring-point {
  position: absolute;
  color: var(--c-gold);
  font-size: 1.3rem;
}

.p1 { top: -10px; left: 50%; transform: translateX(-50%); }
.p2 { bottom: -10px; left: 50%; transform: translateX(-50%); }
.p3 { left: -10px; top: 50%; transform: translateY(-50%); }
.p4 { right: -10px; top: 50%; transform: translateY(-50%); }

.inner-emblem-disc {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #fdf4ff 100%);
  border: 3px solid #fbcfe8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.2);
  z-index: 2;
  padding: 16px;
}

.emblem-crest-symbol {
  color: var(--c-pink);
  margin-bottom: 4px;
}

.emblem-badge-tag {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--c-purple);
  background: var(--c-purple-light);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 4px;
}

.emblem-title {
  font-family: var(--font-pop);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #1e1b4b;
  margin-bottom: 2px;
}

.emblem-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--c-text-muted);
}

/* サークル周囲の軌道バッジ */
.orbit-badge {
  position: absolute;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-pop);
  font-size: 0.8rem;
  font-weight: 800;
  z-index: 3;
  white-space: nowrap;
  animation: floatStar 5s infinite ease-in-out;
}

.orbit-top {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  border: 1.5px solid var(--c-pink-border);
  color: var(--c-pink);
}

.orbit-bottom-left {
  bottom: 10px;
  left: -20px;
  border: 1.5px solid var(--c-purple-border);
  color: var(--c-purple);
  animation-delay: -2s;
}

.orbit-bottom-right {
  bottom: 10px;
  right: -20px;
  border: 1.5px solid var(--c-cyan-border);
  color: var(--c-cyan);
  animation-delay: -3.5s;
}

/* --------------------------------------------------------------------------
   7. 主な活動 (Activities Section) - カード形式（色違い＆アシンメトリー）
   -------------------------------------------------------------------------- */
.activities-section {
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfeff 60%, #faf5ff 100%);
  padding: 64px 0 84px; /* 上下の過剰な余白を削減 */
}

.activities-colorful-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px; /* 24px -> 16px に引き締め */
  max-width: 940px;
  margin: 0 auto;
}

.act-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px 22px; /* 32px 28px -> 20px 22px に大幅にスッキリ引き締め */
  border: 2px solid transparent;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.act-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.act-pink {
  border-color: var(--c-pink-border);
  background: linear-gradient(160deg, #ffffff 70%, var(--c-pink-light) 100%);
}
.act-pink .act-num, .act-pink .act-star, .act-pink .act-icon-box { color: var(--c-pink); }
.act-pink .act-tag-pill { background: var(--c-pink-light); color: var(--c-pink); }

.act-blue {
  border-color: var(--c-cyan-border);
  background: linear-gradient(160deg, #ffffff 70%, var(--c-cyan-light) 100%);
}
.act-blue .act-num, .act-blue .act-star, .act-blue .act-icon-box { color: var(--c-cyan); }
.act-blue .act-tag-pill { background: var(--c-cyan-light); color: var(--c-cyan); }

.act-yellow {
  border-color: var(--c-yellow-border);
  background: linear-gradient(160deg, #ffffff 70%, var(--c-yellow-light) 100%);
}
.act-yellow .act-num, .act-yellow .act-star, .act-yellow .act-icon-box { color: var(--c-yellow); }
.act-yellow .act-tag-pill { background: var(--c-yellow-light); color: var(--c-yellow); }

.act-mint {
  border-color: var(--c-mint-border);
  background: linear-gradient(160deg, #ffffff 70%, var(--c-mint-light) 100%);
}
.act-mint .act-num, .act-mint .act-star, .act-mint .act-icon-box { color: var(--c-mint); }
.act-mint .act-tag-pill { background: var(--c-mint-light); color: var(--c-mint); }

/* 重点カード（パープル・横長ワイド） */
.act-card-featured {
  grid-column: 1 / -1;
  border-color: var(--c-purple-border);
  background: linear-gradient(135deg, #ffffff 50%, var(--c-purple-light) 100%);
  padding: 22px 26px;
}

.act-card-featured .act-num { color: var(--c-purple); }

.act-header-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.act-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.act-icon-box svg {
  width: 25px;
  height: 25px;
}

.icon-purple {
  color: var(--c-purple);
}

.act-title-group {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.act-meta-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.act-num {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.act-title {
  font-family: var(--font-pop);
  font-size: 1.22rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
}

.act-star {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.featured-badge {
  background: var(--c-purple);
  color: #ffffff;
  font-family: var(--font-pop);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

.act-text {
  color: var(--c-text-sub);
  font-size: 0.91rem;
  line-height: 1.68;
  margin: 0;
}

.act-tag-pill {
  font-family: var(--font-pop);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   8. 一日の活動例 (Schedule Section) - タイムライン形式
   -------------------------------------------------------------------------- */
.schedule-section {
  background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 50%, #fffdf5 100%);
}

.magical-timeline-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto 40px;
  padding: 20px 0;
}

.timeline-vertical-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, #ff2d87 0%, #8b5cf6 30%, #0ea5e9 60%, #f59e0b 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-event {
  position: relative;
  width: 50%;
  padding: 16px 36px;
  box-sizing: border-box;
}

.event-left {
  left: 0;
  text-align: right;
}

.event-right {
  left: 50%;
  text-align: left;
}

.timeline-star-node {
  position: absolute;
  top: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.event-left .timeline-star-node {
  right: -16px;
}

.event-right .timeline-star-node {
  left: -16px;
}

.node-pink { color: var(--c-pink); border: 2px solid var(--c-pink); }
.node-purple { color: var(--c-purple); border: 2px solid var(--c-purple); }
.node-blue { color: var(--c-cyan); border: 2px solid var(--c-cyan); }
.node-yellow { color: var(--c-yellow); border: 2px solid var(--c-yellow); }
.node-mint { color: var(--c-mint); border: 2px solid var(--c-mint); }
.node-gold { color: var(--c-gold); border: 2px solid var(--c-gold); }

.timeline-content-bubble {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 1.5px solid transparent;
  display: inline-block;
  text-align: left;
  max-width: 360px;
}

.bubble-pink { border-color: var(--c-pink-border); }
.bubble-purple { border-color: var(--c-purple-border); }
.bubble-blue { border-color: var(--c-cyan-border); }
.bubble-yellow { border-color: var(--c-yellow-border); }
.bubble-mint { border-color: var(--c-mint-border); }
.bubble-gold { border-color: #fed7aa; }

.event-time-badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.badge-time-pink { background: var(--c-pink-light); color: var(--c-pink); }
.badge-time-purple { background: var(--c-purple-light); color: var(--c-purple); }
.badge-time-blue { background: var(--c-cyan-light); color: var(--c-cyan); }
.badge-time-yellow { background: var(--c-yellow-light); color: var(--c-yellow); }
.badge-time-mint { background: var(--c-mint-light); color: var(--c-mint); }
.badge-time-gold { background: #ffedd5; color: #c2410c; }

.event-heading {
  font-family: var(--font-pop);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.event-detail {
  font-size: 0.9rem;
  color: var(--c-text-sub);
  line-height: 1.65;
}

.timeline-note-box {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--c-text-sub);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.note-star {
  color: var(--c-gold);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   9. 募集要項 (Requirements Section) - カラフル表形式 Table
   -------------------------------------------------------------------------- */
.requirements-section {
  background: linear-gradient(180deg, #fffdf5 0%, #fff0f6 60%, #f0fdfa 100%);
}

.pop-notice-ribbon-bar {
  background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 100%);
  border: 2px dashed #f59e0b;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 36px;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.12);
}

.ribbon-icon {
  font-size: 1.8rem;
}

.ribbon-content {
  font-size: 0.98rem;
  color: #78350f;
  line-height: 1.7;
}

.magical-table-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid #fed7aa;
}

.magical-recruitment-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.magical-recruitment-table thead {
  background: var(--grad-pink-purple);
  color: #ffffff;
}

.th-title-col {
  padding: 16px 24px;
  font-family: var(--font-pop);
  font-weight: 800;
  font-size: 1rem;
  width: 28%;
}

.th-content-col {
  padding: 16px 24px;
  font-family: var(--font-pop);
  font-weight: 800;
  font-size: 1rem;
}

.magical-recruitment-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.15s ease;
}

.magical-recruitment-table tbody tr:hover {
  background-color: #faf5ff;
}

.row-header {
  padding: 16px 24px;
  font-family: var(--font-pop);
  font-weight: 800;
  font-size: 0.95rem;
  color: #1e293b;
  background-color: #f8fafc;
  border-right: 1px solid #f1f5f9;
  vertical-align: top;
}

.row-value {
  padding: 16px 24px;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
}

/* 強調行 */
.highlight-row-pink {
  background-color: #fff1f2 !important;
}
.highlight-row-pink .row-header {
  background-color: #ffe4e6;
  color: #9f1239;
}

.highlight-row-purple {
  background-color: #faf5ff !important;
}
.highlight-row-purple .row-header {
  background-color: #f3e8ff;
  color: #581c87;
}

.highlight-row-cyan {
  background-color: #f0f9ff !important;
}
.highlight-row-cyan .row-header {
  background-color: #e0f2fe;
  color: #0369a1;
}

.highlight-row-yellow {
  background-color: #fffbeb !important;
}
.highlight-row-yellow .row-header {
  background-color: #fef3c7;
  color: #92400e;
}

.sparkle-bullet {
  color: var(--c-pink);
  margin-right: 4px;
}

.badge-vital {
  display: inline-block;
  font-family: var(--font-pop);
  font-weight: 900;
  font-size: 1rem;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  margin-right: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-pink-vital { background: var(--c-pink); color: #ffffff; }
.badge-purple-vital { background: var(--c-purple); color: #ffffff; }
.badge-cyan-vital { background: var(--c-cyan); color: #ffffff; }

.row-subtext {
  display: block;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-top: 4px;
}

.text-gold-strong {
  color: #b45309;
  font-size: 1.15rem;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   10. サポート (Support Section) - 白い箱なし・背景直配置オープンレイアウト
   -------------------------------------------------------------------------- */
.support-section {
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfdf5 50%, #fff5f7 100%);
}

.support-open-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.support-open-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 16px 20px;
  border-bottom: 2px dashed rgba(16, 185, 129, 0.25);
  transition: transform 0.2s ease;
}

.support-open-item:hover {
  transform: translateX(8px);
}

.support-decor-crest {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.crest-mint { background: linear-gradient(135deg, #10b981, #059669); }
.crest-blue { background: linear-gradient(135deg, #0284c7, #0369a1); }
.crest-pink { background: linear-gradient(135deg, #ff2d87, #e11d48); }
.crest-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.crest-yellow { background: linear-gradient(135deg, #f59e0b, #d97706); }

.support-content-area {
  flex-grow: 1;
}

.support-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.support-heading {
  font-family: var(--font-pop);
  font-size: 1.25rem;
  font-weight: 800;
  color: #064e3b;
}

.support-pill-badge {
  font-family: var(--font-pop);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-full);
}

.pill-mint { background: #d1fae5; color: #065f46; }
.pill-blue { background: #e0f2fe; color: #0369a1; }
.pill-pink { background: #ffe4e6; color: #9f1239; }
.pill-purple { background: #f3e8ff; color: #6b21a8; }
.pill-yellow { background: #fef3c7; color: #92400e; }

.support-detail-text {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   11. 応募フロー (Flow Section) - STEP形式 ＋ 星・リボン連結
   -------------------------------------------------------------------------- */
.flow-section {
  background: linear-gradient(180deg, #fff5f7 0%, #faf5ff 60%, #f5f3ff 100%);
}

.magical-step-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1040px;
  margin: 0 auto;
}

.flow-card-unit {
  flex: 1;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flow-card-unit:hover {
  transform: translateY(-6px);
}

.unit-pink { border-color: var(--c-pink-border); }
.unit-purple { border-color: var(--c-purple-border); }
.unit-cyan { border-color: var(--c-cyan-border); }
.unit-mint { border-color: var(--c-mint-border); }

.unit-gold {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #ffffff 50%, #fef3c7 100%);
}

.flow-step-ribbon {
  display: inline-block;
  font-family: var(--font-pop);
  font-size: 0.72rem;
  font-weight: 900;
  color: #ffffff;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.ribbon-pink { background: var(--c-pink); }
.ribbon-purple { background: var(--c-purple); }
.ribbon-cyan { background: var(--c-cyan); }
.ribbon-mint { background: var(--c-mint); }
.ribbon-gold { background: var(--c-gold); }

.flow-star-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 12px;
  color: var(--c-pink);
}

.bubble-gold {
  background: #fef3c7;
  color: #d97706;
}

.flow-unit-title {
  font-family: var(--font-pop);
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.flow-unit-desc {
  font-size: 0.8rem;
  color: var(--c-text-sub);
  line-height: 1.6;
}

.flow-link-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--c-purple);
  font-size: 1.2rem;
  font-weight: 900;
}

.arrow-sparkle {
  color: var(--c-gold);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   12. FAQ (アコーディオン形式 / パステルラベンダー背景)
   -------------------------------------------------------------------------- */
.faq-section {
  background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 50%, #fdf2f8 100%);
}

.magical-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pop-faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--c-purple-border);
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.08);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.pop-faq-item[open] {
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.16);
  border-color: var(--c-purple);
}

.faq-summary-btn {
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-summary-btn::-webkit-details-marker {
  display: none;
}

.faq-badge-q {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-pink-purple);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-pop);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(255, 45, 135, 0.3);
}

.faq-question-text {
  font-family: var(--font-pop);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  flex-grow: 1;
}

.faq-chevron-icon {
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--c-purple);
  border-bottom: 2.5px solid var(--c-purple);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-right: 6px;
}

.pop-faq-item[open] .faq-chevron-icon {
  transform: rotate(-135deg);
}

.faq-answer-drawer {
  border-top: 1px solid #f1f5f9;
  background-color: #faf5ff;
}

.faq-answer-inner {
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.faq-badge-a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-purple);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-pop);
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.faq-answer-text {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   13. 最終応募CTA (Apply Hero Section) - ファーストビュー級の超派手グラデーション
   -------------------------------------------------------------------------- */
.apply-hero-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  background: linear-gradient(135deg, #ff1493 0%, #ec4899 30%, #8b5cf6 70%, #6366f1 100%);
  color: #ffffff;
}

.apply-sparkle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.apply-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.orb-a {
  width: 600px;
  height: 600px;
  background: #fbcfe8;
  top: -100px;
  right: 5%;
}

.orb-b {
  width: 500px;
  height: 500px;
  background: #fef08a;
  bottom: 50px;
  left: 5%;
}

.apply-star {
  position: absolute;
  color: #ffffff;
  opacity: 0.6;
  animation: floatStar 5s infinite ease-in-out;
}

.star-a { top: 15%; left: 8%; font-size: 2.5rem; }
.star-b { top: 25%; right: 12%; font-size: 2rem; color: #fef08a; }
.star-c { bottom: 20%; left: 10%; font-size: 1.8rem; color: #f472b6; }
.star-d { bottom: 15%; right: 8%; font-size: 2.2rem; }

.apply-grand-wrapper {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.apply-header-banner {
  text-align: center;
  margin-bottom: 40px;
}

.apply-ribbon-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-pop);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.tag-sparkle {
  color: #fef08a;
}

.apply-headline {
  font-family: var(--font-pop);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.apply-sub-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.apply-sub-badge {
  background: #ffffff;
  color: var(--c-pink);
  font-family: var(--font-pop);
  font-size: 0.88rem;
  font-weight: 900;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.apply-lead-text {
  font-size: 1.05rem;
  opacity: 0.95;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* 応募フォームカード本体 */
.apply-form-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: var(--c-text-main);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.form-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.form-header-icon {
  color: var(--c-pink);
  font-size: 1.3rem;
}

.form-header-title h3 {
  font-family: var(--font-pop);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

.form-instruction {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  margin-bottom: 28px;
}

/* フォーム項目共通 */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-item {
  margin-bottom: 20px;
}

.item-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-pop);
  font-size: 0.88rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}

.label-badge-req {
  background: var(--c-pink);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
}

.label-badge-opt {
  background: #94a3b8;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
}

.input-text, .select-box, .input-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #0f172a;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-text:focus, .select-box:focus, .input-textarea:focus {
  outline: none;
  border-color: var(--c-pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 135, 0.2);
}

.field-error {
  display: none;
  color: #e11d48;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 4px;
}

.field-error.is-visible {
  display: block;
}

.input-text.has-error, .select-box.has-error {
  border-color: #e11d48;
  background-color: #fff1f2;
}

.form-privacy-block {
  margin: 24px 0 32px;
  padding: 16px;
  background-color: #faf5ff;
  border-radius: 8px;
  border: 1px solid var(--c-purple-border);
}

.privacy-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #334155;
  cursor: pointer;
}

.privacy-check-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--c-pink);
}

.form-submit-wrap {
  text-align: center;
}

.btn-pop-submit {
  width: 100%;
  max-width: 440px;
  padding: 18px 36px;
  background: var(--grad-gold-pink);
  color: #ffffff;
  font-family: var(--font-pop);
  font-size: 1.25rem;
  font-weight: 900;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(255, 45, 135, 0.45);
}

.btn-pop-submit:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(255, 45, 135, 0.55);
}

.btn-sparkle-star {
  color: #fef08a;
  font-size: 1.3rem;
}

.submit-safety-note {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   14. 送信完了モーダル (<dialog>)
   -------------------------------------------------------------------------- */
.official-modal {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 500px;
  width: 90%;
  margin: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.official-modal::backdrop {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
}

.modal-box {
  background: #ffffff;
  padding: 40px 32px;
  text-align: center;
}

.modal-sparkle-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-pink-purple);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(255, 45, 135, 0.35);
}

.modal-title {
  font-family: var(--font-pop);
  font-size: 1.5rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 16px;
}

.modal-body-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: left;
}

.modal-body-text p {
  margin-bottom: 10px;
}

.modal-info-box {
  background: #f8fafc;
  border-radius: 8px;
  padding: 12px 16px;
  border-left: 4px solid var(--c-purple);
  margin-top: 14px;
}

.btn-modal-close {
  background: #1e293b;
  color: #ffffff;
  padding: 12px 36px;
  font-size: 1rem;
}

.btn-modal-close:hover {
  background: #0f172a;
}

/* --------------------------------------------------------------------------
   15. サイトフッター (法的表記要件順守)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 48px 0 36px;
  border-top: 4px solid var(--c-pink);
}

.footer-inner-content {
  text-align: center;
}

.footer-brand-area {
  margin-bottom: 20px;
}

.footer-org-name {
  font-family: var(--font-pop);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-crest-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-address {
  font-size: 0.82rem;
  color: #64748b;
}

.footer-copyright-line {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.copyright-notice {
  font-size: 0.85rem;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

.disclaimer-subtle {
  font-size: 0.68rem;
  color: #475569;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   16. レスポンシブ対応 (ブレークポイント)
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .about-colorful-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .activities-colorful-grid {
    grid-template-columns: 1fr;
  }

  .act-card-featured {
    grid-column: 1;
  }

  .featured-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-highlight-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .magical-step-flow {
    flex-direction: column;
    gap: 16px;
  }

  .flow-link-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }

  .timeline-vertical-line {
    left: 20px;
  }

  .timeline-event {
    width: 100%;
    left: 0 !important;
    padding-left: 54px;
    padding-right: 0;
    text-align: left !important;
  }

  .event-left .timeline-star-node, .event-right .timeline-star-node {
    left: 4px !important;
    right: auto !important;
  }

  .timeline-content-bubble {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header .header-nav ul li:not(.nav-cta-item) {
    display: none;
  }

  .hero-section {
    padding: 50px 0 100px;
  }

  .title-decor-star {
    display: none;
  }

  .hero-highlight-badges {
    grid-template-columns: 1fr;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .apply-form-container {
    padding: 28px 20px;
  }

  .magical-circle-wrapper {
    width: 300px;
    height: 300px;
  }

  .middle-star-ring {
    width: 260px;
    height: 260px;
  }

  .inner-emblem-disc {
    width: 180px;
    height: 180px;
  }

  .orbit-badge {
    position: static;
    margin: 8px auto;
    display: inline-flex;
  }

  .magical-circle-wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
  }
}
