:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-alt: #e3ecf8;
  --surface-strong: #1156a4;
  --surface-accent: #339ef1;
  --text: #101010;
  --text-muted: #4b5870;
  --text-inverse: #f5f5f5;
  --line: rgba(17, 86, 164, 0.14);
  --yellow: #f5e50b;
  --blue: #1156a4;
  --blue-strong: #3a50bf;
  --container: min(1260px, calc(100vw - 32px));
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --shadow: 0 18px 40px rgba(17, 86, 164, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

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

.page-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: url("../img/headerbg.jpg") center top / cover no-repeat;
  backdrop-filter: blur(12px);
}

.site-header__inner,
.site-footer__inner,
.section,
.hero__inner {
  width: var(--container);
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-inverse);
  flex-shrink: 0;
}

.brand img {
  width: 128px;
}

.brand small {
  font-family: "Inter", sans-serif;
  font-size: 20px;
}

.nav-toggle {
  display: none;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-inverse);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a:not(.button) {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:not(.button):hover {
  color: var(--yellow);
  opacity: 0.9;
}

.site-nav a.is-current {
  color: var(--yellow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button--primary {
  background: var(--yellow);
  color: var(--blue);
}

.button--secondary {
  background: var(--surface);
  color: var(--blue);
}

.button--blue {
  background: var(--blue-strong);
  color: var(--text-inverse);
  min-height: 47px;
  padding: 0 22px;
  border-radius: 6px;
}

.hero {
  position: relative;
  padding: 96px 0 56px;
  color: var(--text-inverse);
  background: center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(17, 86, 164, 0.8), rgba(17, 86, 164, 0.3));
}

.hero__inner {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 340px;
  align-content: end;
}

.hero__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  color: #dce8f8;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero--top {
  min-height: 780px;
}

.hero--top::before {
  background:
    radial-gradient(circle at 16% 16%, rgba(245, 229, 11, 0.35), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.18) 52%, rgba(17, 86, 164, 0.12)),
    linear-gradient(120deg, rgba(245, 245, 245, 0.55), rgba(17, 86, 164, 0.12));
}

.hero--top .hero__inner {
  min-height: 620px;
  color: var(--blue);
}

.hero__headline {
  font-size: clamp(44px, 8vw, 112px);
  line-height: 0.95;
  font-weight: 700;
}

.hero__lead {
  max-width: 920px;
  font-size: clamp(22px, 2.8vw, 54px);
  line-height: 1.25;
}

.hero__dots {
  width: 240px;
  height: 10px;
  background:
    radial-gradient(circle, var(--blue) 42%, transparent 44%) 0 0 / 14px 10px repeat-x;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: var(--surface-alt);
}

.section--blue {
  color: var(--text-inverse);
  background: var(--surface-accent);
}

.section--deep {
  color: var(--text-inverse);
  background: var(--surface-strong);
}

.section__kicker {
  margin: 0 0 6px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: #bacce1;
}

.section--blue .section__kicker,
.section--deep .section__kicker {
  color: #dce8f8;
}

.section__title {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
  color: var(--blue);
}

.section--blue .section__title,
.section--deep .section__title {
  color: var(--text-inverse);
}

.section__line {
  width: min(100%, 660px);
  height: 6px;
  margin: 18px 0 30px;
  background: var(--yellow);
}

.section__intro {
  max-width: 860px;
  margin: 0;
  font-size: 16px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card,
.feature-card,
.interview-card,
.detail-card,
.benefit-chip,
.stat-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-card__media,
.interview-card__media,
.detail-card__media,
.image-panel img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.feature-card__body,
.interview-card__body,
.detail-card__body {
  padding: 22px;
}

.feature-card__title,
.detail-card__title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.3;
  color: var(--blue);
}

.feature-card__text,
.detail-card__text,
.interview-card__meta,
.interview-card__copy,
.table-card__body,
.timeline__text,
.chip-list,
.plain-copy {
  font-size: 16px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.image-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 700;
}

.pill-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 320px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--text-inverse);
  font-size: 24px;
  font-weight: 700;
}

.cta-band {
  position: relative;
  padding: 70px 0;
  background: center / cover no-repeat;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 86, 164, 0.78);
}

.cta-band__inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  text-align: center;
  color: var(--text-inverse);
}

.cta-band__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-bottom: 36px;
  font-size: 16px;
}

.cta-band__nav a {
  color: var(--text-inverse);
}

.cta-band__action {
  margin-top: 28px;
}

.site-footer {
  padding: 28px 0 60px;
  background: var(--surface-strong);
  color: var(--text-inverse);
}

.site-footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

.site-footer__inner img {
  width: 128px;
}

.tile-nav {
  margin-top: 38px;
}

.tile-link {
  display: block;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 300px;
  color: var(--text-inverse);
}

.tile-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 86, 164, 0.12), rgba(17, 86, 164, 0.82));
}

.tile-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-link__body {
  position: absolute;
  inset: auto 24px 24px;
}

.tile-link__title {
  margin: 0 0 6px;
  font-size: 28px;
}

.tile-link__arrow {
  font-size: 18px;
  color: var(--yellow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.stat-card {
  padding: 28px;
  text-align: center;
}

.stat-card__value {
  margin: 0 0 10px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  color: var(--yellow);
}

.stat-card__label {
  margin: 0;
  font-size: 18px;
  color: var(--text-inverse);
}

.reason-box {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  color: var(--text);
  box-shadow: var(--shadow);
}

.reason-box__header {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
}

.reason-box__index {
  font-family: "Inter", sans-serif;
  font-size: 54px;
  line-height: 1;
  color: var(--blue);
}

.reason-box__title {
  margin: 0;
  font-size: 32px;
  color: var(--blue);
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-chip {
  padding: 26px 18px;
  background: var(--surface-accent);
  color: var(--text-inverse);
  text-align: center;
  font-size: 24px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.benefit-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.benefit-gallery__item {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.benefit-gallery__item img {
  width: 100%;
  height: 226px;
  object-fit: cover;
}

.table-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px 28px 10px;
  box-shadow: var(--shadow);
}

.table-card__row {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.table-card__row:first-child {
  border-top: 0;
}

.table-card__title {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 24px;
}

.interview-hero {
  background: var(--surface-accent);
  color: var(--text-inverse);
  padding: 40px 0 60px;
}

.interview-hero__inner {
  width: var(--container);
  margin: 0 auto;
}

.interview-hero__image {
  border-radius: 28px;
  overflow: hidden;
  margin-top: 20px;
}

.interview-hero__image img {
  width: 100%;
  max-height: 570px;
  object-fit: cover;
}

.interview-hero__meta {
  margin-top: 28px;
}

.interview-hero__role {
  font-size: 21px;
}

.interview-hero__name {
  margin: 6px 0;
  font-size: clamp(42px, 7vw, 57px);
  line-height: 1.1;
}

.interview-hero__joined {
  font-size: 21px;
}

.interview-hero__copy {
  margin: 34px 0 0;
  max-width: 980px;
  font-size: clamp(28px, 4vw, 57px);
  line-height: 1.2;
}

.interview-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 48px;
}

.interview-section--reverse {
  grid-template-columns: 1fr 1fr;
}

.interview-section__image {
  border-radius: 24px;
  overflow: hidden;
}

.interview-section__image img {
  width: 100%;
  aspect-ratio: 630 / 436;
  object-fit: cover;
}

.interview-section__body h2 {
  margin: 0 0 18px;
  font-size: 36px;
}

.interview-more {
  padding-top: 24px;
}

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

.interview-card {
  background: var(--surface);
}

.interview-card__body h3 {
  margin: 8px 0 4px;
  font-size: 28px;
  color: var(--blue);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline__item {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline__label {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 28px;
}

.quote-panel {
  border: 4px solid var(--blue);
  border-radius: 32px;
  padding: 44px 36px 32px;
  position: relative;
}

.quote-panel__index {
  position: absolute;
  inset: -30px auto auto 48px;
  padding: 0 18px;
  background: var(--surface);
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: 40px;
}

.quote-panel__title {
  margin: 0 0 20px;
  font-size: 36px;
  text-align: center;
  color: var(--blue);
}

.quote-panel__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.quote-panel__content--reverse {
  grid-template-columns: 1fr 1fr;
}

.quote-panel__media img {
  border-radius: 24px;
  width: 100%;
  aspect-ratio: 635 / 483;
  object-fit: cover;
}

.simple-list {
  margin: 0;
  padding-left: 1.25rem;
}

.simple-list li + li {
  margin-top: 10px;
}

.page-newgrad {
  background: #ffffff;
}

.page-newgrad .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 80px;
  overflow: hidden;
  background: url("../img/headerbg.jpg") center top / cover no-repeat;
}

.page-newgrad .site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 86, 164, 0.1);
}

.page-newgrad .site-nav a.is-current {
  color: var(--yellow);
}

.page-newgrad .site-header__inner {
  position: relative;
  z-index: 1;
  width: 1260px;
  max-width: calc(100vw - 180px);
  min-height: 47px;
  padding-top: 19px;
}

.page-newgrad .brand small {
  font-size: 20px;
}

.page-newgrad .site-nav {
  gap: 23px;
  font-size: 16px;
}

.page-newgrad .button--blue {
  min-height: 47px;
  margin-left: 26px;
  padding: 0 25px;
  border-radius: 6px;
}

.newgrad-header__asset {
  position: absolute;
  pointer-events: none;
  object-fit: fill;
}

.newgrad-header__asset--right-top {
  right: 37px;
  top: -82px;
  width: 178px;
  height: 178px;
}

.newgrad-header__asset--left-bottom {
  left: -89px;
  top: 43px;
  width: 150px;
  height: 150px;
}

.newgrad-header__asset--right-main {
  right: -127px;
  top: -59px;
  width: 433px;
  height: 435px;
}

.newgrad-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #f7f9fc;
}

.newgrad-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../img/newgrad_hero_bg.jpg") center 36% / cover no-repeat;
}

.newgrad-hero__inner {
  position: relative;
  width: min(1440px, 100vw);
  height: 100%;
  margin: 0 auto;
}

.newgrad-hero__eyebrow {
  position: absolute;
  left: 202px;
  top: 324px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 39px;
  font-weight: 400;
  line-height: 1;
  color: #bacce1;
}

.newgrad-hero__title {
  position: absolute;
  left: 137px;
  top: 208px;
  margin: 0;
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
}

.newgrad-student {
  position: relative;
  overflow: hidden;
  background: var(--surface-accent);
  color: var(--text-inverse);
  height: 1332px;
  padding: 0;
}

.newgrad-student__inner {
  position: relative;
  width: 1440px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}

.newgrad-student__title {
  position: absolute;
  left: 50%;
  top: 87px;
  width: 800px;
  margin: 0;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 400;
  line-height: 1;
  transform: translateX(-50%);
}

.newgrad-student__lead {
  position: absolute;
  left: 50%;
  margin: 0;
  width: max-content;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  transform: translateX(-50%);
}

.newgrad-student__lead:nth-of-type(1) {
  top: 250px;
}

.newgrad-student__lead:nth-of-type(2) {
  top: 319px;
}

.newgrad-student__visual {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 0;
  min-height: 0;
}

.newgrad-student__band {
  position: absolute;
  left: 50%;
  top: 402px;
  width: 1517px;
  height: 591px;
  overflow: hidden;
  max-width: none;
  clip-path: polygon(0 34%, 100% 14%, 100% 79%, 0 90%);
  transform: translateX(-50%);
}

.newgrad-student__band img {
  position: absolute;
  left: 50%;
  top: -720px;
  width: 1517px;
  height: auto;
  max-width: none;
  transform: translateX(-50%);
}

.newgrad-student__people {
  position: absolute;
  left: 50%;
  top: 417px;
  z-index: 1;
  width: 444px;
  max-width: none;
  margin: 0;
  transform: translateX(-50%);
}

.newgrad-student__message {
  position: absolute;
  left: 50%;
  bottom: 78px;
  width: 953px;
  max-width: none;
  margin: 0;
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  transform: translateX(-50%);
}

.newgrad-student__petal {
  position: absolute;
  pointer-events: none;
  transform-origin: center;
  mix-blend-mode: screen;
}

.newgrad-student__petal--a {
  left: 58px;
  top: 104px;
  width: 39px;
  opacity: 0.78;
  transform: rotate(-8deg);
}

.newgrad-student__petal--b {
  left: 166px;
  top: 332px;
  width: 86px;
  opacity: 0.84;
  transform: rotate(-14deg);
}

.newgrad-student__petal--c {
  right: -186px;
  top: -18px;
  width: 462px;
  opacity: 1;
  transform: none;
  filter: none;
}

.newgrad-student__petal--d {
  right: 183px;
  top: 210px;
  width: 82px;
  opacity: 0.82;
  transform: rotate(12deg);
}

.newgrad-student__petal--e {
  right: 96px;
  top: 640px;
  width: 50px;
  opacity: 0.78;
  transform: rotate(22deg);
}

.newgrad-student__petal--f {
  left: -186px;
  bottom: -6px;
  width: 462px;
  opacity: 1;
  transform: none;
  filter: none;
}

.newgrad-staff {
  background: var(--surface-alt);
  padding: 88px 0 102px;
}

.newgrad-staff__inner {
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin: 0 auto;
}

.newgrad-staff__hero {
  margin: 0;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  line-height: 1;
  color: var(--blue);
}

.newgrad-staff__subline {
  width: fit-content;
  margin: 20px auto 52px;
  padding-bottom: 6px;
  border-bottom: 4px solid var(--yellow);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
}

.newgrad-staff__pair {
  display: grid;
  grid-template-columns: repeat(2, 450px);
  justify-content: center;
  gap: 60px;
}

.newgrad-workstyle-card__label {
  margin-bottom: 14px;
  padding-left: 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  position: relative;
}

.newgrad-workstyle-card__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 2px;
  height: 18px;
  background: #339ef1;
}

.newgrad-workstyle-card img {
  width: 450px;
  max-width: 100%;
  border-radius: 0;
}

.newgrad-staff__block {
  margin-top: 86px;
  text-align: center;
}

.newgrad-staff__heading {
  width: fit-content;
  margin: 0 auto 22px;
  padding-bottom: 6px;
  border-bottom: 4px solid var(--yellow);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
}

.newgrad-staff__copy {
  max-width: 655px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  text-align: left;
}

.newgrad-staff__result {
  width: 961px;
  max-width: 100%;
  margin: 20px auto 0;
}

.newgrad-staff__result img {
  width: 100%;
  border-radius: 15px;
  box-shadow: none;
}

.newgrad-benefits {
  display: grid;
  grid-template-columns: repeat(3, 389px);
  justify-content: center;
  gap: 43px 46px;
  margin-top: 34px;
}

.newgrad-benefits img {
  width: 389px;
  max-width: 100%;
  border-radius: 26px;
  box-shadow: none;
}

.newgrad-support {
  background: #ffffff;
}

.newgrad-support__hero {
  background: url("../img/newgrad_support_header.jpg") center / cover no-repeat;
}

.newgrad-support__hero-inner {
  width: 1260px;
  max-width: calc(100vw - 80px);
  margin: 0 auto;
  padding: 210px 0 28px;
}

.newgrad-support__title {
  margin: 0;
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 700;
  line-height: 1;
  color: #339ef1;
}

.newgrad-support__kicker {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 39px;
  color: #c8d7ea;
}

.newgrad-support__inner {
  width: 1260px;
  max-width: calc(100vw - 80px);
  margin: 0 auto;
  padding: 46px 0 90px;
}

.newgrad-support__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.newgrad-support__photo img,
.newgrad-support__closing-photo img {
  width: 100%;
  border-radius: 17px;
}

.newgrad-support__body h3 {
  margin: 0 0 20px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
}

.newgrad-support__body-copy {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
}

.newgrad-support__body-note {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--blue);
}

.newgrad-support__callout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  min-height: 177px;
  padding: 22px 26px 0;
  border-radius: 17px;
  background: #bfd1e8;
}

.newgrad-support__callout span {
  max-width: 560px;
  padding-bottom: 22px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--blue);
}

.newgrad-support__callout img {
  width: 300px;
  max-width: 40%;
}

.newgrad-support__period {
  margin-top: 46px;
  text-align: center;
}

