/* MeTULAB 高校受験・大学受験対策ページ共通 */
:root {
  --exam-yellow: #ffd74b;
  --exam-yellow-deep: #f1bd22;
  --exam-blue: #1769cf;
  --exam-blue-dark: #104d9a;
  --exam-green: #08b96e;
  --exam-coral: #ff5364;
  --exam-sky: #65c7d6;
  --exam-ink: #13223b;
  --exam-text: #344158;
  --exam-muted: #6e7787;
  --exam-line: #dfe5eb;
  --exam-paper: #fffdf7;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
}

body.exam-page-body {
  margin: 0;
  color: var(--exam-text);
  background: var(--exam-paper);
  font-size: 16px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

body.exam-page-body,
body.exam-page-body * {
  box-sizing: border-box;
}

body.exam-page-body a {
  color: inherit;
}

body.exam-page-body img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

body.exam-page-body header {
  width: 100%;
  padding: 0 3%;
  color: var(--exam-ink);
  background: rgba(255, 215, 75, .97);
  border-bottom: 1px solid rgba(19, 34, 59, .12);
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

body.exam-page-body .header-left {
  width: 235px;
  height: 50px;
  padding: 0 28px 0 22px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

body.exam-page-body .header-left h1,
body.exam-page-body .header-left p {
  margin: 0;
  line-height: 1;
}

body.exam-page-body .header-left img {
  display: block;
  width: 166px;
  height: auto;
}

body.exam-page-body header ul {
  padding-left: 0;
}

body.exam-page-body header li {
  margin-left: 20px;
  font-size: 16px;
  font-weight: 700;
}

body.exam-page-body #navi li {
  font-size: 16px;
}

body.exam-page-body header li:last-child a {
  padding: 8px 13px;
  color: #fff;
  background: var(--exam-coral);
  border-radius: 6px;
}

.exam-main {
  overflow: hidden;
}

.exam-container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.exam-hero {
  position: relative;
  overflow: hidden;
  background: var(--exam-yellow);
}

.exam-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .17;
  background-image:
    linear-gradient(var(--exam-ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--exam-ink) 1px, transparent 1px);
  background-size: 42px 42px;
}

.exam-hero-inner {
  position: relative;
  min-height: 650px;
  padding: 74px 0 82px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 64px;
}

.exam-breadcrumb {
  margin: 0 0 30px;
  color: rgba(19, 34, 59, .7);
  font-size: 16px;
  font-weight: 700;
}

.exam-breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.exam-eyebrow {
  margin: 0 0 12px;
  color: var(--page-accent-dark, var(--exam-blue-dark));
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.4;
}

.exam-hero h1 {
  margin: 0;
  color: var(--exam-ink);
  font-size: clamp(38px, 4.2vw, 61px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.35;
}

.high-school-exam .exam-hero h1,
.university-exam .exam-hero h1 {
  font-size: clamp(38px, 3.55vw, 54px);
}

.exam-hero-title-line {
  width: fit-content;
  display: block;
  white-space: nowrap;
}

.exam-hero h1 .marker {
  position: relative;
  z-index: 0;
}

.exam-hero h1 .marker::after {
  position: absolute;
  z-index: -1;
  right: -.06em;
  bottom: .03em;
  left: -.06em;
  height: .24em;
  content: "";
  background: rgba(255, 255, 255, .83);
  transform: rotate(-1deg);
}

.exam-hero-lead {
  margin: 26px 0 0;
  color: #29364b;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}

.exam-teacher-callout {
  width: min(100%, 520px);
  margin: 0 0 28px;
  padding: 14px 18px 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 14px;
  row-gap: 10px;
  color: var(--exam-ink);
  background: #fff;
  border: 3px solid var(--exam-ink);
  border-radius: 15px;
  box-shadow: 7px 7px 0 var(--exam-blue);
  line-height: 1.2;
}

.exam-teacher-callout span {
  padding: 7px 10px;
  color: #fff;
  background: var(--exam-ink);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .04em;
  white-space: nowrap;
}

.exam-teacher-callout strong {
  color: var(--exam-blue);
  font-size: clamp(30px, 2.55vw, 39px);
  font-weight: 900;
  letter-spacing: -.05em;
  white-space: nowrap;
}

.exam-teacher-callout small {
  grid-column: 1 / -1;
  padding-top: 9px;
  color: #344259;
  border-top: 1px dashed rgba(19, 34, 59, .28);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
}

.exam-badges {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.exam-badges li {
  padding: 7px 13px;
  color: var(--exam-ink);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(19, 34, 59, .15);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
}

.exam-hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.exam-button {
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff !important;
  background: var(--exam-blue);
  border-radius: 10px;
  box-shadow: 0 8px 0 rgba(19, 34, 59, .17);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  transition: transform .18s ease, box-shadow .18s ease;
}

.exam-button:hover {
  transform: translateY(3px);
  box-shadow: 0 5px 0 rgba(19, 34, 59, .17);
}

.exam-text-link {
  padding-bottom: 3px;
  color: var(--exam-ink) !important;
  border-bottom: 2px solid currentColor;
  font-size: 16px;
  font-weight: 800;
}

.exam-mv-copy {
  position: relative;
  min-height: 455px;
  padding: 66px 45px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: var(--exam-ink);
  border: 11px solid #fff;
  border-radius: 50% 50% 45% 55% / 45% 48% 52% 55%;
  box-shadow: 0 22px 60px rgba(19, 34, 59, .2);
  text-align: center;
  transform: rotate(1.4deg);
}

.exam-mv-copy::before,
.exam-mv-copy::after {
  position: absolute;
  content: "";
  border: 2px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.exam-mv-copy::before { inset: 24px; }
.exam-mv-copy::after { inset: 59px; border-style: dashed; }

.exam-mv-copy > * {
  position: relative;
  z-index: 1;
  transform: rotate(-1.4deg);
}

.exam-mv-copy .mv-label {
  margin: 0 0 14px;
  color: var(--exam-yellow);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .18em;
}

.exam-mv-copy strong {
  display: block;
  color: #fff;
  font-size: clamp(29px, 3.1vw, 45px);
  letter-spacing: -.04em;
  line-height: 1.45;
}

.exam-mv-copy > span {
  max-width: 390px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  font-weight: 700;
}

.exam-mv-copy ul {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  list-style: none;
}

.exam-mv-copy li {
  padding: 6px 10px;
  color: var(--exam-ink);
  background: #fff;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 900;
}

.exam-mv-visual {
  position: relative;
  min-height: 455px;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 11px solid #fff;
  border-radius: 34px;
  box-shadow: 0 22px 60px rgba(19, 34, 59, .2);
}

body.exam-page-body .exam-mv-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.exam-high-school-mv > img,
.exam-university-mv > img {
  object-position: right center;
}

.exam-trust {
  position: relative;
  color: #fff;
  background: var(--exam-blue);
}

.exam-trust-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.exam-trust p {
  margin: 0;
  padding: 9px 28px;
  border-right: 1px solid rgba(255, 255, 255, .28);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.exam-trust p:last-child { border-right: 0; }

.exam-trust span {
  margin-right: 10px;
  color: var(--exam-yellow);
  font-family: Arial, sans-serif;
  font-size: 16px;
  letter-spacing: .13em;
}

.exam-section {
  padding: 110px 0;
}

.exam-section.is-white { background: #fff; }
.exam-section.is-soft { background: var(--page-soft, #e8f2ff); }
.exam-section.is-dark { color: rgba(255, 255, 255, .8); background: var(--exam-ink); }
.exam-section.is-yellow { background: var(--exam-yellow); }

.exam-section-head {
  max-width: 810px;
  margin: 0 auto 56px;
  text-align: center;
}

.exam-section-head h2,
.exam-copy h2,
.exam-closing h2 {
  margin: 0;
  color: var(--exam-ink);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.5;
}

.exam-section-head > p:not(.exam-eyebrow),
.exam-copy > p:not(.exam-eyebrow) {
  margin: 23px 0 0;
  font-size: 16px;
  line-height: 2.05;
}

.exam-split {
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  gap: 88px;
}

.exam-copy.is-sticky {
  position: sticky;
  top: 100px;
  align-self: start;
}

.exam-copy .exam-accent-note {
  padding-left: 18px;
  color: var(--exam-ink);
  border-left: 4px solid var(--page-accent, var(--exam-blue));
  font-weight: 800;
}

.exam-worry-list,
.exam-check-list,
.exam-flow,
.exam-card ul,
.exam-tools,
.exam-faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.exam-worry-list {
  display: grid;
  gap: 13px;
}

.exam-worry-list li {
  min-height: 82px;
  padding: 17px 22px 17px 15px;
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  background: #fff;
  border: 1px solid var(--exam-line);
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(19, 34, 59, .06);
}

.exam-worry-list b {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--page-accent, var(--exam-blue));
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.exam-worry-list span {
  color: var(--exam-ink);
  font-size: 16px;
  font-weight: 800;
}

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

.exam-card {
  padding: 31px 27px;
  background: #fff;
  border: 1px solid rgba(19, 34, 59, .09);
  border-radius: 16px;
  box-shadow: 0 17px 42px rgba(19, 34, 59, .08);
}

.exam-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.exam-card-num {
  color: var(--page-accent, var(--exam-blue));
  font-family: Arial, sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.exam-card-label {
  color: var(--exam-muted);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .12em;
}

.exam-card h3 {
  min-height: 61px;
  margin: 23px 0 13px;
  color: var(--exam-ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.55;
}

.exam-card > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
}

.exam-card ul {
  margin-top: 22px;
  padding-top: 18px;
  display: grid;
  gap: 9px;
  border-top: 1px solid var(--exam-line);
}

.exam-card li {
  position: relative;
  padding-left: 17px;
  color: var(--exam-ink);
  font-size: 16px;
  font-weight: 800;
}

.exam-card li::before {
  position: absolute;
  top: .78em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--exam-yellow);
  border: 2px solid var(--exam-ink);
  border-radius: 50%;
  transform: translateY(-50%);
}

.exam-online-grid,
.exam-tutor-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 84px;
}

.exam-online-visual {
  position: relative;
  min-height: 470px;
  padding: 56px 45px;
  display: grid;
  place-items: center;
  background: var(--exam-yellow);
  border-radius: 38px 130px 38px 110px;
}

.exam-online-visual img {
  width: 94%;
  filter: drop-shadow(0 18px 25px rgba(19, 34, 59, .18));
}

.exam-online-caption {
  position: absolute;
  right: -20px;
  bottom: 42px;
  padding: 12px 18px;
  color: #fff;
  background: var(--exam-coral);
  border: 5px solid #fff;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 900;
  transform: rotate(2deg);
}

.exam-mini-points {
  margin-top: 28px;
  display: grid;
  gap: 13px;
}

.exam-mini-points div {
  padding: 13px 0 13px 16px;
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 16px;
  border-left: 4px solid var(--page-accent, var(--exam-blue));
}

.exam-mini-points strong {
  color: var(--exam-ink);
  font-size: 16px;
}

.exam-mini-points span {
  font-size: 16px;
}

.exam-section.is-dark .exam-section-head h2 { color: #fff; }
.exam-section.is-dark .exam-eyebrow { color: var(--exam-yellow); }

.exam-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.exam-flow::before {
  position: absolute;
  top: 34px;
  right: 10%;
  left: 10%;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, .2);
}

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

.exam-flow b {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: var(--exam-ink);
  background: var(--exam-yellow);
  border: 7px solid var(--exam-ink);
  outline: 2px solid var(--exam-yellow);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.exam-flow small {
  display: block;
  color: var(--page-accent-light, var(--exam-sky));
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .14em;
}

.exam-flow h3 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.exam-flow p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
}

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

.exam-tutor-photos figure {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: #eef2f5;
  border-radius: 20px;
}

body.exam-page-body .exam-tutor-photos img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.exam-tutor-photos figcaption {
  position: absolute;
  right: 9px;
  bottom: 9px;
  left: 9px;
  padding: 8px 11px;
  color: var(--exam-ink);
  background: rgba(255, 255, 255, .91);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
}

.exam-tutor-photos figcaption span {
  margin-top: 3px;
  display: block;
  color: var(--exam-muted);
}

.exam-quote {
  margin: 28px 0;
  padding: 20px 22px;
  color: var(--exam-ink);
  background: var(--exam-yellow);
  border-radius: 11px;
  font-size: 16px;
  font-weight: 900;
  transform: rotate(-1deg);
}

.exam-tools {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.exam-tools li {
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--exam-line);
  border-radius: 13px;
}

.exam-tools b {
  display: block;
  color: var(--page-accent, var(--exam-blue));
  font-family: Arial, sans-serif;
  font-size: 27px;
}

.exam-tools strong {
  margin-top: 8px;
  display: block;
  color: var(--exam-ink);
  font-size: 16px;
}

.exam-tools p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.8;
}

.exam-note {
  margin: 18px 0 0;
  color: var(--exam-muted);
  font-size: 16px;
  text-align: right;
}

.exam-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.exam-check-list li {
  min-height: 90px;
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--exam-ink);
  background: #fff;
  border-radius: 11px;
  font-size: 16px;
  font-weight: 800;
}

.exam-check-list b {
  width: 27px;
  height: 27px;
  min-width: 27px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--page-accent, var(--exam-blue));
  border-radius: 50%;
  font-size: 16px;
}

.exam-trial-box {
  padding: 65px 70px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
  background: #fff;
  border: 1px solid rgba(19, 34, 59, .12);
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(19, 34, 59, .14);
}

.exam-trial-box h2 {
  margin: 0;
  color: var(--exam-ink);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 900;
  line-height: 1.5;
}

.exam-trial-box .exam-copy > p:not(.exam-eyebrow) {
  margin-bottom: 28px;
}

.exam-trial-voice {
  display: grid;
  gap: 11px;
}

.exam-trial-voice p {
  margin: 0;
  padding: 13px 17px;
  color: var(--exam-ink);
  background: var(--page-soft, #e8f2ff);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
}

.exam-trial-answer {
  margin-top: 7px;
  padding: 19px;
  color: #fff;
  background: var(--page-accent, var(--exam-blue));
  border-radius: 14px;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.exam-faq-grid {
  display: grid;
  grid-template-columns: .66fr 1.34fr;
  gap: 80px;
}

.exam-faq-list {
  border-top: 1px solid var(--exam-line);
}

.exam-faq-list details {
  border-bottom: 1px solid var(--exam-line);
}

.exam-faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--exam-ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  list-style: none;
}

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

.exam-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  content: "+";
  color: #fff;
  background: var(--exam-ink);
  border-radius: 50%;
  transform: translateY(-50%);
}

.exam-faq-list details[open] summary::after { content: "−"; }

.exam-faq-list summary b,
.exam-faq-answer b {
  color: var(--page-accent, var(--exam-blue));
  font-family: Arial, sans-serif;
  font-size: 21px;
}

.exam-faq-answer {
  padding: 0 48px 26px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.exam-faq-answer b { color: var(--exam-coral); }

.exam-faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.exam-closing {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  color: #fff;
  background: var(--exam-blue);
  text-align: center;
}

.exam-closing::after {
  position: absolute;
  top: -210px;
  right: -120px;
  width: 540px;
  height: 540px;
  content: "";
  border: 105px solid rgba(255, 215, 75, .9);
  border-radius: 50%;
}

.exam-closing .exam-container {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.exam-closing .exam-eyebrow { color: var(--exam-yellow); }
.exam-closing h2 { color: #fff; }

.exam-closing p:not(.exam-eyebrow) {
  max-width: 700px;
  margin: 22px auto 32px;
  color: rgba(255, 255, 255, .84);
  font-size: 16px;
}

.exam-closing .exam-button {
  color: var(--exam-blue-dark) !important;
  background: #fff;
}

body.exam-page-body footer {
  height: auto;
  min-height: 260px;
  padding: 24px 20px 20px;
  font-size: 16px;
  box-sizing: border-box;
}

body.exam-page-body footer .sns-btn-wrapper-bottom {
  position: static;
  transform: none;
}

body.exam-page-body footer .footer-links {
  padding-top: 14px;
}

body.exam-page-body footer .footer-links a {
  display: inline-block;
  margin: 0 7px;
}

body.exam-page-body footer p {
  margin: 14px 0 8px;
  line-height: 1.55;
}

body.exam-page-body footer address {
  font-style: normal;
}

.high-school-exam {
  --page-accent: var(--exam-green);
  --page-accent-dark: #087e58;
  --page-accent-light: #55dfa9;
  --page-soft: #e5f8ef;
}

.university-exam {
  --page-accent: var(--exam-blue);
  --page-accent-dark: var(--exam-blue-dark);
  --page-accent-light: var(--exam-sky);
  --page-soft: #e8f2ff;
}

@media (max-width: 1000px) {
  .exam-hero-inner { gap: 35px; }
  .exam-mv-copy { min-height: 400px; padding-inline: 30px; }
  .exam-card-grid { grid-template-columns: 1fr; max-width: 750px; margin-inline: auto; }
  .exam-card h3 { min-height: auto; }
  .exam-split { gap: 55px; }
  .exam-online-grid,
  .exam-tutor-grid { gap: 55px; }
  .exam-tools { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 885px) {
  body.exam-page-body header li:last-child a {
    padding: 0;
    color: var(--exam-ink);
    background: transparent;
  }

  body.exam-page-body .header-left {
    width: 190px;
    padding-left: 15px;
  }

  body.exam-page-body .header-left img { width: 145px; }

  .exam-container { width: min(680px, calc(100% - 36px)); }
  .exam-hero-inner { grid-template-columns: 1fr; padding: 52px 0 64px; }
  .exam-mv-copy { width: min(100%, 560px); margin-inline: auto; }
  .exam-mv-visual { width: min(100%, 480px); margin-inline: auto; }
  .exam-trust-inner { grid-template-columns: 1fr; padding: 9px 0; }
  .exam-trust p { min-height: 51px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .exam-trust p:last-child { border-bottom: 0; }
  .exam-section { padding: 84px 0; }
  .exam-split,
  .exam-online-grid,
  .exam-tutor-grid,
  .exam-trial-box,
  .exam-faq-grid { grid-template-columns: 1fr; }
  .exam-copy.is-sticky { position: static; }
  .exam-online-visual { max-width: 580px; min-height: 430px; }
  .exam-flow { grid-template-columns: 1fr 1fr; gap: 50px 0; }
  .exam-flow::before { display: none; }
  .exam-tutor-photos { min-height: 0; }
  .exam-trial-box { padding: 48px; }
  .exam-faq-grid { gap: 30px; }
}

@media (max-width: 560px) {
  .exam-container { width: calc(100% - 28px); }
  .exam-hero h1 { font-size: 35px; }
  .high-school-exam .exam-hero h1,
  .university-exam .exam-hero h1 { font-size: clamp(28px, 8.6vw, 34px); }
  .exam-hero-lead { font-size: 16px; }
  .exam-hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .exam-hero-actions .exam-button { width: 100%; }
  .exam-hero-actions .exam-text-link { align-self: flex-start; }
  .exam-mv-copy { min-height: 350px; padding: 52px 23px 34px; border-width: 8px; }
  .exam-mv-copy strong { font-size: 29px; }
  .exam-mv-copy > span { font-size: 16px; }
  .exam-teacher-callout { width: 100%; margin-bottom: 23px; padding: 12px 13px 13px; column-gap: 10px; row-gap: 8px; box-shadow: 5px 5px 0 var(--exam-blue); }
  .exam-teacher-callout span { padding: 6px 8px; font-size: 16px; }
  .exam-teacher-callout strong { font-size: clamp(24px, 7.2vw, 30px); }
  .exam-teacher-callout small { padding-top: 8px; font-size: 16px; line-height: 1.6; }
  .exam-mv-visual { min-height: 410px; border-width: 8px; border-radius: 25px; }
  .exam-section { padding: 66px 0; }
  .exam-section-head h2,
  .exam-copy h2,
  .exam-closing h2 { font-size: 28px; }
  .exam-section-head > p:not(.exam-eyebrow),
  .exam-copy > p:not(.exam-eyebrow) { font-size: 16px; }
  .exam-worry-list li { grid-template-columns: 49px 1fr; padding-right: 15px; }
  .exam-worry-list span { font-size: 16px; }
  .exam-card { padding: 27px 23px; }
  .exam-online-visual { min-height: 350px; padding: 40px 25px; border-radius: 28px 72px 28px 72px; }
  .exam-online-caption { right: 5px; bottom: 28px; font-size: 16px; }
  .exam-mini-points div { grid-template-columns: 1fr; gap: 3px; }
  .exam-flow { grid-template-columns: 1fr; gap: 38px; }
  .exam-tutor-photos { min-height: 0; gap: 10px; }
  .exam-tools,
  .exam-check-list { grid-template-columns: 1fr; }
  .exam-check-list li { min-height: 72px; }
  .exam-trial-box { padding: 36px 22px; border-radius: 20px; }
  .exam-trial-box .exam-button { width: 100%; padding-inline: 18px; }
  .exam-faq-list summary { padding-right: 43px; font-size: 16px; }
  .exam-faq-answer { padding-right: 6px; }
  .exam-closing { padding: 72px 0; }
  body.exam-page-body footer .footer-links a { display: block; margin: 3px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .exam-button { transition: none; }
}
