﻿/* ===== Section alternating backgrounds ===== */
#sec-about, #sec-target, #sec-pricing, #course-contact {
  background: #05060a;
}
#sec-instructor, #sec-learn, #sec-faq {
  background: linear-gradient(180deg, #0c0f1c, #080a14);
}

/* ===== Section dividers with shadow ===== */
#sec-about, #sec-instructor, #sec-target, #sec-learn,
#sec-pricing, #sec-faq, #course-contact, .pricing-cta-band {
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 16px 32px rgba(0,0,0,.45);
}

/* ===== Subpage shared styles ===== */
.subpage-hero {
  position: relative; padding-top: 11rem; padding-bottom: 5rem; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.subpage-hero .blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .4; mix-blend-mode: screen; }
.subpage-hero .blob-a { width: 480px; height: 480px; background: radial-gradient(circle, var(--cyan), transparent 70%); top: -160px; left: -120px; }
.subpage-hero .blob-b { width: 420px; height: 420px; background: radial-gradient(circle, var(--magenta), transparent 70%); top: -120px; right: -100px; }
.subpage-hero .hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at top, #000 20%, transparent 75%);
}
.subpage-hero-inner { position: relative; z-index: 2; }
.breadcrumb { font-family: "Space Grotesk",sans-serif; font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--cyan); }
.subpage-title { font-family: "Space Grotesk","Noto Sans JP",sans-serif; font-weight: 700; font-size: clamp(2rem,5vw,3.4rem); line-height: 1.15; }
.subpage-lead { color: rgba(255,255,255,.65); margin-top: 1.2rem; max-width: 44rem; line-height: 1.9; }

/* ---- Course ---- */
.feature-card {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 2rem;
  transition: transform .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(34,227,255,.4); }
.feature-card .fc-icon { font-size: 1.6rem; color: var(--cyan); margin-bottom: 1rem; }
.feature-card h3 { font-family: "Space Grotesk","Noto Sans JP",sans-serif; font-weight: 700; font-size: 1.2rem; margin-bottom: .6rem; }
.feature-card p { color: rgba(255,255,255,.6); line-height: 1.8; font-size: .92rem; }

.target-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.target-item i { color: var(--cyan); font-size: 1.1rem; margin-top: .2rem; }
.target-item span { color: rgba(255,255,255,.8); }

.flow-step { position: relative; padding-left: 3.5rem; padding-bottom: 2.5rem; border-left: 1px solid rgba(34,227,255,.3); margin-left: 1rem; }
.flow-step:last-child { border-left: 1px solid transparent; padding-bottom: 0; }
.flow-num {
  position: absolute; left: -1.1rem; top: 0; width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--ink); border: 1px solid var(--cyan); color: var(--cyan);
  display: flex; align-items: center; justify-content: center; font-family: "Space Grotesk",sans-serif; font-weight: 600;
  box-shadow: 0 0 14px rgba(34,227,255,.4);
}
.flow-step h4 { font-family: "Space Grotesk","Noto Sans JP",sans-serif; font-weight: 600; font-size: 1.1rem; margin-bottom: .4rem; }
.flow-step p { color: rgba(255,255,255,.6); line-height: 1.7; font-size: .92rem; }