.newgrad-support__period p {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.newgrad-support__period div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: min(780px, 100%);
  padding: 0 36px;
  border-radius: 999px;
  background: var(--yellow);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 700;
  color: var(--blue);
}

.newgrad-support__period small {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.newgrad-support__timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.newgrad-support-step {
  min-height: 236px;
  padding: 18px 16px 22px;
  border-radius: 8px;
  background: #d4deed;
}

.newgrad-support-step h4 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(17, 86, 164, 0.4);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #339ef1;
}

.newgrad-support-step p {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.newgrad-support__closing {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: end;
  margin-top: 56px;
}

.newgrad-support__closing-copy {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.newgrad-support__closing-copy p {
  margin: 0 0 14px;
}

.newgrad-support__closing-copy p:first-child {
  margin-bottom: 24px;
  font-size: 22px;
  text-align: center;
}

.newgrad-members {
  position: relative;
  overflow: hidden;
  background: url("../img/footer_cta_bg.png") center / cover no-repeat;
  color: var(--text-inverse);
  padding: 76px 0 86px;
}

.newgrad-members::before,
.newgrad-members::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 20px;
  border-radius: 999px;
  background: #ff7a00;
  transform: rotate(45deg);
}

.newgrad-members::before {
  right: -10px;
  top: 110px;
}

.newgrad-members::after {
  left: -24px;
  bottom: 24px;
  background: var(--yellow);
}

.newgrad-members__inner {
  position: relative;
  width: 1004px;
  max-width: calc(100vw - 80px);
  margin: 0 auto;
}

.newgrad-members__heading {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 22px;
}

.newgrad-members__heading h2 {
  margin: 0;
  font-size: clamp(40px, 4vw, 57px);
  font-weight: 700;
}

.newgrad-members__heading p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  color: #dce8f8;
}

.newgrad-members__intro {
  max-width: 961px;
  margin: 26px auto 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.newgrad-members__grid {
  display: grid;
  grid-template-columns: repeat(4, 236px);
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
}

.newgrad-member-card img {
  width: 100%;
  aspect-ratio: 236 / 338;
  border-radius: 17px;
  object-fit: cover;
}

.newgrad-member-card__meta {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 700;
}

.newgrad-member-card h3 {
  margin: 4px 0;
  font-size: 28px;
  font-weight: 700;
}

.newgrad-member-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.newgrad-office {
  position: relative;
  overflow: hidden;
  background: var(--surface-alt);
  padding: 84px 0 96px;
}

.newgrad-office::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 22px;
  width: 110px;
  height: 16px;
  border-radius: 999px;
  background: var(--yellow);
  transform: rotate(-46deg);
}

.newgrad-office__inner {
  width: 1260px;
  max-width: calc(100vw - 80px);
  margin: 0 auto;
}

.newgrad-office__heading {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  margin-bottom: 38px;
}

.newgrad-office__heading h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 57px);
  font-weight: 700;
  color: var(--blue);
}

.newgrad-office__heading p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  color: #bacce1;
}

.newgrad-office__top {
  display: grid;
  grid-template-columns: repeat(2, 614px);
  justify-content: center;
  gap: 32px;
}

.newgrad-office__bottom {
  display: grid;
  grid-template-columns: 614px 614px;
  justify-content: center;
  gap: 32px;
  margin-top: 44px;
}

.newgrad-office__column h3 {
  position: relative;
  margin: 0 0 10px;
  padding-left: 18px;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
}

.newgrad-office__column h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 8px;
  height: 34px;
  background: var(--blue);
}

.newgrad-office__large,
.newgrad-office__small-grid img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.newgrad-office__large {
  aspect-ratio: 614 / 451;
}

.newgrad-office__small-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.newgrad-office__small-grid img {
  aspect-ratio: 300 / 230;
}

.newgrad-office__small-grid--bottom {
  align-content: start;
  margin-top: 50px;
}

.newgrad-office__column--wide .newgrad-office__large {
  aspect-ratio: 614 / 531;
}

.newgrad-requirements {
  position: relative;
  padding: 0;
}

.newgrad-requirements__strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.newgrad-requirements__strip img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.newgrad-requirements__cta {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: min(698px, calc(100vw - 80px));
  min-height: 138px;
  border-radius: 19px;
  background: rgba(51, 158, 241, 0.51);
  color: var(--text-inverse);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.newgrad-requirements__cta span:first-child {
  font-size: clamp(28px, 3vw, 56px);
  font-weight: 700;
}

.newgrad-requirements__play {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.page-point {
  --top-frame-left: calc(50% - 720px);
  background: #ffffff;
}

.page-top.page-point .site-header {
  position: fixed;
  top: 0;
  z-index: 40;
  height: 80px;
  overflow: hidden;
  background: url("../img/headerbg.jpg") center top / cover no-repeat;
}

.page-top.page-point .site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  width: 1260px;
  max-width: calc(100vw - 180px);
  min-height: 47px;
  padding-top: 19px;
}

.page-top.page-point .brand,
.page-top.page-point .site-nav a:not(.button),
.page-top.page-point .button--blue {
  position: static;
}

.page-top.page-point .site-nav {
  position: static;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 16px;
}

.page-top.page-point .button--blue {
  min-height: 47px;
  margin-left: 26px;
  padding: 0 25px;
  border-radius: 6px;
}

.page-point__header-asset {
  position: absolute;
  pointer-events: none;
  object-fit: fill;
}

.page-point__header-asset--right-top {
  right: 37px;
  top: -82px;
  width: 178px;
  height: 178px;
}

.page-point__header-asset--left-bottom {
  left: -89px;
  top: 43px;
  width: 150px;
  height: 150px;
}

.page-point__header-asset--right-main {
  right: -127px;
  top: -59px;
  width: 433px;
  height: 435px;
}

.page-point__main {
  padding-top: 80px;
  background: #e3ecf8;
}

.page-point__hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #ffffff;
}

.page-point__hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/about_bg.jpg") center bottom / max(1701px, 100%) auto no-repeat;
}

.page-point__hero-copy {
  position: relative;
  z-index: 2;
  width: 1440px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
}

.page-point__hero-title {
  position: absolute;
  top: 115px;
  left: calc(var(--top-frame-left) + 700px);
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-style: normal;
  letter-spacing: 0;
  color: #f5e50b;
  font-size: 100px;
  font-weight: 700;
  line-height: normal;
}

.page-point__hero-kicker {
  position: absolute;
  top: 231px;
  left: calc(var(--top-frame-left) + 1088px);
  margin: 0;
  color: #e3ecf8;
  font-family: "Inter", sans-serif;
  font-size: 39px;
  font-weight: 400;
  line-height: normal;
}

.page-point__intro {
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin: 0 auto;
  padding: 74px 0;
}

.page-point__intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 673px) 424px;
  justify-content: center;
  align-items: start;
  width: 1145px;
  max-width: 100%;
  margin: 0 auto;
  gap: 48px;
}

.page-point__intro-main {
  min-width: 0;
}

.page-point__intro-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 322px;
  height: 63px;
  border-radius: 46px;
  background: #f5e50b;
  color: #1156a4;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}

.page-point__intro-copy {
  width: 100%;
  max-width: 673px;
  padding-top: 44px;
}

.page-point__intro-copy h2 {
  margin: 0;
  color: #101010;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
}

.page-point__intro-body {
  margin-top: 32px;
  color: #101010;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.page-point__intro-body p {
  margin: 0;
}

.page-point__note {
  margin: 45px 0 0;
  color: #101010;
  font-size: 10px;
  font-weight: 700;
  line-height: normal;
}

.page-point__intro-side {
  width: 424px;
  max-width: 424px;
}

.page-point__intro-image {
  width: 424px;
  aspect-ratio: 424 / 508;
  max-width: 100%;
  border-radius: 26px;
  overflow: hidden;
}

.page-point__intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-point__list {
  position: relative;
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin: 0 auto;
  padding: 74px 0;
  z-index: 0;
}

.page-point__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: -1;
}

.page-point__panel {
  position: relative;
  min-height: 657px;
  margin-bottom: 41px;
  padding-top: 68px;
}

.page-point__panel-box {
  height: 606px;
  padding: 79px 34px 40px;
  margin-bottom: 16px;
  border: 4px solid #1156a4;
  border-radius: 31px;
  background: #ffffff;
  overflow: hidden;
}

.page-point__panel-heading {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
  z-index: 2;
}

.page-point__panel-index {
  position: absolute;
  top: -24px;
  left: 27.98px;
  margin: 0;
  color: #1156a4;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
}

.page-point__panel-title-wrap {
  position: absolute;
  top: -51px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  max-width: calc(100% - 320px);
  pointer-events: auto;
}

.page-point__panel-heading h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 102px;
  max-width: 100%;
  padding: 0 32px;
  background: #ffffff;
  margin: 0;
  color: #1156a4;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-style: normal;
  letter-spacing: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}

.page-point__panel-heading h3::before,
.page-point__panel-heading h3::after {
  content: "";
  flex: 0 0 57.66px;
  width: 57.66px;
  border-top: 4px solid #1156a4;
}

.page-point__panel-heading h3::before {
  transform: rotate(56.98deg);
}

.page-point__panel-heading h3::after {
  transform: rotate(123.02deg);
}

.page-point__panel-body {
  display: grid;
  grid-template-columns: minmax(0, 635fr) minmax(0, 482fr);
  gap: 47px;
  height: auto;
  align-items: start;
}

.page-point__panel--image-right .page-point__panel-body {
  grid-template-columns: minmax(0, 482fr) minmax(0, 635fr);
}

.page-point__panel-media {
  width: 100%;
  height: auto;
  aspect-ratio: 635 / 483;
  overflow: hidden;
}

.page-point__panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-point__panel-text {
  width: 100%;
  min-width: 0;
  color: #101010;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-style: normal;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.page-point__panel-text p {
  margin: 0 0 4px;
}

.page-point__panel-text strong {
  font-weight: 700;
}

.page-point__panel-note {
  font-size: 10px;
}

.page-point__related {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 28px;
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin: 0 auto;
  padding: 0 0 95px;
  z-index: 0;
}

.page-point__related::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: -1;
}

.page-point__related-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 322px;
  height: 63px;
  border-radius: 46px;
  background: #f5e50b;
  color: #1156a4;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.page-point__related-arrow {
  position: absolute;
  right: -4px;
  bottom: -12px;
  width: 16px;
  height: 18px;
  background: url("../img/benefits_related_arrow.svg") center top / contain no-repeat;
  transform: rotate(-40deg);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.page-point__related-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  opacity: 0.96;
}

.page-point__related-button:hover .page-point__related-arrow {
  transform: translateX(4px) rotate(-40deg);
}

@media (max-width: 1279px) {
  .page-top.page-point .site-header {
    position: fixed;
    padding: 0;
    background: url("../img/headerbg.jpg") center top / cover no-repeat;
    backdrop-filter: none;
  }

  .page-top.page-point .site-header__inner {
    width: 100%;
    max-width: none;
    min-height: 72px;
    padding: 19px 24px 12px;
  }

  .page-top.page-point .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .page-point__hero {
    height: auto;
  }

  .page-point__hero-bg {
    background: url("../img/about_bg.jpg") center top / cover no-repeat;
    min-height: 360px;
  }

  .page-point__hero-title,
  .page-point__hero-kicker {
    position: static;
  }

  .page-point__hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    width: calc(100vw - 48px);
    min-height: 360px;
    padding: 56px 0;
    text-align: right;
  }

  .page-point__intro,
  .page-point__list,
  .page-point__related {
    width: calc(100vw - 48px);
    max-width: none;
  }

  .page-point__intro {
    padding: 74px 0;
  }

  .page-point__intro-layout {
    align-items: flex-start;
    gap: 28px;
  }

  .page-point__intro-chip {
    width: min(322px, 100%);
  }

  .page-point__intro-copy {
    width: 100%;
    max-width: 100%;
    padding-top: 32px;
  }

  .page-point__intro-side {
    width: 424px;
    max-width: 100%;
  }

  .page-point__intro-image {
    width: 100%;
    height: auto;
    aspect-ratio: 424 / 508;
  }

  .page-point__panel-body,
  .page-point__panel--image-left .page-point__panel-body {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 28px;
  }

  .page-point__panel--image-right .page-point__panel-body {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
    gap: 28px;
  }

  .page-point__panel-media {
    width: 100%;
    height: 100%;
    min-height: 280px;
  }

  .page-point__panel-heading h3 {
    font-size: 32px;
  }

  .page-point__panel-text {
    width: auto;
    font-size: 15px;
    line-height: 1.8;
  }
}

@media (max-width: 1023px) {
  .page-point {
    --top-frame-left: 0px;
  }

  .page-top.page-point .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    padding: 20px;
    border-radius: 24px;
    background: rgba(17, 86, 164, 0.98);
    box-shadow: var(--shadow);
  }

  .page-top.page-point .site-header.is-open .site-nav {
    display: flex;
  }

  .page-point__hero-copy,
  .page-point__intro,
  .page-point__list,
  .page-point__related {
    width: calc(100vw - 48px);
  }

  .page-point__hero {
    min-height: 320px;
  }

  .page-point__hero-title {
    font-size: clamp(64px, 8vw, 88px);
  }

  .page-point__hero-kicker {
    font-size: clamp(28px, 3.4vw, 36px);
  }

  .page-point__intro {
    padding: 64px 0;
  }

  .page-point__intro-layout {
    gap: 28px;
  }

  .page-point__intro-copy {
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
    padding-top: 28px;
  }

  .page-point__intro-copy h2 {
    font-size: 32px;
  }

  .page-point__intro-body {
    line-height: 1.75;
  }

  .page-point__intro-image {
    width: min(100%, 424px);
    margin: 0 auto;
  }

  .page-point__list {
    padding: 64px 0;
  }

  .page-point__panel {
    min-height: 0;
    margin-bottom: 36px;
    padding-top: 56px;
  }

  .page-point__panel-box {
    height: auto;
    padding: 76px 24px 32px;
  }

  .page-point__panel-heading {
    top: 18px;
  }

  .page-point__panel-index {
    top: -18px;
    font-size: 34px;
  }

  .page-point__panel-title-wrap {
    top: -44px;
    max-width: calc(100% - 240px);
  }

  .page-point__panel-heading h3 {
    font-size: 30px;
    gap: 22px;
    padding: 0 24px;
  }

  .page-point__panel-body,
  .page-point__panel--image-left .page-point__panel-body {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr);
    gap: 24px;
  }

  .page-point__panel--image-right .page-point__panel-body {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
    gap: 24px;
  }

  .page-point__panel-media {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 635 / 483;
  }

  .page-point__related {
    padding: 64px 0 80px;
  }

  .page-point__related-button {
    width: min(100%, 322px);
  }
}

@media (max-width: 800px) {
  .page-top.page-point .site-header {
    min-height: 80px;
  }

  .page-top.page-point .site-header__inner {
    width: calc(100vw - 32px);
    padding-top: 19px;
  }

  .page-top.page-point .site-nav {
    right: 0;
    left: 0;
  }

  .page-point__hero-copy,
  .page-point__intro,
  .page-point__list,
  .page-point__related {
    width: calc(100vw - 32px);
  }

  .page-point__hero {
    min-height: 280px;
  }

  .page-point__hero-copy {
    min-height: 280px;
    padding: 44px 0;
  }

  .page-point__intro,
  .page-point__list {
    padding: 56px 0;
  }

  .page-point__intro-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
  }

  .page-point__intro-chip {
    width: auto;
    min-height: 54px;
    padding: 0 20px;
    font-size: 16px;
    text-align: center;
  }

  .page-point__intro-copy {
    width: min(100%, 424px);
    max-width: 100%;
    padding-inline: 0;
  }

  .page-point__intro-main,
  .page-point__intro-side {
    width: min(100%, 424px);
    max-width: 100%;
  }

  .page-point__intro-copy h2,
  .page-point__panel-heading h3 {
    font-size: 28px;
  }

  .page-point__intro-body {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.75;
  }

  .page-point__note {
    margin-top: 24px;
    font-size: 11px;
    line-height: 1.5;
  }

  .page-point__panel {
    min-height: 0;
    padding-top: 52px;
    margin-bottom: 34px;
  }

  .page-point__panel-box {
    height: auto;
    padding: 40px 20px 24px;
  }

  .page-point__panel-heading {
    left: 0;
    width: 100%;
    top: 38px;
    height: 0;
  }

  .page-point__panel-title-wrap {
    position: absolute;
    top: -26px;
    left: 50%;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: calc(100% - 40px);
    transform: translateX(-50%);
  }

  .page-point__panel-index,
  .page-point__panel-heading h3 {
    text-align: center;
  }

  .page-point__panel-index {
    position: absolute;
    top: -56px;
    left: 50%;
    width: max-content;
    margin: 0;
    font-size: 28px;
    transform: translateX(-50%);
  }

  .page-point__panel-heading h3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 78px;
    max-width: 100%;
    padding: 0 18px;
    background: #ffffff;
  }

  .page-point__panel-heading h3::before,
  .page-point__panel-heading h3::after {
    display: block;
    flex: 0 0 40px;
    width: 40px;
    border-top-width: 3px;
  }

  .page-point__panel-body,
  .page-point__panel--image-left .page-point__panel-body,
  .page-point__panel--image-right .page-point__panel-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-point__related {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 56px 0 72px;
  }

  .page-point__related-button {
    width: min(100%, 322px);
  }

  .page-point__related-arrow {
    right: 0;
    bottom: -10px;
    width: 14px;
    height: 16px;
  }
}

