:root {
  --home-ink: #101828;
  --home-black: #0d121b;
  --home-paper: #f6f5f1;
  --home-white: #ffffff;
  --home-muted: #687181;
  --home-line: #dce0e6;
  --home-blue: #7c83ff;
  --home-orange: #d97757;
  --home-coral: #e77b59;
  --home-shell: 1240px;
  --home-sans: 'Noto Sans JP', sans-serif;
  --home-latin: 'Lato', sans-serif;
  --home-serif: 'Noto Serif JP', serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--home-white);
  color: var(--home-ink);
  font-family: var(--home-sans);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body,
h1,
h2,
h3,
p {
  margin-block: 0;
}

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

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 48px), var(--home-shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--home-black);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
  padding: 16px max(24px, calc((100vw - var(--home-shell)) / 2));
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-grid;
  gap: 1px;
  text-decoration: none;
}

.brand__name,
.site-footer__brand {
  font-family: var(--home-latin);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.1;
}

.brand__division {
  color: #7b8492;
  font-family: var(--home-latin);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-header__meta {
  display: flex;
  gap: 22px;
  color: #5d6674;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-header__meta span + span::before {
  content: '/';
  margin-right: 22px;
  color: #c2c7cf;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 116px) 0 clamp(90px, 10vw, 150px);
  background:
    linear-gradient(180deg, #fff 0%, #fbfcff 60%, #f3f4f7 100%);
}

.hero__grid,
.value-section__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  background-image:
    linear-gradient(rgba(29, 41, 57, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 41, 57, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero__glow {
  position: absolute;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
}

.hero__glow--one {
  top: -260px;
  right: 5%;
  background: var(--home-blue);
}

.hero__glow--two {
  top: 470px;
  left: -280px;
  background: var(--home-orange);
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 54px;
  margin-bottom: clamp(72px, 8vw, 112px);
}

.eyebrow {
  color: var(--home-blue);
  font-family: var(--home-latin);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.hero__intro > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

.hero h1 {
  font-family: var(--home-latin);
  font-size: clamp(4.2rem, 8.2vw, 8.4rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.87;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  position: relative;
  color: transparent;
  -webkit-text-stroke: 2px var(--home-ink);
}

.hero h1 span:last-child::after {
  content: '';
  position: absolute;
  left: 0.02em;
  right: 0.2em;
  bottom: -0.18em;
  height: 4px;
  background: linear-gradient(90deg, var(--home-blue), var(--home-coral) 58%, transparent);
}

.hero__jp-copy {
  padding-bottom: 6px;
}

.hero__lead {
  margin-bottom: 18px;
  font-family: var(--home-serif);
  font-size: clamp(1.6rem, 2.7vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.35;
}

.hero__description {
  color: var(--home-muted);
  font-size: 0.95rem;
}

.choice-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 28px;
  scroll-margin-top: 24px;
}

.choice-heading > p,
.section-number {
  color: #747d8a;
  font-family: var(--home-latin);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  white-space: nowrap;
}

.choice-heading > p span,
.section-number span {
  margin-right: 12px;
  color: var(--home-blue);
}

.choice-heading h2 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.seminar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.seminar-card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(16, 24, 40, 0.08);
  text-decoration: none;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.seminar-card:hover,
.seminar-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(16, 24, 40, 0.24);
  box-shadow: 0 28px 72px rgba(16, 24, 40, 0.16);
  outline: none;
}

.seminar-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(124, 131, 255, 0.32), 0 28px 72px rgba(16, 24, 40, 0.16);
}

.seminar-card__thumbnail {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--home-black);
  color: #fff;
}

.seminar-card__thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.seminar-card--auto .seminar-card__thumbnail > img {
  filter: saturate(0.8) contrast(1.05);
}

.seminar-card--security .seminar-card__thumbnail > img {
  position: absolute;
  z-index: 1;
  top: -9%;
  right: -2%;
  width: 58%;
  height: 118%;
  object-fit: contain;
  opacity: 0.93;
  mix-blend-mode: screen;
}

.seminar-card__security-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 50%, rgba(217, 119, 87, 0.26), transparent 31%),
    linear-gradient(115deg, #101828 0%, #151b25 48%, #2e1a16 100%);
}

.seminar-card__shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 13, 22, 0.95) 0%, rgba(8, 13, 22, 0.78) 45%, rgba(8, 13, 22, 0.06) 100%);
}

