/* =====================================================
   PWMC 月次決算支援者養成講座 LP - スタイルシート
   ===================================================== */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette - Light Premium */
  --bg-primary: #f8f9fc;
  --bg-secondary: #eef1f8;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f4ff;
  --bg-surface: #e8edf8;

  --accent-gold: #c07a10;
  --accent-gold-light: #e8a020;
  --accent-gold-dark: #9a6008;
  --accent-blue: #1a5fc8;
  --accent-blue-light: #2d7ae0;
  --accent-cyan: #0099cc;

  --text-primary: #0f1a2e;
  --text-secondary: #3a4a68;
  --text-muted: #7a8aaa;
  --text-accent: #c07a10;

  --border-color: rgba(0,0,0,0.10);
  --border-accent: rgba(192, 122, 16, 0.35);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #c07a10, #e8a020);
  --grad-blue: linear-gradient(135deg, #1a5fc8, #2d7ae0);
  --grad-hero: linear-gradient(135deg, #e8f0ff 0%, #f8f9fc 50%, #fff8ee 100%);
  --grad-card: linear-gradient(135deg, #ffffff, #f4f7ff);

  /* Typography */
  --font-base: 'Noto Sans JP', 'Inter', sans-serif;
  --font-en: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1140px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,30,100,0.10);
  --shadow-glow-gold: 0 0 40px rgba(192,122,16,0.15);
  --shadow-glow-blue: 0 0 40px rgba(26,95,200,0.15);
}

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

body {
  font-family: var(--font-base);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img { max-width: 100%; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.sp-only { display: none; }

/* === SECTION COMMON === */
section { padding: var(--section-padding); }
.section-dark { background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }

.section-label {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 60px;
  max-width: 680px;
}

.text-accent { color: var(--accent-gold); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-base);
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
  flex-direction: column;
  gap: 4px;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 1.2rem;
}

.btn-primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(58,123,213,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(58,123,213,0.5);
  color: #fff;
}

.btn-gold {
  background: var(--grad-gold);
  color: #1a1000;
  box-shadow: 0 4px 20px rgba(212,167,66,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,167,66,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
}
.btn-ghost:hover {
  border-color: var(--accent-blue-light);
  color: var(--accent-blue-light);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--text-primary);
}

.btn-sub {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.8;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 16px rgba(0,30,100,0.07);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 4px 24px rgba(0,30,100,0.12);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  /* フッター背景が濃紺なので白背景パッドで視認性確保 */
  filter: brightness(1.05);
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  padding: 4px 8px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 16px 24px;
  box-shadow: 0 8px 24px rgba(0,30,100,0.10);
}

.nav-mobile a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--text-primary); }
.nav-mobile .btn { margin-top: 12px; width: 100%; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--grad-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,95,200,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,95,200,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,122,224,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,160,32,0.18) 0%, transparent 70%);
  bottom: 0;
  left: -50px;
  opacity: 0.8;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,122,16,0.10);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.title-accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: 700;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.92rem;
  padding: 7px 14px;
  border-radius: 100px;
}

.tag i { color: var(--accent-gold); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-price-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: fit-content;
}