@media (max-width: 479px) {
  .page-point__hero-copy,
  .page-point__intro,
  .page-point__list,
  .page-point__related {
    width: calc(100vw - 40px);
  }

  .page-point__intro-layout,
  .page-point__intro-main,
  .page-point__intro-side,
  .page-point__intro-copy,
  .page-point__intro-image {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .page-point__intro-copy h2 {
    overflow-wrap: anywhere;
  }

  .page-point__hero-copy {
    min-height: 300px;
    padding: 40px 0;
  }

  .page-point__hero-title {
    font-size: 48px;
  }

  .page-point__hero-kicker {
    font-size: 24px;
  }

  .page-point__intro,
  .page-point__list {
    padding: 48px 0;
  }

  .page-point__intro-chip {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }

  .page-point__intro-copy h2,
  .page-point__panel-heading h3 {
    font-size: 24px;
  }

  .page-point__panel-box {
    padding: 40px 16px 24px;
  }

  .page-point__panel-heading {
    left: 0;
    width: 100%;
  }

  .page-point__panel-index {
    top: -50px;
    font-size: 24px;
  }

  .page-point__panel-title-wrap {
    top: -20px;
    max-width: calc(100% - 24px);
  }

  .page-point__panel-heading h3 {
    gap: 14px;
    min-height: 70px;
    padding: 0 14px;
  }

  .page-point__panel-heading h3::before,
  .page-point__panel-heading h3::after {
    flex-basis: 28px;
    width: 28px;
  }

  .page-point__panel-text {
    font-size: 14px;
    line-height: 1.8;
  }

  .page-point__related {
    padding: 48px 0 64px;
  }

  .page-point__related-button {
    min-height: 56px;
    width: 100%;
    font-size: 16px;
  }
}

.page-about {
  background: #ffffff;
}

.page-top.page-about .site-header {
  position: fixed;
  top: 0;
  z-index: 40;
  height: 80px;
  overflow: hidden;
  background: url("../img/headerbg.jpg") center top / cover no-repeat;
}

.page-top.page-about .site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  width: 1260px;
  max-width: calc(100vw - 180px);
  min-height: 47px;
  padding-top: 19px;
}

.page-top.page-about .brand,
.page-top.page-about .site-nav a:not(.button),
.page-top.page-about .button--blue {
  position: static;
}

.page-top.page-about .site-nav {
  position: static;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 16px;
}

.page-top.page-about .button--blue {
  min-height: 47px;
  margin-left: 26px;
  padding: 0 25px;
  border-radius: 6px;
}

.page-about__header-asset {
  position: absolute;
  pointer-events: none;
  object-fit: fill;
}

.page-about__header-asset--right-top {
  right: 37px;
  top: -82px;
  width: 178px;
  height: 178px;
}

.page-about__header-asset--left-bottom {
  left: -89px;
  top: 43px;
  width: 150px;
  height: 150px;
}

.page-about__header-asset--right-main {
  right: -127px;
  top: -59px;
  width: 433px;
  height: 435px;
}

.page-about__main {
  background: #e3ecf8;
  padding-top: 80px;
}

.page-about__hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #ffffff;
}

.page-about__hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/about_bg.jpg") center bottom / max(1701px, 100%) auto no-repeat;
}

.page-about__hero-copy {
  position: relative;
  z-index: 2;
  width: 1440px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
}

.page-about__hero-title {
  position: absolute;
  top: 115px;
  left: calc(var(--top-frame-left) + 700px);
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-style: normal;
  letter-spacing: 0;
  color: #f5e50b;
  font-size: 100px;
  font-weight: 700;
  line-height: normal;
}

.page-about__hero-kicker {
  position: absolute;
  top: 231px;
  left: calc(var(--top-frame-left) + 1088px);
  margin: 0;
  color: #e3ecf8;
  font-family: "Inter", sans-serif;
  font-size: 39px;
  font-weight: 400;
  line-height: normal;
}

.page-about__content {
  position: relative;
  min-height: 985px;
  padding: 69px 0 131px;
  overflow: hidden;
}

.page-about__intro {
  position: relative;
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin: 0 auto;
  text-align: center;
}

.page-about__lead {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-style: normal;
  letter-spacing: 0;
  color: #1156a4;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
}

.page-about__lead-line {
  display: block;
}

.page-about__lead-marker {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.page-about__lead-marker::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  z-index: -1;
  height: 6px;
  background: #f5e50b;
}

.page-about__line {
  position: absolute;
  top: 43px;
  left: 427px;
  width: 542px;
  height: 6px;
  background: #f5e50b;
}

.page-about__body {
  width: 673px;
  max-width: 100%;
  margin: 84px auto 0;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-style: normal;
  letter-spacing: 0;
  color: #101010;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.page-about__body p {
  margin: 0;
}

.page-about__body p + p {
  margin-top: 2px;
}

.page-about__body strong {
  font-weight: 700;
}

.page-about__cards {
  display: grid;
  grid-template-columns: repeat(3, 389px);
  gap: 47px;
  justify-content: center;
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin: 118px auto 0;
}

.page-about__card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.page-about__card img {
  width: 389px;
  height: 466px;
  border-radius: 26px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-about__card:hover {
  transform: translateY(-3px);
  opacity: 0.96;
}

.page-about__card:hover img {
  transform: scale(1.05);
}

.page-about__card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 322px;
  height: 63px;
  margin: -118px auto 0;
  border-radius: 46px;
  background: #f5e50b;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-style: normal;
  letter-spacing: 0;
  color: #1156a4;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  position: relative;
  z-index: 1;
}

.page-about__card-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #1156a4;
  font-size: 0;
  line-height: 0;
}

.page-about__content-asset {
  position: absolute;
  top: 767px;
  left: calc(var(--top-frame-left) + 1181px);
  width: 433px;
  height: 435px;
  object-fit: fill;
  pointer-events: none;
}

@media (max-width: 1279px) {
  .page-top.page-about .site-header {
    position: fixed;
    padding: 0;
    background: url("../img/headerbg.jpg") center top / cover no-repeat;
    backdrop-filter: none;
  }

  .page-top.page-about .site-header__inner {
    width: 100%;
    max-width: none;
    min-height: 72px;
    padding: 19px 24px 12px;
  }

  .page-top.page-about .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .page-about__hero {
    height: auto;
  }

  .page-about__hero-bg {
    inset: 0;
    min-height: 360px;
    background: url("../img/about_bg.jpg") center top / cover no-repeat;
  }

  .page-about__hero-title,
  .page-about__hero-kicker {
    position: static;
  }

  .page-about__hero-copy {
    width: calc(100vw - 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    min-height: 360px;
    padding: 56px 0;
    text-align: right;
  }

  .page-about__hero-title {
    font-size: clamp(52px, 8vw, 100px);
  }

  .page-about__hero-kicker {
    font-size: clamp(24px, 4vw, 39px);
    color: #f0f0f0;
  }

  .page-about__content {
    padding: 56px 0 96px;
  }

  .page-about__line {
    position: static;
    width: 542px;
    max-width: 100%;
    margin: 20px auto 0;
  }

  .page-about__intro,
  .page-about__cards {
    width: calc(100vw - 48px);
    max-width: none;
  }

  .page-about__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .page-about__card img {
    width: 100%;
    height: auto;
    aspect-ratio: 389 / 466;
  }

  .page-about__card-link {
    width: min(100%, 322px);
  }

  .page-about__content-asset {
    right: -80px;
    left: auto;
    top: auto;
    bottom: 48px;
    width: 220px;
    height: 220px;
    opacity: 0.4;
  }
}

@media (max-width: 800px) {
  .page-top.page-about .site-header {
    height: auto;
    min-height: 80px;
  }

  .page-top.page-about .site-header__inner {
    width: calc(100vw - 32px);
    padding-top: 19px;
  }

  .page-top.page-about .site-nav {
    right: 0;
    left: 0;
  }

  .page-about__hero {
    min-height: 280px;
  }

  .page-about__hero-copy {
    width: calc(100vw - 32px);
    min-height: 280px;
    padding: 40px 0 32px;
  }

  .page-about__content {
    padding: 40px 0 72px;
  }

  .page-about__intro,
  .page-about__cards {
    width: calc(100vw - 32px);
  }

  .page-about__lead {
    font-size: 28px;
    line-height: 1.45;
    text-wrap: balance;
  }

  .page-about__lead-marker {
    display: inline;
    background: linear-gradient(transparent calc(100% - 6px), #f5e50b 0);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  .page-about__lead-marker::after {
    display: none;
  }

  .page-about__body {
    margin-top: 40px;
    line-height: 1.8;
  }

  .page-about__cards {
    grid-template-columns: minmax(0, 520px);
    justify-content: center;
    gap: 40px;
    overflow: visible;
    padding-bottom: 0;
    margin-top: 64px;
  }

  .page-about__card {
    width: 100%;
  }

  .page-about__card-link {
    width: min(100%, 322px);
    height: 56px;
    margin-top: -80px;
    padding: 0 18px;
    font-size: 16px;
  }

  .page-about__card img {
    aspect-ratio: 520 / 220;
  }

  .page-about__content-asset {
    width: 160px;
    height: 160px;
    right: -48px;
    bottom: 16px;
  }
}

@media (max-width: 479px) {
  .page-about__cards {
    width: calc(100vw - 40px);
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-about__card-link {
    width: min(100%, 260px);
    height: 50px;
    margin-top: -70px;
    padding: 0 14px;
    gap: 10px;
    font-size: 14px;
  }

  .page-about__card-arrow {
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 8px;
  }
}

.page-form {
  background: #e3ecf8;
}

.page-form__main {
  padding-top: 80px;
  background: #e3ecf8;
}

.page-form__content {
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin: 0 auto;
  padding: 76px 0 132px;
}

.page-form__intro {
  width: 760px;
  max-width: 100%;
  margin: 0 auto 52px;
  text-align: center;
}

.page-form__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 38px;
  padding: 0 24px;
  border-radius: 999px;
  background: #f5e50b;
  color: #1156a4;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.page-form__intro h2 {
  margin: 20px 0 0;
  color: #1156a4;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
}

.page-form__intro p {
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.page-form__phone {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 36px;
  width: 920px;
  max-width: 100%;
  margin: 0 auto 38px;
  padding: 34px 42px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 86, 164, 0.1);
}

.page-form__phone-title,
.page-form__company,
.page-form__phone-time {
  margin: 0;
}

.page-form__phone-title {
  color: #1156a4;
  font-size: 22px;
  font-weight: 700;
}

.page-form__company {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
}

.page-form__phone-number {
  color: #1156a4;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.page-form__phone-time {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 86, 164, 0.14);
  color: #4b5870;
  font-size: 14px;
  font-weight: 700;
}

.page-form__card {
  width: 920px;
  max-width: 100%;
  margin: 0 auto;
  padding: 54px 60px 60px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 86, 164, 0.1);
}

.page-form__section-heading {
  margin-bottom: 36px;
  text-align: center;
}

.page-form__section-heading h3 {
  margin: 0;
  color: #1156a4;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
}

.page-form__section-heading p {
  margin: 14px 0 0;
  color: #4b5870;
  font-size: 14px;
  font-weight: 700;
}

.page-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 30px;
}

.page-form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  color: #101010;
  font-size: 15px;
  font-weight: 700;
}

.page-form__field--wide {
  grid-column: 1 / -1;
}

.page-form__field span,
.page-form__field legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.page-form__field em,
.page-form__field legend em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 22px;
  border-radius: 999px;
  background: #1156a4;
  color: #ffffff;
  font-size: 12px;
  font-style: normal;
  line-height: 1;
}

.page-form__field input,
.page-form__field select,
.page-form__field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 2px solid rgba(17, 86, 164, 0.16);
  border-radius: 8px;
  background: #f7f9fc;
  color: #101010;
  font: inherit;
  line-height: 1.6;
}

.page-form__field textarea {
  min-height: 176px;
  padding: 16px 18px;
  resize: vertical;
}

.page-form__field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #1156a4 50%), linear-gradient(135deg, #1156a4 50%, transparent 50%);
  background-position: calc(100% - 22px) 24px, calc(100% - 16px) 24px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.page-form__field input:focus,
.page-form__field select:focus,
.page-form__field textarea:focus {
  outline: none;
  border-color: #1156a4;
  box-shadow: 0 0 0 4px rgba(245, 229, 11, 0.26);
}

.page-form__field small {
  color: #4b5870;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.page-form__field--radio {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 1fr) minmax(120px, 1fr);
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.page-form__field--radio label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  border: 2px solid rgba(17, 86, 164, 0.16);
  border-radius: 8px;
  background: #f7f9fc;
}

.page-form__field--radio input,
.page-form__agree input {
  width: 18px;
  min-height: auto;
  height: 18px;
  padding: 0;
  accent-color: #1156a4;
}

.page-form__file input {
  padding: 14px 18px;
}

.page-form__privacy {
  margin-top: 42px;
  padding: 30px 34px;
  border-radius: 12px;
  background: #e3ecf8;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.page-form__privacy p {
  margin: 0;
}

.page-form__privacy a {
  display: inline-flex;
  margin-top: 14px;
  color: #1156a4;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.page-form__privacy a:hover {
  color: #3a50bf;
  opacity: 0.82;
}

.page-form__agree {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.page-form__notice {
  width: 650px;
  max-width: 100%;
  margin: 34px auto 0;
  color: #4b5870;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.page-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 322px;
  max-width: 100%;
  min-height: 63px;
  margin: 32px auto 0;
  border: 0;
  border-radius: 46px;
  background: #f5e50b;
  color: #1156a4;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.page-form__card .wpcf7-form > p {
  margin: 0;
}

.page-form__card .wpcf7-form {
  margin: 0;
}

.page-form__card .wpcf7-form br {
  display: none;
}

.page-form__fields > p {
  display: contents;
}

.page-form__card .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.page-form__card .wpcf7-form-control {
  box-sizing: border-box;
}

.page-form__field .wpcf7-form-control-wrap input,
.page-form__field .wpcf7-form-control-wrap select,
.page-form__field .wpcf7-form-control-wrap textarea {
  width: 100%;
  margin: 0;
}

.page-form__card .wpcf7-submit:not(.page-form__submit) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 322px;
  max-width: 100%;
  min-height: 63px;
  margin: 32px auto 0;
  border: 0;
  border-radius: 46px;
  background: #f5e50b;
  color: #1156a4;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.page-form__field--radio .wpcf7-form-control-wrap {
  display: block;
  grid-column: 2 / 4;
  width: 100%;
}

.page-form__field--radio .wpcf7-form-control {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px;
  width: 100%;
}

.page-form__field--radio .wpcf7-list-item {
  display: block;
  margin: 0;
}

.page-form__field--radio .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  border: 2px solid rgba(17, 86, 164, 0.16);
  border-radius: 8px;
  background: #f7f9fc;
}