.seminar-card--security .seminar-card__shade {
  background: linear-gradient(90deg, rgba(8, 13, 22, 0.96) 0%, rgba(8, 13, 22, 0.89) 48%, rgba(8, 13, 22, 0.16) 100%);
}

.seminar-card:hover .seminar-card__thumbnail > img,
.seminar-card:focus-visible .seminar-card__thumbnail > img {
  transform: scale(1.045);
}

.seminar-card__thumbnail-top {
  position: absolute;
  z-index: 3;
  top: clamp(18px, 2.3vw, 28px);
  right: clamp(18px, 2.3vw, 28px);
  left: clamp(18px, 2.3vw, 28px);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-family: var(--home-latin);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.seminar-card__tool {
  padding: 7px 10px;
  border-left: 2px solid var(--home-orange);
  background: rgba(5, 8, 13, 0.42);
  backdrop-filter: blur(8px);
}

.seminar-card--security .seminar-card__tool {
  border-color: var(--home-coral);
}

.seminar-card__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0.8;
}

.seminar-card__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-coral);
  box-shadow: 0 0 0 5px rgba(231, 123, 89, 0.15);
}

.seminar-card__hook {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: clamp(22px, 3.4vw, 42px);
  transform: translateY(-45%);
  font-family: var(--home-serif);
  font-size: clamp(1.35rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.22;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.4);
}

.seminar-card__hook span,
.seminar-card__hook strong {
  display: block;
}

.seminar-card__hook strong {
  color: #f3a284;
  font-size: 1.16em;
}

.seminar-card--security .seminar-card__hook strong {
  color: #ff9b78;
}

.seminar-card__watch {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 2.3vw, 28px);
  bottom: clamp(16px, 2.2vw, 25px);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.seminar-card__watch b,
.seminar-card__cta b {
  display: inline-block;
  margin-left: 7px;
  transition: transform 220ms ease;
}

.seminar-card:hover b,
.seminar-card:focus-visible b {
  transform: translateX(4px);
}

.seminar-card__body {
  padding: clamp(26px, 3.2vw, 42px);
}

.seminar-card__category {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  color: #7c8491;
  font-family: var(--home-latin);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.seminar-card__category span:last-child {
  font-family: var(--home-sans);
  letter-spacing: 0.04em;
}

.seminar-card h3 {
  min-height: 3.05em;
  margin-bottom: 18px;
  font-family: var(--home-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.45;
}

.seminar-card__copy {
  min-height: 7.2em;
  color: #626b78;
  font-size: 0.9rem;
  line-height: 2;
}

.seminar-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--home-line);
}

.seminar-card__date {
  display: grid;
  gap: 2px;
}

