:root {
  --blue-900: #05245e;
  --blue-800: #073d91;
  --blue-700: #075dc7;
  --blue-600: #1476df;
  --blue-100: #eaf4ff;
  --blue-50: #f4f9ff;
  --line: #b9d7fb;
  --text: #13213a;
  --muted: #516176;
  --yellow: #ffd438;
  --white: #fff;
  --shadow: 0 14px 34px rgba(8, 56, 128, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.8;
  background: #fff;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
}

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

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

.container {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(980px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #d9e9fb;
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-900);
}

.mobile-menu-button,
.mobile-menu-about {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--blue-900);
  background: #fff;
  border: 1px solid #b9d7fb;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(8, 56, 128, .08);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  grid-area: 1 / 1;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.section {
  padding: 96px 0;
}

.overview {
  padding: 86px 0;
}

.section-soft,
.hero {
  background: linear-gradient(180deg, #fff 0, #f5f9ff 100%);
}

.hero {
  position: relative;
  min-height: 640px;
  padding: 100px 0 140px;
  overflow: hidden;
}

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0 34%, rgba(255,255,255,.88) 46%, rgba(255,255,255,.5) 62%, rgba(255,255,255,.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.34) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-grid,
.split,
.course-intro,
.two-column,
.course-cards,
.contact-actions,
.lecturer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.lecturer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 740px);
  align-items: center;
  gap: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 14px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.section-kicker {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border-color: transparent;
  border-radius: 6px 18px 18px 6px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
.section-heading h2,
.contact-card h2 {
  color: var(--blue-900);
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.28;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  margin: 26px 0 44px;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.6;
}

.hero h1 span {
  white-space: nowrap;
}

.hero h1 .mobile-title-line {
  display: none;
}

.hero h1 .desktop-title-line {
  display: inline;
}

.lead {
  max-width: 680px;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  color: #24324a;
}

.section-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.overview {
  position: relative;
  z-index: 2;
  margin-top: -78px;
  padding-top: 0;
}

.course-card,
.panel,
.training-card,
.target-card,
.lecturer-card,
.contact-card,
.entry-box,
.solo-box {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.course-card {
  padding: 28px;
}

.course-primary {
  border-color: var(--blue-600);
}

.course-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-900);
  font-weight: 800;
}

.course-label span {
  padding: 6px 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border-radius: 5px;
}

.course-card h2 {
  margin: 16px 0 6px;
  color: var(--blue-900);
  font-size: 28px;
  line-height: 1.35;
}

.sub {
  color: var(--blue-700);
  font-weight: 800;
}

.check-list,
.plain-list {
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
}

.check-list li::before,
.plain-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: var(--blue-700);
  border-radius: 50%;
}