.page-form__field--radio .wpcf7-list-item-label {
  display: inline;
}

.page-form__field--radio .wpcf7-radio {
  display: grid;
}

.page-form__agree .wpcf7-form-control-wrap,
.page-form__agree .wpcf7-form-control,
.page-form__agree .wpcf7-list-item {
  display: contents;
}

.page-form__card .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #b42318;
  font-size: 13px;
  font-weight: 700;
}

.page-form__card .wpcf7-response-output {
  margin: 28px 0 0;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 700;
}

@media (max-width: 1279px) {
  .page-form__content {
    width: calc(100vw - 48px);
    max-width: none;
    padding: 64px 0 108px;
  }
}

@media (max-width: 800px) {
  .page-form__content {
    width: calc(100vw - 32px);
    padding: 48px 0 78px;
  }

  .page-form__intro {
    margin-bottom: 38px;
  }

  .page-form__intro h2 {
    font-size: 28px;
  }

  .page-form__phone {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .page-form__phone-number {
    font-size: 34px;
  }

  .page-form__card {
    padding: 40px 24px 44px;
  }

  .page-form__fields {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-form__field--radio {
    grid-template-columns: 1fr 1fr;
  }

  .page-form__field--radio legend {
    grid-column: 1 / -1;
  }

  .page-form__field--radio .wpcf7-form-control-wrap {
    grid-column: 1 / -1;
  }
}

@media (max-width: 479px) {
  .page-form__content {
    width: calc(100vw - 40px);
    padding-top: 40px;
  }

  .page-form__label {
    min-width: 132px;
    font-size: 16px;
  }

  .page-form__intro h2 {
    font-size: 24px;
  }

  .page-form__intro p {
    font-size: 14px;
    line-height: 1.9;
  }

  .page-form__phone,
  .page-form__card {
    border-radius: 12px;
  }

  .page-form__phone {
    padding: 24px 20px;
  }

  .page-form__phone-title {
    font-size: 20px;
  }

  .page-form__phone-number {
    font-size: 30px;
  }

  .page-form__card {
    padding: 34px 20px 38px;
  }

  .page-form__section-heading h3 {
    font-size: 24px;
  }

  .page-form__field--radio {
    grid-template-columns: 1fr;
  }

  .page-form__field--radio .wpcf7-form-control {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-form__privacy {
    padding: 24px 20px;
  }
}

.page-difference {
  background: #ffffff;
}

.page-difference__main {
  background: #e3ecf8;
}

.page-difference__hero {
  background: #ffffff;
}

.page-difference__intro,
.page-difference__profit,
.page-difference__salary,
.page-difference__why,
.page-difference__reasons,
.page-difference__related {
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin: 0 auto;
}

.page-difference__intro {
  padding: 74px 0 112px;
}

.page-difference__intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 673px) 424px;
  justify-content: center;
  width: 1145px;
  max-width: 100%;
  margin: 0 auto;
  gap: 48px;
  align-items: start;
}

.page-difference__intro-main {
  min-width: 0;
}

.page-difference__intro-main .page-difference__chip {
  width: 322px;
  min-height: 63px;
  border-radius: 46px;
}

.page-difference__chip,
.page-difference__related-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 63px;
  padding: 0 28px;
  border-radius: 999px;
  background: #f5e50b;
  color: #1156a4;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.page-difference__related-button {
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.page-difference__intro-copy {
  width: 100%;
  max-width: 673px;
  padding-top: 44px;
}

.page-difference__intro-copy h2 {
  margin: 0;
  color: #101010;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
}

.page-difference__intro-body,
.page-difference__profit-copy,
.page-difference__salary-copy,
.page-difference__why-copy,
.page-difference__reason-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #101010;
}

.page-difference__intro-body {
  margin-top: 32px;
}

.page-difference__intro-body p,
.page-difference__profit-copy p,
.page-difference__salary-copy p,
.page-difference__why-copy p,
.page-difference__reason-text p {
  margin: 0;
}

.page-difference__intro-side {
  width: 424px;
  max-width: 100%;
}

.page-difference__intro-image {
  position: relative;
  width: 424px;
  aspect-ratio: 424 / 508;
  max-width: 100%;
  overflow: hidden;
  border-radius: 26px;
}

.page-difference__intro-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.page-difference__profit-wide img,
.page-difference__career img,
.page-difference__reason-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-difference__section-head {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  color: #1156a4;
}

.page-difference__section-head h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
}

.page-difference__section-head span {
  display: block;
  width: 100%;
  height: 6px;
  background: #f5e50b;
}

.page-difference__section-head--light {
  color: #e3ecf8;
}

.page-difference__section-head--center {
  display: flex;
  align-items: center;
  width: 100%;
}

.page-difference__section-head--center h2 {
  text-align: center;
}

.page-difference__profit {
  width: 100%;
  max-width: none;
  padding: 99px 0 55px;
  background: #ffffff;
}

.page-difference__profit > * {
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin-right: auto;
  margin-left: auto;
}

.page-difference__profit .page-difference__section-head span {
  width: 576px;
  max-width: 100%;
}

.page-difference__profit-top {
  position: relative;
  height: 760px;
  padding-top: 0;
}

.page-difference__profit .page-difference__section-head {
  position: relative;
  z-index: 2;
  width: 576px;
  max-width: 100%;
}

.page-difference__profit-copy {
  position: absolute;
  top: 90px;
  left: 0;
  z-index: 2;
  width: 576px;
  max-width: 100%;
}

.page-difference__profit-copy-part--bottom {
  width: 430px;
  max-width: 100%;
  margin-top: 1.5em;
}

.page-difference__profit-copy-part--bottom p {
  overflow-wrap: anywhere;
}

.page-difference__profit-charts {
  position: absolute;
  top: 344px;
  left: 67px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 531px) minmax(0, 595px);
  width: 1193px;
  gap: 67px;
  align-items: end;
}

.page-difference__profit-charts img {
  display: block;
  width: 100%;
  object-fit: contain;
}

.page-difference__profit-chart--01 {
  height: 416px;
}

.page-difference__profit-chart--02 {
  height: 407px;
}

.page-difference__profit-wide {
  margin-top: 38px;
  height: 940px;
}

.page-difference__salary {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 98px 0 102px;
  background: #1156a4;
}

.page-difference__salary-grid,
.page-difference__career {
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin-left: auto;
  margin-right: auto;
}

.page-difference__salary-grid {
  position: relative;
  min-height: 500px;
  z-index: 1;
}

.page-difference__salary-grid .page-difference__section-head {
  width: 459px;
  max-width: 100%;
}

.page-difference__salary .page-difference__section-head span {
  width: 459px;
  max-width: 100%;
}

.page-difference__salary-copy {
  width: 469px;
  max-width: 100%;
  margin-top: 38px;
  color: #e3ecf8;
}

.page-difference__salary-visual {
  position: absolute;
  top: 0;
  right: 23px;
  width: 660px;
  min-height: 470px;
}

.page-difference__salary-callout {
  position: absolute;
  top: 61px;
  left: 0;
  width: 507px;
  min-height: 108px;
  padding: 0;
  border: 2px solid #f5e50b;
  background: rgba(17, 86, 164, 0.2);
}

.page-difference__salary-badge {
  position: absolute;
  top: 66px;
  left: -39px;
  display: grid;
  align-content: center;
  gap: 0;
  place-items: center;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: #f5e50b;
  color: #101010;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.page-difference__salary-badge span {
  display: block;
}

.page-difference__salary-amount {
  position: absolute;
  top: 25px;
  left: 86px;
  width: 360px;
  color: #e3ecf8;
}

.page-difference__salary-amount small {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.page-difference__salary-amount small span {
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 0.9;
}

.page-difference__salary-amount strong {
  position: absolute;
  top: 129px;
  left: -20px;
  display: block;
  color: #f5e50b;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.page-difference__salary-amount::after {
  content: "";
  position: absolute;
  top: 86px;
  left: 154px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 24px solid #f5e50b;
}

.page-difference__salary-person {
  position: absolute;
  right: 0;
  top: 160px;
  width: 234px;
  height: 831px;
  object-fit: cover;
  z-index: 0;
}

.page-difference__salary-ribbon {
  position: absolute;
  top: -6px;
  left: 51px;
  width: 404px;
}

.page-difference__career {
  position: relative;
  z-index: 2;
  padding-top: 56px;
}

.page-difference__career-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #f5e50b;
  font-size: 28px;
  font-weight: 700;
}

.page-difference__career-label::before {
  content: "";
  width: 12px;
  height: 35px;
  background: #f5e50b;
}

.page-difference__why {
  padding: 96px 0 92px;
}

.page-difference__why .page-difference__section-head {
  width: 828px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.page-difference__why .page-difference__section-head span {
  width: 825px;
  max-width: 100%;
}

.page-difference__why-copy {
  width: 673px;
  max-width: 100%;
  margin: 65px auto 0;
  text-align: center;
}

.page-difference__reasons {
  padding: 0 0 124px;
}

.page-difference__reason {
  position: relative;
  padding: 62px 54px 56px;
  border-radius: 24px;
  background: #fbfbfb;
}

.page-difference__reason + .page-difference__reason {
  margin-top: 96px;
}

.page-difference__reason--02 {
  padding-bottom: 24px;
}

.page-difference__reason-header {
  display: grid;
  grid-template-columns: 250px minmax(0, 630px);
  align-items: center;
  gap: 30px;
  margin-top: -108px;
}

.page-difference__reason-index {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  color: #1156a4;
}

.page-difference__reason-index span {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.page-difference__reason-index strong {
  font-family: "Inter", sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}

.page-difference__reason-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 27px;
  background: #1156a4;
  color: #f5e50b;
  font-size: 24px;
  font-weight: 700;
}

.page-difference__reason h3 {
  margin: 28px 0 34px;
  color: #101010;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.page-difference__reason-grid {
  display: grid;
  grid-template-columns: minmax(0, 370px) minmax(0, 756px);
  gap: 36px;
  align-items: start;
}

.page-difference__reason-text {
  position: relative;
}

.page-difference__reason--01 .page-difference__reason-text {
  min-height: 456px;
  padding-bottom: 72px;
}

.page-difference__reason-media--building {
  display: grid;
  grid-template-columns: minmax(0, 414px) minmax(0, 316px);
  gap: 26px;
  align-items: start;
}

.page-difference__reason-media--building img {
  border-radius: 0;
}

.page-difference__reason-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #101010;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.page-difference__reason-image--01-main {
  width: 414px;
  height: 456px;
}

.page-difference__reason-subimages {
  display: grid;
  gap: 18px;
}

.page-difference__reason-subimages img {
  width: 316px;
  height: 219px;
}

.page-difference__reason-subimages img,
.page-difference__reason-feature img {
  border-radius: 0;
}

.page-difference__reason-media--teacher {
  display: grid;
  grid-template-columns: repeat(2, 350px);
  gap: 20px;
  align-items: stretch;
}

.page-difference__reason-media--teacher img {
  width: 350px;
  height: 303px;
  object-fit: cover;
}

.page-difference__reason-feature {
  display: grid;
  grid-template-rows: auto auto 303px;
}

.page-difference__reason-feature h4 {
  margin: 0;
  color: #1156a4;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
}

.page-difference__reason-feature h4::after {
  content: "";
  display: block;
  width: 349px;
  height: 0;
  margin-top: 14px;
  border-top: 1px dashed #1156a4;
}

.page-difference__reason-feature p {
  min-height: 66px;
  margin: 10px 0 18px;
  color: #101010;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.page-difference__reason-note {
  grid-column: 2;
  justify-self: end;
  width: 459px;
  max-width: 100%;
  margin: -6px 0 0;
  font-size: 12px;
  line-height: 1.6;
}

.page-difference__related {
  display: flex;
  justify-content: center;
  gap: 28px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 95px 0;
  background: #ffffff;
}

.page-difference__related-button {
  position: relative;
  width: 322px;
}

.page-difference__related-arrow {
  position: absolute;
  right: -4px;
  bottom: -12px;
  width: 16px;
  height: 18px;
  background: url("../img/benefits_related_arrow.svg") center top / contain no-repeat;
  transform: rotate(-40deg);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.page-difference__related-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  opacity: 0.96;
}

.page-difference__related-button:hover .page-difference__related-arrow {
  transform: translateX(4px) rotate(-40deg);
}

