:root {
  --navy: #000760;
  --blue: #1687e8;
  --sky: #eaf7ff;
  --soft-blue: #f5fbff;
  --ink: #1f2937;
  --muted: #64748b;
  --line: #d9e6f2;
  --white: #ffffff;
  --orange: #f58a24;
  --shadow: 0 18px 50px rgba(12, 44, 88, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.78;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 12px clamp(16px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 230, 242, 0.9);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 178px;
  height: auto;
  max-width: 100%;
  clip-path: inset(5px 0 0 0);
}

.header-nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  color: #283244;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #eef9ff 100%);
}

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

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 43%, rgba(255, 255, 255, 0.34) 64%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(238, 249, 255, 0.18) 100%);
}

.guide-visual {
  position: absolute;
  top: 0;
  right: -36px;
  bottom: 0;
  width: min(66vw, 940px);
  overflow: hidden;
}

.guide-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 14%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(270deg, #eef9ff 0%, rgba(238, 249, 255, 0.9) 5%, rgba(238, 249, 255, 0) 18%);
}

.guide-person {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.02);
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin-top: -58px;
  padding: 0 18px 42px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -28px 0 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), #ffffff 42%, #ffffff 100%);
}

.eyebrow,
.section-label,
.tag {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.pr-label {
  margin: 0 0 6px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(34px, 11vw, 66px);
  line-height: 1.14;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(28px, 8vw, 46px);
  line-height: 1.22;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(24px, 6vw, 34px);
  line-height: 1.25;
}

h4 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 16px;
}