/* ---- Pricing ---- */
.pricing-tabs { display: inline-flex; gap: .5rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: .35rem; margin: 0 auto 3rem; }
.pricing-tab { padding: .6rem 1.6rem; border-radius: 999px; font-family: "Space Grotesk","Noto Sans JP",sans-serif; font-weight: 600; color: rgba(255,255,255,.6); cursor: pointer; transition: all .25s; border: none; background: transparent; }
.pricing-tab.active { background: linear-gradient(120deg, var(--cyan), #5ad1ff); color: #001318; box-shadow: 0 0 18px rgba(34,227,255,.4); }

/* ---- 残席表示 ---- */
.seats-info {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  margin-top: auto; padding-top: 1.4rem;
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 1rem;
  text-align: center;
  margin-top: 1.6rem;
}
.seats-info i { font-size: 1rem; color: rgba(255,255,255,.5); }
.seats-info .seats-label { color: rgba(255,255,255,.7); font-weight: 500; font-size: 1rem; }
.seats-info .seats-num { font-family: "Space Grotesk",sans-serif; font-weight: 700; font-size: 1.5rem; }
.seats-info.ample  .seats-num { color: #22e3ff; }
.seats-info.low    .seats-num { color: #ffae00; }
.seats-info.last   .seats-num { color: var(--magenta); }
.seats-info.soldout { border-color: rgba(255,43,214,.3); background: rgba(255,43,214,.06); }
.seats-info.soldout .seats-num { color: var(--magenta); }
.seats-soldout-badge {
  display: none; margin-left: auto;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  color: var(--magenta); border: 1px solid rgba(255,43,214,.5);
  border-radius: 999px; padding: .2rem .6rem;
}
.seats-info.soldout .seats-soldout-badge { display: inline; }

.price-card.is-soldout { opacity: .7; }
.price-card.is-soldout .price-cta {
  pointer-events: none; opacity: .4; cursor: not-allowed;
}
/* ---- 締め切り注意バナー ---- */
.deadline-notice {
  display: flex; align-items: flex-start; gap: .8rem;
  background: rgba(255,43,214,.07); border: 1px solid rgba(255,43,214,.25);
  border-radius: 12px; padding: .9rem 1.2rem; margin-top: 1.2rem;
  font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.7;
}
.deadline-notice i { color: var(--magenta); margin-top: .15rem; flex-shrink: 0; }

.price-card {
  position: relative; background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1); border-radius: 22px; padding: 2.5rem 2.8rem;
  display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s;
}
.price-card.basic-plan:hover  { transform: translateY(-6px); border-color: rgba(34,227,255,.7);  box-shadow: 0 20px 50px rgba(34,227,255,.2); }
.price-card.pro-plan:hover    { transform: translateY(-6px); border-color: rgba(255,43,214,.7);   box-shadow: 0 20px 50px rgba(255,43,214,.2); }
.price-card.pro-plan { border-color: rgba(255,255,255,.15); }

/* ---- ホバー時 用途メッセージ ---- */
.plan-fit-tag {
  display: flex; align-items: center; gap: .6rem;
  border-radius: 8px; padding: .8rem 1rem;
  font-size: 1.05rem; font-weight: 700; line-height: 1.5;
  margin-bottom: 1rem;
}
.plan-fit-tag.cyan    { background: rgba(34,227,255,.1);  color: var(--cyan);    border: 1px solid rgba(34,227,255,.3); }
.plan-fit-tag.magenta { background: rgba(255,43,214,.1);  color: var(--magenta); border: 1px solid rgba(255,43,214,.3); }
.plan-fit-tag i { font-size: .9rem; flex-shrink: 0; }
.price-name { font-family: "Space Grotesk","Noto Sans JP",sans-serif; font-weight: 700; font-size: 1.6rem; text-align: center; margin-bottom: 1.4rem; }
.price-desc { color: rgba(255,255,255,.6); font-size: .95rem; margin-top: .6rem; min-height: 2.4rem; line-height: 1.7; }
.price-amount { margin: 1.6rem 0; text-align: center; }
.price-main-row {
  display: flex; align-items: center; justify-content: center;
  gap: .9rem; flex-wrap: wrap;
}
.price-arrow { color: rgba(255,255,255,.3); font-size: .85rem; }
.price-amount .num { font-family: "Space Grotesk",sans-serif; font-weight: 700; font-size: 2.4rem; color: #fff; }
.price-amount .unit { color: rgba(255,255,255,.5); font-size: .9rem; }
.price-amount .from { color: rgba(255,255,255,.6); font-size: 1.2rem; display: inline; margin-bottom: 0; }
.price-inline { display: flex; align-items: baseline; gap: .1rem; line-height: 1; }
.price-sub-row {
  display: flex; align-items: center; justify-content: center;
  gap: .6rem; flex-wrap: wrap; margin-bottom: .6rem;
}
.price-features { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: .8rem; }
.price-features li { color: rgba(255,255,255,.8); font-size: .95rem; display: flex; gap: .6rem; align-items: flex-start; }
.price-features li i { color: var(--cyan); margin-top: .25rem; font-size: .8rem; }
.price-features li.muted { color: rgba(255,255,255,.35); }
.price-features li.muted i { color: rgba(255,255,255,.25); }
.price-cta { margin-top: auto; }

.pricing-pane { display: none; }
.pricing-pane.active { display: grid; }

.faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-q { width: 100%; text-align: left; padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: none; border: none; color: #fff; font-family: "Noto Sans JP",sans-serif; font-size: 1rem; font-weight: 500; cursor: pointer; }
.faq-q i { color: var(--cyan); transition: transform .3s; flex-shrink: 0; }
.faq-q.open i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: rgba(255,255,255,.6); line-height: 1.8; }
.faq-a-inner { padding-bottom: 1.3rem; }

.note { color: rgba(255,255,255,.4); font-size: .8rem; }

/* ---- LP shared ---- */
.lp-cta-band {
  position: relative; overflow: hidden; border-radius: 24px;
  background: linear-gradient(120deg, rgba(34,227,255,.12), rgba(255,43,214,.12));
  border: 1px solid rgba(255,255,255,.12); padding: 3.5rem 2rem; text-align: center;
}
.lp-cta-band .glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, var(--cyan), transparent 70%); filter: blur(80px); opacity: .3; top: -120px; left: 50%; transform: translateX(-50%); }
.lp-cta-band h2 { position: relative; z-index: 1; }

.usecase-card {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 1.8rem;
  transition: transform .3s, border-color .3s;
}
.usecase-card:hover { transform: translateY(-5px); border-color: rgba(34,227,255,.4); }
.usecase-card .uc-tag { font-family: "Space Grotesk",sans-serif; font-size: .65rem; letter-spacing: .2em; color: var(--cyan); }
.usecase-card h3 { font-family: "Space Grotesk","Noto Sans JP",sans-serif; font-weight: 700; font-size: 1.1rem; margin: .5rem 0 .6rem; }
.usecase-card p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.8; }

.strength-row { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.6rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.strength-row .sr-num { font-family: "Space Grotesk",sans-serif; font-weight: 700; font-size: 1.6rem; color: var(--cyan); line-height: 1; flex-shrink: 0; width: 2.5rem; text-shadow: 0 0 16px rgba(34,227,255,.4); }
.strength-row h3 { font-family: "Noto Sans JP",sans-serif; font-weight: 600; font-size: 1.1rem; margin-bottom: .4rem; }
.strength-row p { color: rgba(255,255,255,.6); line-height: 1.8; font-size: .92rem; }

.lp-mini-form { margin-top: 2.5rem; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 2rem; text-align: left; }

/* =========================================================
   COURSE PAGE — Enhanced Sections
   ========================================================= */

/* ----- Course Hero (強化版) ----- */
.course-hero {
  position: relative;
  padding-top: 11rem;
  padding-bottom: 6rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.course-hero .blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .4; mix-blend-mode: screen; }
.course-hero .blob-a { width: 560px; height: 560px; background: radial-gradient(circle, var(--cyan), transparent 70%); top: -200px; left: -140px; }
.course-hero .blob-b { width: 500px; height: 500px; background: radial-gradient(circle, var(--magenta), transparent 70%); top: -160px; right: -120px; }
.course-hero .hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at top, #000 20%, transparent 75%);
}
.course-hero .scanline-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,.012) 3px, rgba(255,255,255,.012) 4px);
}
.course-hero-inner { position: relative; z-index: 2; }