@media (max-width: 1400px) {
  .page-difference__intro,
  .page-difference__why,
  .page-difference__reasons,
  .page-difference__related,
  .page-difference__profit > *,
  .page-difference__salary-grid,
  .page-difference__career {
    width: calc(100vw - 48px);
    max-width: none;
  }

  .page-difference__profit > * {
    width: calc(100vw - 96px);
    min-width: 0;
  }

  .page-difference__related {
    width: 100%;
    max-width: none;
  }

  .page-difference__profit-top {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: 28px 32px;
    height: auto;
  }

  .page-difference__profit .page-difference__section-head,
  .page-difference__profit-copy,
  .page-difference__profit-charts {
    position: static;
  }

  .page-difference__profit .page-difference__section-head {
    grid-column: 1 / -1;
  }

  .page-difference__profit-copy {
    grid-column: 1;
    grid-row: 2;
    margin-top: 10px;
  }

  .page-difference__profit-copy-part--bottom {
    width: min(100%, 430px);
  }

  .page-difference__intro-layout,
  .page-difference__salary-grid,
  .page-difference__reason-grid {
    gap: 28px;
  }

  .page-difference__profit-charts {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    gap: 20px;
    align-self: start;
  }

  .page-difference__profit-chart--01 {
    height: auto;
    aspect-ratio: 531 / 416;
  }

  .page-difference__profit-chart--02 {
    height: auto;
    aspect-ratio: 595 / 407;
  }

  .page-difference__profit-wide {
    height: auto;
  }

  .page-difference__profit-wide img {
    height: auto;
    object-fit: contain;
  }

  .page-difference__reason-media--building {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 18px;
  }

  .page-difference__reason-media--teacher {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-difference__reason-media--teacher img {
    width: 100%;
    height: auto;
    aspect-ratio: 350 / 303;
  }

  .page-difference__reason-feature {
    grid-template-rows: auto auto auto;
  }

  .page-difference__reason-feature h4::after {
    width: 100%;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .page-difference__salary-visual {
    right: 0;
    width: 560px;
    transform: scale(0.82);
    transform-origin: top right;
  }
}

@media (max-width: 1023px) {
  .page-difference__intro {
    padding: 64px 0 88px;
  }

  .page-difference__intro-copy {
    width: 100%;
    max-width: 100%;
  }

  .page-difference__profit-top,
  .page-difference__salary-grid,
  .page-difference__reason-grid {
    grid-template-columns: 1fr;
  }

  .page-difference__profit-copy,
  .page-difference__profit-charts {
    grid-column: 1;
    grid-row: auto;
  }

  .page-difference__reason-media--building {
    width: min(100%, 756px);
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: minmax(0, 414fr) minmax(0, 316fr);
    gap: 26px;
  }

  .page-difference__reason-image--01-main,
  .page-difference__reason-subimages img {
    width: 100%;
    height: auto;
  }

  .page-difference__reason-image--01-main {
    aspect-ratio: 414 / 456;
  }

  .page-difference__reason-subimages img {
    aspect-ratio: 316 / 219;
  }

  .page-difference__profit-copy {
    width: 100%;
  }

  .page-difference__profit-copy-part--bottom {
    width: 100%;
  }

  .page-difference__reason-note {
    grid-column: 1;
    justify-self: start;
    width: auto;
    margin-top: 12px;
  }

  .page-difference__reason--01 .page-difference__reason-text {
    min-height: 0;
    padding-bottom: 0;
  }

  .page-difference__reason-caption {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .page-difference__intro-image {
    max-width: 424px;
    margin: 0 auto;
  }

  .page-difference__profit,
  .page-difference__salary,
  .page-difference__why,
  .page-difference__reasons {
    padding-top: 72px;
    padding-bottom: 88px;
  }

  .page-difference__salary-grid {
    display: grid;
    justify-items: center;
    min-height: 0;
  }

  .page-difference__salary-copy {
    width: min(100%, 469px);
    margin-right: auto;
    margin-left: auto;
  }

  .page-difference__profit-charts,
  .page-difference__reason-media--teacher {
    width: 100%;
    margin-top: 32px;
    grid-template-columns: 1fr 1fr;
  }

  .page-difference__profit-chart--01,
  .page-difference__profit-chart--02 {
    height: auto;
  }

  .page-difference__salary-visual {
    position: relative;
    width: min(100%, 660px);
    min-height: 470px;
    margin: 40px auto 0;
  }

  .page-difference__salary-callout {
    position: absolute;
    top: 61px;
    left: 0;
    width: min(507px, calc(100% - 96px));
  }

  .page-difference__salary-person {
    position: absolute;
    top: 160px;
    right: 0;
    width: 160px;
    height: auto;
  }

  .page-difference__salary-ribbon {
    position: absolute;
    top: -6px;
    left: 51px;
    display: block;
    width: min(100%, 320px);
  }

  .page-difference__reason {
    padding: 48px 24px 40px;
  }

  .page-difference__reason-header {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: -76px;
  }

  .page-difference__reason h3 {
    font-size: 30px;
  }
}

@media (max-width: 800px) {
  .page-difference__intro,
  .page-difference__why,
  .page-difference__reasons,
  .page-difference__related,
  .page-difference__profit > *,
  .page-difference__salary-grid,
  .page-difference__career {
    width: calc(100vw - 32px);
  }

  .page-difference__chip,
  .page-difference__related-button {
    min-height: 56px;
    width: min(100%, 322px);
    padding: 0 18px;
    font-size: 16px;
  }

  .page-difference__intro-copy h2,
  .page-difference__section-head h2,
  .page-difference__reason h3 {
    font-size: 28px;
  }

  .page-difference__profit-charts,
  .page-difference__reason-media--building,
  .page-difference__reason-media--teacher,
  .page-difference__related {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: center;
  }

  .page-difference__profit > * {
    width: calc(100vw - 48px);
  }

  .page-difference__related {
    width: 100%;
    max-width: none;
  }

  .page-difference__profit .page-difference__section-head {
    width: fit-content;
    max-width: 100%;
  }

  .page-difference__profit .page-difference__section-head span {
    width: 100%;
  }

  .page-difference__salary-grid .page-difference__section-head {
    width: fit-content;
    max-width: 100%;
  }

  .page-difference__salary .page-difference__section-head span {
    width: 100%;
  }

  .page-difference__salary-visual {
    min-height: 430px;
  }

  .page-difference__salary-visual {
    width: calc(100% - 32px);
    margin-right: auto;
    margin-left: auto;
    overflow: visible;
    isolation: isolate;
  }

  .page-difference__intro-layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .page-difference__intro-main,
  .page-difference__intro-copy {
    width: min(100%, 424px);
    max-width: 100%;
  }

  .page-difference__salary-callout {
    left: 0;
    width: 100%;
    padding: 0;
    text-align: left;
    z-index: auto;
  }

  .page-difference__salary-badge {
    top: 72px;
    left: 0;
    width: 96px;
    height: 96px;
    font-size: 26px;
    z-index: 4;
  }

  .page-difference__salary-amount {
    top: 28px;
    left: 112px;
    width: calc(100% - 128px);
    z-index: 4;
  }

  .page-difference__salary-amount small {
    font-size: 28px;
  }

  .page-difference__salary-amount small span {
    font-size: 46px;
  }

  .page-difference__salary-amount strong {
    top: 116px;
    left: -12px;
    font-size: 40px;
  }

  .page-difference__salary-amount::after {
    top: 78px;
    left: 118px;
  }

  .page-difference__salary-person {
    position: absolute;
    top: 150px;
    right: 0;
    display: block;
    width: 130px;
    height: auto;
    margin: 0;
    z-index: 1;
  }

  .page-difference__salary-ribbon {
    position: absolute;
    top: 0;
    left: 44px;
    width: min(72%, 300px);
    margin: 0;
    z-index: 2;
  }

  .page-difference__reason-index span {
    font-size: 34px;
  }

  .page-difference__reason-index strong {
    font-size: 52px;
  }

  .page-difference__reason-pill {
    min-height: 48px;
    padding: 0 20px;
    font-size: 18px;
    text-align: center;
  }
}

@media (max-width: 479px) {
  .page-difference__intro,
  .page-difference__why,
  .page-difference__reasons,
  .page-difference__related,
  .page-difference__salary-grid,
  .page-difference__career {
    width: calc(100vw - 40px);
  }

  .page-difference__profit {
    width: 100%;
    max-width: none;
  }

  .page-difference__related {
    width: 100%;
    max-width: none;
  }

  .page-difference__intro-layout,
  .page-difference__intro-main,
  .page-difference__intro-side,
  .page-difference__intro-copy,
  .page-difference__intro-image {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .page-difference__intro-copy h2 {
    overflow-wrap: anywhere;
  }

  .page-difference__intro,
  .page-difference__profit,
  .page-difference__salary,
  .page-difference__why,
  .page-difference__reasons {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .page-difference__intro-copy h2,
  .page-difference__section-head h2,
  .page-difference__reason h3 {
    font-size: 24px;
  }

  .page-difference__intro-body,
  .page-difference__profit-copy,
  .page-difference__salary-copy,
  .page-difference__why-copy,
  .page-difference__reason-text,
  .page-difference__reason-feature p {
    font-size: 14px;
  }

  .page-difference__salary-visual {
    min-height: 390px;
  }

  .page-difference__salary-callout {
    left: 0;
    width: 100%;
  }

  .page-difference__salary-badge {
    left: 0;
    width: 82px;
    height: 82px;
    font-size: 22px;
  }

  .page-difference__salary-amount {
    left: 96px;
    width: calc(100% - 104px);
  }

  .page-difference__salary-amount small {
    font-size: 24px;
  }

  .page-difference__salary-amount small span {
    font-size: 40px;
  }

  .page-difference__salary-amount strong {
    font-size: 34px;
  }

  .page-difference__salary-person {
    top: 175px;
    width: 112px;
  }

  .page-difference__salary-ribbon {
    left: 24px;
    width: min(84%, 280px);
  }

  .page-difference__reason {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-difference__reason-feature h4 {
    font-size: 22px;
  }

  .page-difference__profit-charts {
    grid-template-columns: 1fr;
  }

  .page-difference__profit > * {
    width: calc(100vw - 40px);
  }

  .page-difference__profit-wide {
    height: auto;
  }
}

.page-benefits {
  background: #ffffff;
}

.page-benefits__main {
  background: #e3ecf8;
}

.page-benefits__hero {
  background: #ffffff;
}

.page-benefits__section,
.page-benefits__related {
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin: 0 auto;
}

.page-benefits__intro {
  padding: 74px 0 98px;
}

.page-benefits__intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 673px) 424px;
  justify-content: center;
  width: 1145px;
  max-width: 100%;
  margin: 0 auto;
  gap: 48px;
  align-items: start;
}

.page-benefits__intro-main {
  min-width: 0;
}

.page-benefits__intro-main .page-benefits__chip {
  width: 322px;
  min-height: 63px;
  border-radius: 46px;
}

.page-benefits__chip,
.page-benefits__related-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 63px;
  padding: 0 28px;
  border-radius: 999px;
  background: #f5e50b;
  color: #1156a4;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.page-benefits__intro-copy {
  width: 100%;
  max-width: 673px;
  padding-top: 44px;
}

.page-benefits__intro-copy h2,
.page-benefits__section-head h2,
.page-benefits__housing-copy h3 {
  margin: 0;
  color: #101010;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
}

.page-benefits__body-copy,
.page-benefits__section-copy,
.page-benefits__housing-copy,
.page-benefits__support-card-copy {
  color: #101010;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.page-benefits__body-copy {
  margin-top: 32px;
}

.page-benefits__body-copy p,
.page-benefits__section-copy p,
.page-benefits__housing-copy p,
.page-benefits__support-card-copy p {
  margin: 0;
}

.page-benefits__intro-side {
  width: 424px;
  max-width: 100%;
}

.page-benefits__intro-image {
  width: 424px;
  aspect-ratio: 424 / 508;
  max-width: 100%;
  overflow: hidden;
  border-radius: 26px;
}

.page-benefits__intro-image img,
.page-benefits__gallery-item img,
.page-benefits__housing-image img,
.page-benefits__support-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-benefits__overview {
  width: 100%;
  max-width: none;
  padding: 92px 0 96px;
  background: #ffffff;
}

.page-benefits__overview > * {
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin-right: auto;
  margin-left: auto;
}

.page-benefits__section-head {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  color: #1156a4;
}

.page-benefits__section-head--center {
  display: flex;
  align-items: center;
  width: 100%;
}

.page-benefits__section-head--center h2 {
  text-align: center;
}

.page-benefits__overview .page-benefits__section-head h2 {
  color: #1156a4;
}

.page-benefits__section-head span {
  display: block;
  width: 392px;
  max-width: 100%;
  height: 6px;
  background: #f5e50b;
}

.page-benefits__section-copy {
  width: 590px;
  max-width: 100%;
  margin: 45px auto 0;
  text-align: center;
}

.page-benefits__feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 47px;
  margin-top: 60px;
}

.page-benefits__feature-card {
  overflow: hidden;
  aspect-ratio: 389 / 226;
  border-radius: 26px;
}

.page-benefits__feature-card img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.page-benefits__perk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.page-benefits__perk {
  display: grid;
  place-items: center;
  min-height: 91px;
  padding: 18px 22px;
  border-radius: 25px;
  background: #339ef1;
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.page-benefits__support {
  width: 100%;
  max-width: none;
  padding: 80px 0 95px;
  background: #339ef1;
}

.page-benefits__support > * {
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin-right: auto;
  margin-left: auto;
}

.page-benefits__support .page-benefits__section-head h2 {
  color: #f1f1f1;
}

.page-benefits__support .page-benefits__section-head span {
  width: 464px;
}

.page-benefits__support .page-benefits__chip {
  width: 322px;
  min-height: 63px;
  padding: 0 28px;
  border-radius: 46px;
  background: #1156a4;
  color: #f9f9f9;
}

.page-benefits__support-block {
  margin-top: 67px;
}

.page-benefits__housing {
  display: grid;
  grid-template-columns: minmax(0, 423px) minmax(0, 716px);
  justify-content: space-between;
  gap: 48px;
  align-items: start;
  margin-top: 38px;
}

.page-benefits__housing-copy h3 {
  margin-top: 26px;
  color: #1156a4;
}

.page-benefits__support .page-benefits__housing-copy,
.page-benefits__support .page-benefits__support-card-copy {
  color: #f3f3f3;
}

.page-benefits__support .page-benefits__housing-copy h3 {
  color: #f5e50b;
}

.page-benefits__support-note {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.6;
}

.page-benefits__housing-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 716 / 457;
}

.page-benefits__housing-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.page-benefits__support-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px;
  margin-top: 100px;
  align-items: start;
}

.page-benefits__support-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
}

.page-benefits__support-card-copy {
  width: 544px;
  max-width: 100%;
  margin-top: 32px;
  min-height: 87px;
}

.page-benefits__support-gallery {
  display: grid;
  gap: 67px;
  margin-top: 28px;
  align-self: start;
}

.page-benefits__support-image {
  position: relative;
  margin: 0;
  aspect-ratio: 544 / 338;
}

.page-benefits__support-image figcaption {
  position: absolute;
  right: -26px;
  bottom: -18px;
  width: 64px;
  color: #f3f3f3;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
}

.page-benefits__support-card:nth-child(2) .page-benefits__support-image:nth-child(2) figcaption {
  right: 1px;
  width: auto;
}

.page-benefits__related {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 28px;
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin: 0 auto;
  padding: 95px 0;
  z-index: 0;
}

.page-benefits__related::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: -1;
}

.page-benefits__related-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 322px;
  height: 63px;
  border-radius: 46px;
  background: #f5e50b;
  color: #1156a4;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.page-benefits__related-arrow {
  position: absolute;
  right: -4px;
  bottom: -12px;
  width: 16px;
  height: 18px;
  background: url("../img/benefits_related_arrow.svg") center top / contain no-repeat;
  transform: rotate(-40deg);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.page-benefits__related-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  opacity: 0.96;
}

.page-benefits__related-button:hover .page-benefits__related-arrow {
  transform: translateX(4px) rotate(-40deg);
}