.seminar-card__date span {
  color: var(--home-orange);
  font-family: var(--home-latin);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.seminar-card__date strong {
  font-size: 0.91rem;
}

.seminar-card--security .seminar-card__date span {
  color: var(--home-coral);
}

.seminar-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  background: var(--home-ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.seminar-card--security .seminar-card__cta {
  background: var(--home-coral);
}

.hero__note {
  margin-top: 25px;
  color: #7b8492;
  font-size: 0.75rem;
  text-align: right;
}

.quick-apply-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
  margin-top: 22px;
}

.quick-apply {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  min-height: 88px;
  padding: 20px clamp(20px, 2.8vw, 34px);
  overflow: hidden;
  background: var(--home-ink);
  color: #fff;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.quick-apply::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--home-orange);
}

.quick-apply--security::before {
  background: #ff8d67;
}

.quick-apply:hover,
.quick-apply:focus-visible {
  transform: translateY(-3px);
  background: #17233a;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.2);
  outline: none;
}

.quick-apply:focus-visible {
  box-shadow: 0 0 0 4px rgba(124, 131, 255, 0.28), 0 16px 36px rgba(16, 24, 40, 0.2);
}

.quick-apply > span {
  max-width: 230px;
  color: #aeb6c4;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.55;
}

.quick-apply strong {
  font-size: 0.86rem;
  white-space: nowrap;
}

.quick-apply b {
  display: inline-block;
  margin-left: 8px;
  color: #f3a284;
  transition: transform 220ms ease;
}

.quick-apply:hover b,
.quick-apply:focus-visible b {
  transform: translateX(4px);
}

/* ============================================
   今後の開催日程
   ============================================ */
.schedule-overview {
  padding: clamp(90px, 10vw, 145px) 0;
  background: var(--home-paper);
}

.schedule-overview__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1.3fr);
  column-gap: clamp(50px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 78px);
}

.schedule-overview__heading .section-number {
  grid-column: 1 / -1;
  margin-bottom: 34px;
}

.schedule-overview__heading .eyebrow {
  align-self: start;
  padding-top: 14px;
}