/* Hero Title */
.course-hero-title {
  font-family: "Space Grotesk","Noto Sans JP",sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.15;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.title-line-1 { color: rgba(255,255,255,.7); font-size: .65em; font-weight: 500; }
.title-line-2 { font-size: 1.1em; }
.title-line-3 { color: #fff; }

.course-hero-lead {
  color: rgba(255,255,255,.65);
  margin-top: 1.4rem;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  line-height: 2;
  max-width: 44rem;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(120deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 2.8rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  max-width: 700px;
}
.hero-stat {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 1rem;
  gap: .25rem;
}
.hero-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
}
.stat-num {
  font-family: "Space Grotesk",sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(34,227,255,.5);
}
.stat-num small { font-size: .55em; font-weight: 600; }
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  line-height: 1.4;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}
.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: .35rem .9rem;
}
.trust-badges span i { color: var(--cyan); }

/* ----- Compare Table ----- */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  min-width: 600px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.compare-header, .compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr;
}
.compare-header {
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.compare-row {
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,.03); }
.compare-cell {
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
}
.compare-label-col { }
.compare-label {
  font-weight: 600;
  color: rgba(255,255,255,.75);
  font-family: "Noto Sans JP",sans-serif;
}
.compare-other {
  color: rgba(255,255,255,.62);
  border-left: 1px solid rgba(255,255,255,.07);
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: .4rem;
}
.compare-other span { font-size: .82rem; }
.compare-us {
  background: rgba(34,227,255,.06);
  border-left: 2px solid rgba(34,227,255,.4);
  color: rgba(255,255,255,.85);
  font-weight: 500;
  justify-content: flex-start;
  gap: .6rem;
}
.compare-us span { font-size: .85rem; }
.compare-header .compare-other, .compare-header .compare-us {
  font-family: "Space Grotesk",sans-serif;
  font-weight: 700;
  font-size: .9rem;
  text-align: center;
  justify-content: center;
  gap: .4rem;
}
.compare-header .compare-us { color: var(--cyan); }
.compare-table.compare-4col .compare-header,
.compare-table.compare-4col .compare-row {
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
}
.compare-note {
  text-align: center;
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  margin-top: .75rem;
}
.logo-dot.small {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

/* ----- Instructor ----- */
.instructor-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
  overflow: hidden;
}
@media (max-width: 640px) {
  .instructor-card { grid-template-columns: 1fr; }
}
.instructor-card-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,227,255,.15), transparent 70%);
  filter: blur(60px);
  top: -80px; left: -60px;
  pointer-events: none;
}
.instructor-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}
.instructor-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34,227,255,.2), rgba(255,43,214,.15));
  border: 2px solid rgba(34,227,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--cyan);
  box-shadow: 0 0 30px rgba(34,227,255,.2);
}
.instructor-badge-wrap { text-align: center; }
.instructor-badge {
  font-family: "Space Grotesk",sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  background: linear-gradient(120deg, var(--cyan), var(--magenta));
  color: #fff; padding: .3rem .8rem; border-radius: 999px;
}
.instructor-name {
  font-family: "Space Grotesk","Noto Sans JP",sans-serif;
  font-size: 1.6rem; font-weight: 700; margin-bottom: .8rem;
}
.instructor-bio {
  color: rgba(255,255,255,.65);
  line-height: 1.9;
  font-size: .95rem;
  margin-bottom: 1.2rem;
}
.instructor-bio a:hover { opacity: .8; }
.instructor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.4rem;
}
.instructor-tags span {
  font-family: "Space Grotesk",sans-serif;
  font-size: .72rem;
  background: rgba(34,227,255,.1);
  border: 1px solid rgba(34,227,255,.25);
  color: var(--cyan);
  padding: .25rem .7rem;
  border-radius: 6px;
}
.instructor-achievements { display: flex; flex-direction: column; gap: .6rem; }
.ach-item { display: flex; align-items: center; gap: .8rem; font-size: .88rem; color: rgba(255,255,255,.7); }

/* ----- Features v2 ----- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card-v2 {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 2.2rem 2rem;
  transition: transform .3s, border-color .3s;
  overflow: hidden;
}
.feature-card-v2:hover { transform: translateY(-6px); border-color: rgba(34,227,255,.4); }
.feature-card-v2.featured {
  border-color: rgba(34,227,255,.35);
  background: linear-gradient(160deg, rgba(34,227,255,.07), rgba(255,43,214,.04));
  box-shadow: 0 0 40px rgba(34,227,255,.1);
}
.fcv2-num {
  font-family: "Space Grotesk",sans-serif;
  font-size: 4rem; font-weight: 700;
  color: rgba(34,227,255,.1);
  position: absolute; top: 1rem; right: 1.2rem;
  line-height: 1; pointer-events: none;
}
.fcv2-icon {
  font-size: 1.8rem; color: var(--cyan);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(34,227,255,.5);
}
.feature-card-v2 h3 {
  font-family: "Space Grotesk","Noto Sans JP",sans-serif;
  font-weight: 700; font-size: 1.25rem;
  line-height: 1.4; margin-bottom: .8rem;
}
.feature-card-v2 p {
  color: rgba(255,255,255,.6); line-height: 1.8; font-size: .92rem;
  margin-bottom: 1.2rem;
}
.fcv2-detail {
  display: flex; flex-direction: column; gap: .45rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.1rem;
  margin-top: .5rem;
}
.fcv2-detail span {
  font-size: .8rem; color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: .5rem;
}
.fcv2-detail span i { color: var(--cyan); font-size: .7rem; }

/* ----- Before / After ----- */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 640px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); justify-content: center; }
}
.ba-card {
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.1);
}
.ba-card.before {
  background: rgba(255,255,255,.03);
}
.ba-card.after {
  background: rgba(34,227,255,.06);
  border-color: rgba(34,227,255,.25);
  box-shadow: 0 0 30px rgba(34,227,255,.08);
}
.ba-label-wrap { margin-bottom: 1.2rem; }
.ba-label {
  font-family: "Space Grotesk",sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  padding: .25rem .8rem; border-radius: 999px;
}
.ba-card.before .ba-label {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.4);
}
.ba-card.after .ba-label {
  background: linear-gradient(120deg, var(--cyan), #5ad1ff);
  color: #001318;
}
.ba-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .9rem; }
.ba-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .9rem; line-height: 1.6; }
.ba-card.before .ba-list li { color: rgba(255,255,255,.45); }
.ba-card.after .ba-list li { color: rgba(255,255,255,.85); }
.ba-card.before .ba-list li i { color: rgba(255,80,80,.6); margin-top: .2rem; }
.ba-card.after .ba-list li i { color: var(--cyan); margin-top: .2rem; }
.ba-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: rgba(34,227,255,.5);
  text-shadow: 0 0 20px rgba(34,227,255,.4);
}