@media (max-width: 1279px) {
  .page-benefits__section,
  .page-benefits__related,
  .page-benefits__overview > *,
  .page-benefits__support > * {
    width: calc(100vw - 48px);
    max-width: none;
  }

  .page-benefits__overview,
  .page-benefits__support {
    width: 100%;
    max-width: none;
  }

  .page-benefits__intro-layout,
  .page-benefits__housing,
  .page-benefits__support-cards {
    gap: 32px;
  }

  .page-benefits__support-card,
  .page-benefits__support-gallery,
  .page-benefits__support-image,
  .page-benefits__support-card-copy {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .page-benefits__support-gallery {
    gap: 48px;
  }

  .page-benefits__housing {
    grid-template-columns: minmax(0, 423fr) minmax(0, 716fr);
    justify-content: center;
  }

  .page-benefits__housing-image {
    width: 100%;
    min-width: 0;
  }

  .page-benefits__housing-image img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-benefits__feature-grid {
    gap: 24px;
  }
}

@media (max-width: 1023px) {
  .page-benefits__intro,
  .page-benefits__overview,
  .page-benefits__support {
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .page-benefits__housing,
  .page-benefits__support-cards {
    grid-template-columns: 1fr;
  }

  .page-benefits__intro-copy {
    width: 100%;
    max-width: 100%;
  }

  .page-benefits__intro-image {
    margin: 0 auto;
  }

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

  .page-benefits__support-cards {
    margin-top: 72px;
  }

  .page-benefits__support-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 800px) {
  .page-benefits__section,
  .page-benefits__related,
  .page-benefits__overview > *,
  .page-benefits__support > * {
    width: calc(100vw - 32px);
  }

  .page-benefits__overview,
  .page-benefits__support {
    width: 100%;
    max-width: none;
  }

  .page-benefits__chip,
  .page-benefits__related-button {
    min-height: 56px;
    width: min(100%, 322px);
    padding: 0 18px;
    font-size: 16px;
  }

  .page-benefits__intro-copy h2,
  .page-benefits__section-head h2,
  .page-benefits__housing-copy h3 {
    font-size: 28px;
  }

  .page-benefits__intro-layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .page-benefits__intro-main,
  .page-benefits__intro-copy {
    width: min(100%, 424px);
    max-width: 100%;
  }

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

  .page-benefits__feature-grid {
    justify-items: center;
  }

  .page-benefits__feature-card {
    width: 100%;
  }

  .page-benefits__related {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 56px 0 72px;
  }

  .page-benefits__related-button {
    width: min(100%, 322px);
  }

  .page-benefits__related-arrow {
    right: 0;
    bottom: -10px;
    width: 14px;
    height: 16px;
  }

  .page-benefits__perk {
    min-height: 80px;
    font-size: 20px;
  }

  .page-benefits__support-card-copy {
    width: 100%;
    min-height: 0;
  }

  .page-benefits__support-image figcaption {
    right: 0;
  }
}

@media (max-width: 479px) {
  .page-benefits__section,
  .page-benefits__related,
  .page-benefits__overview > *,
  .page-benefits__support > * {
    width: calc(100vw - 24px);
  }

  .page-benefits__overview,
  .page-benefits__support {
    width: 100%;
    max-width: none;
  }

  .page-benefits__intro {
    width: calc(100vw - 40px);
  }

  .page-benefits__intro-layout,
  .page-benefits__intro-main,
  .page-benefits__intro-side,
  .page-benefits__intro-copy,
  .page-benefits__intro-image {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .page-benefits__intro-copy h2 {
    overflow-wrap: anywhere;
  }

  .page-benefits__intro,
  .page-benefits__overview,
  .page-benefits__support {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .page-benefits__intro-copy h2,
  .page-benefits__section-head h2,
  .page-benefits__housing-copy h3 {
    font-size: 24px;
  }

  .page-benefits__body-copy,
  .page-benefits__section-copy,
  .page-benefits__housing-copy,
  .page-benefits__support-card-copy {
    font-size: 14px;
  }

  .page-benefits__perk {
    min-height: 56px;
    font-size: 18px;
    padding: 12px 16px;
  }

  .page-benefits__feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }

  .page-benefits__perk-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-benefits__feature-card {
    width: 100%;
  }

  .page-benefits__related {
    padding: 48px 0 64px;
  }

  .page-benefits__related-button {
    min-height: 56px;
    width: 100%;
    font-size: 16px;
  }

  .page-benefits__support-image figcaption {
    right: 0;
    bottom: -18px;
    font-size: 12px;
  }

  .page-benefits__support-gallery {
    gap: 14px;
  }
}

.page-interview {
  --top-frame-left: calc(50% - 720px);
  background: #ffffff;
}

.page-interview .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 80px;
  overflow: hidden;
  background: url("../img/headerbg.jpg") center top / cover no-repeat;
}

.page-interview .site-header__inner {
  position: relative;
  z-index: 1;
  width: 1260px;
  max-width: calc(100vw - 180px);
  min-height: 47px;
  padding-top: 19px;
}

.page-interview .site-nav {
  gap: 23px;
  font-size: 16px;
}

.page-interview .button--blue {
  min-height: 47px;
  margin-left: 26px;
  padding: 0 25px;
  border-radius: 6px;
}

.page-interview__header-asset {
  position: absolute;
  pointer-events: none;
  object-fit: fill;
}

.page-interview__header-asset--right-top {
  right: 37px;
  top: -82px;
  width: 178px;
  height: 178px;
}

.page-interview__header-asset--left-bottom {
  left: -89px;
  top: 43px;
  width: 150px;
  height: 150px;
}

.page-interview__header-asset--right-main {
  right: -127px;
  top: -59px;
  width: 433px;
  height: 435px;
}

.page-interview__main {
  background: #339ef1;
}

.page-interview__hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  height: 824px;
  padding: 41px 0 0;
  color: #f5f5f5;
  background: linear-gradient(to bottom, #ffffff 0 50%, #339ef1 50% 100%);
}

.page-interview__hero > * {
  width: 1260px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page-interview__hero-image {
  width: 1260px;
  height: 570px;
  overflow: hidden;
}

.page-interview__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.page-interview__hero-copy {
  position: absolute;
  inset: 0;
}

.page-interview__hero-kicker {
  position: absolute;
  left: 247px;
  top: 110px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 39px;
  font-weight: 400;
  line-height: normal;
  color: #f5f5f5;
}

.page-interview__hero-roman {
  position: absolute;
  left: 70px;
  top: 395px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: #f5f5f5;
}

.page-interview__hero-title {
  position: absolute;
  left: 47px;
  top: 156px;
  margin: 0;
  font-size: 100px;
  line-height: 1;
  font-weight: 700;
  color: #f5f5f5;
}

.page-interview__hero-role {
  position: absolute;
  left: 53px;
  top: 306px;
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: normal;
}

.page-interview__hero-name {
  position: absolute;
  left: 47px;
  top: 327px;
  margin: 0;
  font-size: 57px;
  font-weight: 700;
  line-height: normal;
}

.page-interview__hero-joined {
  position: absolute;
  left: 303px;
  top: 362px;
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: normal;
}

.page-interview__hero-line {
  position: absolute;
  left: 36px;
  top: 278px;
  width: 429px;
  height: 3px;
  background: #f5f5f5;
}

.page-interview__hero--text-blue .page-interview__hero-kicker,
.page-interview__hero--text-blue .page-interview__hero-roman,
.page-interview__hero--text-blue .page-interview__hero-title,
.page-interview__hero--text-blue .page-interview__hero-role,
.page-interview__hero--text-blue .page-interview__hero-name,
.page-interview__hero--text-blue .page-interview__hero-joined {
  color: #1156a4;
}

.page-interview__hero--text-blue .page-interview__hero-line {
  background: #1156a4;
}

.page-interview__body {
  position: relative;
  width: 1260px;
  max-width: calc(100vw - 180px);
  margin: 0 auto;
  padding-top: 38px;
  color: #f5f5f5;
}

.page-interview__lead {
  position: absolute;
  left: 50%;
  top: 658px;
  width: 1140px;
  transform: translateX(-50%);
  padding: 0;
  font-size: 57px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}

.page-interview__lead p {
  margin: 0;
}

.page-interview__story {
  display: grid;
  grid-template-columns: 630px 583px;
  gap: 47px;
  align-items: start;
  margin-bottom: 147px;
}

.page-interview__story--left {
  grid-template-columns: 583px 630px;
  gap: 47px;
}

.page-interview__story-image {
  width: 630px;
  height: 436px;
  overflow: hidden;
}

.page-interview__story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-interview__story-body h2 {
  margin: -6px 0 28px;
  font-size: 36px;
  line-height: 44px;
  color: #f5f5f5;
}

.page-interview__story-body p {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.page-interview__more {
  position: relative;
  background: #ffffff;
  padding: 113px 0 217px;
}

.page-interview__more h2 {
  margin: 0;
  text-align: center;
  font-size: 36px;
  color: #101010;
}

.page-interview__cards {
  display: grid;
  grid-template-columns: repeat(3, 236px);
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-interview__card img {
  width: 236px;
  height: 338px;
  border-radius: 17px;
  object-fit: cover;
}

.page-interview__card p,
.page-interview__card span,
.page-interview__card h3 {
  margin: 0;
  color: #1156a4;
  font-weight: 700;
}

.page-interview__card p {
  margin-top: 12px;
  font-size: 16px;
}

.page-interview__card h3 {
  margin-top: 4px;
  font-size: 28px;
}

.page-interview__card span {
  display: block;
  margin-top: 6px;
  font-size: 16px;
}

a.page-interview__card {
  display: block;
  color: inherit;
  text-decoration: none;
}

@media (min-width: 1025px) and (max-width: 1400px) {
  .page-interview__body {
    width: calc(100vw - 96px);
    max-width: none;
  }

  .page-interview__story {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 32px;
  }

  .page-interview__story--left {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    gap: 32px;
  }

  .page-interview__story-image {
    width: 100%;
    height: auto;
    aspect-ratio: 630 / 436;
  }
}

.page-interview .top-footer-cta {
  position: relative;
  height: 271px;
  width: 100%;
  color: var(--text-inverse);
  background-color: var(--blue);
  background-image: url("../img/footer_cta_bg.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-interview .site-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0;
  background: transparent;
}

.page-interview .site-footer__inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 54px;
  margin: 0 auto;
}

.page-interview .site-footer__inner img,
.page-interview .site-footer__inner span {
  position: absolute;
}

.page-interview .site-footer__inner img {
  top: 3px;
  left: calc(var(--top-frame-left) + 458px);
  width: 128px;
}

.page-interview .site-footer__inner span:nth-of-type(1) {
  top: 0;
  left: calc(var(--top-frame-left) + 602px);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.page-interview .site-footer__inner span:nth-of-type(2) {
  top: 2px;
  left: calc(var(--top-frame-left) + 746px);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1024px) {
  .page-interview {
    --top-frame-left: 0px;
  }

  .page-interview .site-header__inner,
  .page-interview__body {
    width: calc(100vw - 48px);
    max-width: none;
  }

  .page-interview__hero {
    width: 100%;
    max-width: none;
  }

  .page-interview__hero > * {
    width: calc(100vw - 48px);
  }

  .page-interview__story,
  .page-interview__story--left {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-interview__story-body {
    order: 1;
  }

  .page-interview__story-image,
  .page-interview__story--left .page-interview__story-image {
    order: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 630 / 436;
  }

  .page-interview__lead {
    padding-left: 0;
    font-size: clamp(36px, 5vw, 57px);
  }
}

@media (max-width: 800px) {
  .page-interview .site-header {
    height: auto;
    min-height: 80px;
  }

  .page-interview .site-header__inner {
    width: calc(100vw - 32px);
    padding-top: 19px;
  }

  .page-interview__hero {
    width: 100%;
    height: auto;
    min-height: 0;
    padding-top: 24px;
    padding-bottom: 28px;
    background: #339ef1;
  }

  .page-interview__hero > * {
    width: calc(100vw - 32px);
  }

  .page-interview__hero-image {
    height: auto;
    aspect-ratio: 1260 / 570;
  }

  .page-interview__hero-copy {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding: 18px 0 6px;
  }

  .page-interview__hero-kicker,
  .page-interview__hero-roman,
  .page-interview__hero-title,
  .page-interview__hero-role,
  .page-interview__hero-name,
  .page-interview__hero-joined,
  .page-interview__lead,
  .page-interview__hero-line {
    position: static;
    transform: none;
  }

  .page-interview__hero-kicker,
  .page-interview__hero-roman,
  .page-interview__hero-role,
  .page-interview__hero-name,
  .page-interview__hero-joined {
    margin: 0;
  }

  .page-interview__hero-kicker {
    order: 1;
    font-size: 18px;
  }

  .page-interview__hero-title {
    order: 2;
    margin-top: 8px;
    font-size: clamp(40px, 11vw, 64px);
  }

  .page-interview__hero-line {
    order: 3;
  }

  .page-interview__hero-role {
    order: 4;
  }

  .page-interview__hero-name {
    order: 5;
  }

  .page-interview__hero-joined {
    order: 6;
  }

  .page-interview__hero-roman {
    order: 7;
  }

  .page-interview__hero-role,
  .page-interview__hero-joined,
  .page-interview__hero-roman {
    margin-top: 8px;
    font-size: 14px;
  }

  .page-interview__hero-name {
    margin-top: 6px;
    font-size: clamp(30px, 8vw, 44px);
  }

  .page-interview__hero-line {
    width: min(100%, 429px);
    margin-top: 12px;
  }

  .page-interview__body,
  .page-interview__cards {
    width: calc(100vw - 32px);
  }

  .page-interview__lead {
    width: calc(100vw - 32px);
    padding: 8px 0 24px;
    font-size: clamp(22px, 6.4vw, 30px);
  }

  .page-interview__story {
    margin-bottom: 72px;
  }

  .page-interview__more {
    padding: 72px 0 120px;
  }

  .page-interview__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    justify-content: center;
    width: calc(100vw - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  .page-interview__card {
    min-width: 0;
  }

  .page-interview__card img {
    width: 100%;
    height: auto;
    aspect-ratio: 236 / 338;
  }

  .page-interview__card p,
  .page-interview__card span {
    font-size: clamp(11px, 3vw, 16px);
  }

  .page-interview__card h3 {
    font-size: clamp(16px, 4.4vw, 28px);
  }

  .page-interview .top-footer-cta {
    height: auto;
    padding: 40px 16px 96px;
  }

  .page-interview .site-footer {
    position: static;
    padding: 28px 0 0;
  }

  .page-interview .site-footer__inner {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: min(100%, 640px);
    height: auto;
    text-align: center;
  }

  .page-interview .site-footer__inner img,
  .page-interview .site-footer__inner span {
    position: static;
  }
}

@media (max-width: 1120px) {
  .newgrad-hero__inner,
  .newgrad-student__inner,
  .newgrad-staff__inner,
  .newgrad-support__inner,
  .newgrad-support__hero-inner,
  .newgrad-members__inner,
  .newgrad-office__inner {
    width: calc(100vw - 48px);
  }

  .newgrad-staff__pair,
  .newgrad-support__intro,
  .newgrad-support__closing,
  .newgrad-office__top,
  .newgrad-office__bottom {
    grid-template-columns: 1fr;
  }

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

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

  .newgrad-office__small-grid--bottom {
    margin-top: 10px;
  }
}

@media (max-width: 800px) {
  .newgrad-hero {
    height: 280px;
  }

  .newgrad-hero__inner {
    width: 100%;
  }

  .newgrad-hero__eyebrow {
    left: 28px;
    top: 180px;
    font-size: 24px;
  }

  .newgrad-hero__title {
    left: 24px;
    top: 112px;
    font-size: clamp(48px, 14vw, 72px);
  }

  .newgrad-student,
  .newgrad-staff,
  .newgrad-members,
  .newgrad-office {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .newgrad-student__inner,
  .newgrad-staff__inner,
  .newgrad-support__inner,
  .newgrad-support__hero-inner,
  .newgrad-members__inner,
  .newgrad-office__inner {
    width: calc(100vw - 32px);
  }

  .newgrad-student__visual {
    min-height: 300px;
    height: auto;
  }

  .newgrad-student__band {
    top: 120px;
    width: 145%;
  }

  .newgrad-student__people {
    position: relative;
    left: auto;
    top: auto;
    width: min(300px, 74vw);
    margin: 128px auto 0;
    transform: none;
  }

  .newgrad-student__petal--b,
  .newgrad-student__petal--c {
    width: 180px;
  }

  .newgrad-student {
    height: auto;
    min-height: 860px;
    padding: 48px 0 40px;
  }

  .newgrad-student__inner {
    height: auto;
    width: 100%;
  }

  .newgrad-student__title,
  .newgrad-student__lead,
  .newgrad-student__message {
    position: static;
    width: auto;
    max-width: calc(100vw - 32px);
    transform: none;
  }

  .newgrad-student__title {
    margin: 0 auto;
  }

  .newgrad-student__lead:nth-of-type(1),
  .newgrad-student__lead:nth-of-type(2) {
    top: auto;
  }

  .newgrad-student__lead {
    margin: 16px auto 0;
  }

  .newgrad-student__message {
    margin: 18px auto 0;
  }

  .newgrad-student__petal--a {
    left: 10px;
    top: 110px;
    width: 26px;
  }

  .newgrad-student__petal--d,
  .newgrad-student__petal--e {
    display: none;
  }

  .newgrad-student__petal--f {
    left: -90px;
    width: 220px;
  }

  .newgrad-benefits,
  .newgrad-members__grid,
  .newgrad-support__timeline,
  .newgrad-requirements__strip {
    grid-template-columns: 1fr;
  }

  .newgrad-support__callout {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .newgrad-support__callout img {
    max-width: 100%;
    width: 220px;
    align-self: flex-end;
  }

  .newgrad-support__period div,
  .newgrad-requirements__cta {
    width: 100%;
    min-width: 0;
  }

  .newgrad-office__small-grid,
  .newgrad-office__small-grid--bottom {
    grid-template-columns: 1fr 1fr;
  }

  .newgrad-requirements {
    padding-bottom: 24px;
  }

  .newgrad-requirements__strip img {
    height: 240px;
  }

  .newgrad-requirements__cta {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: calc(100vw - 32px);
    margin: -72px auto 0;
    min-height: 88px;
    gap: 14px;
  }

  .newgrad-requirements__cta span:first-child {
    font-size: 24px;
  }
}

.spacer-32 {
  height: 32px;
}

.spacer-48 {
  height: 48px;
}

.page-top {
  --top-frame-left: calc(50% - 720px);
  background: #fff;
}

.page-top__canvas {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.page-top .site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
}

.page-top .site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  min-height: 94px;
  margin: 0 auto;
  padding: 19px 90px 0;
}

.page-top .site-nav {
  display: flex;
  align-items: center;
  min-height: 47px;
  gap: 23px;
  color: var(--blue);
  font-size: 16px;
}

.page-top .site-nav a:not(.button) {
  position: static;
  font-weight: 700;
}

.page-top .site-nav__contact {
  margin-right: 3px;
}

.page-top .brand {
  position: static;
  gap: 16px;
  color: #f0f0f0;
}

.page-top .brand img {
  width: 128px;
}

.page-top .brand small {
  margin-top: -1px;
  font-size: 20px;
  font-weight: 400;
}

.page-top .button--blue {
  position: static;
  width: 137px;
  margin-left: 26px;
  padding: 0;
}

.top-hero {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1440 / 780;
  background: url("../img/2026_recruit_hero_bg_05.jpg") center top / 100% auto no-repeat;
  overflow: hidden;
}

.top-hero__copy {
  position: absolute;
  top: 93px;
  left: calc(var(--top-frame-left) + 263px);
  width: max-content;
  max-width: calc(100vw - 80px);
  color: var(--blue);
}

.top-hero__date {
  margin: 0;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.top-hero__date-number {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.top-hero__headline-wrap {
  width: fit-content;
  max-width: 100%;
  margin: 13px auto 0;
}

.top-hero__headline {
  margin: 0;
  font-size: 112px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-align: center;
  overflow-wrap: anywhere;
  color: var(--blue);
}

.top-hero__dots {
  width: var(--top-hero-dots-width, 100%);
  max-width: 100%;
  height: 10px;
  margin: 18px auto 0;
  background: radial-gradient(circle, var(--blue) 42%, transparent 44%) 0 0 / 13px 10px repeat-x;
}

.top-hero__asset {
  position: absolute;
  pointer-events: none;
  object-fit: fill;
  transform: translate3d(0, 0, 0);
}

.top-hero__asset--right {
  top: 500px;
  left: calc(var(--top-frame-left) + 1109px);
  width: 433px;
  height: 435px;
}

.top-hero__asset--left-top {
  top: -142px;
  left: calc(var(--top-frame-left) + 390px);
  width: 222px;
  height: 222px;
}

.top-hero__asset--right-top {
  top: 64px;
  left: calc(var(--top-frame-left) + 1206px);
  width: 178px;
  height: 178px;
}

.top-hero__asset--left-logo {
  top: -86px;
  left: calc(var(--top-frame-left) + 11px);
  width: 150px;
  height: 150px;
}

.top-mission {
  position: relative;
  width: 100%;
  height: 528px;
  background: #fff;
}

.top-mission__asset {
  position: absolute;
  pointer-events: none;
  object-fit: fill;
}

.top-mission__asset--left-mid {
  top: -4px;
  left: calc(var(--top-frame-left) + 62px);
  width: 89px;
  height: 88px;
}

.top-mission__asset--left-bottom {
  top: 35px;
  left: calc(var(--top-frame-left) - 83px);
  width: 150px;
  height: 150px;
}

.top-mission__asset--right-lower {
  top: 190px;
  left: calc(var(--top-frame-left) + 1351px);
  width: 178px;
  height: 178px;
}

.top-mission__title,
.top-mission__kicker,
.top-mission__lead,
.top-mission__body {
  position: absolute;
  margin: 0;
}

.top-mission__title {
  top: 93px;
  left: calc(var(--top-frame-left) + 612px);
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  color: var(--blue);
}

.top-mission__kicker {
  top: 111px;
  left: calc(var(--top-frame-left) + 846px);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #bacce1;
}

.top-mission__lead {
  top: 181px;
  left: calc(var(--top-frame-left) + 275px);
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

.top-mission__lead-marker {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.top-mission__lead-marker::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  z-index: -1;
  height: 6px;
  background: var(--yellow);
}

.top-mission__body {
  top: 275px;
  left: calc(var(--top-frame-left) + 517px);
  width: 450px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.top-mission__body p {
  margin: 0;
}

.top-mission__body-spacer,
.top-about__body-spacer {
  height: 16px;
}

.top-recruit {
  position: relative;
  width: 100%;
  height: 422px;
  background: var(--surface-alt);
}

.recruit-teaser {
  position: absolute;
  top: 47px;
  width: 451px;
  height: 333px;
}

.recruit-teaser--new {
  left: calc(var(--top-frame-left) + 245px);
}

.recruit-teaser--mid {
  left: calc(var(--top-frame-left) + 755px);
}

.recruit-teaser__bar {
  position: absolute;
  top: 1px;
  left: 0;
  width: 12px;
  height: 35px;
  background: var(--blue);
}

.recruit-teaser__title {
  position: absolute;
  top: 0;
  left: 27px;
  margin: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--blue);
}

.recruit-teaser__sub {
  position: absolute;
  top: 10px;
  left: 151px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1;
  color: #bacce1;
}

.recruit-teaser__image {
  position: absolute;
  top: 49px;
  left: 0;
  display: block;
  width: 451px;
  height: 284px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.recruit-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-about {
  position: relative;
  width: 100%;
  height: 519px;
  color: var(--text-inverse);
  background: url("../img/about_bg.jpg") center top / cover no-repeat;
}

.top-about__title,
.top-about__kicker,
.top-about__lead,
.top-about__body,
.top-about__button {
  position: absolute;
  margin: 0;
}

.top-about__title {
  top: 80px;
  left: calc(var(--top-frame-left) + 612px);
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  color: var(--yellow);
}

.top-about__kicker {
  top: 98px;
  left: calc(var(--top-frame-left) + 846px);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #bacce1;
}

.top-about__lead {
  top: 158px;
  left: calc(var(--top-frame-left) + 416px);
  width: 608px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  white-space: nowrap;
}

.top-about__body {
  top: 204px;
  left: calc(var(--top-frame-left) + 307px);
  width: 827px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.top-about__body p {
  margin: 0;
}

.top-about__button {
  top: 394px;
  left: calc(var(--top-frame-left) + 559px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 322px;
  height: 63px;
  border: 3px solid #f0f0f0;
  border-radius: 46px;
  color: #f6f6f6;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.top-about__button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  opacity: 0.96;
}

.top-about-gallery {
  position: relative;
  width: 100%;
  height: 347.44px;
  background: var(--surface-alt);
  overflow: hidden;
}

.top-about__gallery {
  position: relative;
  left: 50%;
  width: 1440px;
  height: 347.44px;
  transform: translateX(-50%);
}

.top-about__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.top-about__item {
  position: absolute;
  top: 0;
  width: 326.106px;
  height: 347.44px;
  overflow: hidden;
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
}

.top-about__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-about__item--01 {
  width: 188px;
  clip-path: polygon(0 0, 100% 0, 62% 100%, 0 100%);
}

.top-about__item--08 {
  right: 0;
  left: auto;
  width: 151px;
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
}

.top-about__item--01 { left: 0; }
.top-about__item--02 { left: 65px; }
.top-about__item--03 { left: 269px; }
.top-about__item--04 { left: 473px; }
.top-about__item--05 { left: 677px; }
.top-about__item--06 { left: 881px; }
.top-about__item--07 { left: 1085px; }

.top-footer-cta {
  position: relative;
  width: 100%;
  height: 271px;
  overflow: hidden;
  color: var(--text-inverse);
  background-color: var(--blue);
  background-image: url("../img/footer_cta_bg.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 1280px) and (max-width: 1439px) {
  .top-footer-cta {
    height: 320px;
    background-size: 100% 100%;
  }
}

.top-footer-cta__nav {
  position: absolute;
  top: 40px;
  left: calc(var(--top-frame-left) + 385px);
  display: grid;
  grid-template-columns: repeat(6, max-content);
  gap: 0 31px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.top-footer-cta__nav a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.top-footer-cta__nav a:hover {
  color: var(--yellow);
  opacity: 0.9;
}

.top-footer-cta__button {
  position: absolute;
  top: 104px;
  left: calc(var(--top-frame-left) + 572px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 322px;
  height: 63px;
  border-radius: 46px;
  background: #fff;
  color: var(--blue);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.top-footer-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.top-footer-cta__button-ja {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}

.top-footer-cta__button-en {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #bacce1;
}

.top-footer-cta__asset {
  position: absolute;
  pointer-events: none;
  object-fit: fill;
}

.top-footer-cta__asset--left {
  top: 22px;
  left: calc(var(--top-frame-left) - 139px);
  width: 535px;
  height: 535px;
}

.top-footer-cta__asset--right {
  top: -46px;
  left: calc(var(--top-frame-left) + 1159px);
  width: 150px;
  height: 150px;
}

.top-footer-cta__asset--corner {
  top: 191px;
  left: calc(var(--top-frame-left) + 1282px);
  width: 178px;
  height: 178px;
}

.page-top .site-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0;
  background: transparent;
}

.page-top .site-footer__inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 54px;
  margin: 0 auto;
}

.page-top .site-footer__inner img,
.page-top .site-footer__inner span {
  position: absolute;
}

.page-top .site-footer__inner img {
  top: 3px;
  left: calc(var(--top-frame-left) + 458px);
  width: 128px;
}

.page-top .site-footer__inner span:nth-of-type(1) {
  top: 0;
  left: calc(var(--top-frame-left) + 602px);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.page-top .site-footer__inner span:nth-of-type(2) {
  top: 2px;
  left: calc(var(--top-frame-left) + 746px);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1279px) {
  .site-header__inner {
    min-height: 72px;
  }

  .top-footer-cta {
    min-height: 320px;
    background-size: cover;
  }

  .brand small {
    display: none;
  }

  .top-hero {
    min-height: 0;
  }

  .top-hero__copy {
    top: 93px;
    left: 50%;
    right: auto;
    width: max-content;
    max-width: calc(100vw - 80px);
    transform: translateX(-50%);
    text-align: center;
  }

  .top-hero__date {
    font-size: 48px;
  }

  .top-hero__headline {
    font-size: 100px;
  }

  .top-hero__headline,
  .top-hero__dots {
    margin-left: 0;
  }

  .top-hero__asset--right {
    top: 420px;
    right: -60px;
    left: auto;
    width: 300px;
    height: 300px;
  }

}

@media (max-width: 1023px) {
  .page-top {
    --top-frame-left: 0px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: transparent;
    color: var(--text-inverse);
    font-size: 22px;
  }

  .site-nav,
  .page-top .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 24px;
    background: rgba(17, 86, 164, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav,
  .page-top .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .site-nav .button--blue {
    width: 164px;
  }

  .page-top .site-nav {
    color: var(--text-inverse);
  }

  .page-top .site-header {
    position: fixed;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .page-top .site-header__inner {
    width: 100%;
    min-height: 72px;
    padding: 19px 24px 12px;
  }

  .page-top.page-about .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    padding: 20px;
    border-radius: 24px;
    background: rgba(17, 86, 164, 0.98);
    box-shadow: var(--shadow);
  }

  .page-top.page-about .site-header.is-open .site-nav {
    display: flex;
  }

  .page-top .brand,
  .page-top .button--blue,
  .page-top .site-nav a:not(.button) {
    position: static;
  }

  .page-top .brand {
    color: var(--text-inverse);
  }

  .top-hero {
    min-height: 0;
    aspect-ratio: 1440 / 780;
    background-position: center top;
    background-size: 100% auto;
  }

  .top-hero__copy {
    top: 74px;
    left: 50%;
    right: auto;
    width: max-content;
    max-width: calc(100vw - 64px);
    transform: translateX(-50%);
    text-align: center;
  }

  .top-hero__date {
    font-size: clamp(24px, 3.8vw, 36px);
  }

  .top-hero__headline {
    margin-left: 0;
    font-size: clamp(56px, 12vw, 88px);
    letter-spacing: 0.12em;
  }

  .top-hero__dots {
    margin-left: 0;
  }

  .top-hero__asset--left-top,
  .top-hero__asset--right-top,
  .top-hero__asset--left-logo {
    opacity: 0.45;
    transform: scale(0.8);
  }

  .top-hero__asset--right {
    top: auto;
    right: -48px;
    bottom: -36px;
    left: auto;
    width: 260px;
    height: 260px;
  }

  .top-mission,
  .top-about,
  .top-footer-cta {
    height: auto;
  }

  .top-mission {
    padding: 72px 32px 80px;
  }

  .top-mission__title,
  .top-mission__kicker,
  .top-mission__lead,
  .top-mission__body,
  .top-about__title,
  .top-about__kicker,
  .top-about__lead,
  .top-about__body,
  .top-about__button,
  .top-footer-cta__nav,
  .top-footer-cta__button,
  .page-top .site-footer__inner img,
  .page-top .site-footer__inner span {
    position: static;
  }

  .top-mission__title,
  .top-about__title {
    font-size: 32px;
    text-align: center;
  }

  .top-mission__kicker,
  .top-about__kicker,
  .top-mission__lead,
  .top-mission__body,
  .top-about__lead,
  .top-about__body {
    text-align: center;
  }

  .top-mission__lead {
    margin-top: 20px;
    font-size: clamp(24px, 3.4vw, 32px);
    white-space: normal;
  }

  .top-mission__body {
    width: min(100%, 640px);
    margin: 0 auto;
  }

  .top-mission__asset {
    opacity: 0.35;
    transform: scale(0.8);
    transform-origin: center;
  }

  .top-mission__asset--left-mid {
    top: 12px;
    left: 12px;
  }

  .top-mission__asset--left-bottom {
    top: auto;
    bottom: 20px;
    left: -36px;
  }

  .top-mission__asset--right-lower {
    top: auto;
    right: -28px;
    bottom: 60px;
    left: auto;
  }

  .top-recruit {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    height: auto;
    padding: 64px 32px 72px;
  }

  .recruit-teaser {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
  }

  .recruit-teaser__bar,
  .recruit-teaser__title,
  .recruit-teaser__sub,
  .recruit-teaser__image {
    position: static;
  }

  .recruit-teaser__title,
  .recruit-teaser__sub {
    display: inline-block;
    vertical-align: middle;
  }

  .recruit-teaser__bar {
    display: inline-block;
    margin-right: 12px;
  }

  .recruit-teaser__sub {
    margin-left: 12px;
  }

  .recruit-teaser__image {
    width: 100%;
    height: auto;
    aspect-ratio: 451 / 284;
    margin-top: 18px;
  }

  .top-about {
    padding: 72px 32px 64px;
  }

  .top-about__lead {
    width: min(100%, 760px);
    margin: 20px auto 0;
    text-align: center;
    white-space: normal;
  }

  .top-about__body {
    width: min(100%, 820px);
    margin: 24px auto 0;
  }

  .top-about__button {
    display: flex;
    width: min(100%, 322px);
    margin: 36px auto 0;
  }

  .top-about-gallery {
    height: 347.44px;
    padding: 0;
  }

  .top-about__gallery {
    left: 50%;
    width: 1440px;
    height: 347.44px;
    overflow: hidden;
    transform: translateX(-50%);
    padding: 0;
  }

  .top-about__track {
    display: block;
    gap: 0;
    width: 100%;
    height: 100%;
  }

  .top-about__item {
    position: absolute;
    top: 0;
    width: 326.106px;
    height: 347.44px;
  }

  .top-about__item img,
  .top-about__item--01 img,
  .top-about__item--08 img {
    width: 100%;
    object-fit: cover;
  }

  .top-footer-cta {
    padding: 48px 32px 72px;
    background-size: cover;
  }

  .top-footer-cta__nav {
    justify-content: center;
    grid-template-columns: repeat(3, max-content);
    gap: 14px 24px;
  }

  .top-footer-cta__button {
    margin: 32px auto 0;
  }

  .page-top .site-footer {
    position: static;
    padding: 28px 0 0;
  }

  .page-top .site-footer__inner {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: min(100%, 640px);
    height: auto;
    text-align: center;
  }

  .top-footer-cta__asset {
    opacity: 0.28;
    transform: scale(0.82);
    transform-origin: center;
  }

  .top-footer-cta__asset--left {
    top: 0;
    left: -120px;
  }

  .top-footer-cta__asset--right {
    top: -22px;
    left: auto;
    right: 24px;
  }

  .top-footer-cta__asset--corner {
    top: auto;
    left: auto;
    right: -16px;
    bottom: -10px;
  }
}

@media (max-width: 767px) {
  .page-top__canvas {
    max-width: none;
  }

  .page-top .site-header {
    position: fixed;
    background: transparent;
    backdrop-filter: none;
  }

  .page-top .site-header__inner {
    width: min(100vw - 32px, 640px);
    min-height: 72px;
    padding: 19px 0 12px;
  }

  .page-top .site-nav {
    color: var(--text-inverse);
  }

  .top-hero {
    min-height: 0;
  }

  .top-hero__copy {
    top: 74px;
    right: auto;
    left: 50%;
    width: max-content;
    max-width: calc(100vw - 32px);
    transform: translateX(-50%);
    text-align: center;
  }

  .top-hero__date {
    font-size: clamp(20px, 5.5vw, 32px);
    white-space: normal;
  }

  .top-hero__headline {
    margin-left: 0;
    font-size: clamp(44px, 18vw, 72px);
    letter-spacing: 0.08em;
  }

  .top-hero__dots {
    margin-left: 0;
  }

  .top-mission,
  .top-recruit,
  .top-about,
  .top-about-gallery,
  .top-footer-cta {
    height: auto;
  }

  .top-mission {
    padding: 64px 16px 72px;
  }

  .top-mission__title,
  .top-mission__kicker,
  .top-mission__lead,
  .top-mission__body,
  .recruit-teaser,
  .top-about__title,
  .top-about__kicker,
  .top-about__lead,
  .top-about__body,
  .top-about__button,
  .top-footer-cta__nav,
  .top-footer-cta__button,
  .page-top .site-footer__inner img,
  .page-top .site-footer__inner span {
    position: static;
  }

  .top-mission__title,
  .top-about__title {
    font-size: 30px;
    text-align: center;
  }

  .top-mission__kicker,
  .top-about__kicker,
  .top-mission__lead,
  .top-mission__body,
  .top-about__lead,
  .top-about__body {
    text-align: center;
  }

  .top-mission__lead {
    margin-top: 28px;
    font-size: 24px;
    white-space: normal;
  }

  .top-mission__body {
    width: auto;
  }

  .top-recruit {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 16px;
  }

  .recruit-teaser {
    width: auto;
    height: auto;
    margin: 0;
  }

  .recruit-teaser__bar,
  .recruit-teaser__title,
  .recruit-teaser__sub,
  .recruit-teaser__image {
    position: static;
  }

  .recruit-teaser__title,
  .recruit-teaser__sub {
    display: inline-block;
    vertical-align: middle;
  }

  .recruit-teaser__bar {
    display: inline-block;
    margin-right: 12px;
  }

  .recruit-teaser__sub {
    margin-left: 12px;
  }

  .recruit-teaser__image {
    width: 100%;
    margin-top: 14px;
  }

  .top-about {
    padding: 56px 0 48px;
  }

  .top-about__lead,
  .top-about__body {
    width: min(100% - 32px, 827px);
    margin: 24px auto 0;
  }

  .top-about__button {
    display: flex;
    width: min(100% - 32px, 322px);
    margin: 32px auto 0;
  }

  .top-about-gallery {
    padding: 0;
  }

  .top-about__gallery {
    left: 50%;
    width: 1440px;
    height: 347.44px;
    transform: translateX(-50%);
    padding: 0;
  }

  .top-about__track {
    gap: 0;
  }

  .top-footer-cta {
    padding: 40px 16px 96px;
  }

  .top-footer-cta__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
  }

  .top-footer-cta__button {
    width: min(100%, 322px);
    margin: 32px auto 0;
  }

  .page-top .site-footer {
    position: static;
    padding: 22px 0 32px;
  }

  .page-top .site-footer__inner {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: min(100vw - 32px, 520px);
    height: auto;
    text-align: center;
  }

  .page-top .site-footer__inner img,
  .page-top .site-footer__inner span {
    position: static;
  }

  .top-footer-cta__asset,
  .top-hero__asset--left-top,
  .top-hero__asset--right-top,
  .top-hero__asset--left-logo,
  .top-hero__asset--right,
  .top-mission__asset {
    opacity: 0.35;
    transform: scale(0.72);
    transform-origin: center;
  }
}

@media (max-width: 479px) {
  .page-top .site-header__inner {
    width: calc(100vw - 32px);
    padding-bottom: 10px;
  }

  .brand img {
    width: 112px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .site-nav,
  .page-top .site-nav {
    padding: 18px 16px;
  }

  .site-nav .button--blue {
    width: 172px;
  }

  .top-hero {
    min-height: 0;
    aspect-ratio: 1440 / 780;
    background-position: center top;
  }

  .top-hero__copy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    top: 74px;
    bottom: auto;
    left: 20px;
    right: auto;
    width: calc(100vw - 40px);
    max-width: none;
    transform: none;
    text-align: left;
  }

  .top-hero__date {
    flex: 0 1 auto;
    font-size: clamp(12px, 3.7vw, 16px);
    line-height: 1.25;
    white-space: nowrap;
  }

  .top-hero__headline-wrap {
    flex: 0 0 auto;
    margin: 0;
  }

  .top-hero__headline {
    margin-top: 0;
    font-size: clamp(30px, 10vw, 42px);
    letter-spacing: 0.06em;
  }

  .top-hero__dots {
    width: var(--top-hero-dots-width, 100%);
    max-width: 100%;
    height: 8px;
    margin: 6px auto 0 0;
    background-size: 11px 8px;
  }

  .top-hero__asset--right {
    right: -76px;
    bottom: -56px;
    width: 220px;
    height: 220px;
  }

  .top-mission__title,
  .top-about__title {
    font-size: 28px;
  }

  .top-mission__lead {
    font-size: 22px;
  }

  .top-footer-cta__button {
    width: 100%;
  }

  .top-about__button {
    width: calc(100% - 40px);
    max-width: 322px;
  }

  .top-footer-cta__button {
    gap: 14px;
  }

  .top-footer-cta__button-ja {
    font-size: 16px;
  }

  .top-footer-cta__button-en {
    font-size: 18px;
  }

  .page-top .site-footer__inner {
    flex-direction: column;
  }
}

.page-top.page-form .site-header {
  height: auto;
  min-height: 94px;
  overflow: hidden;
  background: url("../img/headerbg.jpg") center top / cover no-repeat;
}

.page-top.page-contact .site-header {
  overflow: hidden;
}

.site-header__asset {
  position: absolute;
  pointer-events: none;
  object-fit: fill;
}

.site-header__asset--right-top {
  left: 326px;
  top: -82px;
  width: 178px;
  height: 178px;
}

.site-header__asset--left-bottom {
  left: -89px;
  top: 43px;
  width: 150px;
  height: 150px;
}

.site-header__asset--right-main {
  right: -127px;
  top: -59px;
  width: 433px;
  height: 435px;
}

.page-contact__header-asset {
  position: absolute;
  pointer-events: none;
  object-fit: fill;
}

.page-contact__header-asset--right-top {
  left: 326px;
  top: -82px;
  width: 178px;
  height: 178px;
}

.page-contact__header-asset--left-bottom {
  left: -89px;
  top: 43px;
  width: 150px;
  height: 150px;
}

.page-contact__header-asset--right-main {
  right: -127px;
  top: -59px;
  width: 433px;
  height: 435px;
}

.page-top.page-form .page-about__hero {
  height: 494px;
}

.page-top.page-form .page-about__hero-bg {
  overflow: hidden;
  background: url("../img/about_bg.jpg") center bottom / max(1701px, 100%) auto no-repeat;
}

.page-top.page-form .site-header__inner {
  justify-content: space-between;
  width: 100%;
  max-width: none;
  min-height: 94px;
  padding: 19px 90px 0;
}

.page-top.page-form .site-nav {
  display: flex;
  align-items: center;
  min-height: 47px;
  gap: 23px;
  color: var(--blue);
  font-size: 16px;
}

.page-top.page-form .site-nav__contact {
  margin-right: 3px;
}

.page-top.page-form .brand {
  gap: 16px;
  color: #f0f0f0;
}

.page-top.page-form .brand img {
  width: 128px;
}

.page-top.page-form .brand small {
  margin-top: -1px;
  font-size: 20px;
  font-weight: 400;
}

.page-top.page-form .button--blue {
  width: 137px;
  margin-left: 26px;
  padding: 0;
}

@media (max-width: 1023px) {
  .page-top.page-form .site-header {
    padding: 0;
  }

  .page-top.page-contact .site-header {
    overflow: visible;
  }

  .page-contact__header-asset {
    display: none;
  }

  .site-header__asset {
    display: none;
  }

  .page-top.page-form .site-header__inner {
    width: 100%;
    min-height: 72px;
    padding: 19px 24px 12px;
  }

  .page-top.page-form .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    padding: 20px;
    border-radius: 24px;
    background: rgba(17, 86, 164, 0.98);
    color: var(--text-inverse);
    box-shadow: var(--shadow);
  }

  .page-top.page-form .page-about__hero-bg {
    background: url("../img/about_bg.jpg") center top / cover no-repeat;
  }

  .page-top.page-form .site-header.is-open .site-nav {
    display: flex;
  }

  .page-top.page-form .site-nav .button--blue {
    width: 164px;
  }
}

@media (max-width: 767px) {
  .page-top.page-form .site-header__inner {
    width: min(100vw - 32px, 640px);
    min-height: 72px;
    padding: 19px 0 12px;
  }
}

@media (max-width: 479px) {
  .page-top.page-form .site-header__inner {
    width: calc(100vw - 32px);
    padding-bottom: 10px;
  }

  .page-top.page-form .brand img {
    width: 112px;
  }

  .page-top.page-form .site-nav {
    padding: 18px 16px;
  }

  .page-top.page-form .site-nav .button--blue {
    width: 172px;
  }
}

/* ----------------------------------------
  Shared Header
---------------------------------------- */

.page-top.page-about:not(.page-form) .site-header,
.page-top.page-point .site-header,
.page-interview .site-header {
  height: auto;
  min-height: 94px;
  overflow: hidden;
  background: transparent;
}

.page-sub .site-header {
  min-height: 94px;
  overflow: hidden;
}

.page-top.page-about:not(.page-form) .site-header,
.page-top.page-form .site-header,
.page-top.page-point .site-header,
.page-interview .site-header,
.page-sub .site-header {
  background: url("../img/headerbg.jpg") center top / cover no-repeat;
}

.page-top.page-about:not(.page-form) .site-header__inner,
.page-top.page-point .site-header__inner,
.page-interview .site-header__inner,
.page-sub .site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: none;
  min-height: 94px;
  margin: 0 auto;
  padding: 19px 90px 0;
}

.page-top.page-about:not(.page-form) .brand,
.page-top.page-point .brand,
.page-interview .brand,
.page-sub .brand {
  position: static;
  gap: 16px;
  color: #f0f0f0;
}

.page-top.page-about:not(.page-form) .brand img,
.page-top.page-point .brand img,
.page-interview .brand img,
.page-sub .brand img {
  width: 128px;
}

.page-top.page-about:not(.page-form) .brand small,
.page-top.page-point .brand small,
.page-interview .brand small,
.page-sub .brand small {
  margin-top: -1px;
  font-size: 20px;
  font-weight: 400;
}

.page-top.page-about:not(.page-form) .site-nav,
.page-top.page-point .site-nav,
.page-interview .site-nav,
.page-sub .site-nav {
  position: static;
  display: flex;
  align-items: center;
  min-height: 47px;
  margin-left: auto;
  gap: 23px;
  color: var(--blue);
  font-size: 16px;
}

.page-top.page-about:not(.page-form) .site-nav a:not(.button),
.page-top.page-point .site-nav a:not(.button),
.page-interview .site-nav a:not(.button),
.page-sub .site-nav a:not(.button) {
  position: static;
  font-weight: 700;
}

.page-top.page-about:not(.page-form) .site-nav__contact,
.page-top.page-point .site-nav__contact,
.page-interview .site-nav__contact,
.page-sub .site-nav__contact {
  margin-right: 3px;
}

.page-top.page-about:not(.page-form) .button--blue,
.page-top.page-point .button--blue,
.page-interview .button--blue,
.page-sub .button--blue {
  position: static;
  width: 137px;
  min-height: 47px;
  margin-left: 26px;
  padding: 0;
  border-radius: 6px;
}

.page-about__header-asset,
.page-point__header-asset,
.page-interview__header-asset {
  display: block;
}

@media (max-width: 1023px) {
  .page-top.page-about:not(.page-form) .site-header,
  .page-top.page-point .site-header,
  .page-interview .site-header,
  .page-sub .site-header {
    padding: 0;
    overflow: visible;
  }

  .page-top.page-about:not(.page-form) .site-header__inner,
  .page-top.page-point .site-header__inner,
  .page-interview .site-header__inner,
  .page-sub .site-header__inner {
    width: 100%;
    min-height: 72px;
    padding: 19px 24px 12px;
  }

  .page-top.page-about:not(.page-form) .site-nav,
  .page-top.page-point .site-nav,
  .page-interview .site-nav,
  .page-sub .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    padding: 20px;
    border-radius: 24px;
    background: rgba(17, 86, 164, 0.98);
    color: var(--text-inverse);
    box-shadow: var(--shadow);
  }

  .page-top.page-about:not(.page-form) .site-header.is-open .site-nav,
  .page-top.page-point .site-header.is-open .site-nav,
  .page-interview .site-header.is-open .site-nav,
  .page-sub .site-header.is-open .site-nav {
    display: flex;
  }

  .page-top.page-about:not(.page-form) .site-nav .button--blue,
  .page-top.page-point .site-nav .button--blue,
  .page-interview .site-nav .button--blue,
  .page-sub .site-nav .button--blue {
    width: 164px;
  }
}

@media (max-width: 767px) {
  .page-top.page-about:not(.page-form) .site-header__inner,
  .page-top.page-point .site-header__inner,
  .page-interview .site-header__inner,
  .page-sub .site-header__inner {
    width: min(100vw - 32px, 640px);
    min-height: 72px;
    padding: 19px 0 12px;
  }
}

@media (max-width: 479px) {
  .page-top.page-about:not(.page-form) .site-header__inner,
  .page-top.page-point .site-header__inner,
  .page-interview .site-header__inner,
  .page-sub .site-header__inner {
    width: calc(100vw - 32px);
    padding-bottom: 10px;
  }

  .page-top.page-about:not(.page-form) .brand img,
  .page-top.page-point .brand img,
  .page-interview .brand img,
  .page-sub .brand img {
    width: 112px;
  }

  .page-top.page-about:not(.page-form) .site-nav,
  .page-top.page-point .site-nav,
  .page-interview .site-nav,
  .page-sub .site-nav {
    padding: 18px 16px;
  }

  .page-top.page-about:not(.page-form) .site-nav .button--blue,
  .page-top.page-point .site-nav .button--blue,
  .page-interview .site-nav .button--blue,
  .page-sub .site-nav .button--blue {
    width: 172px;
  }
}

/* ----------------------------------------
  Sub Page Main Visual
---------------------------------------- */

.page-about__hero,
.page-point__hero,
.page-top.page-form .page-about__hero {
  height: auto;
  min-height: 0;
  aspect-ratio: 1440 / 400;
}

.page-about__hero-bg,
.page-point__hero-bg,
.page-top.page-form .page-about__hero-bg {
  min-height: 0;
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.page-about__hero-copy,
.page-point__hero-copy {
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
}

@media (max-width: 800px) {
  .page-about__hero-title,
  .page-point__hero-title {
    font-size: clamp(28px, 8vw, 56px);
    line-height: 1;
  }

  .page-about__hero-kicker,
  .page-point__hero-kicker {
    font-size: clamp(13px, 3.6vw, 24px);
    line-height: 1.1;
  }

  .page-top.page-about:not(.page-form):not(.page-difference):not(.page-benefits) .page-about__hero-copy {
    justify-content: center;
    gap: 4px;
    padding: 8px 0;
  }

  .page-top.page-about:not(.page-form):not(.page-difference):not(.page-benefits) .page-about__hero-title {
    font-size: clamp(28px, 8vw, 56px);
    line-height: 1;
  }

  .page-top.page-about:not(.page-form):not(.page-difference):not(.page-benefits) .page-about__hero-kicker {
    font-size: clamp(13px, 3.6vw, 24px);
    line-height: 1.1;
  }
}

@media (max-width: 479px) {
  .page-about__hero-title,
  .page-point__hero-title {
    font-size: clamp(24px, 8vw, 38px);
  }

  .page-about__hero-kicker,
  .page-point__hero-kicker {
    font-size: clamp(12px, 3.8vw, 18px);
  }

  .page-top.page-about:not(.page-form):not(.page-difference):not(.page-benefits) .page-about__hero-copy {
    gap: 2px;
    padding: 6px 0;
  }

  .page-top.page-about:not(.page-form):not(.page-difference):not(.page-benefits) .page-about__hero-title {
    font-size: clamp(24px, 8vw, 38px);
  }

  .page-top.page-about:not(.page-form):not(.page-difference):not(.page-benefits) .page-about__hero-kicker {
    font-size: clamp(12px, 3.8vw, 18px);
  }
}

/* ----------------------------------------
  Lower Page Mobile Navigation
---------------------------------------- */

@media (max-width: 1023px) {
  .page-top.page-about:not(.page-form) .site-nav,
  .page-top.page-about.page-form .site-nav,
  .page-top.page-point .site-nav,
  .page-interview .site-nav,
  .page-sub .site-nav {
    background: rgba(255, 255, 255, 0.96);
    color: #1156a4;
  }
}