.notice-box {
  display: grid;
  gap: 4px;
  margin: 22px 0;
  padding: 16px;
  background: #fff8d9;
  border: 1px solid #ffdf72;
  border-radius: 6px;
  color: var(--blue-900);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button::after {
  content: "›";
  font-size: 24px;
  line-height: 1;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(6, 76, 167, .16);
}

.button-blue {
  color: #fff;
  background: linear-gradient(135deg, #006dd9, #004eb5);
}

.button-yellow {
  color: #08255c;
  background: linear-gradient(135deg, #ffe36a, #ffc821);
  border: 1px solid #e2ad00;
}

.mobile-label {
  display: none;
}

.button-outline {
  color: var(--blue-900);
  background: #fff;
  border: 1px solid var(--blue-700);
}

.pdf-button {
  width: 100%;
  margin-top: 22px;
  padding: 14px 18px;
}

.small-note {
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 16px 0 8px;
}

.split {
  align-items: center;
  margin-bottom: 30px;
}

.course-intro {
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  align-items: end;
  gap: 46px;
  margin: 24px 0 46px;
}

.intro-copy {
  max-width: 620px;
  padding-bottom: 10px;
}

.intro-copy h2 {
  margin: 0 0 22px;
  color: var(--blue-900);
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.42;
  letter-spacing: 0;
}

.intro-copy p {
  font-size: 17px;
  line-height: 2;
}

.course-intro .section-image {
  aspect-ratio: 16 / 9.6;
  box-shadow: 0 16px 38px rgba(8, 56, 128, .14);
}

.two-column {
  margin: 34px 0;
}

.align-start {
  align-items: start;
}

.panel {
  padding: 24px;
}

.panel h3,
.block-title,
.faq h3,
.flow h3,
.solo-box h3 {
  color: var(--blue-900);
  font-size: 24px;
  line-height: 1.4;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  color: #fff;
  background: var(--blue-800);
  border-radius: 6px;
  vertical-align: middle;
}

.icon svg,
.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-break {
  display: none;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.field-grid span {
  min-height: 96px;
  display: grid;
  grid-template-rows: 42px auto;
  place-items: center;
  padding: 12px 8px 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  background: linear-gradient(145deg, #115dd5 0, #06246d 100%);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 6px 10px rgba(7, 42, 109, .18), inset 0 1px 0 rgba(255,255,255,.22);
}

.field-item svg {
  width: 40px;
  height: 40px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 2px rgba(0,0,0,.18));
}

.field-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 3px 2px rgba(0,0,0,.18));
}

.field-item:nth-child(1) {
  background: linear-gradient(145deg, #0c58c7 0, #05205f 100%);
}

.field-item:nth-child(2) {
  background: linear-gradient(145deg, #139ba7 0, #045f5b 100%);
}

.field-item:nth-child(3) {
  background: linear-gradient(145deg, #087be8 0, #063986 100%);
}

.field-item:nth-child(4) {
  background: linear-gradient(145deg, #16bde5 0, #076aab 100%);
}

.field-item:nth-child(5) {
  background: linear-gradient(145deg, #1599e4 0, #053d92 100%);
}

.field-item:nth-child(6) {
  background: linear-gradient(145deg, #7850df 0, #3b1a9b 100%);
}

.field-item:nth-child(7) {
  background: linear-gradient(145deg, #6345c9 0, #2a156f 100%);
}

.pdf-link {
  display: block;
  margin: 38px 0 54px;
  padding: 12px 16px;
  color: var(--blue-800);
  font-weight: 800;
  text-align: center;
  background: #f5fbff;
  border: 1px solid #9fc8f3;
  border-radius: 5px;
}

.flow {
  margin: 58px 0;
}

.flow ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.flow li {
  position: relative;
  padding: 54px 10px 0;
  text-align: center;
}

.flow li::before {
  content: counter(list-item);
  position: absolute;
  top: 0;
  left: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--blue-700);
  border-radius: 50%;
  transform: translateX(-50%);
}

.flow li::after {
  content: "";
  position: absolute;
  top: 17px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: #aacdf1;
  z-index: -1;
}

.flow li:last-child::after {
  display: none;
}

.flow strong,
.flow span {
  display: block;
}

.flow strong {
  color: var(--blue-900);
}

.flow span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.info-list {
  margin: 0;
}

.panel-title-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  color: #fff;
  vertical-align: middle;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
  border-radius: 8px;
}

.panel-title-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.panel-title-icon-soft {
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 50%;
}

.info-list div,
.target-card dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #d5e7fb;
}

.info-list div:last-child,
.target-card dl div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--blue-800);
  font-weight: 900;
}

dd {
  margin: 0;
}

.appeal-panel {
  background: linear-gradient(135deg, #fff, #eef7ff);
}

.faq {
  margin: 62px 0 42px;
}

.faq details {
  margin: 12px 0;
  background: #fff;
  border: 1px solid #c9def7;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(8, 56, 128, .07);
  overflow: hidden;
}

.faq summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 14px 20px;
  color: var(--blue-900);
  font-weight: 900;
  cursor: pointer;
}

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

.faq summary::after {
  content: "⌄";
  margin-left: auto;
  color: var(--blue-800);
  font-size: 24px;
}

.faq details[open] summary::after {
  transform: rotate(180deg);
}

.faq summary span,
.faq p span {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--blue-700);
  border-radius: 50%;
}

.faq details p {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 16px 20px 20px;
  background: var(--blue-50);
}

.entry-box {
  padding: 28px;
}

.red-note {
  color: #c0182f;
  font-weight: 800;
}

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

.training-card,
.target-card {
  position: relative;
  padding: 22px;
}

.training-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--blue-800);
  font-weight: 900;
}

.training-meta span {
  padding: 5px 10px;
  color: #fff;
  background: var(--blue-800);
  border-radius: 5px;
}

.training-meta b {
  padding: 5px 10px;
  color: var(--blue-700);
  background: var(--blue-100);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.training-card h4 {
  margin: 18px 0 8px;
  color: var(--blue-900);
  font-size: 22px;
}

.training-card a {
  display: block;
  margin-top: 18px;
  padding: 10px 12px;
  color: var(--blue-800);
  font-weight: 800;
  text-align: center;
  border: 1px solid var(--blue-700);
  border-radius: 5px;
}

.target-card {
  background: #fff;
}

.target-card dl {
  margin: 0;
}

.center-action {
  max-width: 560px;
  margin: 28px auto 0;
}

.entry-benefit {
  margin: 20px 0 0;
  padding: 14px 16px;
  color: var(--blue-900);
  font-weight: 800;
  background: #fff8d9;
  border: 1px solid #ffdf72;
  border-radius: 6px;
}

.entry-benefit strong {
  display: inline-block;
  margin-right: 10px;
  color: #9a5b00;
}

.center-title,
.contact-card h2,
.contact-card > p {
  text-align: center;
}

.lecturer-card {
  padding: 26px;
}

.avatar {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--blue-700);
  font-weight: 900;
  background: linear-gradient(135deg, #f5fbff, #ddecff);
  border: 1px dashed var(--blue-700);
  border-radius: 50%;
}


.avatar-placeholder {
  border-style: dashed;
}

.avatar-photo {
  object-fit: cover;
  object-position: center;
  background: #fff;
  border: 2px solid #d4e4f8;
}

.avatar-sekiyama {
  object-position: center 36%;
}

.avatar-odaka {
  object-position: center top;
}

.avatar-miyamoto {
  object-fit: cover;
  object-position: center center;
  padding: 0;
  background: #fff;
}

.lecturer-card h3 {
  color: var(--blue-900);
  text-align: center;
}

.solo-box {
  margin-top: 46px;
  padding: 26px;
  background: linear-gradient(135deg, #fff, #f0f7ff);
}

.contact {
  padding: 98px 0 108px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 56px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-visual {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: 42%;
  opacity: .22;
  pointer-events: none;
}

.contact-card > :not(.contact-visual) {
  position: relative;
  z-index: 1;
}

.center {
  margin-inline: auto;
}

.contact .eyebrow {
  display: none;
}

.contact-card h2 {
  color: var(--blue-900);
  margin-bottom: 34px;
  font-size: 40px;
  line-height: 1.35;
}

.contact-card h2::after {
  content: "";
  display: block;
  width: 118px;
  height: 1px;
  margin: 24px auto 0;
  background: #d5dce8;
}

.contact-card > p {
  max-width: 760px;
  margin: 0 auto 48px;
  color: #475873;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 0 auto 54px;
  padding: 0;
  max-width: 520px;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.contact-info div {
  display: block;
}

.contact-info strong {
  display: block;
  margin-top: 18px;
  color: var(--blue-900);
  font-size: 24px;
  line-height: 1.45;
}

.contact-url {
  display: inline-block;
  color: var(--blue-900);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-info small {
  display: block;
  margin-top: 12px;
  color: #8995a8;
  font-size: 18px;
  font-weight: 700;
}

.about-button {
  width: min(100%, 360px);
  margin: 24px auto 0;
  padding: 14px 18px;
}

.contact-actions article {
  padding: 34px 36px;
  background: #fff;
  border: 1px solid #d3dce8;
  border-radius: 0;
  box-shadow: none;
}

.contact-actions {
  gap: 26px;
}

.contact-actions .course-label {
  margin-bottom: 28px;
  font-size: 24px;
}

.contact-actions .course-label span {
  border-radius: 0;
  font-size: 18px;
}

.contact-actions .button {
  min-height: 74px;
  margin-top: 0;
  border-radius: 0;
  font-size: 22px;
  line-height: 1.45;
}

.contact-actions .button span {
  white-space: nowrap;
}

.contact-actions p {
  margin: 22px 0 0;
  color: #53637c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.footer {
  padding: 26px 20px;
  color: var(--muted);
  text-align: center;
  background: #f6f9fc;
}

@media (max-width: 860px) {
  .container,
  .narrow {
    width: min(100% - 28px, 720px);
  }

  .header-inner {
    position: relative;
    align-items: center;
    flex-direction: row;
    padding: 14px 0;
    gap: 10px;
  }

  .header-inner::after {
    content: none;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-header.is-menu-open .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--blue-900);
    background: rgba(255, 255, 255, .98);
    border: 1px solid #b9d7fb;
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(8, 56, 128, .16);
  }

  .site-header.is-menu-open .nav a {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 800;
    border-bottom: 1px solid #e4effc;
  }

  .site-header.is-menu-open .nav .nav-contact {
    display: none;
  }

  .site-header.is-menu-open .nav .mobile-menu-button,
  .site-header.is-menu-open .nav .mobile-menu-about {
    display: block;
    margin-top: 10px;
    padding: 14px 16px;
    text-align: center;
    border-bottom: 0;
    border-radius: 6px;
  }

  .site-header.is-menu-open .nav .mobile-menu-button {
    min-height: 58px;
    color: #fff;
    font-size: 15px;
    line-height: 1.45;
    box-shadow: 0 10px 22px rgba(6, 76, 167, .14);
  }

  .site-header.is-menu-open .nav .mobile-menu-button-yellow {
    color: #08255c;
    background: linear-gradient(135deg, #ffe36a, #ffc821);
    border: 1px solid #e2ad00;
  }

  .site-header.is-menu-open .nav .mobile-menu-button-blue {
    background: linear-gradient(135deg, #006dd9, #004eb5);
  }

  .site-header.is-menu-open .nav .mobile-menu-about {
    color: var(--blue-800);
    font-size: 14px;
    background: #f5fbff;
    border: 1px solid #b9d7fb;
  }

  .hero {
    min-height: 620px;
    padding: 52px 0 168px;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.96) 0, rgba(255,255,255,.9) 42%, rgba(255,255,255,.62) 63%, rgba(255,255,255,.18) 100%),
      linear-gradient(90deg, rgba(255,255,255,.98) 0, rgba(255,255,255,.72) 54%, rgba(255,255,255,.22) 100%);
  }

  .hero-bg img {
    object-position: 62% bottom;
  }

  .hero-grid,
  .split,
  .course-intro,
  .two-column,
  .course-cards,
  .contact-actions,
  .lecturer-grid,
  .training-grid,
  .contact-info {
    grid-template-columns: 1fr;
  }

  h1,
  .section-heading h2,
  .contact-card h2 {
    font-size: 32px;
  }

  .hero-grid {
    gap: 0;
  }

  .hero h1 {
    max-width: 560px;
    margin: 18px 0 24px;
    font-size: 30px;
    line-height: 1.55;
  }

  .hero h1 span {
    white-space: normal;
  }

  .course-intro {
    align-items: start;
    gap: 24px;
  }

  .intro-copy {
    max-width: none;
    padding-bottom: 0;
  }

  .intro-copy h2 {
    font-size: 30px;
  }

  .section,
  .overview,
  .contact {
    padding: 54px 0;
  }

  .overview {
    margin-top: -76px;
    padding-top: 0;
  }

  .course-card,
  .panel,
  .contact-card,
  .entry-box,
  .solo-box {
    padding: 22px;
  }

  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow ol {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-inline: auto;
  }

  .flow li {
    padding: 0 0 0 48px;
    text-align: left;
  }

  .flow li::before {
    left: 0;
    transform: none;
  }

  .flow li::after {
    top: 34px;
    left: 16px;
    width: 2px;
    height: calc(100% + 12px);
  }

  .info-list div,
  .target-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .faq summary,
  .faq details p {
    align-items: flex-start;
    padding-inline: 14px;
  }

  .mobile-break {
    display: inline;
  }

  .contact-visual {
    width: 90%;
    opacity: .12;
  }

  .contact-card h2 {
    font-size: 34px;
  }

  .contact-actions {
    gap: 28px;
  }

  .contact-actions article {
    padding: 30px 34px 34px;
  }

  .contact-actions p {
    display: none;
  }
}

@media (max-width: 520px) {
  .container,
  .narrow {
    width: min(100% - 22px, 480px);
  }

  .brand {
    font-size: 15px;
  }

  .nav {
    font-size: 12px;
  }

  h1,
  .section-heading h2,
  .contact-card h2 {
    font-size: 28px;
  }

  .contact {
    padding: 58px 0 74px;
  }

  .contact-card {
    padding: 0;
  }

  .contact-card h2 {
    font-size: 26px;
    line-height: 1.35;
  }

  .contact-card h2::after {
    width: 118px;
    margin-top: 22px;
  }

  .contact-card > p {
    margin-bottom: 34px;
    font-size: 18px;
    line-height: 1.95;
    text-align: center;
  }

  .contact-info {
    gap: 20px;
    margin-bottom: 38px;
  }

  .contact-info strong {
    font-size: 20px;
  }

  .contact-info small {
    font-size: 15px;
    white-space: normal;
  }

  .contact-url {
    max-width: 100%;
    font-size: 20px;
    overflow-wrap: anywhere;
  }

  .about-button {
    width: 100%;
    font-size: 16px;
  }

  .contact-actions article {
    padding: 32px 26px;
  }

  .contact-actions .course-label {
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: nowrap;
    font-size: 16px;
  }

  .contact-actions .course-label span {
    min-width: 70px;
    padding: 8px 12px;
    text-align: center;
    white-space: nowrap;
  }

  .contact-actions .button {
    min-height: 82px;
    border-radius: 6px;
    font-size: 22px;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .hero h1 {
    font-size: 27px;
    line-height: 1.55;
  }

  .hero {
    min-height: 590px;
    padding: 44px 0 150px;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.97) 0, rgba(255,255,255,.9) 46%, rgba(255,255,255,.58) 68%, rgba(255,255,255,.12) 100%),
      linear-gradient(90deg, rgba(255,255,255,.98) 0, rgba(255,255,255,.68) 62%, rgba(255,255,255,.16) 100%);
  }

  .hero-bg img {
    object-position: 64% bottom;
  }

  .hero h1 {
    font-size: 25px;
    line-height: 1.65;
  }

  .hero h1 .desktop-title-line {
    display: none;
  }

  .hero h1 .mobile-title-line {
    display: block;
    white-space: normal;
  }

  .intro-copy h2 {
    font-size: 26px;
  }

  .lead {
    font-size: 16px;
  }

  .course-card h2,
  .panel h3,
  .block-title,
  .faq h3,
  .flow h3,
  .solo-box h3 {
    font-size: 21px;
  }

  .pdf-link {
    padding: 18px 14px;
    font-size: 18px;
    line-height: 1.8;
  }

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

  .field-grid span {
    min-height: 90px;
    font-size: 15px;
    border-radius: 12px;
  }

  .field-item svg {
    width: 36px;
    height: 36px;
  }

  .field-item img {
    width: 30px;
    height: 30px;
  }

  .contact-card {
    padding: 22px 16px;
  }

  .contact-info {
    padding: 14px;
  }

  .button {
    font-size: 14px;
  }
}