/* ----- Student Voice ----- */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .voices-grid { grid-template-columns: 1fr; } }
.voice-card {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}
.voice-card::before {
  content: '\201C';
  position: absolute; top: 1rem; left: 1.5rem;
  font-family: Georgia, serif;
  font-size: 4rem; line-height: 1;
  color: rgba(34,227,255,.15);
  pointer-events: none;
}
.voice-stars { display: flex; gap: .2rem; color: #f5c518; font-size: .85rem; margin-bottom: 1rem; }
.voice-text {
  color: rgba(255,255,255,.7);
  font-size: .9rem; line-height: 1.9;
  margin-bottom: 1.2rem;
}
.voice-meta { display: flex; flex-direction: column; gap: .4rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.07); }
.voice-tag {
  font-family: "Space Grotesk",sans-serif;
  font-size: .7rem; font-weight: 600; letter-spacing: .1em;
  color: var(--cyan);
  background: rgba(34,227,255,.1); border: 1px solid rgba(34,227,255,.2);
  padding: .2rem .7rem; border-radius: 999px; width: fit-content;
}
.voice-name { font-size: .82rem; color: rgba(255,255,255,.5); }

/* Result Banner */
.result-banner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(34,227,255,.08), rgba(255,43,214,.06));
  border: 1px solid rgba(255,255,255,.1);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.rb-glow {
  position: absolute;
  width: 400px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,227,255,.15), transparent 70%);
  filter: blur(60px);
  top: -80px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.rb-item {
  flex: 1; min-width: 160px;
  display: flex; flex-direction: column; align-items: center;
  gap: .2rem; padding: 1rem;
  position: relative; z-index: 1; text-align: center;
}
.rb-num { font-size: .78rem; color: rgba(255,255,255,.45); }
.rb-label { font-size: .72rem; color: rgba(255,255,255,.4); }
.rb-big {
  font-family: "Space Grotesk",sans-serif;
  font-size: 2.4rem; font-weight: 700; line-height: 1.1;
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(34,227,255,.5);
}
.rb-div { width: 1px; height: 60px; background: rgba(255,255,255,.12); }

/* ----- NOT FOR box ----- */
.not-for-box {
  background: rgba(255,200,50,.05);
  border: 1px solid rgba(255,200,50,.15);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
}
.not-for-title {
  font-weight: 600; font-size: .95rem;
  margin-bottom: .8rem;
  color: rgba(255,255,255,.8);
}
.not-for-box ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.not-for-box li { display: flex; align-items: center; gap: .6rem; font-size: .87rem; color: rgba(255,255,255,.5); }
.not-for-box li i { color: rgba(255,100,100,.6); }

