:root {
  --blue: #0057a8;
  --blue-deep: #003e78;
  --blue-soft: #eaf4fb;
  --pink: #df5b88;
  --pink-deep: #b93163;
  --pink-soft: #fff0f5;
  --ink: #10263a;
  --muted: #5d6b78;
  --line: #dbe3e9;
  --paper: #ffffff;
  --wash: #f4f7f9;
  --navy: #061d34;
  --yellow: #ffd400;
  --header-height: 84px;
  --shell: min(1180px, calc(100% - 56px));
  --shadow: 0 24px 70px rgba(4, 30, 54, 0.12);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 22px); }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

button { font: inherit; }

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

h1, h2, h3 { line-height: 1.25; letter-spacing: 0.02em; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 18px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.section-shell { width: var(--shell); margin-inline: auto; }

.section { padding: 104px 0; }

.section-label {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child { max-width: 650px; margin-bottom: 0; color: var(--muted); }

.section-heading--center { text-align: center; }
.section-heading--center > p:last-child { margin-inline: auto; }
.section-heading--inverse .section-label { color: #7cc6ff; }
.section-heading--inverse h2, .section-heading--inverse > p:last-child { color: #fff; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px max(28px, calc((100vw - 1440px) / 2));
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(13, 47, 72, 0.08);
  transition: box-shadow 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled { min-height: 72px; box-shadow: 0 10px 34px rgba(5, 28, 48, 0.09); }

.site-brand { flex: 0 0 auto; display: flex; align-items: center; gap: 14px; }
.site-brand__university { width: clamp(178px, 16vw, 220px); height: auto; }
.site-brand__special { display: flex; flex-direction: column; justify-content: center; min-height: 40px; padding-left: 14px; color: var(--blue-deep); border-left: 1px solid #b8c8d5; line-height: 1; }
.site-brand__special strong { font-size: clamp(.7rem, .9vw, .82rem); font-weight: 900; letter-spacing: .08em; white-space: nowrap; }
.site-brand__special small { margin-top: 6px; color: #61788b; font-size: .52rem; font-weight: 800; letter-spacing: .2em; white-space: nowrap; }

.global-menu { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 36px); }
.global-menu a { position: relative; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; }
.global-menu a:not(.nav-accent)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--blue);
  transition: right 0.25s ease;
}
.global-menu a:hover::after { right: 0; }
.global-menu a[aria-current="page"] { color: var(--blue); }
.global-menu a[aria-current="page"]::after { right: 0; }
.global-menu .nav-accent { padding: 11px 18px; color: #fff; background: var(--blue); }
.global-menu .nav-accent small { display: block; margin-top: 2px; color: rgba(255,255,255,.76); font-size: .46rem; font-weight: 700; letter-spacing: .08em; }
.header-social { display: flex; align-items: center; gap: 14px; padding-left: 4px; }
.header-social .sns-link { position: relative; display: grid; place-items: center; width: 29px; height: 29px; padding: 0; border: 0; background: transparent; transition: transform .2s, opacity .2s; }
.header-social .sns-link::after { display: none; }
.header-social .sns-link:hover { opacity: .72; transform: translateY(-2px); }
.header-social .sns-link img { display: block; width: 29px; height: 29px; object-fit: contain; }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}
.menu-button > span:not(.visually-hidden) { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform 0.2s, opacity 0.2s; }
.menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #0b2c45;
}

.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 19, 34, 0.56) 0%, rgba(2, 19, 34, 0.12) 50%, rgba(2, 19, 34, 0.04) 100%), linear-gradient(0deg, rgba(2, 18, 32, 0.43), transparent 44%); }

.hero__content {
  position: absolute;
  z-index: 2;
  left: max(28px, calc((100vw - 1180px) / 2));
  bottom: clamp(92px, 14vh, 150px);
  max-width: 700px;
}

.hero__eyebrow { margin-bottom: 12px; font-size: clamp(0.65rem, 1vw, 0.78rem); font-weight: 800; letter-spacing: 0.28em; }
.hero h1 { margin: 0; font-size: clamp(3.5rem, 7.8vw, 7.7rem); font-weight: 900; line-height: 0.84; letter-spacing: -0.045em; text-shadow: 0 8px 30px rgba(0, 0, 0, 0.16); }
.hero h1 span { display: block; }
.hero h1 span:last-child { margin-top: .06em; margin-left: .12em; color: var(--yellow); font-size: .88em; letter-spacing: -.012em; }
.hero__catch { margin: 24px 0 0; padding-left: 14px; border-left: 3px solid var(--yellow); font-size: clamp(.88rem, 1.35vw, 1.1rem); font-weight: 800; letter-spacing: .12em; text-shadow: 0 4px 18px rgba(0,0,0,.24); }

