@charset "UTF-8";
/* ============================================================
   ABS Business Open 2027 — Site Stylesheet
   Renewal 2026.06 (see 改修指示書)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy: #0E2C5A;
  --navy-2: #10306A;
  --navy-3: #0A2147;
  --blue: #2563EB;
  --blue-deep: #1E50A0;
  --blue-hover: #1D4ED8;
  --blue-lt: #7FB0FF;
  --green: #16A34A;
  --green-hover: #15803D;
  --emerald: #059669;
  --emerald-hover: #047857;
  --purple: #7C3AED;
  --ink: #1A2B45;
  --ink-2: #33445E;
  --muted: #5B6B82;
  --faint: #9aa7ba;
  --bg: #F4F7FB;
  --bg-blue: #EAF1FB;
  --line: rgba(26, 43, 69, .08);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(26, 43, 69, .06);
  --maxw: 1200px;
  --header-h: 62px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { scroll-padding-top: calc(var(--header-h) + 10px); }
body {
  margin: 0;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
button { font-family: inherit; }
::selection { background: var(--blue); color: #fff; }

h1, h2, h3, h4 { margin: 0; line-height: 1.25; }
p { margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding-left: 22px; padding-right: 22px; }
.section { padding: 84px 0; }
.section--tint { background: var(--bg-blue); }
.section--navy { background: var(--navy); color: #fff; }

.sec-head { text-align: center; max-width: 700px; margin: 0 auto; }
.sec-head--wide { max-width: 880px; }
.sec-eyebrow { color: var(--blue); font-weight: 700; font-size: 14px; letter-spacing: .08em; }
.section--navy .sec-eyebrow { color: var(--blue-lt); }
.sec-eyebrow--green { color: var(--green); }
.sec-title { margin-top: 12px; font-weight: 900; font-size: clamp(24px, 3.4vw, 39px); line-height: 1.2; }
.sec-lead { margin-top: 14px; font-size: 16px; color: var(--muted); line-height: 1.85; }
.section--navy .sec-lead { color: #bcd0ef; }
.sec-note { margin-top: 12px; font-size: 12.5px; color: var(--faint); line-height: 1.75; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  text-decoration: none; font-weight: 700; border-radius: 10px; border: none;
  cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s;
}
.btn--entry {
  background: var(--green); color: #fff; font-size: 16px; padding: 15px 28px;
  box-shadow: 0 10px 26px rgba(22, 163, 74, .4);
}
.btn--entry:hover { background: var(--green-hover); }
.btn--blue { background: var(--blue); color: #fff; padding: 11px 20px; font-size: 14px; border-radius: 9px; }
.btn--blue:hover { background: var(--blue-hover); }
.btn--ghost {
  background: transparent; color: var(--muted); border: 1px solid rgba(26, 43, 69, .18);
  padding: 11px 20px; font-size: 14px; font-weight: 600; border-radius: 9px;
}
.btn--ghost:hover { background: rgba(26, 43, 69, .04); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 10px 22px;
  display: flex; align-items: center; gap: 14px; min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand__mark {
  display: block; height: 40px; width: auto; flex: none;
}
.site-footer__logo { display: block; margin-top: 20px; height: 42px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-weight: 900; font-size: 15px; letter-spacing: .01em; white-space: nowrap; }
.brand__sub { font-size: 12px; color: var(--muted); white-space: nowrap; }

.gnav { display: flex; align-items: center; gap: 19px; }
.gnav a { text-decoration: none; color: var(--ink-2); font-size: 14.5px; font-weight: 500; white-space: nowrap; }
.gnav a:hover { color: var(--blue); }

.lang-switch {
  text-decoration: none; border: 1px solid rgba(26, 43, 69, .16); color: var(--ink);
  border-radius: 8px; padding: 7px 12px; font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
}
.lang-switch:hover { background: rgba(26, 43, 69, .05); }

.header-cta {
  text-decoration: none; background: var(--green); color: #fff; font-weight: 700; font-size: 14px;
  border-radius: 8px; padding: 10px 18px; display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, .28); white-space: nowrap; transition: background .2s;
}
.header-cta:hover { background: var(--green-hover); }

/* Mobile menu button */
.menu-btn {
  display: none; background: transparent; border: 1px solid rgba(26, 43, 69, .16);
  border-radius: 8px; width: 42px; height: 42px; cursor: pointer; color: var(--ink);
  font-size: 22px; place-items: center;
}
.mobile-nav {
  display: none; background: #fff; border-top: 1px solid var(--line);
  padding: 8px 22px 18px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; color: var(--ink-2); font-size: 16px; font-weight: 600;
  padding: 13px 4px; border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a i { color: var(--faint); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--navy); }
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 32%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(14,44,90,.94) 0%, rgba(16,44,90,.82) 40%, rgba(14,44,90,.46) 72%, rgba(14,44,90,.24) 100%);
}
.hero__inner {
  position: relative; z-index: 4; max-width: var(--maxw); margin: 0 auto;
  padding: 88px 22px 64px; color: #fff; /* 20260819: ティーザー撤去に伴い下余白を付与 */
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255, 255, 255, .32); border-radius: 999px; padding: 7px 15px;
  font-size: 13px; letter-spacing: .14em; font-weight: 700; color: #dfe9fb;
}
.hero__badge .star { color: var(--blue-lt); }
.hero__title {
  margin-top: 22px; font-weight: 900;
  font-size: clamp(34px, 6vw, 76px); line-height: 1.08; letter-spacing: -.01em;
}
.hero__title .grad {
  background: linear-gradient(100deg, #FFC24D 0%, #FF6A2C 42%, #E11414 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__sub { margin-top: 16px; font-size: clamp(16px, 2vw, 22px); font-weight: 700; color: #dfe9fb; }
.hero__lead { margin-top: 16px; max-width: 610px; font-size: clamp(14px, 1.5vw, 17px); line-height: 1.85; color: #bcd0ef; }

.hero__facts { margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap; }
.fact {
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px; padding: 13px 17px; min-width: 108px;
}
.fact--hl { background: rgba(127, 176, 255, .18); border-color: rgba(127, 176, 255, .5); }
.fact__label { font-size: 12px; color: #bcd0ef; }
.fact--hl .fact__label { color: #cfe0f8; }
.fact__value { font-weight: 900; font-size: 22px; margin-top: 2px; line-height: 1.2; }
.fact__value small { font-size: 14px; font-weight: 900; }

.hero__actions { margin-top: 26px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.countdown { display: flex; gap: 8px; }
.cd-cell {
  background: rgba(0, 0, 0, .28); border-radius: 10px; padding: 9px 12px;
  text-align: center; min-width: 62px;
}
.cd-cell--sec { background: rgba(127, 176, 255, .2); }
.cd-cell__num { font-weight: 900; font-size: 26px; line-height: 1; font-variant-numeric: tabular-nums; }
.cd-cell--sec .cd-cell__num { color: var(--blue-lt); }
.cd-cell__unit { font-size: 11px; color: #bcd0ef; margin-top: 3px; letter-spacing: .05em; }

.hero__meta { margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px; padding: 9px 16px; font-weight: 700; font-size: 15px;
}
.pill--hl { background: rgba(127, 176, 255, .18); border-color: rgba(127, 176, 255, .5); }
.pill i { color: var(--blue-lt); }
.hero__meta-note { font-size: 13.5px; color: #bcd0ef; }

.hero__teasers {
  margin-top: 34px; margin-bottom: -1px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px;
}
.teaser {
  background: rgba(255, 255, 255, .96); border-radius: 14px 14px 0 0;
  padding: 18px 20px; display: flex; align-items: center; gap: 14px; color: var(--ink);
}
.teaser__icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 10px;
  background: var(--bg-blue); color: var(--blue); font-size: 24px; flex: none;
}
.teaser__face { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; object-position: 50% 22%; flex: none; }
.teaser__cat { font-size: 11.5px; color: var(--blue); font-weight: 700; letter-spacing: .04em; }
.teaser__cat--green { color: var(--green); }
.teaser__name { font-weight: 900; font-size: 16px; }
.teaser__note { font-size: 13.5px; color: var(--muted); }
.teaser__note a { color: var(--blue); text-decoration: none; }
.teaser__note a:hover { text-decoration: underline; }

/* entrance animation */
@keyframes floatUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fu { animation: floatUp .6s ease both; }
.fu-1 { animation-delay: .05s; } .fu-2 { animation-delay: .1s; }
.fu-3 { animation-delay: .15s; } .fu-4 { animation-delay: .2s; }
.fu-5 { animation-delay: .25s; } .fu-6 { animation-delay: .3s; } .fu-7 { animation-delay: .35s; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 30px 22px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; text-align: center;
}
.trust__num { font-weight: 900; font-size: 30px; color: var(--blue-deep); line-height: 1.2; }
.trust__num em { font-style: normal; color: var(--blue); }
.trust__label { font-size: 13.5px; color: var(--muted); margin-top: 2px; }

/* ============================================================
   DIVISIONS
   ============================================================ */
.divisions-grid {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px;
}
.div-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative;
}
.div-card--featured { border: 2px solid var(--blue); box-shadow: 0 16px 40px rgba(37, 99, 235, .16); }
.div-card__flag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: #fff; color: var(--purple); font-size: 11px; font-weight: 800;
  padding: 4px 11px; border-radius: 999px; box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}
.div-card__visual { position: relative; height: 120px; }
.div-card__visual--u18 { background: linear-gradient(135deg, #3B82F6, var(--blue)); }
.div-card__visual--univ { background: linear-gradient(135deg, #10B981, var(--emerald)); }
.div-card__visual--gen { background: linear-gradient(135deg, #8B5CF6, #D946EF); }
.div-card__visual::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.09) 10px, rgba(255,255,255,.02) 10px, rgba(255,255,255,.02) 20px);
}
.div-card__tag {
  position: absolute; top: 13px; left: 13px; z-index: 1;
  background: rgba(255, 255, 255, .92); font-size: 11px; font-weight: 700;
  border-radius: 999px; padding: 4px 11px;
}
.div-card__visual--u18 .div-card__tag { color: var(--blue-deep); }
.div-card__visual--univ .div-card__tag { color: var(--emerald-hover); }
.div-card__visual--gen .div-card__tag { color: var(--purple); }
.div-card__icon { position: absolute; bottom: 12px; right: 14px; color: #fff; font-size: 30px; z-index: 1; }
.div-card__body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.div-card__name { font-weight: 900; font-size: 21px; }
.div-card__desc { font-size: 15px; color: var(--muted); line-height: 1.75; }
.prize { border-radius: 12px; padding: 15px; }
.prize--blue { background: linear-gradient(135deg, #EAF1FB, #dceafb); }
.prize--green { background: linear-gradient(135deg, #E7F6F0, #d6f0e6); }
.prize--navy { background: linear-gradient(135deg, var(--blue-deep), var(--blue)); color: #fff; }
.prize__label { font-size: 11px; font-weight: 700; }
.prize--blue .prize__label { color: var(--blue-deep); }
.prize--green .prize__label { color: var(--emerald-hover); }
.prize--navy .prize__label { color: #cfe0f8; }
.prize__amount { font-weight: 900; font-size: 25px; margin-top: 5px; line-height: 1.1; }
.prize--blue .prize__amount { color: var(--blue-deep); }
.prize--green .prize__amount { color: var(--emerald-hover); }
.prize--navy .prize__amount { font-size: 31px; }
.prize__amount small { font-size: 13px; font-weight: 700; }
.prize--blue .prize__amount small { color: #3a4d6b; }
.prize--green .prize__amount small { color: #2f5d4d; }
.prize--navy .prize__amount small { font-size: 15px; color: #cfe0f8; }
.prize__extra { font-size: 13.5px; margin-top: 4px; }
.prize--blue .prize__extra { color: #3a4d6b; }
.prize--green .prize__extra { color: #2f5d4d; }
.prize--navy .prize__extra { color: #cfe0f8; }
.div-card__apply {
  margin-top: auto; text-decoration: none; text-align: center; color: #fff;
  font-weight: 700; border-radius: 9px; padding: 12px; transition: background .2s;
}
.div-card__apply--blue { background: var(--blue); } .div-card__apply--blue:hover { background: var(--blue-hover); }
.div-card__apply--green { background: var(--emerald); } .div-card__apply--green:hover { background: var(--emerald-hover); }
.div-card__note { font-size: 12px; color: var(--faint); text-align: center; }

/* ---------- Accordion (shared) ---------- */
.acc__btn {
  cursor: pointer; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: transparent; border: 1px solid rgba(26, 43, 69, .12); border-radius: 9px;
  padding: 11px 14px; font-weight: 600; font-size: 14.5px; color: var(--ink); text-align: left;
}
.acc__btn i { transition: transform .3s; color: var(--blue); flex: none; }
.acc__btn[aria-expanded="true"] i { transform: rotate(180deg); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc__body-inner { padding: 10px 4px 4px; font-size: 14px; line-height: 1.8; color: var(--muted); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid {
  margin-top: 38px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); gap: 15px;
}
.benefit { background: #fff; border-radius: 14px; padding: 22px; }
.benefit i { font-size: 25px; color: var(--blue); }
.benefit h3 { margin: 11px 0 5px; font-size: 15.5px; font-weight: 900; }
.benefit p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.travel {
  margin-top: 30px; background: linear-gradient(120deg, var(--blue-deep), var(--blue));
  color: #fff; border-radius: 18px; padding: 28px 26px;
  box-shadow: 0 14px 36px rgba(30, 80, 160, .25);
}
.travel__head { display: flex; align-items: center; gap: 12px; }
.travel__icon {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255, 255, 255, .16); flex: none; font-size: 25px;
}
.travel__label { font-size: 12px; color: #cfe0f8; font-weight: 700; letter-spacing: .08em; }
.travel__title { font-weight: 900; font-size: clamp(19px, 2.4vw, 27px); line-height: 1.3; }
.travel__grid { margin-top: 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.travel__card {
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px; padding: 18px;
}
.travel__card b.h { font-size: 15px; font-weight: 900; }
.travel__card p { margin-top: 7px; font-size: 14.5px; color: #dfe9fb; line-height: 1.8; }
.travel__card p b { color: #fff; }
.travel__note { margin-top: 13px; font-size: 13px; font-weight: 700; color: #e8f0fd; }

/* ============================================================
   ROUTE SELECTOR
   ============================================================ */
.route-wrap { max-width: 1000px; margin: 0 auto; }
.quiz {
  margin-top: 34px; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 14px 36px rgba(26, 43, 69, .07); padding: 28px;
}
.quiz__step[hidden] { display: none; }
.quiz__head { display: flex; align-items: center; gap: 12px; }
.quiz__icon {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px;
  color: #fff; font-size: 21px; flex: none;
}
.quiz__icon--blue { background: var(--blue); }
.quiz__icon--green { background: var(--emerald); }
.quiz__q { font-weight: 900; font-size: 19px; }
.quiz__note { margin-top: 13px; font-size: 14px; color: var(--muted); line-height: 1.75; }
.quiz__text { margin-top: 13px; font-size: 15px; line-height: 1.8; color: var(--ink-2); }
.quiz__choices { margin-top: 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 13px; }
.quiz__choice {
  cursor: pointer; text-align: left; background: var(--bg); color: var(--ink);
  border: 1px solid rgba(26, 43, 69, .1); border-radius: 13px; padding: 20px;
  transition: border-color .2s, transform .2s;
}
.quiz__choice:hover { border-color: var(--blue); transform: translateY(-2px); }
.quiz__choice i { font-size: 24px; color: var(--blue); }
.quiz__choice .t { font-weight: 900; font-size: 18px; margin-top: 9px; }
.quiz__choice .d { font-size: 14px; color: var(--muted); margin-top: 3px; }
.quiz__info {
  margin-top: 16px; background: var(--bg-blue); border-radius: 11px; padding: 14px;
  font-size: 14px; color: var(--blue-deep); line-height: 1.75;
}
.quiz__actions { margin-top: 18px; display: flex; gap: 11px; flex-wrap: wrap; }
.btn--entry-sm {
  background: var(--green); color: #fff; padding: 12px 22px; font-size: 14.5px;
  border-radius: 9px; box-shadow: 0 6px 18px rgba(22, 163, 74, .3);
}
.btn--entry-sm:hover { background: var(--green-hover); }

/* ============================================================
   FLOW TIMELINE
   ============================================================ */
.flow-wrap { max-width: 880px; margin: 0 auto; padding: 0 22px; }
.timeline { margin-top: 42px; position: relative; padding-left: 8px; }
.timeline::before {
  content: ""; position: absolute; left: 30px; top: 14px; bottom: 30px; width: 2px;
  background: linear-gradient(var(--blue), var(--blue-lt));
}
.tl-step { position: relative; display: flex; gap: 20px; padding-bottom: 26px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-step__num {
  z-index: 2; flex: none; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%; background: var(--blue); font-weight: 900; color: #fff;
}
.tl-step__num--final { background: var(--blue-lt); color: var(--navy); font-size: 22px; }
.tl-step__card {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px; padding: 18px 20px; flex: 1; min-width: 0;
}
.tl-step__title { font-weight: 900; font-size: 18px; }
.tl-step__desc { font-size: 14.5px; color: #bcd0ef; margin-top: 5px; line-height: 1.8; }
.tl-step__desc b { color: #fff; }
.tl-final { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); border: none; padding: 0; overflow: hidden; }
.tl-final__visual { position: relative; height: 150px; overflow: hidden; }
.tl-final__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.tl-final__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(14,44,90,.35), rgba(37,99,235,.08));
}
.tl-final__body { padding: 18px 20px; }
.tl-final__label { font-size: 11px; color: #cfe0f8; font-weight: 700; letter-spacing: .1em; }
.tl-final__title { font-weight: 900; font-size: 22px; margin-top: 4px; }
.tl-final__desc { font-size: 14.5px; color: #dfe9fb; margin-top: 6px; line-height: 1.8; }
.flow__cta { margin-top: 34px; text-align: center; }

/* ============================================================
   SUBMISSIONS
   ============================================================ */
.submit-grid {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px;
}
.sub-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px;
  position: relative; box-shadow: 0 8px 24px rgba(26, 43, 69, .05);
}
.sub-card--optional { background: var(--bg); border: 1px dashed rgba(26, 43, 69, .2); box-shadow: none; }
.sub-card__badge {
  position: absolute; top: 18px; right: 18px; background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 999px;
}
.sub-card--optional .sub-card__badge { background: var(--faint); }
.sub-card__num { font-weight: 900; font-size: 13px; color: var(--faint); }
.sub-card__icon { font-size: 28px; color: var(--blue); margin-top: 8px; display: block; }
.sub-card--optional .sub-card__icon { color: var(--faint); }
.sub-card h3 { margin: 12px 0 5px; font-size: 17px; font-weight: 900; }
.sub-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.sub-card__time {
  margin-top: 13px; display: inline-flex; align-items: center; gap: 5px;
  background: var(--bg-blue); border-radius: 999px; padding: 5px 11px;
  font-size: 12px; font-weight: 700; color: var(--blue-deep);
}
.sub-card--optional .sub-card__time { background: #fff; color: var(--muted); }
.submit-note { margin-top: 20px; text-align: center; font-size: 14px; color: var(--muted); }
.submit-note a { color: var(--blue); text-decoration: none; }
.submit-note a:hover { text-decoration: underline; }

/* ============================================================
   CRITERIA
   ============================================================ */
.criteria-grid {
  margin-top: 38px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px;
}
.crit { background: #fff; border-radius: 15px; padding: 22px; }
.crit__head { display: flex; align-items: center; gap: 11px; }
.crit__icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; color: #fff; flex: none; font-size: 19px; }
.crit__icon--amber { background: #F59E0B; } .crit__icon--green { background: #10B981; }
.crit__icon--blue { background: var(--blue); } .crit__icon--pink { background: #D946EF; }
.crit__icon--red { background: #EF4444; }
.crit__count { font-weight: 800; font-size: 11.5px; color: var(--faint); }
.crit h3 { font-size: 16px; font-weight: 900; }
.crit h3 small { font-size: 12px; color: var(--faint); font-weight: 500; }
.crit__desc { margin-top: 13px; font-size: 14px; color: var(--muted); line-height: 1.8; }
.crit__tip { margin-top: 11px; border-radius: 9px; padding: 12px; font-size: 13.5px; line-height: 1.65; }
.crit__tip--amber { background: #FEF3E2; color: #92580C; }
.crit__tip--green { background: #E7F6F0; color: #1d6e51; }
.crit__tip--blue { background: var(--bg-blue); color: var(--blue-deep); }
.crit__tip--pink { background: #FBEAFE; color: #9b1fb8; }
.crit__tip--red { background: #FDEBEB; color: #b42323; }
.crit--judges {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff; display: flex; flex-direction: column; justify-content: center;
}
.crit--judges i { font-size: 26px; color: var(--blue-lt); }
.crit--judges h3 { margin: 11px 0 5px; color: #fff; }
.crit--judges p { font-size: 14px; color: #cfe0f8; line-height: 1.7; }

/* ============================================================
   STUDENT VOICE + CAROUSEL
   ============================================================ */
.voice-wrap { max-width: 1100px; margin: 0 auto; }
.carousel { margin-top: 34px; }
.carousel__viewport { overflow: hidden; border-radius: 18px; }
.carousel__track { display: flex; transition: transform .45s cubic-bezier(.4, 0, .2, 1); }
.carousel__slide { flex: 0 0 100%; min-width: 0; }

.voice-slide {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px; align-items: center;
}
.video-thumb {
  position: relative; display: block; border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(26, 43, 69, .12); text-decoration: none;
  cursor: pointer; border: none; padding: 0; width: 100%; background: var(--navy);
}
.video-thumb img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.video-thumb__scrim { position: absolute; inset: 0; background: rgba(14, 44, 90, .18); }
.video-thumb__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%;
  background: rgba(22, 163, 74, .95); color: #fff; font-size: 33px;
  box-shadow: 0 8px 24px rgba(22, 163, 74, .5); transition: transform .2s;
}
.video-thumb__play--red { background: rgba(255, 77, 77, .95); box-shadow: 0 8px 24px rgba(0, 0, 0, .4); width: 68px; height: 68px; font-size: 30px; }
.video-thumb:hover .video-thumb__play { transform: translate(-50%, -50%) scale(1.06); }
.video-thumb__label {
  position: absolute; right: 14px; bottom: 12px; background: rgba(0, 0, 0, .55);
  color: #fff; font-size: 11px; padding: 4px 10px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 5px;
}
.video-thumb__label i { color: #FF4D4D; }
.video-embed { position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 40px rgba(26,43,69,.12); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.voice-slide__tag {
  display: inline-flex; align-items: center; gap: 6px; background: #E7F6F0; color: #1d6e51;
  border-radius: 999px; padding: 6px 13px; font-size: 12.5px; font-weight: 700;
}
.voice-slide__quote { margin-top: 14px; font-size: clamp(16px, 1.9vw, 20px); font-weight: 700; line-height: 1.7; }
.voice-slide__person { margin-top: 18px; display: flex; align-items: center; gap: 13px; }
.voice-slide__face { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: 50% 22%; flex: none; }
.voice-slide__name { font-weight: 900; font-size: 16px; }
.voice-slide__name small { font-size: 12px; color: var(--faint); font-weight: 500; }
.voice-slide__title { font-size: 13px; color: var(--muted); line-height: 1.5; }
.voice-slide__bio { margin-top: 12px; font-size: 12.5px; color: #7a869b; line-height: 1.75; }

.voice-placeholder {
  border-radius: 16px; min-height: 280px; display: grid; place-items: center;
  text-align: center; padding: 30px;
  background-image: repeating-linear-gradient(135deg, #e7eef8, #e7eef8 10px, #dbe6f4 10px, #dbe6f4 20px);
}
.voice-placeholder .flag { font-size: 34px; }
.voice-placeholder .t { margin-top: 10px; font-weight: 900; font-size: 18px; }
.voice-placeholder .d { margin-top: 6px; font-size: 13px; color: var(--muted); }

.carousel__controls { margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.carousel__arrow {
  cursor: pointer; display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid rgba(26, 43, 69, .15); background: #fff;
  color: var(--blue); font-size: 20px; transition: background .2s;
}
.carousel__arrow:hover { background: var(--bg-blue); }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dot { cursor: pointer; width: 9px; height: 9px; border-radius: 50%; border: none; background: #cdd9ea; padding: 0; }
.carousel__dot.is-active { background: var(--blue); }
.carousel__note { margin-top: 10px; text-align: center; font-size: 12.5px; color: var(--faint); }

/* Alumni story */
.alumni {
  margin-top: 40px; background: var(--navy); color: #fff; border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.alumni .video-thumb { border-radius: 0; box-shadow: none; min-height: 280px; }
.alumni .video-thumb img { height: 100%; aspect-ratio: auto; min-height: 280px; object-position: 18% 50%; }
.alumni .video-embed { border-radius: 0; box-shadow: none; height: 100%; min-height: 240px; aspect-ratio: auto; }
.alumni__body { padding: 30px; }
.alumni__eyebrow { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-lt); font-weight: 700; font-size: 12px; letter-spacing: .08em; }
.alumni__title { margin-top: 12px; font-weight: 900; font-size: clamp(19px, 2.2vw, 24px); line-height: 1.4; }
.alumni__desc { margin-top: 14px; font-size: 15px; line-height: 1.9; color: #bcd0ef; }
.alumni__desc b { color: #fff; }
.alumni__names { margin-top: 18px; display: flex; align-items: center; gap: 10px; font-size: 14px; color: #dfe9fb; }
.alumni__names .x { color: var(--blue-lt); }
.alumni__names b { font-weight: 900; }
.alumni__roles { font-size: 12.5px; color: #8ba6cf; margin-top: 4px; }

/* ============================================================
   PARTNER SCHOOLS
   ============================================================ */
.schools-grid {
  margin-top: 38px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); gap: 15px;
}
.school { background: #fff; border: 1px solid var(--line); border-radius: 15px; padding: 20px; text-align: center; }
.school__logo {
  height: 60px; border-radius: 9px; display: grid; place-items: center;
  font-size: 10px; color: #9fb4d2; letter-spacing: .04em;
  background-image: repeating-linear-gradient(135deg, #e7eef8, #e7eef8 10px, #dbe6f4 10px, #dbe6f4 20px);
}
.school h3 { margin: 13px 0 3px; font-size: 15px; font-weight: 900; line-height: 1.35; }
.school p { font-size: 13.5px; color: var(--muted); }
.schools-info {
  margin-top: 22px; display: flex; gap: 13px; align-items: flex-start;
  background: var(--navy); color: #fff; border-radius: 15px; padding: 20px;
}
.schools-info i { font-size: 22px; color: var(--blue-lt); flex: none; }
.schools-info b { font-size: 15px; }
.schools-info p { margin-top: 5px; font-size: 14.5px; color: #bcd0ef; line-height: 1.8; }

/* ============================================================
   ENGLISH REASSURANCE
   ============================================================ */
.english-wrap { max-width: 1100px; margin: 0 auto; }
.english {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px; align-items: center;
}
.english__title { margin-top: 12px; font-weight: 900; font-size: clamp(23px, 3vw, 32px); line-height: 1.25; }
.english__lead { margin-top: 16px; font-size: 16px; line-height: 1.95; color: var(--ink-2); }
.english__points { margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.english__point { display: flex; gap: 12px; align-items: flex-start; background: var(--bg); border-radius: 12px; padding: 15px; }
.english__point i { font-size: 20px; color: var(--blue); flex: none; }
.english__point b { font-size: 15px; }
.english__point p { margin-top: 4px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.quote-card { background: var(--navy); color: #fff; border-radius: 18px; padding: 30px; }
.quote-card > i { font-size: 34px; color: var(--blue-lt); }
.quote-card__text { margin-top: 6px; font-size: 16px; line-height: 1.95; color: #dfe9fb; }
.quote-card__person { margin-top: 20px; display: flex; align-items: center; gap: 13px; }
.quote-card__face { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; object-position: 50% 25%; flex: none; }
.quote-card__name { font-weight: 900; font-size: 16px; }
.quote-card__name small { font-size: 12px; color: #8ba6cf; font-weight: 500; }
.quote-card__title { font-size: 12px; color: #bcd0ef; line-height: 1.55; }

/* ============================================================
   HERITAGE
   ============================================================ */
.heritage {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 44px; align-items: center;
}
.heritage__title { margin-top: 12px; font-weight: 900; font-size: clamp(24px, 3.2vw, 38px); line-height: 1.25; }
.heritage__title a { color: inherit; text-decoration: none; border-bottom: 2px solid rgba(127, 176, 255, .55); }
.heritage__title a:hover { border-bottom-color: var(--blue-lt); }
.heritage__title a i { font-size: .5em; vertical-align: super; color: var(--blue-lt); margin-left: 2px; }
.heritage__text { margin-top: 18px; font-size: 15.5px; line-height: 1.95; color: #bcd0ef; }
.heritage__text b { color: #fff; }
.heritage__img { width: 100%; border-radius: 18px; aspect-ratio: 1 / 1; object-fit: cover; box-shadow: 0 16px 40px rgba(0, 0, 0, .28); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-list { margin-top: 38px; display: flex; flex-direction: column; gap: 11px; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; }
.faq__btn {
  cursor: pointer; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: transparent; border: none; padding: 18px 20px; text-align: left;
  font-weight: 700; font-size: 16px; color: var(--ink); line-height: 1.55;
}
.faq__btn i { font-size: 21px; color: var(--blue); transition: transform .3s; flex: none; }
.faq__btn[aria-expanded="true"] i { transform: rotate(135deg); }
.faq__body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__body-inner { padding: 0 20px 18px; font-size: 15px; color: var(--muted); line-height: 1.85; }
.faq-contact { margin-top: 26px; background: var(--bg-blue); border-radius: 15px; padding: 24px; text-align: center; }
.faq-contact h3 { font-size: 17px; font-weight: 900; }
.faq-contact p { margin: 7px 0 15px; font-size: 14.5px; color: var(--muted); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--blue-deep), var(--blue)); color: #fff; }
.final-cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.final-cta__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(18, 42, 92, .93) 0%, rgba(20, 50, 112, .74) 48%, rgba(22, 56, 130, .45) 100%);
}
.final-cta__inner { position: relative; max-width: 1000px; margin: 0 auto; padding: 76px 22px; text-align: center; }
.final-cta__title { font-weight: 900; font-size: clamp(22px, 3vw, 34px); line-height: 1.25; }
.final-cta__sub { margin-top: 8px; font-weight: 700; font-size: clamp(15px, 2vw, 20px); color: #cfe0f8; }
.final-cta__count {
  margin-top: 24px; display: inline-flex; align-items: center; gap: 9px;
  background: rgba(0, 0, 0, .2); border-radius: 999px; padding: 9px 18px;
}
.final-cta__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-lt); animation: pulseDot 1.4s infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .3; transform: scale(.6); } }
.final-cta__count-label { font-size: 14px; }
.final-cta__count-num { font-weight: 900; font-size: 17px; font-variant-numeric: tabular-nums; }
.final-cta__btn-wrap { margin-top: 26px; }
.final-cta__note { margin-top: 14px; font-size: 13px; color: #cfe0f8; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy-3) 55%, #06152E 100%); color: #9fb4d2; }
.site-footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 56px 22px 28px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 38px;
}
.site-footer .brand__name { color: #fff; }
.site-footer .brand__sub { color: #9fb4d2; }
.site-footer__desc { margin-top: 16px; font-size: 14px; line-height: 1.8; }
.site-footer h4 { margin: 0 0 13px; color: #fff; font-size: 14.5px; font-weight: 700; }
.site-footer__links { display: flex; flex-direction: column; gap: 8px; }
.site-footer__links a { text-decoration: none; color: #9fb4d2; font-size: 14px; }
.site-footer__links a:hover { color: #fff; }
.site-footer__contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.site-footer__contact span { display: flex; align-items: flex-start; gap: 7px; }
.site-footer__contact i { color: var(--blue-lt); margin-top: 2px; }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.site-footer__bottom-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 17px 22px;
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: space-between; font-size: 12.5px;
}
.site-footer__legal { display: flex; gap: 16px; }
.site-footer__legal a { text-decoration: none; color: #9fb4d2; }
.site-footer__legal a:hover { color: #fff; }

/* ============================================================
   FLOATING CTA (PC) & MOBILE BAR
   ============================================================ */
.floating-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green); color: #fff; font-weight: 700; font-size: 15px;
  border-radius: 999px; padding: 14px 24px; text-decoration: none;
  box-shadow: 0 12px 30px rgba(22, 163, 74, .45);
  transition: background .2s, transform .2s;
}
.floating-cta:hover { background: var(--green-hover); transform: translateY(-2px); }
.floating-cta i { font-size: 18px; }

.mobile-cta-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  align-items: center; gap: 12px;
}
.mobile-cta-bar__count { flex: none; line-height: 1.3; }
.mobile-cta-bar__count .l { font-size: 11px; color: var(--muted); }
.mobile-cta-bar__count .n { font-weight: 900; font-size: 16px; color: var(--ink); font-variant-numeric: tabular-nums; }
.mobile-cta-bar .btn--entry { flex: 1; padding: 13px 10px; font-size: 15px; border-radius: 10px; box-shadow: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .gnav { display: none; }
  .menu-btn { display: grid; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero__inner { padding-top: 56px; }
  .hero__facts { display: grid; grid-template-columns: 1fr 1fr; }
  .fact { min-width: 0; }
  .countdown { width: 100%; }
  .cd-cell { flex: 1; min-width: 0; }
  .hero__actions .btn--entry { width: 100%; }
  .header-cta { display: none; }
  .floating-cta { display: none; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
  .quiz { padding: 22px 18px; }
  .timeline::before { left: 22px; }
  .tl-step { gap: 14px; }
  .tl-step__num { width: 38px; height: 38px; font-size: 14px; }
  .tl-step__num--final { font-size: 18px; }
  .alumni__body { padding: 24px 20px; }
  .site-footer__inner { gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fu, .fu-1, .fu-2, .fu-3, .fu-4, .fu-5, .fu-6, .fu-7 { animation: none; }
  .final-cta__dot { animation: none; }
  .carousel__track { transition: none; }
}

/* ---------- 20260806改訂 追加スタイル ---------- */
/* 協力校 実ロゴ */
.school__logo--img { background-image: none; background: #fff; height: 72px; padding: 6px 8px; }
.school__logo--img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.school__name--long { font-size: 12.5px; white-space: nowrap; }
@media (max-width: 520px) { .school__name--long { white-space: normal; } }
/* 提出物バッジ（1次通過後） */
.sub-card__badge--late { background: #1E50A0; }
/* 提出物ガイドラインPDFリンク */
.submit-note a { color: var(--blue); text-decoration: none; margin-left: 10px; white-space: nowrap; }
.submit-note a:hover { text-decoration: underline; }
/* 学生の声：エバンジェリスト小見出し */
.voice-kicker { text-align: center; margin: 46px 0 0; }

/* ---------- 20260819改訂: 審査員セクション ---------- */
.judges-head { max-width: 980px; }
.judges-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1080px) { .judges-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .judges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 430px)  { .judges-grid { grid-template-columns: 1fr; } }
.judge-card {
  text-decoration: none; cursor: pointer; text-align: center; background: #fff;
  border: 1px solid rgba(26,43,69,.08); border-radius: 15px; padding: 16px;
  box-shadow: 0 2px 12px rgba(26,43,69,.05); display: flex; flex-direction: column; align-items: center;
  transition: transform .2s, box-shadow .2s;
}
a.judge-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(26,43,69,.12); }
.judge-card__photo { width: 100%; aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; background: var(--tint); display: block; }
.judge-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.judge-card__cat { display: block; margin-top: 14px; font-weight: 800; font-size: 10.5px; color: var(--blue); letter-spacing: .06em; }
.judge-card__name { display: block; margin-top: 4px; font-weight: 900; font-size: 15px; color: var(--ink); line-height: 1.35; }
.judge-card__en { display: block; margin-top: 2px; font-size: 10.5px; color: #9aa7ba; }
.judge-card__org { display: block; margin-top: 8px; font-size: 12px; color: var(--muted); line-height: 1.6; }
.judge-card__more { display: block; margin-top: 13px; font-size: 11.5px; font-weight: 700; color: var(--blue); }
.judge-card--soon { background: rgba(255,255,255,.5); border: 1px dashed rgba(26,43,69,.18); box-shadow: none; justify-content: center; cursor: default; }
.judge-card__ph { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 1/1; border-radius: 12px; background: #fff; border: 1px solid rgba(26,43,69,.07); }
.judge-card__soon-t { display: block; margin-top: 16px; font-weight: 900; font-size: 15px; color: var(--muted); }
.judge-card__soon-s { display: block; margin-top: 4px; font-size: 11.5px; color: #9aa7ba; }
.judges-note { margin-top: 22px; text-align: center; font-size: 12px; color: #9aa7ba; }
/* CSSのみのプロフィールポップアップ（:target使用・JS不使用） */
.jmodal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.jmodal:target { display: flex; }
.jmodal__bg { position: absolute; inset: 0; background: rgba(10,26,51,.62); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.jmodal__box { position: relative; background: #fff; border-radius: 18px; max-width: 620px; width: 100%; max-height: 86vh; overflow-y: auto; padding: 34px; box-shadow: 0 24px 60px rgba(10,26,51,.35); }
.jmodal__close { position: absolute; top: 14px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--tint); color: var(--ink); display: grid; place-items: center; text-decoration: none; font-size: 20px; line-height: 1; }
.jmodal__head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.jmodal__photo { flex: none; width: 104px; height: 104px; border-radius: 12px; overflow: hidden; background: var(--tint); }
.jmodal__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jmodal__cat { font-weight: 800; font-size: 11px; color: var(--blue); letter-spacing: .06em; }
.jmodal__name { margin: 5px 0 0; font-size: 23px; font-weight: 900; line-height: 1.25; }
.jmodal__en { margin-top: 3px; font-size: 12px; color: #9aa7ba; }
.jmodal__org { margin-top: 20px; padding: 15px 17px; background: #F5F8FD; border-radius: 11px; }
.jmodal__org b { display: block; font-weight: 900; font-size: 14px; color: var(--ink); }
.jmodal__org span { display: block; margin-top: 3px; font-size: 12.5px; color: var(--muted); }
.jmodal__bio { margin-top: 22px; }
.jmodal__bio-h { font-weight: 900; font-size: 13px; color: var(--ink); margin-bottom: 11px; }
.jmodal__bio p { margin: 0 0 15px; font-size: 13.5px; line-height: 2; color: #3a4d6b; }
.jmodal__bio p:last-child { margin-bottom: 0; }
.jmodal__foot { margin-top: 26px; display: block; text-align: center; text-decoration: none; background: var(--tint); color: #1E50A0; font-weight: 700; font-size: 13.5px; border-radius: 10px; padding: 13px; }
@media (max-width: 600px) { .jmodal__box { padding: 26px 20px; } }

/* ---------- 20260821改訂: 提出物モーダル・カードCTA・問い合わせフォーム ---------- */
.jmodal__title { margin: 0 0 4px; font-size: 23px; font-weight: 900; color: #0C2747; }
.jmodal__rule { height: 3px; width: 52px; background: #C9A227; margin: 0 0 18px; }
.jmodal__p { margin: 0 0 15px; font-size: 14.5px; line-height: 1.95; color: #33445E; }
.jmodal__p--sub { margin-top: 14px; font-size: 13px; color: var(--muted); }
.jmodal__h4 { margin: 22px 0 8px; font-size: 15px; font-weight: 900; color: #0C2747; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 6px; }
.spec-table th { border: 1px solid #DDE5EF; background: var(--bg); padding: 9px 11px; text-align: left; font-weight: 800; color: #0C2747; width: 34%; vertical-align: top; }
.spec-table td { border: 1px solid #DDE5EF; padding: 8px 10px; text-align: left; color: #33445E; vertical-align: top; }
.jmodal__callout { background: #FFF8E6; border-left: 3px solid #C9A227; border-radius: 0 8px 8px 0; padding: 13px 15px; font-size: 14px; line-height: 1.9; color: #4A4130; margin: 0 0 14px; }
.bs-row { display: flex; gap: 12px; padding: 9px 0; border-bottom: 1px dotted #DDE5EF; }
.bs-row__no { flex: 0 0 28px; font-weight: 900; color: #C9A227; font-size: 14px; }
.bs-row__t { font-size: 14px; line-height: 1.8; }
.bs-row__t b { color: #0C2747; }
.bs-row__t span { color: var(--muted); }
.jmodal__list { margin: 0; padding-left: 20px; font-size: 14px; color: #33445E; line-height: 1.85; }
.jmodal__list li { margin-bottom: 6px; }
.jmodal__dl { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; background: #0C2747; color: #fff; text-decoration: none; border-radius: 12px; padding: 13px 20px; font-size: 14px; font-weight: 800; width: 100%; justify-content: center; box-sizing: border-box; }
.jmodal__dl:hover { background: #113a69; }
.jmodal__box--sm { max-width: 560px; }
/* 提出物カードのボタン */
.sub-card { display: flex; flex-direction: column; align-items: flex-start; }
.sub-card__btn { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; background: #0C2747; color: #fff; text-decoration: none; border-radius: 999px; padding: 9px 17px; font-size: 13px; font-weight: 800; letter-spacing: .02em; }
.sub-card__btn:hover { background: #113a69; }
.sub-card__btn--ghost { background: #fff; color: #1E50A0; border: 1px solid rgba(30,80,160,.3); }
.sub-card__btn--ghost:hover { background: var(--tint); }
.sub-card--video { background: linear-gradient(180deg, #F2F7FE, #EAF1FB); border: 1px solid rgba(30,80,160,.22); box-shadow: 0 8px 24px rgba(26,43,69,.05); }
.submit-note__em { display: block; margin-top: 6px; color: #33507A; }
/* 選考フローの注記 */
.tl-step__note { margin-top: 10px; padding: 10px 12px; background: rgba(255,255,255,.08); border-left: 3px solid #FAC775; border-radius: 0 8px 8px 0; font-size: 12.5px; line-height: 1.8; color: #e6eefb; }
/* お問い合わせフォーム（モーダル内） */
.cform2 .crow { margin: 0 0 17px; }
.cform2 label { display: block; font-size: 14px; font-weight: 800; color: var(--ink); margin: 0 0 7px; }
.cform2 .tag { display: inline-block; margin-left: 6px; font-size: 10.5px; font-weight: 800; color: #fff; border-radius: 4px; padding: 1px 6px; vertical-align: 1px; }
.cform2 .tag--req { background: #D9534F; }
.cform2 .tag--opt { background: #9aa7ba; }
.cform2 input, .cform2 textarea { width: 100%; box-sizing: border-box; border: 1px solid #D3DEEC; border-radius: 10px; padding: 13px 15px; font-size: 15px; color: var(--ink); background: #fff; font-family: inherit; }
.cform2 input:focus, .cform2 textarea:focus { outline: 2px solid rgba(37,99,235,.35); outline-offset: 1px; }
.cform2 textarea { min-height: 132px; resize: vertical; line-height: 1.75; }
.cform2 .send { display: block; width: 100%; box-sizing: border-box; margin: 22px 0 0; background: var(--blue); color: #fff; border: none; border-radius: 999px; padding: 16px 20px; font-size: 16px; font-weight: 800; cursor: pointer; font-family: inherit; letter-spacing: .02em; }
.cform2 .send:hover { background: #1D4ED8; }
.cform2-note { margin: 14px 0 0; font-size: 12.5px; color: #8496AC; line-height: 1.85; text-align: center; }
.cform2-note--alt { margin-top: 10px; border-top: 1px solid #E7EDF5; padding-top: 12px; }