/* ----- Roadmap ----- */
.roadmap { display: flex; flex-direction: column; gap: 0; }
.roadmap-phase {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  overflow: hidden;
}
.roadmap-phase.highlight {
  border-color: rgba(34,227,255,.35);
  box-shadow: 0 0 30px rgba(34,227,255,.08);
}
.rp-header {
  padding: 1.4rem 1.8rem;
  background: rgba(255,255,255,.04);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.roadmap-phase.highlight .rp-header { background: rgba(34,227,255,.07); border-bottom-color: rgba(34,227,255,.2); }
.rp-phase {
  font-family: "Space Grotesk",sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  color: var(--cyan);
  background: rgba(34,227,255,.1); border: 1px solid rgba(34,227,255,.25);
  padding: .25rem .8rem; border-radius: 999px;
  white-space: nowrap;
}
.rp-title {
  font-family: "Space Grotesk","Noto Sans JP",sans-serif;
  font-weight: 600; font-size: 1rem;
}
.rp-goal {
  font-size: .8rem; color: rgba(255,255,255,.45);
  margin-left: auto;
  white-space: nowrap;
}
@media (max-width: 640px) { .rp-goal { margin-left: 0; } }
.rp-items {
  padding: 1.4rem 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}
@media (max-width: 640px) { .rp-items { grid-template-columns: 1fr; } }
.rp-items span {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: rgba(255,255,255,.65);
}
.rp-items span i { color: var(--cyan); font-size: .75rem; flex-shrink: 0; }
.roadmap-arrow {
  display: flex; justify-content: center; align-items: center;
  padding: .8rem 0;
  font-size: 1.4rem; color: rgba(34,227,255,.4);
}

/* ----- Learning Flow (new single-card roadmap) ----- */
.learning-flow {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  overflow: hidden;
}
.lf-step {
  padding: 2rem 2.4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .25s, box-shadow .25s;
  cursor: default;
}
.lf-step:hover {
  background: rgba(34,227,255,.05);
  box-shadow: inset 4px 0 0 rgba(34,227,255,.6);
}
.lf-step:hover .lf-phase-badge {
  background: rgba(34,227,255,.2);
  border-color: rgba(34,227,255,.5);
  color: var(--cyan);
}
.lf-step:hover .lf-step-title { color: var(--cyan); }
.lf-step:hover .lf-message { color: rgba(255,255,255,.85); }
.lf-step-highlight {
  border-bottom: none;
}
.lf-step-highlight:hover {
  background: rgba(34,227,255,.05);
  box-shadow: inset 4px 0 0 rgba(34,227,255,.6);
}
.lf-step-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.lf-phase-badge {
  font-family: "Space Grotesk", sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  color: rgba(34,227,255,.7);
  background: rgba(34,227,255,.1);
  border: 1px solid rgba(34,227,255,.25);
  padding: .3rem .9rem; border-radius: 999px;
  white-space: nowrap; margin-top: .2rem;
}
.lf-phase-badge.highlight {
  background: rgba(34,227,255,.08);
  color: rgba(34,227,255,.7);
  border-color: rgba(34,227,255,.25);
}
.lf-step-titles { display: flex; flex-direction: column; gap: .35rem; }
.lf-step-title {
  font-family: "Space Grotesk","Noto Sans JP", sans-serif;
  font-weight: 700; font-size: 1.15rem; color: #fff;
}
.lf-goal {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: rgba(255,255,255,.45);
  letter-spacing: .06em;
}
.lf-goal i { font-size: .7rem; color: rgba(34,227,255,.5); }
.lf-message {
  color: rgba(255,255,255,.65);
  font-size: .95rem; line-height: 2;
  letter-spacing: .06em;
  padding-left: calc(.7rem + .9rem + 1.2rem);
}
.lf-connector {
  display: flex; justify-content: center; align-items: center;
  padding: .6rem 0;
  font-size: 1.1rem; color: rgba(34,227,255,.35);
  background: rgba(255,255,255,.015);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.lf-footer {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1.4rem 2.4rem;
  background: rgba(34,227,255,.05);
  border-top: 1px solid rgba(34,227,255,.15);
  font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.8;
}
.lf-footer i { color: var(--cyan); flex-shrink: 0; margin-top: .2rem; }
.lf-footer strong { color: #fff; }

/* ----- Guarantee box ----- */
.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  background: rgba(34,227,255,.05);
  border: 1px solid rgba(34,227,255,.2);
  border-radius: 16px;
  padding: 1.8rem 2rem;
}
@media (max-width: 480px) {
  .guarantee-box { flex-direction: column; align-items: flex-start; }
}

/* ----- Form trust bar ----- */
.form-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
}
.form-trust-bar span {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; color: rgba(255,255,255,.55);
}

/* ----- Instructor Note Cards ----- */
.instructor-note-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 2.4rem 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.instructor-note-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34,227,255,.3);
}
.inc-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(34,227,255,.08);
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  pointer-events: none;
  user-select: none;
}
.inc-title {
  font-family: "Space Grotesk","Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(34,227,255,.15);
}
@media (max-width: 640px) {
  .inc-title { white-space: normal; }
}
.inc-body {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  line-height: 2.1;
  letter-spacing: .06em;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}
.inc-body:last-of-type { margin-bottom: 1.4rem; }
/* キーワードハイライト */
.inc-body strong,
.inc-body em {
  color: #fff;
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(transparent 60%, rgba(34,227,255,.2) 60%);
}
.inc-tag {
  margin-top: auto;
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(34,227,255,.5);
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.07);
}

/* ----- Target Grid (2col) ----- */
.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .target-grid { grid-template-columns: 1fr; }
}
.target-col {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.target-col-header {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 1.1rem 1.6rem;
  font-family: "Space Grotesk","Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.target-col-header.good {
  background: rgba(34,227,255,.1);
  border-bottom: 1px solid rgba(34,227,255,.2);
  color: var(--cyan);
}
.target-col-header.bad {
  background: rgba(255,200,50,.07);
  border-bottom: 1px solid rgba(255,200,50,.18);
  color: #f5c518;
}
.target-col-body {
  padding: 1.2rem 1.6rem;
  background: rgba(255,255,255,.02);
  display: flex;
  flex-direction: column;
}
.target-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .92rem;
  letter-spacing: .06em;
  line-height: 1.7;
}
.target-item:last-child { border-bottom: none; }
.target-item i { margin-top: .2rem; flex-shrink: 0; }
.target-item span { color: rgba(255,255,255,.8); }
.target-item i.fa-circle-check { color: var(--cyan); }
.target-item.not i.fa-xmark { color: rgba(255,100,100,.7); }
.target-item.not span { color: rgba(255,255,255,.55); }

/* CTA band features */
.cta-band-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem 2rem;
  margin-bottom: 2rem;
}
.cta-band-features span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}