.schedule-overview__heading h2 {
  font-family: var(--home-serif);
  font-size: clamp(2.25rem, 4.6vw, 4.35rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.25;
}

.schedule-overview__heading > p:last-child {
  grid-column: 2;
  margin-top: 18px;
  color: var(--home-muted);
  font-size: 0.9rem;
}

.schedule-overview__list {
  border-top: 2px solid var(--home-ink);
}

.schedule-overview__month {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  border-bottom: 1px solid #ccd2da;
}

.schedule-overview__month-title {
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 28px 24px 28px 0;
  border-right: 1px solid #ccd2da;
}

.schedule-overview__month-title span {
  color: #7b8492;
  font-family: var(--home-latin);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.schedule-overview__month-title strong {
  font-family: var(--home-serif);
  font-size: 1.75rem;
  line-height: 1.2;
}

.schedule-overview__row {
  display: grid;
  grid-template-columns: 115px minmax(260px, 1fr) minmax(155px, 0.55fr) auto;
  align-items: center;
  min-height: 116px;
  border-bottom: 1px solid #d9dde3;
  background: rgba(255, 255, 255, 0.56);
}

.schedule-overview__row:last-child {
  border-bottom: 0;
}

.schedule-overview__date,
.schedule-overview__seminar,
.schedule-overview__time {
  padding: 22px 24px;
}

.schedule-overview__date {
  display: flex;
  align-items: baseline;
  gap: 7px;
  border-right: 1px solid #d9dde3;
}

.schedule-overview__date strong {
  font-family: var(--home-serif);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
}

.schedule-overview__date span {
  color: #727b88;
  font-size: 0.75rem;
  font-weight: 700;
}

.schedule-overview__seminar {
  min-width: 0;
}

.schedule-overview__badge {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-left: 2px solid var(--home-orange);
  background: #fff3ed;
  color: #aa5035;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.schedule-overview__row--security .schedule-overview__badge {
  border-color: var(--home-coral);
  background: #fff0eb;
  color: #a84b35;
}

.schedule-overview__seminar h3 {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
  line-height: 1.55;
}

.schedule-overview__time {
  display: grid;
  gap: 4px;
  color: #303846;
}

.schedule-overview__time strong {
  font-family: var(--home-latin);
  font-size: 0.88rem;
}

.schedule-overview__time span {
  color: #7a8390;
  font-size: 0.67rem;
}

.schedule-overview__apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  margin-right: 24px;
  padding: 12px 18px;
  background: var(--home-ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.schedule-overview__row--security .schedule-overview__apply {
  background: #8f402e;
}

.schedule-overview__apply:hover,
.schedule-overview__apply:focus-visible {
  transform: translateY(-2px);
  background: #24324a;
  outline: none;
}

.schedule-overview__apply:focus-visible {
  box-shadow: 0 0 0 4px rgba(124, 131, 255, 0.28);
}

.schedule-overview__apply b {
  color: #f3a284;
  font-size: 1rem;
}

.schedule-overview__loading,
.schedule-overview__empty {
  padding: 42px 24px;
  border-bottom: 1px solid #ccd2da;
  color: var(--home-muted);
  text-align: center;
}

.schedule-overview__empty--error {
  color: #a84b35;
  font-weight: 700;
}

.direct-apply-section {
  scroll-margin-top: 24px;
  padding: clamp(95px, 11vw, 155px) 0;
  border-top: 1px solid var(--home-line);
  background:
    radial-gradient(circle at 8% 14%, rgba(124, 131, 255, 0.1), transparent 24%),
    var(--home-paper);
}

.direct-apply-section__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: clamp(64px, 9vw, 126px);
}

.direct-apply-section__copy .eyebrow {
  margin-top: 56px;
}

.direct-apply-section__copy h2 {
  margin-top: 22px;
  font-family: var(--home-serif);
  font-size: clamp(2.15rem, 4.2vw, 3.85rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.4;
}

.direct-apply-section__copy > p:last-of-type {
  margin-top: 28px;
  color: var(--home-muted);
  font-size: 0.92rem;
  line-height: 2.05;
}

.direct-apply-section__facts {
  display: grid;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid #cfd4dc;
  list-style: none;
}

.direct-apply-section__facts li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid #cfd4dc;
}

.direct-apply-section__facts strong {
  color: var(--home-ink);
  font-size: 0.82rem;
}

.direct-apply-section__facts span {
  color: #737c89;
  font-size: 0.76rem;
}

.direct-form-card {
  padding: clamp(28px, 4.2vw, 52px);
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: #fff;
  box-shadow: 0 25px 70px rgba(16, 24, 40, 0.1);
}

.direct-form__fieldset {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.direct-form__fieldset legend,
.direct-form__group > label {
  display: block;
  margin-bottom: 10px;
  color: var(--home-ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.direct-form__fieldset legend em,
.direct-form__group label em {
  margin-left: 6px;
  color: var(--home-orange);
  font-size: 0.64rem;
  font-style: normal;
}

.direct-form__group label span {
  margin-left: 6px;
  color: #9299a4;
  font-size: 0.65rem;
  font-weight: 500;
}

.direct-form__seminar-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.direct-form__seminar-option {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 16px;
  border: 1px solid #d7dbe2;
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.direct-form__seminar-option:hover {
  border-color: #9ca5b3;
}

.direct-form__seminar-option:has(input:checked) {
  border-color: var(--home-ink);
  background: #f5f6fa;
  box-shadow: inset 0 0 0 1px var(--home-ink);
}

.direct-form__seminar-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.direct-form__seminar-option:has(input:focus-visible) {
  outline: 3px solid rgba(124, 131, 255, 0.35);
  outline-offset: 2px;
}

.direct-form__radio {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #9ba3ae;
  border-radius: 50%;
  background: #fff;
}

.direct-form__seminar-option input:checked + .direct-form__radio {
  border: 5px solid var(--home-ink);
}

.direct-form__seminar-option small,
.direct-form__seminar-option strong {
  display: block;
}

.direct-form__seminar-option small {
  margin-bottom: 4px;
  color: var(--home-orange);
  font-family: var(--home-latin);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.direct-form__seminar-option strong {
  font-size: 0.78rem;
  line-height: 1.55;
}

.direct-form__group {
  margin-bottom: 22px;
}

.direct-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.direct-form__group input,
.direct-form__group select {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid #d7dbe2;
  border-radius: 0;
  background: #fff;
  color: var(--home-ink);
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.direct-form__group select {
  padding-right: 42px;
  cursor: pointer;
}

.direct-form__group input:focus,
.direct-form__group select:focus {
  border-color: var(--home-blue);
  box-shadow: 0 0 0 3px rgba(124, 131, 255, 0.16);
}

.direct-form__group input::placeholder {
  color: #adb3bd;
}

.direct-form__group select:disabled {
  background: #f2f3f5;
  color: #8c949f;
  cursor: wait;
}

.direct-form__group--date {
  padding: 20px;
  border-left: 3px solid var(--home-orange);
  background: #f7f6f2;
}

.direct-form__group--date > p {
  margin-top: 8px;
  color: #7e8794;
  font-size: 0.68rem;
}

.direct-form__privacy {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin: 4px 0 26px;
  color: #606a77;
  font-size: 0.72rem;
  line-height: 1.7;
  cursor: pointer;
}

.direct-form__privacy input {
  width: 16px;
  height: 16px;
  margin: 4px 0 0;
  accent-color: var(--home-ink);
}

.direct-form__privacy a {
  color: var(--home-ink);
  font-weight: 700;
  text-underline-offset: 3px;
}

.direct-form__submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 66px;
  padding: 16px 24px;
  border: 0;
  background: var(--home-ink);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.direct-form__submit:not(:disabled):hover,
.direct-form__submit:not(:disabled):focus-visible {
  transform: translateY(-2px);
  background: #1a2944;
  outline: none;
}

.direct-form__submit:focus-visible {
  box-shadow: 0 0 0 4px rgba(124, 131, 255, 0.28);
}

.direct-form__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.direct-form__submit b {
  color: #f3a284;
  font-size: 1.2rem;
}

.direct-form__note,
.direct-form__status {
  margin-top: 12px;
  color: #858d98;
  font-size: 0.67rem;
  text-align: center;
}

.direct-form__status:not(:empty) {
  color: #b84532;
  font-weight: 700;
}

.direct-form__success {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 48px 20px;
  text-align: center;
}

.direct-form__success-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--home-ink);
  color: #fff;
  font-size: 1.6rem;
}

.direct-form__success h3 {
  font-family: var(--home-serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.5;
}

.direct-form__success p {
  max-width: 440px;
  margin-top: 18px;
  color: var(--home-muted);
  font-size: 0.86rem;
}

.value-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 170px) 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(124, 131, 255, 0.1), transparent 26%),
    linear-gradient(135deg, #0b111b, #101725 62%, #0c1425);
  color: #f7f8fb;
}

.value-section__stars {
  opacity: 0.58;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.4) 0.7px, transparent 0.8px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 37px 39px, 72px 72px, 72px 72px;
}

.value-section .shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(430px, 1.16fr);
  gap: clamp(70px, 10vw, 150px);
}

.value-section .section-number {
  grid-column: 1 / -1;
  color: #8993a4;
  margin-bottom: -50px;
}

.value-section__heading {
  align-self: start;
}

.value-section__heading h2,
.instructor-section h2,
.closing-section h2 {
  margin-top: 22px;
  font-family: var(--home-serif);
  font-size: clamp(2.2rem, 4.4vw, 4.1rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.38;
}

.value-section__heading > p:last-child {
  margin-top: 32px;
  color: #aeb5c1;
  font-size: 0.95rem;
  line-height: 2.15;
}

.value-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.value-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.value-item__number {
  color: var(--home-blue);
  font-family: var(--home-latin);
  font-size: 1.15rem;
  font-weight: 900;
}

.value-item h3 {
  margin-bottom: 11px;
  font-size: 1.1rem;
}

.value-item p {
  color: #929aa8;
  font-size: 0.84rem;
  line-height: 1.95;
}

.instructor-section {
  padding: clamp(95px, 11vw, 160px) 0;
  background: var(--home-paper);
}

.instructor-section__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.instructor-section__portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #dde2e8;
}

.instructor-section__portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(8, 13, 22, 0.18));
  pointer-events: none;
}

.instructor-section__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
}