.lead {
  max-width: 670px;
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 700;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  color: var(--navy);
  background: var(--sky);
  border: 1px solid #c8e8ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.microcopy {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  color: var(--white);
  background: linear-gradient(180deg, #24a5ff 0%, #0875d1 100%);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(22, 135, 232, 0.28);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

.primary-cta::after,
.secondary-cta::after {
  content: ">";
  margin-left: 10px;
}

.section {
  padding: 72px 18px;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.section-lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: #3f4b5d;
  font-weight: 700;
}

.intro {
  background: var(--white);
}

.match-section {
  background: #ffffff;
}

.type-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.type-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(12, 44, 88, 0.1);
}

.type-school {
  display: grid;
  grid-template-rows: 58px 32px;
  align-content: center;
  gap: 10px;
  margin: -4px -4px 0;
  height: 112px;
  padding: 14px;
  background: linear-gradient(180deg, #f4fbff 0%, #ffffff 100%);
  border: 1px solid #cfe8f8;
  border-radius: 8px;
}

.type-school img {
  align-self: center;
  max-width: 220px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.type-school strong {
  display: flex;
  align-items: center;
  min-height: 28px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
}

.type-card h3 {
  margin-bottom: 0;
  font-size: clamp(20px, 3vw, 25px);
}

.type-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.type-card li {
  position: relative;
  padding-left: 24px;
  margin-top: 7px;
  font-weight: 700;
  line-height: 1.55;
}

.type-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc((1.55em - 12px) / 2);
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #d9f0ff;
}

.type-action {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.type-action .secondary-cta {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  white-space: nowrap;
}

.type-action .microcopy {
  margin: 0;
}

.intro p strong {
  color: var(--navy);
  background: linear-gradient(transparent 62%, #cfefff 0);
}

.soft-panel {
  margin-top: 28px;
  padding: 24px;
  background: var(--soft-blue);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.decision-panel h3 {
  margin-bottom: 18px;
  font-size: clamp(24px, 5vw, 32px);
}

.decision-list {
  display: grid;
  gap: 12px;
}

.decision-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.decision-list span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.decision-list strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.45;
}

.decision-list p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.check-list,
.school-card ul,
.multi-compare-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.school-card li,
.multi-compare-card li {
  position: relative;
  padding-left: 26px;
  margin-top: 10px;
}

.school-card li,
.multi-compare-card li {
  font-weight: 700;
}

.check-list li::before,
.school-card li::before,
.multi-compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 14px;
  height: 14px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #d9f0ff;
}

.compare-section {
  background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

.compare-subsection {
  margin-top: 56px;
}

.candidate-cards {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.candidate-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(12, 44, 88, 0.1);
}

.candidate-logo {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.candidate-logo img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.candidate-logo.text {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.candidate-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.candidate-card h3 {
  margin: 0;
  font-size: clamp(22px, 4vw, 28px);
}

.candidate-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.candidate-card dl div {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.candidate-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.candidate-card dd {
  margin: 0;
  color: #263244;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.candidate-card .table-cta {
  margin-top: auto;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.compare-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row > div {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.compare-row > div:last-child {
  border-right: 0;
}

.compare-head > div {
  min-height: 48px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.compare-row > div:first-child {
  color: var(--navy);
  background: #f1f8ff;
  font-weight: 900;
}

.logo-row img {
  max-height: 64px;
  object-fit: contain;
}

.text-logo {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.4;
}

.table-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.table-cta.accent {
  background: var(--orange);
}

.reassurance {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quick-cards {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.choice-card {
  display: block;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(12, 44, 88, 0.08);
}

.choice-card.emphasized {
  border-color: rgba(245, 138, 36, 0.55);
  background: #fff8f0;
}

.choice-kicker {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.choice-card strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.schools {
  background: #ffffff;
}

.school-card {
  display: grid;
  gap: 22px;
  margin-top: 24px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.school-logo {
  display: flex;
  align-self: start;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 18px;
  background: #f8fbff;
  border-radius: 8px;
}

.school-logo img {
  max-height: 96px;
  max-width: 86%;
  object-fit: contain;
}

.school-logo.zen img {
  max-height: 78px;
}

.school-logo.sapuri img {
  max-height: 82px;
}

.school-summary {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 900;
}

.two-column {
  display: grid;
  gap: 18px;
  margin: 22px 0;
}

.multi-compare-card {
  display: grid;
  gap: 22px;
  margin-top: 24px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.multi-compare-logo {
  display: flex;
  align-self: start;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.multi-compare-logo img {
  max-width: 86%;
  max-height: 82px;
  object-fit: contain;
}

.multi-compare-content h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 5vw, 42px);
}

.benefit-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 20px;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 26px;
  color: #263244;
  font-weight: 800;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #ffe4c3;
}

.secondary-cta {
  background: linear-gradient(180deg, #0f86e8 0%, #005db2 100%);
  box-shadow: 0 12px 28px rgba(0, 93, 178, 0.23);
}

.secondary-cta.accent {
  background: linear-gradient(180deg, #ff9b32 0%, #e87108 100%);
  box-shadow: 0 12px 28px rgba(232, 113, 8, 0.25);
}

.checklist-copy {
  margin-top: 18px;
}

.checklist-section {
  background: var(--white);
}

.number-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  counter-reset: point;
}

.number-list li {
  position: relative;
  padding: 18px 18px 18px 64px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: point;
}

.number-list li::before {
  content: counter(point);
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.number-list strong,
.number-list span {
  display: block;
}

.number-list strong {
  color: var(--navy);
}

.number-list span {
  color: #3f4b5d;
  font-size: 14px;
}

.faq {
  background: #f7fcff;
}

details {
  overflow: hidden;
  margin-top: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 48px 16px 18px;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}

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

summary::before {
  content: "Q";
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 18px 18px 56px;
  color: #3f4b5d;
  font-size: 15px;
  font-weight: 700;
}

.request-section {
  padding-bottom: 110px;
  color: var(--white);
  background: linear-gradient(180deg, var(--navy) 0%, #062f8c 100%);
}

.request-section .section-label,
.request-section h2,
.request-section .section-lead {
  color: var(--white);
}

.request-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.request-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(207, 230, 250, 0.9);
  border-radius: 8px;
}

.request-card img {
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.request-card .tracking-pixel {
  position: absolute;
  width: 1px;
  height: 1px;
}

.request-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.request-card strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.request-card strong::after {
  content: " >";
}

.request-card em {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  font-style: normal;
  font-weight: 800;
}

.request-card.featured {
  outline: 0;
}

.notice {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.footer {
  padding: 32px 18px 100px;
  text-align: center;
  background: var(--white);
}

.footer img {
  width: 180px;
  height: auto;
  max-width: 100%;
  margin: 0 auto 14px;
  clip-path: inset(5px 0 0 0);
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.floating-cta {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: calc(100% - 32px);
  max-width: 1000px;
  padding: 14px 18px 14px 28px;
  background: #ffffff;
  border: 1px solid #cfe6fa;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(15, 72, 130, 0.12);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.floating-cta__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.floating-cta__main {
  color: #1f2937;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
}

.floating-cta__main--sp {
  display: none;
}

.floating-cta__sub {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.floating-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 260px;
  height: 56px;
  padding: 0 24px;
  color: var(--white);
  background: linear-gradient(180deg, #2aa8ff 0%, #0077d9 100%);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 119, 217, 0.25);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.floating-cta__button:hover {
  box-shadow: 0 10px 24px rgba(0, 119, 217, 0.32);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding-block: 8px;
  }

  .header-nav {
    display: none;
  }

  h1 {
    max-width: 240px;
    font-size: clamp(32px, 8.7vw, 36px);
    line-height: 1.16;
  }

  .hero-copy .eyebrow {
    max-width: 240px;
    font-size: 12px;
    line-height: 1.55;
  }

  .hero-copy > .microcopy {
    font-size: 12px;
    letter-spacing: -0.02em;
  }

  .brand img {
    width: 140px;
  }

  .footer img {
    width: 140px;
  }

  .section {
    padding: 32px 18px;
  }

  .hero {
    position: relative;
    display: block;
    min-height: 0;
    background: linear-gradient(180deg, #ffffff 0%, #eef9ff 100%);
  }

  .hero-media {
    display: block;
  }

  .hero-copy {
    margin-top: 0;
    padding: 34px 18px 30px;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 42%, rgba(255, 255, 255, 0.55) 55%, rgba(255, 255, 255, 0.12) 68%, rgba(255, 255, 255, 0) 80%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(238, 249, 255, 0.12) 100%);
  }

  .guide-visual {
    top: -6px;
    right: -8px;
    bottom: 0;
    width: 94vw;
  }

  .guide-person {
    object-position: 45% top;
    opacity: 1;
    filter: saturate(1.14) contrast(1.08);
    transform: translateY(0);
  }

  .lead {
    font-size: 16px;
  }

  .hero-copy .lead {
    text-shadow:
      0 0 4px #ffffff,
      0 0 10px #ffffff,
      0 0 16px #ffffff;
  }

  .hero-media::after {
    display: none;
  }

  .compare-table {
    overflow-x: auto;
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .compare-row {
    display: grid;
    grid-template-columns: 112px repeat(3, minmax(178px, 1fr));
    min-width: 720px;
    overflow: visible;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: var(--white);
  }

  .compare-head {
    display: grid;
  }

  .compare-row > div {
    min-height: 76px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .compare-row > div:last-child {
    border-right: 0;
  }

  .logo-row > div:nth-child(n+2) {
    min-height: 92px;
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: auto;
    max-width: none;
    padding: 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    border-radius: 22px;
    transform: translateY(14px);
  }

  .floating-cta.is-visible {
    transform: translateY(0);
  }

  .floating-cta__text {
    text-align: center;
    gap: 2px;
  }

  .floating-cta__main {
    font-size: 13px;
  }

  .floating-cta__main--pc {
    display: none;
  }

  .floating-cta__main--sp {
    display: inline;
  }

  .floating-cta__sub {
    display: none;
  }

  .floating-cta__button {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 14px;
    font-size: 15px;
  }
}

@media (min-width: 761px) {
  .hero {
    min-height: 700px;
  }

  .hero-media {
    display: block;
  }

  .hero-copy {
    width: min(680px, 54vw);
    margin-top: 0;
    padding: 64px 0 64px clamp(34px, 6vw, 92px);
  }

  .hero-copy::before {
    display: none;
  }

  .primary-cta,
  .secondary-cta {
    width: auto;
    min-width: 300px;
  }

  .quick-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .decision-list,
  .candidate-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .decision-list div {
    grid-template-rows: auto auto;
    align-content: start;
    row-gap: 12px;
  }

  .decision-list span {
    grid-row: 1;
  }

  .decision-list strong {
    align-self: start;
  }

  .decision-list p {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 0;
  }

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

  .school-card {
    grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
    align-items: start;
    padding: 32px;
  }

  .multi-compare-card {
    grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
    align-items: start;
    padding: 32px;
  }

  .two-column,
  .request-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

}

@media (min-width: 761px) and (max-width: 768px) {
  .match-section .type-grid {
    grid-template-columns: 1fr;
  }

  .match-section .type-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .match-section .type-action .secondary-cta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .guide-visual {
    right: -180px;
    width: 72vw;
  }

  .guide-person {
    object-position: 38% top;
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 42%, rgba(255, 255, 255, 0.38) 66%, rgba(255, 255, 255, 0.04) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(238, 249, 255, 0.2) 100%);
  }
}

@media (min-width: 1280px) {
  .schools > .section-inner > .section-lead {
    max-width: none;
    white-space: nowrap;
  }
}

@media (min-width: 1440px) {
  .guide-visual {
    right: -40px;
    width: min(62vw, 1040px);
  }

  .guide-person {
    object-position: 44% top;
  }
}

.match-heading__sp,
.section-lead__sp {
  display: none;
}

.match-heading small {
  display: block;
  margin-top: 18px;
  font-size: 0.64em;
  line-height: 1.25;
}

@media (max-width: 767px) {
  .match-heading__pc,
  .section-lead__pc {
    display: none;
  }

  .match-heading__sp,
  .section-lead__sp {
    display: block;
  }

  .match-heading {
    margin-bottom: 18px;
    font-size: clamp(32px, 8.7vw, 38px);
    line-height: 1.1;
  }

  .match-heading small {
    margin-top: 18px;
    font-size: 0.66em;
    line-height: 1.24;
  }

  .match-section .section-lead {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
  }

  .intro h2,
  .schools h2 {
    font-size: clamp(27px, 7.2vw, 30px);
  }

  .request-section h2 {
    font-size: clamp(23px, 6.2vw, 26px);
  }

  .decision-panel {
    padding: 18px;
  }

  .decision-panel h3 {
    margin-bottom: 16px;
    font-size: clamp(19px, 5.2vw, 22px);
    line-height: 1.25;
  }

  .decision-list div {
    gap: 8px 12px;
    padding: 18px;
  }

  .decision-list span {
    width: 38px;
    height: 38px;
  }

  .decision-list strong {
    font-size: 17px;
    line-height: 1.45;
  }

  .decision-list p {
    grid-column: 1 / -1;
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.65;
  }
}

@media (min-width: 1024px) {
  .match-section {
    padding-bottom: 65px;
  }

  .intro {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .schools-section {
    padding-top: 65px;
  }

  .hero {
    display: grid;
    align-items: center;
    justify-items: center;
    min-height: 700px;
    padding-inline: clamp(40px, 4vw, 64px);
  }

  .hero-media {
    left: 50%;
    right: auto;
    width: min(100%, 1440px);
    max-width: 1440px;
    transform: translateX(-50%);
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 39%, rgba(255, 255, 255, 0.26) 57%, rgba(255, 255, 255, 0.04) 74%, rgba(255, 255, 255, 0) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(238, 249, 255, 0.1) 100%);
  }

  .hero-copy {
    justify-self: start;
    width: min(53vw, 680px);
    max-width: 680px;
    margin-left: max(0px, calc((100vw - 1360px) / 2));
    padding: 72px 0;
  }

  .guide-visual {
    right: clamp(-12px, 4vw, 54px);
    width: clamp(500px, 47vw, 720px);
  }

  .guide-visual::before {
    background:
      linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.86) 12%, rgba(255, 255, 255, 0) 30%),
      linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 5%, rgba(255, 255, 255, 0.32) 14%, rgba(255, 255, 255, 0) 28%);
  }

  .guide-person {
    object-position: 42% top;
    filter: saturate(1.12) contrast(1.08);
  }
}

@media (min-width: 1200px) {
  .guide-visual {
    right: 0;
    width: clamp(660px, 49vw, 820px);
  }

  .guide-person {
    object-position: 44% top;
  }
}

@media (min-width: 1440px) {
  .hero-copy {
    margin-left: calc((100vw - 1360px) / 2);
  }

  .guide-visual {
    right: 0;
    width: min(51vw, 860px);
  }

  .guide-person {
    object-position: 44% top;
  }
}