/* ----- Flow Counseling Card ----- */
.flow-counseling-card {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  overflow: hidden;
}
.fcc-header {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 2rem 2.2rem;
  background: rgba(34,227,255,.07);
  border-bottom: 1px solid rgba(34,227,255,.2);
}
.fcc-step-badge {
  font-family: "Space Grotesk", sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  background: linear-gradient(120deg, var(--cyan), #5ad1ff);
  color: #001318;
  padding: .35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  margin-top: .3rem;
}
.fcc-title {
  font-family: "Space Grotesk","Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
}
.fcc-time {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .78rem;
  font-weight: 400;
  color: var(--cyan);
  background: rgba(34,227,255,.1);
  border: 1px solid rgba(34,227,255,.25);
  padding: .2rem .7rem;
  border-radius: 999px;
}
.fcc-sub {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  margin-top: .4rem;
  letter-spacing: .06em;
}

.fcc-body {
  padding: 2rem 2.2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fcc-body-lead {
  font-family: "Space Grotesk","Noto Sans JP", sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.4rem;
}
.fcc-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fcc-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fcc-item:last-child { border-bottom: none; }
.fcc-item-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  background: rgba(34,227,255,.1);
  border: 1px solid rgba(34,227,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.fcc-item h4 {
  font-family: "Space Grotesk","Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: .97rem;
  margin-bottom: .35rem;
}
.fcc-item p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  line-height: 1.85;
  letter-spacing: .06em;
}

/* 分岐フロー */
.fcc-fork {
  padding: 2rem 2.2rem;
}
.fcc-fork-top {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.fcc-fork-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(34,227,255,.6);
  font-size: .8rem;
  letter-spacing: .08em;
}
.fcc-fork-center i {
  font-size: 1.4rem;
  animation: bounce-down 1.6s infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
.fcc-fork-branches {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 600px) {
  .fcc-fork-branches { grid-template-columns: 1fr; }
  .fcc-fork-divider { display: flex; justify-content: center; padding: .5rem 0; }
}
.fcc-branch {
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.fcc-branch.match {
  background: rgba(34,227,255,.07);
  border: 1px solid rgba(34,227,255,.25);
}
.fcc-branch.nomatch {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
}
.fcc-branch-icon {
  font-size: 1.3rem;
}
.fcc-branch.match .fcc-branch-icon { color: var(--cyan); }
.fcc-branch.nomatch .fcc-branch-icon { color: rgba(255,255,255,.35); }
.fcc-branch h4 {
  font-family: "Space Grotesk","Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: .97rem;
}
.fcc-branch.match h4 { color: #fff; }
.fcc-branch.nomatch h4 { color: rgba(255,255,255,.6); }
.fcc-branch p {
  font-size: .85rem;
  line-height: 1.8;
  letter-spacing: .06em;
}
.fcc-branch.match p { color: rgba(255,255,255,.65); }
.fcc-branch.nomatch p { color: rgba(255,255,255,.4); }
.fcc-fork-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fcc-fork-divider span {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
  writing-mode: vertical-rl;
  letter-spacing: .1em;
}
@media (max-width: 600px) {
  .fcc-fork-divider span { writing-mode: horizontal-tb; }
}

.fcc-branch-single {
  grid-column: 1 / -1;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}
.fcc-fork-branches:has(.fcc-branch-single) {
  grid-template-columns: 1fr;
}

/* ----- Capacity Section ----- */
.capacity-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,43,214,.3);
  background: linear-gradient(135deg, rgba(255,43,214,.07), rgba(34,227,255,.05));
}
.capacity-glow {
  position: absolute;
  width: 400px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,43,214,.2), transparent 70%);
  filter: blur(70px);
  top: -100px; right: -80px;
  pointer-events: none;
}
.capacity-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}
@media (max-width: 640px) {
  .capacity-inner { grid-template-columns: 1fr; }
}
.capacity-left {
  padding: 2.8rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 200px;
  background: rgba(255,43,214,.05);
}
@media (max-width: 640px) {
  .capacity-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 2rem;
  }
}
.capacity-eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--magenta);
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.capacity-num-wrap {
  display: flex;
  align-items: flex-end;
  gap: .2rem;
  line-height: 1;
  margin-bottom: .4rem;
}
.capacity-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 40px rgba(255,43,214,.6), 0 0 80px rgba(255,43,214,.3);
  line-height: 1;
}
.capacity-unit {
  font-family: "Space Grotesk","Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  padding-bottom: .8rem;
}
.capacity-unit small { font-size: .75em; }
.capacity-limit {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .05em;
}
.capacity-right {
  padding: 2.4rem 2.4rem;
}
.capacity-reason-title {
  font-family: "Space Grotesk","Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .9rem;
  color: rgba(255,255,255,.9);
}
.capacity-reason {
  color: rgba(255,255,255,.6);
  font-size: .92rem;
  line-height: 2;
  letter-spacing: .06em;
  margin-bottom: 1.4rem;
}
.capacity-warning {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  background: rgba(255,43,214,.08);
  border: 1px solid rgba(255,43,214,.2);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  letter-spacing: .06em;
}
.capacity-warning i {
  color: var(--magenta);
  margin-top: .2rem;
  flex-shrink: 0;
}

.capacity-section-head {
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.capacity-section-head .section-eyebrow {
  margin-bottom: .3rem;
}

/* ----- First Gen Banner ----- */
.first-gen-banner {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1.4rem;
  background: linear-gradient(120deg, rgba(255,43,214,.12), rgba(34,227,255,.08));
  border: 1px solid rgba(255,43,214,.3);
  border-radius: 12px;
  padding: .9rem 1.4rem;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  letter-spacing: .06em;
  max-width: 540px;
}
.first-gen-banner i { color: var(--magenta); flex-shrink: 0; }
.first-gen-banner strong { color: #fff; }

/* ----- Price discount display ----- */
.price-original {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,.3);
  text-decoration: line-through;
  text-decoration-color: rgba(255,100,100,.5);
}
.price-discount-badge {
  font-family: "Space Grotesk","Noto Sans JP", sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  background: linear-gradient(120deg, var(--magenta), #ff6ef0);
  color: #fff;
  padding: .2rem .7rem;
  border-radius: 999px;
}
.price-saving {
  font-family: "Space Grotesk", sans-serif;
  font-size: .82rem;
  color: var(--magenta);
  font-weight: 600;
  letter-spacing: .06em;
}

/* ----- Pricing CTA band ----- */
.pricing-cta-band {
  position: relative; overflow: hidden;
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(34,227,255,.2);
  border-bottom: 1px solid rgba(255,43,214,.15);
  background: linear-gradient(120deg, #001a1f, #120020);
  padding: 4rem 2rem;
  text-align: center;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
}
.pricing-cta-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(34,227,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,227,255,.12) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
}
.pricing-cta-glow-l {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,227,255,.4), transparent 65%);
  filter: blur(70px); top: -180px; left: -100px; pointer-events: none;
}
.pricing-cta-glow-r {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,43,214,.35), transparent 65%);
  filter: blur(70px); bottom: -160px; right: -80px; pointer-events: none;
}
.pricing-cta-inner { position: relative; z-index: 1; }
.pricing-cta-title {
  font-family: "Space Grotesk","Noto Sans JP", sans-serif;
  font-weight: 700; font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff; margin: .6rem 0 .8rem;
}
.pricing-cta-lead {
  color: rgba(255,255,255,.6); font-size: .95rem;
  margin-bottom: 1.8rem; max-width: 36rem; margin-left: auto; margin-right: auto;
  line-height: 1.85;
}