.instructor-section__portrait > p {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 2px solid var(--home-ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.instructor-section__portrait > p span {
  color: #7d8591;
  font-family: var(--home-latin);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.instructor-section__copy .eyebrow {
  margin-top: 62px;
}

.instructor-section h2 {
  color: var(--home-ink);
}

.instructor-section__role {
  margin: 28px 0 22px;
  color: var(--home-orange);
  font-weight: 700;
}

.instructor-section__copy > p:not(.eyebrow):not(.instructor-section__role) {
  margin-top: 18px;
  color: #626b78;
  font-size: 0.9rem;
  line-height: 2.05;
}

.instructor-section__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid #cfd4dc;
  border-bottom: 1px solid #cfd4dc;
}

.instructor-section__stats > div {
  display: grid;
  gap: 4px;
  padding: 20px 12px;
}

.instructor-section__stats > div + div {
  border-left: 1px solid #cfd4dc;
}

.instructor-section__stats strong {
  font-family: var(--home-latin);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.instructor-section__stats strong span {
  color: var(--home-orange);
  font-family: var(--home-sans);
  font-size: 0.5em;
}

.instructor-section__stats small {
  color: #737b87;
  font-size: 0.67rem;
}

.closing-section {
  padding: clamp(95px, 10vw, 145px) 0;
  background: #fff;
  text-align: center;
}

.closing-section__inner > p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--home-muted);
}

.closing-section__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 50px auto 0;
}