.oc-signature { position: relative; overflow: hidden; color: #fff; background: linear-gradient(110deg, #004b91 0%, #0068b7 58%, #00539a 100%); }
.oc-signature::after { content: "OPEN CAMPUS"; position: absolute; right: -24px; bottom: -36px; color: rgba(255,255,255,.055); font-size: clamp(5rem, 12vw, 10rem); font-weight: 900; line-height: 1; letter-spacing: -.06em; white-space: nowrap; }
.oc-signature__inner { position: relative; z-index: 1; min-height: 220px; display: flex; align-items: center; gap: clamp(30px, 5vw, 70px); }
.oc-signature__mark { flex: 0 0 126px; height: 166px; display: grid; place-items: center; padding-right: 34px; border-right: 1px solid rgba(255,255,255,.38); }
.oc-signature__mark img { width: 82px; height: auto; filter: drop-shadow(0 12px 22px rgba(0,25,48,.22)); }
.oc-signature__copy { display: flex; flex-direction: column; margin: 0; line-height: 1; }
.oc-signature__copy span { margin-bottom: 12px; font-size: .66rem; font-weight: 800; letter-spacing: .24em; }
.oc-signature__copy strong { font-size: clamp(2.1rem, 5vw, 4.5rem); font-weight: 900; letter-spacing: -.045em; }
.oc-signature__copy small { align-self: flex-start; margin-top: 14px; padding-top: 10px; color: var(--yellow); border-top: 1px solid rgba(255,255,255,.45); font-size: .62rem; font-weight: 900; letter-spacing: .24em; }

.hero__scroll { position: absolute; z-index: 2; right: 40px; bottom: 35px; display: flex; align-items: center; gap: 10px; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.22em; transform: rotate(90deg); transform-origin: right center; }
.hero__scroll i { display: block; width: 58px; height: 1px; overflow: hidden; background: rgba(255, 255, 255, 0.45); }
.hero__scroll i::after { content: ""; display: block; width: 100%; height: 1px; background: #fff; animation: scroll-line 2s ease-in-out infinite; }

@keyframes scroll-line { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }

.video-control { position: absolute; z-index: 3; right: 28px; top: calc(var(--header-height) + 20px); display: flex; align-items: center; gap: 8px; min-height: 42px; padding: 9px 13px; color: #fff; background: rgba(3, 25, 43, 0.62); border: 1px solid rgba(255, 255, 255, 0.58); cursor: pointer; }
.video-control-icon { width: 18px; font-size: 0.72rem; text-align: center; }
.video-control [data-video-control-label] { font-size: 0.72rem; font-weight: 700; }

.information { background: #fff; }
.information__layout { display: grid; grid-template-columns: .66fr 1.5fr; gap: 46px 72px; align-items: start; }
.status-panel { display: flex; gap: 22px; padding: 32px; background: var(--wash); border-left: 5px solid var(--blue); }
.status-panel__mark { flex: 0 0 12px; width: 12px; height: 12px; margin-top: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 7px rgba(0, 87, 168, 0.12); }
.status-panel__label { margin-bottom: 10px; color: var(--ink); font-size: clamp(1.05rem, 1.25vw, 1.15rem); font-weight: 800; line-height: 1.65; text-wrap: pretty; }
.status-panel p:last-child { margin-bottom: 0; color: var(--muted); }
.related-notices { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(210px, .42fr) minmax(0, 1.58fr); gap: 32px; padding: 26px 30px; background: var(--wash); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.related-notices__heading { align-self: center; }
.related-notices__heading span { display: block; margin-bottom: 7px; color: var(--blue); font-size: .62rem; font-weight: 900; letter-spacing: .18em; }
.related-notices__heading strong { display: block; max-width: 240px; font-size: 1.18rem; line-height: 1.55; }
.related-notices__list { border-top: 1px solid var(--line); }
.related-notice { display: grid; grid-template-columns: 88px minmax(0, 1fr) 28px; grid-template-rows: auto auto auto; gap: 2px 16px; align-items: center; min-height: 0; padding: 15px 6px; border-bottom: 1px solid var(--line); transition: background-color .2s; }
.related-notice:hover { background: #fff; }
.related-notice__tag { grid-column: 1; grid-row: 1 / 4; justify-self: start; min-width: 72px; padding: 5px 10px; color: var(--blue); background: var(--blue-soft); border-radius: 999px; font-size: .68rem; font-weight: 900; text-align: center; }
.related-notice--nursing .related-notice__tag { color: var(--pink-deep); background: var(--pink-soft); }
.related-notice strong { grid-column: 2; grid-row: 1; font-size: 1rem; line-height: 1.45; }
.related-notice > span:not(.related-notice__tag) { grid-column: 2; grid-row: 2; color: var(--muted); font-size: .76rem; }
.related-notice .official-site-badge { grid-column: 2; grid-row: 3; justify-self: start; margin-top: 5px; }
.related-notice i { grid-column: 3; grid-row: 1 / 4; justify-self: center; color: var(--blue); font-size: 1.1rem; font-style: normal; transition: transform .2s; }
.related-notice:hover i { transform: translate(3px,-3px); }
.related-notice--nursing i { color: var(--pink-deep); }

.faculty { background: var(--wash); }
.faculty-links { display: grid; grid-template-columns: 1fr 1fr; margin-top: 54px; }
.faculty-link { position: relative; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(34px, 5vw, 68px); overflow: hidden; color: #fff; isolation: isolate; }
.faculty-link::before { content: ""; position: absolute; z-index: -1; width: 240px; height: 240px; top: -110px; right: -80px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; box-shadow: 0 0 0 48px rgba(255,255,255,.05), 0 0 0 96px rgba(255,255,255,.035); }
.faculty-link--medicine { background: var(--blue); }
.faculty-link--nursing { background: var(--pink); }
.faculty-link__en { margin-bottom: 22px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em; }
.faculty-link strong { font-size: clamp(2.8rem, 5vw, 5.2rem); line-height: 1; }
.faculty-link__action { display: flex; justify-content: space-between; align-items: center; margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.55); font-size: 0.84rem; font-weight: 700; }
.faculty-link__action i { font-size: 1.5rem; font-style: normal; transition: transform 0.25s; }
.faculty-link:hover .faculty-link__action i { transform: translateX(8px); }

.admissions { padding: 72px 0; background: #fff; }
.admissions-card { display: grid; grid-template-columns: 106px 1fr auto; align-items: center; gap: 32px; min-height: 200px; padding: 30px 48px; border: 1px solid #b6d1e5; background: var(--blue-soft); transition: transform 0.25s, box-shadow 0.25s; }
.admissions-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.admissions-card__symbol { display: grid; place-items: center; width: 106px; height: 106px; padding: 13px; border-radius: 50%; background: #fff; }
.admissions-card__symbol img { width: 100%; height: 100%; object-fit: contain; }
.admissions-card__body { display: flex; flex-direction: column; }
.admissions-card__body .section-label { margin-bottom: 4px; }
.admissions-card__body strong { font-size: clamp(2rem, 4vw, 4.1rem); line-height: 1.2; }
.admissions-card__body > span:not(.section-label) { color: var(--muted); font-size: 0.88rem; }
.admissions-card__body .official-site-badge { align-self: flex-start; margin-top: 9px; }
.admissions-card__arrow { color: var(--blue); font-size: 2.4rem; }

.movie-streams { padding-bottom: 90px; overflow: hidden; background: var(--navy); }
.movie-streams .section-heading { margin-bottom: 68px; }
.video-rail { margin-top: 52px; }
.video-rail__heading { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; color: #fff; }
.video-rail__heading span { display: grid; place-items: center; width: 36px; height: 36px; color: var(--navy); background: #79c9ff; border-radius: 50%; font-size: 0.72rem; font-weight: 900; }
[data-video-rail="nursing"] .video-rail__heading span { background: #f6a0bf; }
.video-rail__heading h3 { margin: 0; font-size: 1.5rem; }
.video-rail__viewport { width: 100%; overflow: hidden; }
.video-rail__track { display: flex; width: max-content; animation: rail-move var(--rail-duration, 52s) linear infinite; will-change: transform; }
.video-rail--reverse .video-rail__track { animation-direction: reverse; }
.video-rail__viewport:hover .video-rail__track, .video-rail__viewport:focus-within .video-rail__track { animation-play-state: paused; }
.video-rail__set { display: flex; gap: 18px; padding-right: 18px; }

@keyframes rail-move { to { transform: translateX(-50%); } }

.movie-card { display: flex; flex-direction: column; min-width: 0; background: #fff; transition: transform 0.25s, box-shadow 0.25s; }
.movie-card:hover { transform: translateY(-5px); box-shadow: 0 20px 42px rgba(0,0,0,.22); }
.movie-card__media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #dfe7ed; }
.movie-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.movie-card:hover .movie-card__media img { transform: scale(1.035); }
.movie-card__play { position: absolute; left: 18px; bottom: 18px; display: grid; place-items: center; width: 46px; height: 46px; padding-left: 3px; color: #fff; background: var(--blue); border-radius: 50%; box-shadow: 0 8px 22px rgba(0,0,0,.22); font-size: 0.8rem; }
.movie-card__title { display: block; padding: 19px 20px 22px; color: var(--ink); font-size: 0.9rem; font-weight: 800; line-height: 1.65; }
.movie-card--compact { width: clamp(270px, 29vw, 390px); }
.movie-card--compact .movie-card__title { min-height: 86px; }
.movie-streams__footer { display: flex; justify-content: flex-end; margin-top: 68px; }

.living-alone { background: #f3eee3; }
.living-alone__card { position: relative; min-height: 430px; display: grid; grid-template-columns: 1fr .72fr; align-items: center; padding: clamp(44px, 7vw, 88px); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.living-alone__copy { position: relative; z-index: 2; max-width: 620px; }
.living-alone__copy h2 { margin-bottom: 24px; font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -.05em; }
.living-alone__copy > p:not(.section-label) { max-width: 560px; margin-bottom: 32px; color: var(--muted); }
.living-alone__motif { position: relative; z-index: 1; width: min(100%, 310px); height: 280px; justify-self: center; border-bottom: 10px solid #d6c29f; }
.living-alone__motif::before { content: ""; position: absolute; inset: 52px 38px 0; background: linear-gradient(90deg, transparent 48%, rgba(255,255,255,.8) 48% 52%, transparent 52%), linear-gradient(#d3b98d 0 0); border: 8px solid #b89968; box-shadow: 0 16px 0 #8aa6b2 inset; }
.living-alone__motif::after { content: ""; position: absolute; left: 50%; top: 4px; width: 180px; height: 100px; background: #d7e4e9; border: 8px solid #8aa6b2; transform: translateX(-50%); clip-path: polygon(50% 0,100% 66%,92% 66%,92% 100%,8% 100%,8% 66%,0 66%); }
.living-alone__motif span { position: absolute; z-index: 2; bottom: 34px; width: 34px; height: 56px; background: #fff4cf; border: 5px solid #b89968; }
.living-alone__motif span:nth-child(1) { left: 72px; }
.living-alone__motif span:nth-child(2) { left: 50%; transform: translateX(-50%); background: #5d7480; }
.living-alone__motif span:nth-child(3) { right: 72px; }

.access-info { color: #fff; background: var(--navy); }
.access-info .section-label { color: #7cc6ff; }
.access-info__grid { display: grid; grid-template-columns: minmax(340px, .65fr) minmax(0, 1.35fr); gap: clamp(54px, 7vw, 100px); align-items: start; }
.access-info__heading h2 { margin-bottom: 34px; font-size: clamp(2.6rem, 3.5vw, 3.55rem); line-height: 1.12; letter-spacing: -.05em; white-space: nowrap; }
.access-info__address { margin-bottom: 0; color: rgba(255,255,255,.72); font-size: .94rem; }
.access-info__options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.access-card { display: flex; flex-direction: column; min-width: 0; padding: 30px 28px; color: var(--ink); background: #fff; border-top: 5px solid var(--blue); }
.access-card--car { border-color: var(--yellow); }
.access-card__label { margin-bottom: 14px; color: var(--blue); font-size: .64rem; font-weight: 900; letter-spacing: .18em; }
.access-card--car .access-card__label { color: #8a6e00; }
.access-card h3 { margin-bottom: 18px; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.42; letter-spacing: -.02em; }
.access-card > p:not(.access-card__label), .access-card__routes p { color: var(--muted); font-size: .86rem; line-height: 1.72; }
.access-card__routes { margin-bottom: 24px; }
.access-card__routes p { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.access-card__routes strong { display: block; margin-bottom: 2px; color: var(--ink); }
.access-document { display: grid; grid-template-columns: 42px 1fr auto; gap: 13px; align-items: center; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.access-document__type { display: grid; place-items: center; width: 42px; height: 42px; color: #fff; background: var(--blue); font-size: .58rem; font-weight: 900; letter-spacing: .06em; }
.access-card--car .access-document__type { color: var(--navy); background: var(--yellow); }
.access-document strong, .access-document small { display: block; }
.access-document strong { font-size: .84rem; line-height: 1.45; }
.access-document small { margin-top: 3px; color: var(--muted); font-size: .67rem; }
.access-document i { color: var(--blue); font-size: 1.1rem; font-style: normal; transition: transform .2s; }
.access-document:hover i { transform: translate(3px,-3px); }
.access-info__detail { margin-top: 26px; }

.official-site-badge { display: inline-flex; align-items: center; width: max-content; padding: 3px 8px; color: #425668; background: #e4eaf0; border-radius: 999px; font-size: .58rem; font-weight: 900; line-height: 1.5; letter-spacing: .05em; }

.faq { background: var(--wash); }
.faq__grid { display: grid; grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr); gap: clamp(52px, 8vw, 110px); align-items: start; }
.faq .section-heading > p:last-child { color: var(--muted); }
.faq__list { border-top: 1px solid #b8c8d4; }
.faq details { border-bottom: 1px solid #b8c8d4; }
.faq summary { position: relative; display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 14px; align-items: center; padding: 23px 54px 23px 0; font-weight: 800; line-height: 1.7; list-style: none; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq summary span { display: grid; place-items: center; width: 36px; height: 36px; color: #fff; background: var(--blue); border-radius: 50%; font-size: .67rem; letter-spacing: .04em; }
.faq summary::after { content: "+"; position: absolute; right: 9px; top: 50%; color: var(--blue); font-size: 1.55rem; font-weight: 300; transform: translateY(-50%); }
.faq details[open] summary::after { content: "−"; }
.faq__answer { margin: -3px 54px 23px 56px; padding-left: 14px; color: var(--muted); border-left: 3px solid #b5d7f0; line-height: 1.9; }

.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 40px; min-width: 280px; padding: 18px 23px; color: #fff; font-size: 0.88rem; font-weight: 800; letter-spacing: .03em; transition: transform .22s, box-shadow .22s; }
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(4, 30, 54, 0.18); }
.button--light { color: var(--navy); background: #fff; }
.button--dark { background: var(--navy); }
.button--medicine { background: var(--blue); }
.button--nursing { background: var(--pink); }

.site-footer { padding: 64px 0 42px; background: #fff; border-top: 1px solid var(--line); }
.site-footer__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 36px; }
.footer-brand { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 8px; width: max-content; }
.footer-brand img { width: 250px; height: auto; }
.footer-brand span { color: var(--blue); font-size: .64rem; font-weight: 800; letter-spacing: .08em; }
.site-footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px 30px; font-size: .82rem; font-weight: 700; }
.footer-contact { grid-column: 1 / -1; display: grid; grid-template-columns: .55fr 1.45fr; gap: 26px 60px; margin-top: 18px; padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.footer-contact__title { display: flex; flex-direction: column; }
.footer-contact__title span { color: var(--blue); font-size: .65rem; font-weight: 900; letter-spacing: .2em; }
.footer-contact__title strong { margin-top: 5px; font-size: 1.45rem; }
.footer-contact address { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; font-style: normal; }
.footer-contact address div { display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; padding-left: 18px; border-left: 3px solid var(--blue); }
.footer-contact address div:last-child { border-color: var(--pink); }
.footer-contact address strong { grid-column: 1 / -1; font-size: .9rem; }
.footer-contact address a { color: var(--blue); font-size: .88rem; font-weight: 800; }
.footer-contact address span { color: var(--muted); font-size: .78rem; }
.footer-contact > p { grid-column: 2; margin: -10px 0 0; color: var(--muted); font-size: .72rem; }
.site-footer small { grid-column: 1 / -1; padding-top: 4px; color: #87939d; font-size: .65rem; letter-spacing: .12em; }

/* Faculty pages */
.page-faculty main, .page-movies main { padding-top: var(--header-height); }
.page-faculty #information, .page-faculty #archive, .page-faculty #photos, .page-faculty #precautions, .page-movies .movie-category { scroll-margin-top: calc(var(--header-height) + 62px); }
.faculty-hero { position: relative; min-height: 520px; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.faculty-hero--medicine { background: var(--blue); }
.faculty-hero--nursing { background: var(--pink); }
.faculty-hero::before { content: ""; position: absolute; width: 520px; height: 520px; right: -130px; top: -170px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 82px rgba(255,255,255,.05), 0 0 0 164px rgba(255,255,255,.035); }
.faculty-hero__inner { position: relative; z-index: 2; padding-bottom: 76px; }
.breadcrumbs { display: flex; gap: 10px; margin-bottom: 60px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 4px; }
.faculty-hero__en { margin-bottom: 12px; font-size: .72rem; font-weight: 800; letter-spacing: .22em; }
.faculty-hero h1 { margin: 0; font-size: clamp(3.4rem, 7vw, 7rem); font-weight: 900; letter-spacing: -.06em; }
.faculty-hero h1 span { font-size: .46em; letter-spacing: .02em; }
.faculty-hero__date { margin: 24px 0 0; font-size: .78rem; font-weight: 800; letter-spacing: .17em; }
.faculty-hero__number { position: absolute; right: max(28px, calc((100vw - 1180px) / 2)); bottom: 38px; color: rgba(255,255,255,.22); font-size: clamp(7rem, 18vw, 16rem); font-weight: 900; line-height: 1; letter-spacing: -.08em; }

.faculty-information { padding: 82px 0; }
.faculty-information__grid { display: grid; grid-template-columns: .8fr 1.3fr; gap: 80px; align-items: center; }
.faculty-information .section-heading h2 { margin-bottom: 0; font-size: clamp(2rem,4vw,3.8rem); }
.faculty-status { padding: 30px 34px; background: var(--wash); border-left: 5px solid var(--blue); }
.page-nursing .faculty-status { border-color: var(--pink); }
.faculty-status__year { margin-bottom: 8px; color: var(--blue); font-size: .72rem; font-weight: 900; letter-spacing: .18em; }
.page-nursing .faculty-status__year { color: var(--pink-deep); }
.faculty-status p:last-child { margin-bottom: 0; font-weight: 700; }
.faculty-notice { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 5px 16px; margin-top: 24px; padding: 19px 48px 19px 0; border-top: 1px solid #cbd8e1; }
.faculty-notice span { grid-column: 1 / -1; color: var(--blue); font-size: .6rem; font-weight: 900; letter-spacing: .18em; }
.faculty-notice--nursing span { color: var(--pink-deep); }
.faculty-notice strong { font-size: 1rem; }
.faculty-notice p { grid-column: 1; margin: 1px 0 0; color: var(--muted); font-size: .78rem; font-weight: 500; }
.faculty-notice .official-site-badge { grid-column: 1; margin-top: 5px; }
.faculty-notice i { position: absolute; right: 4px; bottom: 18px; color: var(--blue); font-size: 1.25rem; font-style: normal; }
.faculty-notice--nursing i { color: var(--pink-deep); }

.application-cta { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 18px; margin-top: 22px; padding: 21px 56px 21px 23px; overflow: hidden; color: #fff; background: var(--blue); box-shadow: 0 12px 28px rgba(0, 87, 168, .18); transition: transform .22s, box-shadow .22s; }
.application-cta--nursing { background: var(--pink-deep); box-shadow: 0 12px 28px rgba(185, 49, 99, .16); }
.application-cta > span { grid-column: 1 / -1; font-size: .64rem; font-weight: 900; letter-spacing: .12em; }
.application-cta strong { grid-column: 1; font-size: 1.05rem; line-height: 1.5; }
.application-cta small { grid-column: 1; color: rgba(255,255,255,.8); font-size: .72rem; line-height: 1.6; }
.application-cta i { position: absolute; right: 22px; top: 50%; font-size: 1.25rem; font-style: normal; transform: translateY(-50%); transition: transform .2s; }
.application-cta:not(.is-disabled):hover { transform: translateY(-3px); box-shadow: 0 17px 34px rgba(0, 87, 168, .24); }
.application-cta:not(.is-disabled):hover i { transform: translate(3px, calc(-50% - 3px)); }
.application-cta.is-disabled { color: #667582; background: rgba(255,255,255,.42); border: 1px dashed #bdc9d2; box-shadow: none; cursor: default; pointer-events: none; }
.application-cta.is-disabled > span { color: #596a78; }
.application-cta.is-disabled small { color: #71808c; }
.application-cta.is-disabled i { display: none; }

.archive { background: var(--wash); }
.archive__grid { display: grid; grid-template-columns: .95fr .72fr; gap: clamp(60px, 9vw, 128px); align-items: center; }
.archive__grid--reverse { grid-template-columns: .72fr .95fr; }
.archive__grid--reverse .archive__copy { order: 2; }
.archive__grid--reverse .leaflet-preview { order: 1; }
.archive__copy h2 { margin-bottom: 28px; font-size: clamp(2.25rem, 3.6vw, 3.65rem); line-height: 1.15; letter-spacing: -.045em; white-space: nowrap; }
.archive__copy h2 span { white-space: nowrap; }
.archive__copy > p:not(.section-label) { color: var(--muted); }
.document-meta { margin: 32px 0; border-top: 1px solid var(--line); }
.document-meta div { display: grid; grid-template-columns: 90px 1fr; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .84rem; }
.document-meta dt { color: var(--muted); }
.document-meta dd { margin: 0; font-weight: 700; }
.leaflet-preview { position: relative; display: block; width: min(100%, 430px); justify-self: center; padding: 22px; background: #fff; box-shadow: var(--shadow); transform: rotate(1.5deg); transition: transform .25s; }
.leaflet-preview:hover { transform: rotate(0) translateY(-6px); }
.leaflet-preview--nursing { transform: rotate(-1.5deg); }
.leaflet-preview img { width: 100%; height: auto; border: 1px solid #edf1f4; }
.leaflet-preview__tag { position: absolute; z-index: 2; top: 8px; right: -20px; padding: 8px 15px; color: #fff; background: var(--blue); font-size: .66rem; font-weight: 900; letter-spacing: .15em; }
.leaflet-preview--nursing .leaflet-preview__tag { background: var(--pink); }

.program-highlight { display: grid; grid-template-columns: minmax(240px, .82fr) auto minmax(320px, 1.18fr); gap: 28px 42px; align-items: center; margin-top: 70px; padding: 34px 40px; color: #fff; background: var(--navy); box-shadow: var(--shadow); }
.program-highlight .section-label { margin-bottom: 7px; color: #7cc6ff; }
.program-highlight h3 { margin: 0; font-size: clamp(1.65rem, 2.4vw, 2.35rem); line-height: 1.35; }
.program-highlight__badge { padding: 8px 13px; color: var(--navy); background: var(--yellow); border-radius: 999px; font-size: .72rem; font-weight: 900; white-space: nowrap; }
.program-highlight__copy { padding-left: 34px; border-left: 1px solid rgba(255,255,255,.28); }
.program-highlight__copy p { margin-bottom: 7px; color: rgba(255,255,255,.86); line-height: 1.75; }
.program-highlight__copy p:first-child { color: #fff; font-weight: 800; }
.program-highlight__copy p:last-child { margin-bottom: 0; font-size: .83rem; }
.photo-reserve { background: #fff; }
.photo-reserve--nursing { background: var(--pink-soft); }
.photo-placeholder { display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: 210px 210px; gap: 12px; margin-top: 50px; }
.photo-placeholder__lead, .photo-placeholder__slot { position: relative; display: flex; overflow: hidden; border: 1px dashed #9fb4c4; background: linear-gradient(135deg, #edf3f7, #f8fafb); }
.page-nursing .photo-placeholder__lead, .page-nursing .photo-placeholder__slot { border-color: #dbaabd; background: linear-gradient(135deg, #fdeef3, #fff); }
.photo-placeholder__lead { grid-row: 1 / 3; flex-direction: column; justify-content: flex-end; padding: 34px; }
.photo-placeholder__lead::before { content: "+"; position: absolute; right: 22px; top: 12px; color: #b6c6d1; font-size: 5rem; font-weight: 200; }
.photo-placeholder__lead span { color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .2em; }
.page-nursing .photo-placeholder__lead span { color: var(--pink-deep); }
.photo-placeholder__lead strong { font-size: clamp(1.7rem, 4vw, 3.2rem); line-height: 1.1; }
.photo-placeholder__slot { align-items: flex-end; justify-content: flex-end; padding: 15px; color: #93a4b0; font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.photo-placeholder__slot::after { content: ""; position: absolute; left: 50%; top: 50%; width: 54px; height: 40px; border: 1px solid #b9c7d0; transform: translate(-50%,-50%); }
.photo-placeholder__slot::before { content: ""; position: absolute; z-index: 1; left: 50%; top: 50%; width: 10px; height: 10px; border: 1px solid #b9c7d0; border-radius: 50%; transform: translate(-50%,-50%); }

.event-report { overflow: hidden; background: #fff; }
.event-report__heading { max-width: 780px; margin-inline: auto; }
.event-report__story { margin-top: clamp(64px, 8vw, 108px); border-bottom: 1px solid var(--line); }
.report-chapter { display: grid; grid-template-columns: minmax(190px, .38fr) minmax(0, 1.62fr); gap: clamp(36px, 5vw, 70px); padding: clamp(52px, 6.5vw, 82px) 0; border-top: 1px solid var(--line); }
.report-chapter__header { position: relative; align-self: start; padding-top: 46px; }
.report-chapter__number { position: absolute; z-index: 0; top: -36px; left: -8px; color: #edf3f7; font-size: clamp(5rem, 8vw, 8rem); font-weight: 900; line-height: 1; letter-spacing: -.08em; }
.report-chapter__eyebrow { position: relative; z-index: 1; margin-bottom: 14px; color: var(--blue); font-size: .67rem; font-weight: 900; letter-spacing: .2em; }
.report-chapter h3 { position: relative; z-index: 1; margin-bottom: 18px; font-size: clamp(1.55rem, 2.4vw, 2.25rem); letter-spacing: -.04em; }
.report-title--lines > span { display: block; }
.report-title--lines > span + span { margin-top: .14em; }
@media (min-width: 721px) {
  .report-chapter h3.report-title--compact { font-size: clamp(1.3rem, 1.65vw, 1.45rem); line-height: 1.38; letter-spacing: -.025em; }
  .report-title--nowrap { white-space: nowrap; }
  .report-title--lines > span { white-space: nowrap; }
}
.report-chapter__header > p:last-of-type { position: relative; z-index: 1; margin-bottom: 0; color: var(--muted); font-size: .9rem; line-height: 1.9; }
.report-chapter__controls { display: none; }
.report-gallery { display: grid; min-width: 0; gap: 14px; align-self: start; }
.report-gallery--four, .report-gallery--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.report-gallery--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.report-gallery--five { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.report-gallery--five > .report-photo:nth-child(-n + 3) { grid-column: span 2; }
.report-gallery--five > .report-photo:nth-child(n + 4) { grid-column: span 3; }
.report-gallery--seven { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.report-gallery--seven > .report-photo:nth-child(-n + 4) { grid-column: span 3; }
.report-gallery--seven > .report-photo:nth-child(n + 5) { grid-column: span 4; }
.page-nursing .report-gallery--campus-life { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.page-nursing .report-gallery--campus-life > .report-photo:nth-child(-n + 3) { grid-column: span 4; }
.page-nursing .report-gallery--campus-life > .report-photo:nth-child(4) { grid-column: 4 / span 3; }
.page-nursing .report-gallery--campus-life > .report-photo:nth-child(5) { grid-column: 7 / span 3; }
.report-gallery--single { grid-template-columns: minmax(0, 1fr); max-width: 780px; }
.report-photo { position: relative; display: flex; min-width: 0; margin: 0; overflow: hidden; flex-direction: column; background: #fff; border: 1px solid var(--line); }
.report-photo img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .45s ease; }
.report-photo:hover img { transform: scale(1.025); }
.report-photo figcaption { position: relative; z-index: 2; display: flex; min-height: 58px; padding: 13px 16px 13px 19px; align-items: center; color: var(--ink); background: #fff; border-top: 1px solid var(--line); line-height: 1.4; }
.report-photo figcaption::before { content: ""; position: absolute; top: 13px; bottom: 13px; left: 0; width: 4px; background: var(--blue); }
.report-photo figcaption strong { font-size: clamp(.8rem, 1vw, .98rem); font-weight: 800; }
.report-gallery--single .report-photo figcaption strong { font-size: clamp(.95rem, 1.4vw, 1.15rem); }
.page-nursing .event-report .section-label,
.page-nursing .report-chapter__eyebrow { color: var(--pink-deep); }
.page-nursing .report-chapter__number { color: #faedf2; }
.page-nursing .report-chapter h3 { font-size: clamp(1.45rem, 1.9vw, 1.75rem); }
@media (min-width: 721px) {
  .page-nursing .report-chapter h3.report-title--compact { font-size: clamp(1.3rem, 1.65vw, 1.45rem); }
}
.page-nursing .report-photo figcaption::before { background: var(--pink-deep); }
.page-nursing .report-chapter--closing { padding-inline: clamp(18px, 3vw, 38px); background: linear-gradient(135deg, #fff7fa, var(--pink-soft)); }

.precautions { background: #f4f7f9; }
.precautions--nursing { background: #fff; }
.precautions__grid { display: grid; grid-template-columns: minmax(240px, .5fr) minmax(0, 1.5fr); gap: clamp(46px, 7vw, 94px); align-items: start; }
.precautions .section-heading h2 { font-size: clamp(2.5rem, 4vw, 4rem); white-space: nowrap; }
.precautions__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 34px; margin: 0; padding: 0; border-top: 1px solid #b9c8d3; list-style: none; }
.precautions__list li { position: relative; padding: 18px 4px 18px 24px; border-bottom: 1px solid #cdd7df; font-size: .88rem; line-height: 1.85; }
.precautions__list li::before { content: ""; position: absolute; left: 5px; top: 28px; width: 7px; height: 7px; background: var(--blue); border-radius: 50%; }
.precautions--nursing .precautions__list li::before { background: var(--pink-deep); }

.page-links { padding-top: 0; }
.page-links__grid { display: grid; grid-template-columns: 1fr 1fr; }
.page-link { display: grid; grid-template-columns: 1fr auto; padding: 42px 44px; color: #fff; }
.page-link--medicine { background: var(--blue); }
.page-link--nursing { background: var(--pink); }
.page-link--movie { background: var(--navy); }
.page-link span { grid-column: 1 / -1; margin-bottom: 10px; font-size: .66rem; font-weight: 800; letter-spacing: .18em; }
.page-link strong { font-size: 2rem; }
.page-link i { align-self: center; font-size: 1.5rem; font-style: normal; transition: transform .2s; }
.page-link:hover i { transform: translateX(8px); }

/* Page indexes and movie library */
.section-index { position: sticky; top: 72px; z-index: 20; background: #fff; box-shadow: 0 8px 28px rgba(3,30,50,.08); }
.section-index__inner { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.section-index a { display: flex; align-items: center; justify-content: center; gap: 12px; min-width: 0; padding: 18px; border-left: 1px solid var(--line); font-size: .86rem; font-weight: 800; white-space: nowrap; }
.section-index a:last-child { border-right: 1px solid var(--line); }
.section-index a span { color: var(--blue); font-size: .67rem; }
.section-index--nursing a span { color: var(--pink-deep); }

.movie-hero { position: relative; min-height: 620px; overflow: hidden; color: #fff; background: linear-gradient(135deg, #003d77 0%, #006fc0 100%); }
.movie-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.12), transparent 65%); }
.movie-hero__inner { position: relative; z-index: 2; min-height: 620px; padding-top: 46px; display: flex; align-items: center; }
.breadcrumbs--light { position: absolute; top: 38px; left: 0; color: #fff; }
.movie-hero__copy { position: relative; z-index: 2; max-width: 760px; }
.movie-hero__eyebrow { margin-bottom: 16px; font-size: .75rem; font-weight: 800; letter-spacing: .24em; }
.movie-hero h1 { margin-bottom: 5px; font-size: clamp(4rem, 10vw, 9rem); font-weight: 900; line-height: .85; letter-spacing: -.075em; }
.movie-hero h1 span { color: var(--yellow); }
.movie-hero__ja { margin-bottom: 26px; font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 800; }
.movie-hero__copy > p:last-child { max-width: 600px; margin-bottom: 0; color: rgba(255,255,255,.84); }
.movie-category { background: #fff; }
.movie-category--medicine { background: var(--blue-soft); }
.movie-category--nursing { background: var(--pink-soft); }
.movie-category__heading { display: flex; align-items: center; gap: 26px; margin-bottom: 54px; }
.movie-category__heading > span { color: var(--blue); font-size: clamp(3.2rem, 7vw, 6.5rem); font-weight: 900; line-height: 1; letter-spacing: -.07em; }
.movie-category--nursing .movie-category__heading > span { color: var(--pink); }
.movie-category__heading p { margin-bottom: 4px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .18em; }
.movie-category__heading h2 { margin: 0; font-size: clamp(2.2rem, 5vw, 4.2rem); }
.movie-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.movie-grid .movie-card { box-shadow: 0 14px 36px rgba(4, 30, 54, .08); }
.movie-grid .movie-card__title { min-height: 102px; }
.movie-subcategory + .movie-subcategory { margin-top: 88px; }
.movie-subcategory__heading { display: flex; align-items: baseline; gap: 20px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 2px solid rgba(223, 91, 136, .35); }
.movie-subcategory__heading span { color: var(--pink-deep); font-size: .7rem; font-weight: 900; letter-spacing: .18em; }
.movie-subcategory__heading h3 { margin: 0; font-size: 1.7rem; }
.interview-reading { margin-top: 96px; padding-top: 54px; border-top: 1px solid rgba(185, 49, 99, .28); }
.interview-reading__heading { max-width: 760px; }
.interview-reading__heading .section-label { margin-bottom: 10px; color: var(--pink-deep); }
.interview-reading__heading h3 { margin-bottom: 16px; font-size: clamp(2rem, 3.4vw, 3.25rem); letter-spacing: -.035em; }
.interview-reading__heading > p:last-child { margin-bottom: 0; color: var(--muted); }
.interview-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 36px; }
.interview-link { position: relative; display: flex; flex-direction: column; min-height: 260px; padding: 31px 34px; overflow: hidden; background: #fff; border: 1px solid rgba(185, 49, 99, .22); box-shadow: 0 14px 36px rgba(4, 30, 54, .07); transition: transform .22s, box-shadow .22s; }
.interview-link::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 5px; background: var(--pink); }
.interview-link--alumni::before { background: var(--navy); }
.interview-link:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(4, 30, 54, .13); }
.interview-link__source { align-self: flex-start; margin-bottom: 18px; padding: 4px 9px; color: var(--pink-deep); background: var(--pink-soft); border-radius: 999px; font-size: .62rem; font-weight: 900; letter-spacing: .04em; }
.interview-link--alumni .interview-link__source { color: #fff; background: var(--navy); }
.interview-link strong { font-size: clamp(1.45rem, 2.4vw, 2rem); line-height: 1.4; }
.interview-link p { margin: 12px 0 26px; color: var(--muted); font-size: .87rem; line-height: 1.8; }
.interview-link__action { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); color: var(--pink-deep); font-size: .8rem; font-weight: 900; }
.interview-link--alumni .interview-link__action { color: var(--navy); }
.interview-link__action i { font-size: 1.2rem; font-style: normal; transition: transform .2s; }
.interview-link:hover .interview-link__action i { transform: translate(3px, -3px); }
.movie-back { text-align: center; }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 40px, 900px); }
  .site-header { padding-inline: 20px; }
  .menu-button { position: relative; z-index: 102; display: block; }
  .global-menu { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 100px 8vw 40px; overflow-y: auto; background: #fff; visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity .2s, transform .2s, visibility .2s; }
  .global-menu.is-open { visibility: visible; opacity: 1; transform: none; }
  .global-menu a { padding: 16px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .global-menu a::after { display: none; }
  .global-menu a[aria-current="page"] { padding-left: 16px; background: var(--blue-soft); box-shadow: inset 4px 0 var(--blue); }
  .global-menu .nav-accent { margin-top: 16px; text-align: center; }
  .global-menu .header-social { align-self: flex-start; margin-top: 24px; padding-left: 0; }
  .global-menu .header-social .sns-link { width: 36px; height: 36px; padding: 0; border: 0; }
  .global-menu .header-social .sns-link img { width: 32px; height: 32px; }
  .information__layout, .faculty-information__grid { grid-template-columns: 1fr; gap: 32px; }
  .archive__grid, .archive__grid--reverse { grid-template-columns: 1fr 0.8fr; gap: 50px; }
  .archive__grid--reverse .archive__copy { order: 1; }
  .archive__grid--reverse .leaflet-preview { order: 2; }
  .access-info__grid { grid-template-columns: 1fr; gap: 42px; }
  .movie-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  :root { --header-height: 70px; --shell: calc(100% - 32px); }
  .section { padding: 72px 0; }
  .site-header, .site-header.is-scrolled { min-height: var(--header-height); padding: 10px 16px; }
  .site-brand { gap: 8px; }
  .site-brand__university { width: 138px; }
  .site-brand__special { min-height: 32px; padding-left: 8px; }
  .site-brand__special strong { font-size: .58rem; letter-spacing: .05em; }
  .site-brand__special small { margin-top: 4px; font-size: .42rem; letter-spacing: .14em; }
  .hero { min-height: max(680px, 100svh); }
  .hero__video { object-position: 56% center; }
  .hero__veil { background: linear-gradient(0deg, rgba(2,18,32,.66) 0%, rgba(2,18,32,.08) 66%); }
  .hero__content { left: 24px; right: 24px; bottom: 68px; }
  .hero h1 { font-size: clamp(3.8rem, 21vw, 6.3rem); }
  .hero__eyebrow { font-size: .6rem; }
  .hero__catch { margin-top: 20px; font-size: .82rem; letter-spacing: .08em; }
  .oc-signature__inner { min-height: 156px; gap: 22px; }
  .oc-signature__mark { flex-basis: 78px; height: 106px; padding-right: 20px; }
  .oc-signature__mark img { width: 52px; }
  .oc-signature__copy span { margin-bottom: 8px; font-size: .48rem; letter-spacing: .16em; }
  .oc-signature__copy strong { font-size: clamp(1.55rem, 9vw, 2.3rem); }
  .oc-signature__copy small { margin-top: 9px; padding-top: 7px; font-size: .45rem; letter-spacing: .18em; }
  .hero__scroll { display: none; }
  .video-control { top: calc(var(--header-height) + 12px); right: 14px; }
  .information__layout { gap: 28px; }
  .status-panel { gap: 18px; padding: 26px 22px; }
  .status-panel__label { font-size: 1.05rem; }
  .related-notices { grid-template-columns: 1fr; gap: 18px; padding: 24px 22px; }
  .related-notices__heading strong { max-width: none; }
  .related-notice { grid-template-columns: minmax(0, 1fr) 28px; grid-template-rows: auto auto auto auto; gap: 3px 14px; padding: 15px 0; }
  .related-notice__tag { grid-column: 1; grid-row: 1; margin-bottom: 5px; }
  .related-notice strong { grid-column: 1; grid-row: 2; }
  .related-notice > span:not(.related-notice__tag) { grid-column: 1; grid-row: 3; }
  .related-notice .official-site-badge { grid-column: 1; grid-row: 4; }
  .related-notice i { grid-column: 2; grid-row: 1 / 5; }
  .faculty-links { grid-template-columns: 1fr; margin-top: 36px; }
  .faculty-link { min-height: 260px; padding: 34px 28px; }
  .admissions-card { grid-template-columns: 70px 1fr; gap: 18px; min-height: 0; padding: 26px 22px; }
  .admissions-card__symbol { width: 70px; height: 70px; padding: 8px; }
  .admissions-card__arrow { display: none; }
  .admissions-card__body strong { font-size: 2rem; }
  .movie-streams .section-heading { margin-bottom: 48px; }
  .movie-card--compact { width: 280px; }
  .video-rail__viewport { overflow-x: auto; scrollbar-width: thin; }
  .movie-streams__footer { justify-content: stretch; }
  .living-alone__card { grid-template-columns: 1fr; min-height: 0; padding: 38px 26px; }
  .living-alone__motif { display: none; }
  .access-info__heading h2 { font-size: clamp(2.2rem, 12vw, 3rem); }
  .access-info__options { grid-template-columns: 1fr; }
  .access-card { padding: 26px 22px; }
  .faq__grid { grid-template-columns: 1fr; gap: 34px; }
  .faq summary { grid-template-columns: 36px minmax(0, 1fr); gap: 12px; padding: 20px 42px 20px 0; }
  .faq summary span { width: 32px; height: 32px; }
  .faq__answer { margin: -2px 8px 22px 44px; }
  .button { width: 100%; min-width: 0; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .footer-brand img { width: 220px; }
  .site-footer__links { justify-content: flex-start; }
  .footer-contact { grid-template-columns: 1fr; gap: 24px; }
  .footer-contact address { grid-template-columns: 1fr; gap: 22px; }
  .footer-contact > p { grid-column: 1; margin: 0; }
  .site-footer small { grid-column: auto; }
  .faculty-hero { min-height: 450px; }
  .faculty-hero__inner { padding-bottom: 52px; }
  .breadcrumbs { margin-bottom: 52px; }
  .faculty-hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .faculty-hero__number { right: 16px; bottom: 25px; font-size: 7rem; }
  .faculty-information__grid { gap: 24px; }
  .faculty-status { padding: 25px 22px; }
  .application-cta { padding: 20px 46px 20px 20px; }
  .archive__grid, .archive__grid--reverse { grid-template-columns: 1fr; }
  .archive__grid--reverse .archive__copy, .archive__grid--reverse .leaflet-preview { order: initial; }
  .archive__copy h2 { white-space: normal; }
  .leaflet-preview { width: min(86%, 400px); margin-top: 12px; }
  .program-highlight { grid-template-columns: 1fr; gap: 22px; margin-top: 50px; padding: 30px 24px; }
  .program-highlight__badge { justify-self: start; }
  .program-highlight__copy { padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.28); border-left: 0; }
  .photo-placeholder { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 150px 150px; }
  .photo-placeholder__lead { grid-column: 1 / 3; grid-row: 1; }
  .event-report__heading { text-align: left; }
  .event-report__heading > p:last-child { margin-inline: 0; }
  .event-report__story { margin-top: 48px; }
  .report-chapter { display: block; padding: 54px 0; }
  .report-chapter__header { padding-top: 28px; }
  .report-chapter__number { top: -22px; left: -3px; font-size: 5.4rem; }
  .report-chapter__eyebrow { margin-bottom: 10px; }
  .report-chapter h3 { margin-bottom: 13px; font-size: clamp(1.65rem, 8vw, 2.1rem); }
  .report-chapter__header > p:last-of-type { font-size: .84rem; line-height: 1.8; }
  .report-chapter__controls { position: relative; z-index: 2; display: flex; align-items: center; gap: 9px; margin-top: 22px; }
  .report-chapter__controls button { display: grid; width: 38px; height: 38px; padding: 0; place-items: center; color: var(--blue); background: #fff; border: 1px solid #b9cfdf; border-radius: 50%; cursor: pointer; }
  .page-nursing .report-chapter__controls button { color: var(--pink-deep); border-color: #d9a7ba; }
  .report-chapter__controls button:disabled { color: #9eabb5; border-color: #d7dfe4; cursor: default; opacity: .58; }
  .report-chapter__controls > span { min-width: 48px; color: var(--muted); font-size: .69rem; font-weight: 800; letter-spacing: .1em; text-align: center; }
  .report-gallery, .report-gallery--four, .report-gallery--three, .report-gallery--two, .report-gallery--five, .report-gallery--seven { width: calc(100vw - 16px); max-width: none; grid-template: none; grid-auto-flow: column; grid-auto-columns: min(82vw, 354px); gap: 12px; margin-top: 27px; margin-right: -16px; padding: 0 16px 4px 0; overflow-x: auto; overscroll-behavior-x: contain; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .report-gallery::-webkit-scrollbar { display: none; }
  .report-gallery:focus-visible { outline-offset: 3px; }
  .report-photo { scroll-snap-align: start; scroll-snap-stop: always; }
  .report-gallery--five > .report-photo:nth-child(n),
  .report-gallery--seven > .report-photo:nth-child(n) { grid-column: auto; }
  .page-nursing .report-gallery--campus-life > .report-photo:nth-child(n) { grid-column: auto; }
  .report-photo figcaption { min-height: 54px; padding: 11px 13px 11px 16px; }
  .report-photo figcaption::before { top: 11px; bottom: 11px; width: 3px; }
  .report-photo figcaption strong, .report-gallery--single .report-photo figcaption strong { font-size: .84rem; }
  .report-chapter--single .report-gallery { display: block; width: 100%; margin-right: 0; padding: 0; overflow: visible; }
  .precautions__grid { grid-template-columns: 1fr; gap: 32px; }
  .precautions__list { grid-template-columns: 1fr; }
  .page-links__grid { grid-template-columns: 1fr; }
  .page-link { padding: 30px 26px; }
  .movie-hero, .movie-hero__inner { min-height: 590px; }
  .movie-hero__inner { padding-top: 52px; align-items: center; }
  .movie-hero h1 { font-size: clamp(3.7rem, 18vw, 6rem); }
  .section-index { top: var(--header-height); overflow-x: auto; }
  .section-index__inner { width: max-content; min-width: 100%; }
  .section-index a { min-width: 145px; padding-inline: 16px; }
  .movie-category__heading { gap: 16px; margin-bottom: 36px; }
  .movie-grid { grid-template-columns: 1fr; gap: 20px; }
  .movie-grid .movie-card__title { min-height: 0; }
  .movie-subcategory + .movie-subcategory { margin-top: 64px; }
  .interview-reading { margin-top: 70px; padding-top: 42px; }
  .interview-links { grid-template-columns: 1fr; }
  .interview-link { min-height: 0; padding: 27px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .video-rail__viewport { overflow-x: auto; }
  .video-rail__track { animation: none; }
  .report-gallery { scroll-behavior: auto; }
}