/* ----- Plan assurance box ----- */
.plan-assurance {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 2rem 2.2rem;
}
.plan-assurance-title {
  font-family: "Space Grotesk","Noto Sans JP", sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: .1em;
  color: #fff; margin-bottom: 1.4rem;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.plan-assurance-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-bottom: 1.6rem;
}
@media (max-width: 768px) { .plan-assurance-grid { grid-template-columns: 1fr; } }
.pa-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(34,227,255,.04);
  border: 1px solid rgba(34,227,255,.15);
  border-radius: 14px; padding: 1.2rem 1.4rem;
}
.pa-item > i {
  color: var(--cyan); font-size: 1.2rem; margin-top: .15rem; flex-shrink: 0;
}
.pa-item strong {
  display: block; font-size: .97rem; font-weight: 700;
  color: #fff; margin-bottom: .4rem;
}
.pa-item p { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.75; }
.plan-notes {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.2rem;
}
.plan-notes li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.35); line-height: 1.7;
}
.plan-notes li i { color: rgba(255,255,255,.2); font-size: .55rem; margin-top: .45rem; flex-shrink: 0; }

/* ----- Corporate problem cards ----- */
.corp-problem-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,200,50,.04);
  border: 1px solid rgba(255,200,50,.12);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  letter-spacing: .06em;
}
.corp-problem-card i { margin-top: .2rem; flex-shrink: 0; }

/* mobile adjustments for ba-grid */
@media (max-width: 640px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { display: flex; align-items: center; justify-content: center; transform: rotate(90deg); font-size: 1.8rem; padding: .5rem 0; }
}

/* =========================================================
   COURSE TOC — 右側固定スクロール目次（PC専用）
   ========================================================= */
#course-toc {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(12px, 2vw, 32px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 160px;
  background: rgba(5,6,10,.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.1rem 1rem 1.2rem;
  transition: opacity .3s;
}

/* サイドバー目次は非表示（下部目次に統一） */
#course-toc { display: none !important; }

.toc-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(255,255,255,.3);
  margin-bottom: .9rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

#course-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  border-radius: 8px;
  transition: color .2s, background .2s;
  line-height: 1.4;
  position: relative;
}
.toc-link:hover {
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.05);
}

/* アクティブ状態 */
.toc-link.toc-active {
  color: var(--cyan);
}
.toc-link.toc-active .toc-dot {
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(34,227,255,.6);
  transform: scale(1.35);
}

/* 最後の一押し（お申し込み）リンク */
.toc-link-cta {
  margin-top: .6rem;
  color: rgba(34,227,255,.55) !important;
  font-weight: 500;
}
.toc-link-cta:hover { color: var(--cyan) !important; }
.toc-link-cta.toc-active { color: var(--cyan) !important; }

/* ドット */
.toc-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
  transition: background .2s, box-shadow .2s, transform .2s;
}

/* =========================================================
   COURSE TOC BOTTOM — 1400px以下で表示する下部固定目次
   ========================================================= */
#course-toc-bottom {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 45;
  background: rgba(5,6,10,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.1);
  transition: transform .3s ease, opacity .3s ease;
}
#course-toc-bottom.toc-b-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

#course-toc-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}
#course-toc-bottom ul::-webkit-scrollbar { display: none; }

.toc-b-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .7rem clamp(.5rem, 1.4vw, 1.2rem);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(.6rem, 1.1vw, .75rem);
  color: rgba(255,255,255,.4);
  text-decoration: none;
  white-space: nowrap;
  border-top: 2px solid transparent;
  transition: color .2s, border-color .2s;
  position: relative;
  top: -1px;
}
.toc-b-link:hover { color: rgba(255,255,255,.75); }
.toc-b-link.toc-b-active {
  color: var(--cyan);
  border-top-color: var(--cyan);
}
.toc-b-cta { color: rgba(34,227,255,.55) !important; font-weight: 500; }
.toc-b-cta:hover { color: var(--cyan) !important; }
.toc-b-cta.toc-b-active { color: var(--cyan) !important; }

/* =========================================================
   CORP LINK CARD — 法人研修への誘導カード
   ========================================================= */
.corp-link-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(34,227,255,.2);
  background: linear-gradient(135deg, rgba(34,227,255,.05), rgba(255,43,214,.04));
  transition: border-color .3s, box-shadow .3s;
}
.corp-link-card:hover {
  border-color: rgba(34,227,255,.4);
  box-shadow: 0 8px 40px rgba(34,227,255,.1);
}
.corp-link-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.4rem;
  flex-wrap: wrap;
}
.corp-link-eyebrow {
  font-family: "Space Grotesk","Noto Sans JP", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--cyan);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.corp-link-title {
  font-family: "Space Grotesk","Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: .5rem;
  color: #fff;
}
.corp-link-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 42rem;
}
@media (max-width: 640px) {
  .corp-link-card-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.6rem 1.6rem;
  }
}

/* =========================================================
   About ページ
   ========================================================= */

/* --- スタジオ名の由来 --- */
.about-name-block {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  background: rgba(255,255,255,.03);
}
.about-name-formula {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
}
.about-name-formula span {
  color: var(--cyan);
  margin: 0 .4em;
}
.about-name-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
}
.about-name-body p {
  font-size: .97rem;
  color: rgba(255,255,255,.72);
  line-height: 1.9;
}
@media (max-width: 640px) {
  .about-name-block { padding: 2rem 1.6rem; }
}