.closing-section__buttons a {
  display: grid;
  gap: 8px;
  padding: 28px 30px;
  border: 1px solid var(--home-line);
  text-align: left;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.closing-section__buttons a:first-child {
  background: var(--home-ink);
  color: #fff;
}

.closing-section__buttons a:last-child {
  border-color: #e5c5b9;
  background: #fff8f4;
}

.closing-section__buttons a:hover,
.closing-section__buttons a:focus-visible {
  transform: translateY(-4px);
  outline: none;
}

.closing-section__buttons a:focus-visible {
  box-shadow: 0 0 0 4px rgba(124, 131, 255, 0.28);
}

.closing-section__buttons span {
  font-size: 0.72rem;
  opacity: 0.66;
}

.closing-section__buttons strong {
  font-size: 1rem;
}

.site-footer {
  padding: 54px 0 38px;
  background: #0d1421;
  color: #fff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: start;
}

.site-footer__brand + p {
  margin-top: 9px;
  color: #7f8998;
  font-size: 0.72rem;
}

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

.site-footer nav a {
  color: #aeb5c0;
  font-size: 0.72rem;
  text-decoration: none;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
}

.site-footer__copyright {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #657080;
  font-family: var(--home-latin);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.seminar-grid .reveal:nth-child(2) {
  transition-delay: 100ms;
}

.seminar-card.reveal.is-visible:hover,
.seminar-card.reveal.is-visible:focus-visible {
  transform: translateY(-8px);
}

@media (max-width: 960px) {
  .hero__intro,
  .value-section .shell,
  .instructor-section__grid,
  .direct-apply-section__grid {
    grid-template-columns: 1fr;
  }

  .hero__intro {
    gap: 42px;
  }

  .hero__intro > .eyebrow {
    margin-bottom: -22px;
  }

  .hero__jp-copy {
    max-width: 620px;
  }

  .value-section .section-number {
    margin-bottom: -24px;
  }

  .value-section__heading {
    max-width: 720px;
  }

  .schedule-overview__heading {
    grid-template-columns: 1fr;
  }

  .schedule-overview__heading .section-number {
    margin-bottom: 18px;
  }

  .schedule-overview__heading .eyebrow {
    padding-top: 0;
  }

  .schedule-overview__heading > p:last-child {
    grid-column: 1;
    max-width: 720px;
  }

  .schedule-overview__month {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .schedule-overview__row {
    grid-template-columns: 90px minmax(0, 1fr) auto;
  }

  .schedule-overview__time {
    grid-column: 2;
  }

  .schedule-overview__apply {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .direct-apply-section__copy {
    max-width: 720px;
  }

  .instructor-section__portrait {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 0.3fr);
    align-items: end;
    max-width: 720px;
  }

  .instructor-section__portrait > p {
    display: grid;
    gap: 8px;
    padding: 22px;
    border-top: 0;
    border-bottom: 2px solid var(--home-ink);
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--home-shell));
  }

  .site-header {
    min-height: 70px;
    padding-inline: 16px;
  }

  .brand__name {
    font-size: 1.05rem;
  }

  .site-header__meta {
    gap: 10px;
    font-size: 0.63rem;
  }

  .site-header__meta span + span::before {
    margin-right: 10px;
  }

  .site-header__meta span:nth-child(3) {
    display: none;
  }

  .hero {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 18vw, 5.4rem);
  }

  .hero h1 span:last-child {
    -webkit-text-stroke-width: 1.4px;
  }

  .desktop-only {
    display: none;
  }

  .choice-heading {
    display: grid;
    gap: 12px;
  }

  .seminar-grid,
  .quick-apply-grid,
  .closing-section__buttons {
    grid-template-columns: 1fr;
  }

  .quick-apply {
    min-height: 82px;
  }

  .seminar-card__hook {
    font-size: clamp(1.55rem, 7vw, 2.4rem);
  }

  .seminar-card h3,
  .seminar-card__copy {
    min-height: 0;
  }

  .seminar-card__copy {
    font-size: 0.86rem;
  }

  .seminar-card__footer {
    align-items: center;
  }

  .schedule-overview {
    padding: 76px 0 82px;
  }

  .schedule-overview__month {
    grid-template-columns: 1fr;
  }

  .schedule-overview__month-title {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 16px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .schedule-overview__row {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 8px 16px;
    padding: 20px;
  }

  .schedule-overview__date {
    grid-row: 1 / 3;
  }

  .schedule-overview__time {
    grid-column: 2;
  }

  .schedule-overview__apply {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    margin-top: 8px;
  }

  .direct-form__seminar-options,
  .direct-form__row {
    grid-template-columns: 1fr;
  }

  .hero__note {
    text-align: left;
  }

  .instructor-section__portrait {
    grid-template-columns: 1fr;
  }

  .instructor-section__portrait > p {
    display: flex;
    padding: 14px 0 0;
    border-top: 2px solid var(--home-ink);
    border-bottom: 0;
  }

  .instructor-section__copy .eyebrow {
    margin-top: 42px;
  }

  .instructor-section__stats strong {
    font-size: 1.45rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    display: grid;
    gap: 12px;
  }
}

@media (max-width: 430px) {
  .brand__division {
    display: none;
  }

  .site-header__meta span:nth-child(2) {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 17.2vw, 4.45rem);
  }

  .seminar-card__thumbnail-top {
    font-size: 0.52rem;
  }

  .seminar-card__live {
    letter-spacing: 0.08em;
  }

  .seminar-card__watch {
    display: none;
  }

  .seminar-card__body {
    padding: 24px 20px;
  }

  .seminar-card__category {
    display: grid;
    gap: 6px;
  }

  .seminar-card__footer {
    display: grid;
  }

  .seminar-card__cta {
    width: 100%;
  }

  .value-item {
    grid-template-columns: 42px 1fr;
  }

  .instructor-section__stats {
    grid-template-columns: 1fr;
  }

  .instructor-section__stats > div + div {
    border-top: 1px solid #cfd4dc;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