.price-normal {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-normal s {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.price-arrow { color: var(--accent-gold); font-size: 1.2rem; }

.price-special {
  font-size: 1rem;
  color: var(--accent-gold);
}

.price-special strong {
  font-size: 1.5rem;
  font-weight: 900;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.hero-scroll span {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: #9ab0d0;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #9ab0d0, transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* === PAIN SECTION === */
.pain { padding: var(--section-padding); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.pain-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(192,122,16,0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,30,100,0.13);
}

.pain-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(192,122,16,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-gold);
}

.pain-card p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.pain-card strong { color: var(--text-primary); }

.pain-arrow {
  text-align: center;
  color: var(--accent-gold);
}

.pain-arrow i {
  font-size: 2rem;
  animation: bounce 2s infinite;
}

.pain-arrow p {
  margin-top: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
}

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

/* === BENEFIT === */
.benefit { background: var(--bg-primary); }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26,95,200,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow-gold);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-number {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(26,95,200,0.08);
  line-height: 1;
  margin-bottom: 16px;
  position: absolute;
  top: 16px;
  right: 16px;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(26,95,200,0.12), rgba(26,95,200,0.06));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.benefit-card p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === CURRICULUM === */
.curriculum-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.curriculum-item {
  display: grid;
  grid-template-columns: 160px 40px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 0;
}

.cur-date {
  padding-top: 20px;
  padding-right: 24px;
  text-align: right;
}

.cur-session {
  display: block;
  font-family: var(--font-en);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.cur-day {
  display: block;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cur-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
}

.cur-dot {
  width: 16px;
  height: 16px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(26,95,200,0.4);
  z-index: 1;
  flex-shrink: 0;
}

.cur-dot-last {
  background: var(--accent-gold);
  box-shadow: 0 0 12px rgba(192,122,16,0.4);
}

.cur-line {
  width: 2px;
  flex: 1;
  min-height: 60px;
  background: linear-gradient(to bottom, var(--accent-blue), rgba(26,95,200,0.1));
  margin-top: 4px;
}

.cur-content {
  padding: 16px 0 40px 24px;
}

.curriculum-item.last .cur-content {
  padding-bottom: 0;
}

.cur-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-blue);
  background: rgba(26,95,200,0.08);
  border: 1px solid rgba(26,95,200,0.25);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.cur-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.cur-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.cur-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cur-tools span {
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: 100px;
}

.cur-tools i { color: var(--accent-cyan); margin-right: 4px; }

.curriculum-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(26,95,200,0.05);
  border: 1px solid rgba(26,95,200,0.18);
  border-radius: 16px;
  padding: 24px;
  margin-top: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.curriculum-note > i {
  font-size: 1.5rem;
  color: var(--accent-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.curriculum-note strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.curriculum-note p {
  font-size: 0.98rem;
  color: var(--text-secondary);
}

/* === SCHEDULE === */
.schedule-flow {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  margin: 0 auto;
  gap: 0;
}

.flow-item {
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  gap: 20px;
  align-items: center;
  position: relative;
}

.flow-item:not(:last-child) {
  margin-bottom: 0;
}

.flow-icon {
  width: 56px;
  height: 56px;
  background: rgba(26,95,200,0.10);
  border: 1px solid rgba(26,95,200,0.22);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-blue);
  flex-shrink: 0;
  z-index: 1;
}

.flow-item-highlight .flow-icon {
  background: var(--grad-blue);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(26,95,200,0.35);
}

.flow-content {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}

.flow-item:last-child .flow-content { border-bottom: none; }

.flow-date {
  font-size: 0.88rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}

.flow-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.flow-content p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.flow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--accent-blue);
  margin-top: 10px;
  padding: 5px 12px;
  background: rgba(26,95,200,0.08);
  border: 1px solid rgba(26,95,200,0.25);
  border-radius: 100px;
  transition: all 0.3s;
}

.flow-link:hover {
  background: rgba(26,95,200,0.15);
  color: var(--accent-blue);
}

.flow-arrow {
  color: var(--accent-gold);
  font-size: 1rem;
  opacity: 0.5;
  align-self: flex-end;
  padding-bottom: 20px;
}

/* === INSTRUCTOR === */
.instructor-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.instructor-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.photo-placeholder {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #e8edf8, #dde4f5);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #b0bcd8;
}

.instructor-badge {
  background: rgba(26,95,200,0.08);
  border: 1px solid rgba(26,95,200,0.22);
  color: var(--accent-blue);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
}

.instructor-title {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.instructor-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.instructor-name span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.instructor-profile p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.instructor-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-num small {
  font-size: 1rem;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* === ALUMNI === */
.alumni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 0 auto 24px;
}

.alumni-plan {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.alumni-plan-featured {
  border-color: rgba(26,95,200,0.3);
  background: linear-gradient(135deg, rgba(26,95,200,0.05), var(--bg-card));
  box-shadow: 0 4px 32px rgba(26,95,200,0.12);
}

.plan-badge {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.plan-badge-featured {
  color: var(--accent-blue);
}

.recommend {
  font-size: 0.8rem;
  background: var(--accent-blue);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 100px;
}

.plan-price {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.plan-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  font-size: 0.98rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li i.fa-check { color: var(--accent-blue); }
.plan-features li i.fa-times { color: #c0cce0; }
.plan-features li.disabled { opacity: 0.4; }

.alumni-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.alumni-note i { color: var(--accent-blue); margin-right: 6px; }

/* === PRICE === */
.price-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.price-badge-top {
  display: inline-block;
  background: var(--grad-gold);
  color: #1a1000;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.price-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.price-old {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-old span {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-old s {
  font-size: 2rem;
  color: var(--text-muted);
  font-weight: 700;
  font-family: var(--font-en);
}

.price-old small {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price-arrow-big {
  font-size: 2rem;
  color: var(--accent-gold);
  font-weight: 900;
}

.price-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-new span {
  font-size: 0.98rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.price-new strong {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  font-family: var(--font-en);
  line-height: 1;
}

.price-new small {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.price-includes {
  background: #f4f7ff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  margin-bottom: 24px;
}

.price-includes-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.price-includes-title i { color: var(--accent-gold); margin-right: 8px; }

.price-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-includes li {
  font-size: 0.98rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-includes li i { color: var(--accent-blue); }

.price-conditions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-conditions p {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.price-conditions i { color: var(--accent-blue); }

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,30,100,0.06);
}

.faq-item.active { border-color: rgba(26,95,200,0.35); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-q:hover { background: rgba(26,95,200,0.04); }

.faq-q span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

.faq-q i {
  color: var(--accent-blue);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-q i { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-a {
  max-height: 600px;
  padding: 0 24px 20px;
}

.faq-a p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

/* === SEMINAR CTA === */
.seminar-cta {
  background: linear-gradient(135deg, #e8f0ff 0%, #f0f5ff 50%, #e4efff 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(26,95,200,0.12);
  border-bottom: 1px solid rgba(26,95,200,0.12);
}

.seminar-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26,95,200,0.08) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-blue);
  background: rgba(26,95,200,0.10);
  border: 1px solid rgba(26,95,200,0.28);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-seminar-title {
  margin-bottom: 16px;
}

.cta-seminar-title span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-blue);
  background: rgba(26,95,200,0.08);
  border: 1px solid rgba(26,95,200,0.22);
  padding: 8px 20px;
  border-radius: 8px;
  display: inline-block;
}

.cta-inner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.cta-seminar-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
}

.cta-seminar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.cta-seminar-info i { color: var(--accent-blue); }

.cta-note {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 20px !important;
}

/* === APPLY CTA === */
.apply-cta {
  background: linear-gradient(135deg, #fff8ee 0%, #fffbf5 50%, #fff8ee 100%);
  border-top: 1px solid rgba(192,122,16,0.12);
  border-bottom: 1px solid rgba(192,122,16,0.12);
}

.apply-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.apply-badge {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  background: rgba(192,122,16,0.10);
  border: 1px solid rgba(192,122,16,0.30);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.apply-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
}

.apply-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.apply-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.apply-meta i { color: var(--accent-gold); }

.apply-meta span { color: var(--text-secondary); }

.apply-price-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}

.apply-price-old {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.apply-price-new {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-gold);
}

.apply-price-new small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.apply-note {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  background: #1a2a4a;
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo { margin-bottom: 8px; }

.footer-tagline {
  font-size: 0.92rem;
  color: #8aa0c0;
  margin-bottom: 12px;
}

.footer-url {
  font-size: 0.9rem;
  color: #7ab0e8;
  opacity: 0.85;
}

.footer-url:hover { opacity: 1; }

.footer-nav {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #dce8f8;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.92rem;
  color: #8aa0c0;
}

.footer-col a:hover { color: #c0d4f0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.88rem;
  color: #6a80a0;
}

/* === FLOATING CTA === */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.floating-cta .btn {
  font-size: 0.92rem;
  padding: 12px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* === ANIMATIONS === */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-in {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.animated,
.animate-slide-in.animated,
.animate-slide-right.animated {
  opacity: 1;
  transform: translate(0);
}

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 72px 0; }

  .sp-only { display: inline; }

  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
  .logo-sub { display: none; }

  .hero { padding: 100px 0 60px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .hero-price-preview {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .pain-grid { grid-template-columns: 1fr; }

  .benefit-grid { grid-template-columns: 1fr; }

  .curriculum-item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cur-date { text-align: left; padding: 0 0 8px 0; }
  .cur-connector { flex-direction: row; align-items: center; padding: 0; margin-bottom: 8px; }
  .cur-line { width: 100%; height: 2px; min-height: unset; margin-top: 0; margin-left: 8px; }
  .cur-content { padding: 0 0 32px 0; }

  .instructor-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .instructor-photo { flex-direction: row; align-items: center; }
  .photo-placeholder { width: 100px; height: 100px; font-size: 2.5rem; }

  .alumni-grid { grid-template-columns: 1fr; max-width: 100%; }

  .price-box { padding: 32px 20px; }
  .price-main { gap: 12px; }

  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-nav { flex-direction: column; gap: 24px; }

  .floating-cta { bottom: 16px; right: 16px; left: 16px; }
  .floating-cta { flex-direction: row; }
  .floating-cta .btn { flex: 1; font-size: 0.88rem; padding: 12px 12px; }

  .schedule-flow { padding: 0; }
  .flow-item { grid-template-columns: 48px 1fr; }
  .flow-arrow { display: none; }
  .flow-icon { width: 48px; height: 48px; font-size: 1rem; }

  .instructor-stats { gap: 20px; }

  .cta-seminar-info { flex-direction: column; align-items: center; }
  .apply-meta { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-tags { gap: 8px; }
  .tag { font-size: 0.85rem; padding: 6px 10px; }
}

/* =====================================================
   追加セクション用スタイル
   ===================================================== */

/* === HERO CATCH 補足 === */
.hero-catch {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 14px;
  line-height: 1.5;
}



/* === FOR WHOM === */
.for-whom { background: var(--bg-primary); }

.for-whom-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

.for-whom-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 22px 28px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.for-whom-item:hover {
  border-color: rgba(26,95,200,0.3);
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(0,30,100,0.12);
}

.for-whom-check {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--grad-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(26,95,200,0.3);
}

.for-whom-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.for-whom-item strong { color: var(--text-primary); }

/* === WHAT IS === */
.whatis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.whatis-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.whatis-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-blue);
}

.whatis-block:nth-child(2)::after { background: var(--grad-gold); }
.whatis-block:nth-child(3)::after { background: linear-gradient(135deg, #1a5fc8, #c07a10); }

.whatis-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,30,100,0.14);
}

.whatis-icon {
  width: 56px;
  height: 56px;
  background: rgba(26,95,200,0.10);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.whatis-block:nth-child(2) .whatis-icon {
  background: rgba(192,122,16,0.10);
  color: var(--accent-gold);
}

.whatis-block:nth-child(3) .whatis-icon {
  background: rgba(26,95,200,0.08);
  color: var(--accent-blue);
}

.whatis-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.5;
}

.whatis-block p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* === WHY THIS === */
.why-this { background: var(--bg-primary); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26,95,200,0.25);
  box-shadow: 0 12px 36px rgba(0,30,100,0.14);
}

.why-num {
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(26,95,200,0.07);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(26,95,200,0.10);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* === REASONS === */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.reason-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  text-align: center;
}

.reason-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192,122,16,0.3);
  box-shadow: var(--shadow-glow-gold);
}

.reason-icon {
  width: 64px;
  height: 64px;
  background: rgba(192,122,16,0.10);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-gold);
  margin: 0 auto 20px;
}

.reason-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.reason-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* === BEFORE / AFTER === */
.before-after { background: var(--bg-primary); }

.ba-wrapper {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.ba-col {
  border-radius: 20px;
  padding: 36px 32px;
}

.ba-before {
  background: #fff5f5;
  border: 2px solid #fca5a5;
}

.ba-after {
  background: #f0fdf4;
  border: 2px solid #6ee7b7;
}

.ba-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.ba-before .ba-header { color: #dc2626; }
.ba-after .ba-header { color: #059669; }

.ba-before .ba-header > i { color: #dc2626; font-size: 1.3rem; }
.ba-after .ba-header > i { color: #059669; font-size: 1.3rem; }

.ba-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ba-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.ba-before ul li { color: #7f1d1d; }
.ba-after ul li { color: #064e3b; }

.ba-before ul li i { color: #dc2626; margin-top: 4px; flex-shrink: 0; }
.ba-after ul li i { color: #059669; margin-top: 4px; flex-shrink: 0; }

.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-blue);
}

/* === STEPS FLOW (SCHEDULE) === */
.steps-flow {
  max-width: 680px;
  margin: 0 auto;
}

.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  align-items: start;
}

.step-badge {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-blue);
  background: rgba(26,95,200,0.10);
  border: 1.5px solid rgba(26,95,200,0.22);
  padding: 5px 10px;
  border-radius: 100px;
  text-align: center;
  margin-top: 18px;
  white-space: nowrap;
}

.step-badge-final {
  color: var(--accent-gold);
  background: rgba(192,122,16,0.10);
  border-color: var(--border-accent);
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 22px 24px;
  margin-left: 16px;
  margin-bottom: 0;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: rgba(26,95,200,0.25);
  box-shadow: 0 8px 28px rgba(0,30,100,0.12);
}

.step-card-final {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(192,122,16,0.06), var(--bg-card));
  box-shadow: var(--shadow-glow-gold);
}

.step-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(26,95,200,0.10);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-blue);
}

.step-icon-final {
  background: var(--grad-gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(192,122,16,0.35);
}

.step-info .step-date {
  font-size: 0.82rem;
  color: var(--accent-blue);
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}

.step-item-final .step-info .step-date { color: var(--accent-gold); }

.step-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step-info p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.step-connector {
  text-align: center;
  padding: 10px 0 10px 38px;
  color: var(--accent-blue);
  opacity: 0.5;
  font-size: 1rem;
}

.flow-link-gold {
  color: var(--accent-gold);
  background: rgba(192,122,16,0.08);
  border-color: rgba(192,122,16,0.3);
}

.flow-link-gold:hover {
  background: rgba(192,122,16,0.16);
  color: var(--accent-gold);
}

/* === PRICE TIERS === */
.price-tiers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
}

.price-tier {
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  border-radius: 14px;
  flex-wrap: wrap;
}

.price-tier-normal {
  background: #f5f7fa;
  border: 1px solid var(--border-color);
}

.price-tier-featured {
  background: linear-gradient(135deg, rgba(192,122,16,0.10), rgba(192,122,16,0.04));
  border: 2px solid var(--border-accent);
  box-shadow: 0 4px 20px rgba(192,122,16,0.15);
}

.pt-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  line-height: 1.4;
}

.price-tier-featured .pt-label {
  color: var(--accent-gold);
  font-size: 1rem;
}

.pt-price {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.pt-price-main {
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}

.pt-tax {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-tier-divider {
  color: var(--accent-gold);
  font-size: 1.2rem;
  padding: 8px 0;
  opacity: 0.7;
}

.price-limit-note {
  font-size: 0.9rem;
  color: #c05a00;
  background: rgba(192,90,0,0.06);
  border: 1px solid rgba(192,90,0,0.2);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.price-limit-note i { color: #c05a00; }

/* === PRICE BONUS === */
.price-bonus {
  background: linear-gradient(135deg, #fffbf0, #fff8e6);
  border: 2px solid rgba(192,122,16,0.25);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
}

.price-bonus-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.price-bonus-title i { font-size: 1.2rem; }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* === BONUS GRID — 2アイテム時は2列中央表示 === */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 560px;
  margin: 0 auto;
}

.bonus-grid.bonus-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
}

/* === BONUS ITEM === */
.bonus-item {
  background: #fff;
  border: 1px solid rgba(192,122,16,0.18);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.bonus-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(192,122,16,0.15);
}

.bonus-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(192,122,16,0.10);
  border: 1px solid rgba(192,122,16,0.2);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.bonus-icon {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.bonus-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.bonus-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === INSTRUCTOR PHOTO (実写) === */
.instructor-photo-img {
  width: 200px;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  display: block;
  box-shadow: var(--shadow-card);
}

.instructor-catchphrase {
  font-size: 0.95rem;
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 20px;
  line-height: 1.5;
  border-left: 3px solid var(--accent-gold);
  padding-left: 12px;
}

/* === INSTRUCTOR HIGHLIGHTS === */
.instructor-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.highlight-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(26,95,200,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-blue);
}

.highlight-item p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  padding-top: 6px;
}

/* === ALUMNI SINGLE PLAN === */
.alumni-grid-single {
  grid-template-columns: 1fr;
  max-width: 400px;
}

/* === SEMINAR VIDEO EMBED === */
.seminar-video-wrap {
  margin-top: 40px;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.seminar-video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #cc0000;
  background: rgba(204,0,0,0.07);
  border: 1px solid rgba(204,0,0,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.seminar-video-label i { font-size: 1.1rem; }

.seminar-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.seminar-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.seminar-video-caption {
  font-size: 1rem !important;
  font-weight: 700;
  color: var(--accent-blue) !important;
  margin-top: 14px !important;
  margin-bottom: 0 !important;
  text-align: center;
}

/* === BONUS SUB NOTE === */
.bonus-sub-note {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
  margin-top: 6px !important;
  padding-top: 6px;
  border-top: 1px dashed rgba(192,122,16,0.25);
}

/* === FOOTER NOTE === */
.footer-note {
  font-size: 0.78rem;
  color: #4a6080;
  margin-top: 8px;
}

/* === STEP CONNECTOR (Schedule flow) === */
.step-connector {
  text-align: center;
  padding: 8px 0 8px 38px;
  color: var(--accent-blue);
  opacity: 0.45;
  font-size: 1rem;
  line-height: 1;
}

/* === NAV MOBILE active link === */
.nav-mobile a.active {
  color: var(--accent-blue);
  font-weight: 700;
}

/* === HERO CATCH HIGHLIGHT === */
.hero-catch em {
  font-style: normal;
  color: var(--accent-gold);
}

/* === whatis / why-this / reasons section-dark override === */
.whatis { background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.reasons { background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }

@media (max-width: 768px) {
  .instructor-photo-img {
    width: 100px;
    height: 130px;
  }
  .seminar-video-wrap { margin-top: 28px; }
  .bonus-grid { max-width: 100%; }
}

/* === RESPONSIVE 追加セクション === */
@media (max-width: 1024px) {
  .whatis-grid,
  .why-grid,
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(3, 1fr); }
  .step-item { grid-template-columns: 76px 1fr; }
}

@media (max-width: 768px) {
  .whatis-grid,
  .why-grid,
  .reasons-grid,
  .bonus-grid { grid-template-columns: 1fr; }

  .ba-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ba-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .for-whom-item { padding: 18px 20px; }

  .step-item { grid-template-columns: 70px 1fr; }
  .step-badge { font-size: 0.65rem; padding: 4px 8px; }
  .step-card { padding: 18px 16px; margin-left: 10px; }

  .price-tier { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pt-price-main { font-size: 2.5rem; }

  .price-bonus { padding: 24px 16px; }
  .price-tiers { width: 100%; }
  .price-tier { max-width: 100%; }
}

@media (max-width: 480px) {
  .ba-col { padding: 24px 20px; }
  .bonus-item { padding: 20px 16px; }
}