/* --- 受賞実績グリッド --- */
.about-awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.about-award-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: background .25s, border-color .25s, transform .25s;
}
.about-award-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-2px);
}
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .25rem .7rem;
  border-radius: 999px;
  width: fit-content;
}
.award-gold   { background: rgba(255,185,0,.15); color: #ffd95a; border: 1px solid rgba(255,185,0,.35); }
.award-silver { background: rgba(180,200,220,.12); color: #b4d0e8; border: 1px solid rgba(180,200,220,.3); }
.award-finalist { background: rgba(34,227,255,.1); color: var(--cyan); border: 1px solid rgba(34,227,255,.25); }
.award-semi   { background: rgba(255,255,255,.07); color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.15); }
.award-name {
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}

/* --- 得意案件グリッド --- */
.about-specialty-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.about-specialty-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  transition: background .25s, border-color .25s, transform .25s;
  cursor: default;
}
.about-specialty-item:hover {
  background: rgba(34,227,255,.07);
  border-color: rgba(34,227,255,.3);
  color: #fff;
  transform: translateY(-2px);
}
.about-specialty-item i {
  font-size: 1.2rem;
  color: var(--cyan);
  width: 1.4rem;
  text-align: center;
}
.about-specialty-item small {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-left: .1rem;
}

/* --- スタジオ概要テーブル --- */
.about-info-table {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
}
.about-info-row {
  display: grid;
  grid-template-columns: 10rem 1fr;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.about-info-row:last-child { border-bottom: none; }
.about-info-row dt {
  background: rgba(255,255,255,.04);
  padding: 1.1rem 1.4rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
}
.about-info-row dd {
  padding: 1.1rem 1.4rem;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  display: flex;
  align-items: center;
}
@media (max-width: 640px) {
  .about-info-row { grid-template-columns: 1fr; }
  .about-info-row dt { padding-bottom: .3rem; }
  .about-info-row dd { padding-top: .3rem; }
}

/* =========================================================
   RECRUIT PAGES — ネオン・ダークグラス（別案）
   白系・明色は使わない。他ページと同じダーク基調を維持しつつ、
   ネオンの発光・立体感・アクセントラインで求人ページだけ
   「少しリッチで特別」に見せる。
   .recruit-page でスコープし、他ページには影響させない。
   ---------------------------------------------------------
   surface : 既定より一段持ち上げたダークグラス（シアン微発色）
   accent  : 上辺のシアン→マゼンタ・ライン＋左上のネオングロー
   text    : サイト既定（白／グレー）のまま
   ========================================================= */

.recruit-page .job-card,
.recruit-page .usecase-card,
.recruit-page .spec-table,
.recruit-page .contact-form {
  position: relative;
  background:
    linear-gradient(160deg, rgba(34,227,255,.08), rgba(255,43,214,.035) 55%, rgba(255,255,255,.015));
  border: 1px solid rgba(34,227,255,.2);
  border-radius: 20px;
  box-shadow:
    0 16px 42px rgba(0,0,0,.4),
    0 0 26px rgba(34,227,255,.05),
    inset 0 1px 0 rgba(255,255,255,.07);
  overflow: hidden;
}
/* 上辺のブランドアクセントライン（シアン→マゼンタ） */
.recruit-page .job-card::before,
.recruit-page .usecase-card::before,
.recruit-page .spec-table::before,
.recruit-page .contact-form::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  opacity: .85;
  pointer-events: none;
  z-index: 2;
}
/* 左上ににじむネオングロー */
.recruit-page .job-card::after,
.recruit-page .usecase-card::after,
.recruit-page .contact-form::after {
  content: "";
  position: absolute; top: -60px; left: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,227,255,.16), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.recruit-page .job-card > *,
.recruit-page .usecase-card > *,
.recruit-page .contact-form > * { position: relative; z-index: 1; }

/* ---- 募集ポジションカード（recruit.html） ---- */
.recruit-page .job-card { transition: transform .3s, box-shadow .3s, border-color .3s; }
.recruit-page .job-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,227,255,.5);
  box-shadow:
    0 26px 56px rgba(0,0,0,.5),
    0 0 44px rgba(34,227,255,.2),
    inset 0 1px 0 rgba(255,255,255,.1);
}
.recruit-page .job-card-tags span {
  background: rgba(34,227,255,.12);
  border: 1px solid rgba(34,227,255,.4);
}
/* 給与はブランドのマゼンタで差し色に */
.recruit-page .job-card .job-card-salary {
  color: var(--magenta); font-weight: 700;
  text-shadow: 0 0 18px rgba(255,43,214,.4);
}
/* カード内ボタンはシアン塗り（暗背景のbtn-primaryと呼応） */
.recruit-page .job-card .btn-ghost {
  color: #032a33;
  background: linear-gradient(120deg, var(--cyan), #5ad1ff);
  border: 1px solid transparent;
  font-weight: 700;
}
.recruit-page .job-card .btn-ghost:hover {
  box-shadow: 0 0 22px rgba(34,227,255,.5);
  filter: brightness(1.05);
}

/* ---- 仕事内容カード（usecase-card） ---- */
.recruit-page .usecase-card { transition: transform .3s, box-shadow .3s, border-color .3s; }
.recruit-page .usecase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,227,255,.5);
  box-shadow:
    0 26px 56px rgba(0,0,0,.5),
    0 0 44px rgba(34,227,255,.2),
    inset 0 1px 0 rgba(255,255,255,.1);
}

/* ---- 添付ファイル入力欄（応募フォーム） ---- */
.recruit-page .form-field input[type="file"] {
  padding: .65rem .8rem;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  font-size: .9rem;
}
.recruit-page .form-field input[type="file"]::file-selector-button {
  background: rgba(34,227,255,.12);
  color: var(--cyan);
  border: 1px solid rgba(34,227,255,.4);
  border-radius: 8px;
  padding: .45rem 1rem;
  margin-right: .9rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  transition: background .2s, border-color .2s;
}
.recruit-page .form-field input[type="file"]::file-selector-button:hover {
  background: rgba(34,227,255,.2);
  border-color: rgba(34,227,255,.6);
}

