:root {
  --blue-950: #003767;
  --blue-900: #00467f;
  --blue-800: #00549a;
  --blue-700: #0068b7;
  --blue-500: #1599d5;
  --sky-100: #eaf6fb;
  --sky-050: #f5fafc;
  --ink: #17242f;
  --muted: #5d6a74;
  --line: #dce6ec;
  --white: #ffffff;
  --max: 1180px;
  --media-inset: 6px;
  --shadow: 0 20px 60px rgba(0, 62, 109, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 999;
  padding: 12px 18px; color: #fff; background: var(--blue-950);
  border-radius: 8px; transition: top .2s;
}
.skip-link:focus { top: 16px; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(220,230,236,.9);
  backdrop-filter: blur(14px);
}
.header-top { border-bottom: 1px solid #edf2f5; }
.header-top .shell {
  min-height: 36px; display: flex; justify-content: flex-end; align-items: center;
  gap: 22px; color: #677681; font-size: 12px; letter-spacing: .02em;
}
.header-top a:hover { color: var(--blue-700); }
.header-main { min-height: 104px; display: flex; align-items: center; gap: 44px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width:220px; height:auto; transition:filter .2s ease,transform .2s ease; }
.brand:hover img,.brand:focus-visible img { filter:brightness(1.12) saturate(1.5) hue-rotate(-7deg); transform:translateY(-1px); }
.main-nav { margin-left: auto; align-self: stretch; display:flex; align-items:center; }
.main-nav ul { height: 100%; display: flex; align-items: center; margin: 0; padding: 0; list-style: none; }
.main-nav li { height:100%; display:flex; align-items:center; }
.main-nav a {
  position: relative; display: flex; height:100%; min-height:104px; align-items: center; padding: 0 26px;
  font-size: 19px; font-weight: 800; color: #263844; letter-spacing: -.035em;
}
.main-nav a::after {
  content: ""; position: absolute; left: 26px; right: 26px; bottom: 0; height: 3px;
  background: var(--blue-700); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--blue-800); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle {
  display: none; width: 44px; height: 44px; margin-left: auto; padding: 0;
  border: 0; border-radius: 50%; background: var(--sky-100); color: var(--blue-900);
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: ""; display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: .25s;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: 650px; display: grid; grid-template-columns: minmax(390px, 42%) 1fr;
  overflow: hidden; background: var(--blue-950);
}
.hero-copy {
  position: relative; isolation: isolate; padding: 96px max(48px, calc((100vw - var(--max))/2));
  padding-right: 64px; display: flex; flex-direction: column; justify-content: center; color: #fff;
  background: linear-gradient(145deg, #003867 0%, #005795 62%, #0075bd 100%);
}
.hero-copy::after {
  content: ""; position: absolute; width: 280px; height: 280px; right: -110px; bottom: -110px;
  z-index: -1; border: 48px solid rgba(255,255,255,.08); border-radius: 46% 54% 62% 38%; transform: rotate(28deg);
}
.eyebrow { margin: 0 0 22px; color: #8ed8f3; font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { margin: 0; font-size: clamp(44px, 5.1vw, 78px); line-height: 1.03; letter-spacing: -.055em; }
.hero h1 em { display: block; margin-top: 12px; color: #87daf5; font-style: normal; }
.hero-lead { max-width: 480px; margin: 30px 0 0; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 22px;
  border: 1px solid transparent; border-radius: 3px; font-weight: 750; font-size: 14px; transition: .25s;
}
.button::after { content: "→"; font-size: 18px; }
.button-primary { color: var(--blue-900); background: #fff; }
.button-primary:hover { background: #dff5ff; transform: translateY(-2px); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.button-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero-visual { position: relative; min-width:0; overflow:hidden; background:#d9eaf3; }
.hero-slides, .hero-slide { position:absolute; inset:0; }
.hero-slide {
  margin:0; padding:var(--media-inset); display:grid; place-items:center; opacity:0; pointer-events:none;
  transition:opacity .8s ease; isolation:isolate; overflow:hidden;
}
.hero-slide::before {
  content:""; position:absolute; inset:-30px; z-index:-2; background-image:var(--slide);
  background-position:center; background-size:cover; filter:blur(22px); transform:scale(1.08); opacity:.48;
}
.hero-slide::after { content:""; position:absolute; inset:0; z-index:-1; background:rgba(233,246,251,.34); backdrop-filter:blur(2px); }
.hero-slide.active { opacity:1; pointer-events:auto; }
.hero-slide img { width:100%; height:100%; object-fit:contain; filter:drop-shadow(0 18px 38px rgba(0,43,78,.18)); }
.slider-controls { position:absolute; z-index:5; left:28px; right:28px; bottom:20px; display:flex; align-items:center; justify-content:space-between; }
.slider-arrow { width:42px; height:42px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.7); border-radius:50%; color:#fff; background:rgba(0,55,103,.56); cursor:pointer; transition:.2s; }
.slider-arrow:hover { background:var(--blue-800); transform:translateY(-2px); }
.slider-dots { display:flex; gap:9px; }
.slider-dot { width:28px; height:5px; padding:0; border:0; border-radius:5px; background:rgba(255,255,255,.55); cursor:pointer; }
.slider-dot.active { background:#fff; }
.hero-mark { position: absolute; right: 40px; bottom: 40px; color: #fff; writing-mode: vertical-rl; font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }

.section { padding: 112px 0; }
.section-soft { background: var(--sky-050); }
.section-dark { color: #fff; background: var(--blue-950); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; margin-bottom: 46px; }
.section-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.14; letter-spacing: -.05em; }
.section-heading p { max-width: 500px; margin: 0; color: var(--muted); line-height: 1.8; }
.section-dark .section-heading p { color: rgba(255,255,255,.68); }
.kicker { display: block; margin-bottom: 13px; color: var(--blue-700); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.section-dark .kicker { color: #7ad1ef; }

.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-card { min-height: 290px; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; transition: .25s; }
.feature-card:hover { position: relative; z-index: 1; transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-number { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; color: #fff; background: var(--blue-700); border-radius: 50%; font-size: 12px; font-weight: 800; }
.feature-card h3 { margin: 48px 0 12px; font-size: 25px; letter-spacing: -.04em; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.text-link { display: inline-flex; gap: 10px; margin-top: 22px; color: var(--blue-800); font-size: 13px; font-weight: 800; }
.text-link::after { content: "↗"; }

.video-panel { display: grid; grid-template-columns: 1fr 1.45fr; align-items: stretch; background: #fff; box-shadow: var(--shadow); }
.video-copy { padding: 54px; background: linear-gradient(155deg, #e8f5fa 0%, #f7fbfd 100%); }
.video-copy h2 { margin: 0; color: var(--blue-950); font-size: clamp(32px, 4vw, 48px); letter-spacing: -.05em; }
.video-copy p { margin: 24px 0 0; color: var(--muted); line-height: 1.8; }
.video-wrap { min-height: 390px; background: #001e34; }
.video-wrap video { width: 100%; height: 100%; object-fit: cover; }

.branch-strip { display: grid; grid-template-columns: 1.4fr repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.16); }
.branch-strip article { min-height: 190px; padding: 28px 24px; background: rgba(255,255,255,.06); }
.branch-strip article:first-child { background: rgba(255,255,255,.12); }
.branch-strip h3 { margin: 0 0 13px; font-size: 18px; }
.branch-strip p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.75; }
.branch-strip a { display: inline-block; margin-top: 12px; color: #8ed8f3; font-weight: 700; }

.page-hero { position: relative; overflow: hidden; padding: 92px 0 0; background: linear-gradient(110deg,#f6fafc 0%,#eef7fb 65%,#fff 100%); }
.page-hero::before { content:""; position:absolute; width:360px; height:360px; right:-100px; top:-180px; border:70px solid rgba(0,104,183,.07); border-radius:50%; }
.breadcrumbs { display: flex; gap: 10px; align-items: center; color: #73828c; font-size: 12px; }
.breadcrumbs span::before { content:"/"; margin-right:10px; color:#a5b1b8; }
.page-hero-inner { padding: 34px 0 48px; }
.page-hero h1 { margin: 0; font-size: clamp(44px,7vw,74px); letter-spacing: -.055em; }
.page-hero p { max-width: 660px; margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.8; }

.split-story { display:grid; grid-template-columns: 1fr 1fr; gap:64px; align-items:center; }
.story-visual { margin:0; padding:var(--media-inset); display:flex; align-items:center; justify-content:center; overflow:hidden; border:1px solid var(--line); background:#fff; }
.story-visual img { display:block; width:100%; height:auto; object-fit:contain; }
.story-copy h2 { margin:0; font-size:clamp(34px,4vw,52px); line-height:1.18; letter-spacing:-.05em; }
.story-copy p { margin:24px 0 0; color:var(--muted); line-height:2; }
.story-copy strong { color:var(--blue-800); }
.values { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:44px; }
.value-card { padding:30px; border-top:3px solid var(--blue-700); background:#fff; box-shadow:0 10px 35px rgba(0,60,105,.08); }
.value-card h3 { margin:0 0 10px; font-size:19px; }
.value-card p { margin:0; color:var(--muted); font-size:14px; line-height:1.75; }

.product-group + .product-group { margin-top:90px; }
.product-group-head { display:flex; align-items:end; justify-content:space-between; gap:24px; margin-bottom:28px; padding-bottom:20px; border-bottom:1px solid var(--line); }
.product-group h2 { margin:0; font-size:clamp(30px,4vw,44px); letter-spacing:-.045em; }
.product-group h2 small { color:var(--muted); font-size:.48em; font-weight:500; letter-spacing:-.02em; }
.product-group-head p { margin:0; color:var(--muted); }
.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.product-grid.single { grid-template-columns:minmax(280px,390px); }
.product-card { overflow:hidden; border:1px solid var(--line); background:#fff; transition:.25s; }
.product-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); border-color:#c1d8e5; }
.product-photo { height:240px; margin:0; padding:var(--media-inset); display:flex; align-items:center; justify-content:center; background:#fff; }
.product-photo img { display:block; width:100%; height:100%; object-fit:contain; }
.product-card-body { padding:25px 26px 28px; }
.product-type { margin:0 0 8px; color:#eb503f; font-size:11px; font-weight:900; letter-spacing:.12em; }
.product-card h3 { margin:0; color:var(--blue-900); font-size:26px; line-height:1.08; letter-spacing:-.03em; }
.product-card p:last-child { margin:12px 0 0; color:var(--muted); font-size:14px; line-height:1.65; }
.training-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.training-card { overflow:hidden; border:1px solid var(--line); background:#fff; }
.training-card.wide { grid-column:1/-1; display:grid; grid-template-columns:1.3fr 1fr; }
.training-photo { margin:0; padding:var(--media-inset); display:flex; align-items:center; justify-content:center; overflow:hidden; background:#fff; }
.training-photo img { display:block; width:100%; height:auto; object-fit:contain; }
.training-copy { padding:34px; }
.training-copy h2 { margin:0; font-size:30px; letter-spacing:-.04em; }
.training-copy p { margin:14px 0 0; color:var(--muted); line-height:1.8; }
.training-tag { color:var(--blue-700); font-size:12px; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }

.contact-layout { display:grid; grid-template-columns:.9fr 1.4fr; gap:34px; }
.route-card { position:relative; overflow:hidden; min-height:520px; padding:48px; color:#fff; background:linear-gradient(155deg,var(--blue-950),#0068b7); }
.route-card::after { content:""; position:absolute; width:360px; height:360px; right:-160px; bottom:-150px; border:50px solid rgba(255,255,255,.1); border-radius:50%; }
.route-card > * { position:relative; z-index:1; }
.route-title { display:flex; align-items:flex-start; justify-content:space-between; gap:18px; }
.route-title .branch-map-button { margin-top:4px; }
.route-card h2 { margin:0; font-size:38px; letter-spacing:-.045em; }
.route-card p { max-width:420px; margin:18px 0 0; color:rgba(255,255,255,.76); line-height:1.8; }
.mini-map { position:relative; height:300px; margin:32px 0 22px; overflow:hidden; border:8px solid rgba(255,255,255,.18); border-radius:18px; background:#f5f8fa; box-shadow:0 18px 42px rgba(0,28,54,.28); }
.map-road { position:absolute; height:18px; border-radius:20px; background:#dde4e8; }
.map-road.r1 { width:132%; left:-14%; top:48%; transform:rotate(8deg); }
.map-road.r2 { width:92%; right:-20%; top:22%; transform:rotate(-34deg); }
.map-road.r3 { width:88%; left:10%; bottom:13%; transform:rotate(-7deg); }
.map-route { position:absolute; left:21%; top:31%; width:57%; height:37%; border-top:5px dotted #ef5b48; border-right:5px dotted #ef5b48; border-radius:0 48px 0 0; transform:rotate(5deg); }
.map-station { position:absolute; left:8%; bottom:15%; width:90px; height:90px; display:grid; place-items:center; text-align:center; border:10px solid #1599d5; border-radius:50%; color:#0879b4; background:#fff; font-size:15px; font-weight:900; line-height:1.15; box-shadow:0 8px 20px rgba(0,88,143,.16); }
.map-station small { display:block; font-size:10px; }
.map-place { position:absolute; color:#65737d; font-size:11px; font-weight:700; }
.map-place.p1 { left:26%; top:18%; }.map-place.p2 { left:48%; top:57%; }.map-place.p3 { right:8%; top:18%; }.map-place.p4 { right:4%; bottom:11%; }
.map-pin { position:absolute; right:17%; bottom:21%; width:58px; height:58px; display:grid; place-items:center; border:5px solid #fff; border-radius:50% 50% 50% 8px; color:#fff; background:var(--blue-800); transform:rotate(-45deg); box-shadow:0 10px 25px rgba(0,54,103,.3); }
.map-pin span { transform:rotate(45deg); font-size:22px; }
.map-label { position:absolute; right:4%; bottom:6%; padding:6px 9px; border-radius:5px; color:var(--blue-950); background:#fff; font-size:11px; font-weight:900; box-shadow:0 5px 14px rgba(0,38,72,.14); }
.route-line { position:relative; margin:45px 0 0; padding-left:34px; }
.route-line::before { content:""; position:absolute; left:9px; top:8px; bottom:8px; width:2px; background:rgba(255,255,255,.38); }
.route-stop { position:relative; margin:0 0 25px; }
.route-stop::before { content:""; position:absolute; left:-30px; top:3px; width:12px; height:12px; border:3px solid #fff; border-radius:50%; background:var(--blue-700); }
.route-stop strong { display:block; }
.route-stop span { color:rgba(255,255,255,.7); font-size:13px; }
.branch-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.branch-card { padding:30px; border:1px solid var(--line); background:#fff; }
.branch-card.main { grid-column:1/-1; border-top:4px solid var(--blue-700); }
.branch-card h3 { margin:0 0 15px; font-size:22px; }
.branch-title { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:15px; }
.branch-title h3 { margin:0; }
.branch-map-button { -webkit-appearance:none; appearance:none; flex:0 0 auto; display:inline-flex; align-items:center; gap:5px; padding:7px 11px; border:1px solid #bfd8e6; border-radius:999px; color:var(--blue-800); background:#f7fbfd; font-family:inherit; font-size:12px; font-weight:850; line-height:1; cursor:pointer; transition:.2s; }
.branch-map-button:hover { color:#fff; border-color:var(--blue-700); background:var(--blue-700); transform:translateY(-1px); }
.branch-map-button:focus-visible { outline:3px solid rgba(21,153,213,.28); outline-offset:2px; }
.branch-card address { color:var(--muted); font-style:normal; line-height:1.75; }
.contact-numbers { display:flex; flex-wrap:wrap; gap:8px 20px; margin-top:18px; padding-top:16px; border-top:1px solid var(--line); font-size:13px; font-weight:700; }
.contact-numbers a { color:var(--blue-800); }

.map-modal[hidden] { display:none; }
.map-modal { position:fixed; inset:0; z-index:2000; display:grid; place-items:center; padding:24px; }
.map-modal-backdrop { position:absolute; inset:0; background:rgba(0,31,57,.72); backdrop-filter:blur(5px); }
.map-dialog { position:relative; width:min(860px,100%); max-height:calc(100vh - 48px); max-height:calc(100dvh - 48px); overflow:auto; padding:38px; border:1px solid rgba(255,255,255,.65); border-radius:18px; background:#fff; box-shadow:0 28px 90px rgba(0,31,57,.38); }
.map-dialog h2 { margin:0; color:var(--blue-950); font-size:clamp(28px,4vw,42px); letter-spacing:-.045em; }
.map-address { margin:12px 52px 24px 0; color:var(--muted); font-size:15px; line-height:1.7; }
.map-close { position:absolute; top:20px; right:20px; width:42px; height:42px; display:grid; place-items:center; padding:0; border:1px solid var(--line); border-radius:50%; color:var(--blue-950); background:#fff; font-size:28px; line-height:1; cursor:pointer; transition:.2s; }
.map-close:hover { color:#fff; border-color:var(--blue-800); background:var(--blue-800); transform:rotate(4deg); }
.map-embed { height:min(52vh,470px); min-height:320px; overflow:hidden; border:1px solid var(--line); border-radius:12px; background:#eef5f8; }
.map-embed iframe { width:100%; height:100%; border:0; }
.map-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.map-actions a { display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:0 17px; border:1px solid var(--line); border-radius:7px; color:var(--blue-800); background:#fff; font-size:13px; font-weight:800; }
.map-actions a:hover { border-color:#9fc7dc; background:#f2f9fc; }
.map-actions .map-action-primary { color:#fff; border-color:var(--blue-800); background:var(--blue-800); }
.map-actions .map-action-primary:hover { border-color:var(--blue-950); background:var(--blue-950); }
.map-provider-actions { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); }
.map-actions .map-provider { gap:10px; min-height:52px; padding:7px 14px; color:var(--blue-950); background:#fff; }
.map-provider-icon { width:31px; height:31px; display:grid; place-items:center; flex:0 0 auto; border-radius:9px; font-size:17px; font-weight:950; line-height:1; }
.map-provider.google .map-provider-icon { color:transparent; background:conic-gradient(from -35deg,#4285f4 0 25%,#34a853 0 42%,#fbbc05 0 67%,#ea4335 0 84%,#4285f4 0); background-clip:text; -webkit-background-clip:text; font-size:22px; }
.map-provider.naver .map-provider-icon { color:#fff; background:#03c75a; }
.map-provider.kakao .map-provider-icon { color:#3c1e1e; background:#fee500; }
.map-provider.google:hover { border-color:#9bb9e9; background:#f7faff; }
.map-provider.naver:hover { border-color:#71d79e; background:#f1fff7; }
.map-provider.kakao:hover { border-color:#dfca00; background:#fffdec; }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.inquiry-section { background:#f6fafc; }
.inquiry-layout { display:grid; grid-template-columns:300px minmax(0,1fr); gap:34px; align-items:start; }
.inquiry-guide { position:sticky; top:138px; padding:36px 30px; color:#fff; background:linear-gradient(150deg,var(--blue-950),var(--blue-700)); box-shadow:var(--shadow); }
.inquiry-guide .kicker { color:#8ed8f3; }
.inquiry-guide h2 { margin:0; font-size:23px; line-height:1.28; letter-spacing:-.045em; white-space:nowrap; }
.inquiry-guide ul { margin:26px 0 0; padding:0; list-style:none; }
.inquiry-guide li { position:relative; margin:0; padding:15px 0 15px 23px; border-top:1px solid rgba(255,255,255,.17); color:rgba(255,255,255,.8); font-size:14px; line-height:1.7; }
.inquiry-guide li::before { content:""; position:absolute; left:0; top:24px; width:7px; height:7px; border-radius:50%; background:#8ed8f3; }
.inquiry-guide a { color:#fff; font-weight:800; text-decoration:underline; text-underline-offset:3px; }
.inquiry-guide-note { margin:22px 0 0; color:rgba(255,255,255,.72); font-size:12px; }
.inquiry-guide-note strong { color:#ffb9ae; }
.inquiry-main { min-width:0; }
.privacy-consent, .inquiry-form { padding:38px; border:1px solid var(--line); background:#fff; box-shadow:0 14px 40px rgba(0,62,109,.07); }
.inquiry-form { margin-top:24px; }
.privacy-heading, .form-section-heading { display:flex; align-items:flex-start; justify-content:space-between; gap:24px; padding-bottom:24px; border-bottom:1px solid var(--line); }
.privacy-heading h2, .form-section-heading h2 { margin:5px 0 0; color:var(--blue-950); font-size:clamp(26px,3vw,34px); letter-spacing:-.045em; }
.step-label { color:var(--blue-700); font-size:11px; font-weight:900; letter-spacing:.14em; text-transform:uppercase; }
.privacy-detail-button { -webkit-appearance:none; appearance:none; flex:0 0 auto; min-height:42px; padding:0 15px; border:1px solid #bad6e5; border-radius:999px; color:var(--blue-800); background:#f5fafc; font-family:inherit; font-size:12px; font-weight:850; line-height:1; cursor:pointer; }
.privacy-detail-button:hover { color:#fff; border-color:var(--blue-700); background:var(--blue-700); }
.privacy-detail-button:focus-visible { outline:3px solid rgba(21,153,213,.28); outline-offset:2px; }
.privacy-summary { margin:24px 0 0; border-top:2px solid var(--blue-900); }
.privacy-summary > div { display:grid; grid-template-columns:170px 1fr; border-bottom:1px solid var(--line); }
.privacy-summary dt, .privacy-summary dd { margin:0; padding:16px 18px; font-size:14px; line-height:1.65; }
.privacy-summary dt { color:var(--blue-950); background:#f2f8fb; font-weight:800; }
.privacy-summary dd { color:var(--muted); }
.consent-check { display:flex; align-items:flex-start; gap:12px; margin-top:22px; padding:19px 20px; border:1px solid #bcd8e6; background:#f4fafc; cursor:pointer; }
.consent-check input { flex:0 0 auto; width:20px; height:20px; margin:1px 0 0; accent-color:var(--blue-700); }
.consent-check span { color:#31444f; font-size:14px; font-weight:700; line-height:1.55; }
.consent-check strong { color:#e34839; }
.form-section-heading p { max-width:330px; margin:7px 0 0; color:#ad4b3e; font-size:13px; line-height:1.55; text-align:right; }
.form-section-heading p.ready { color:var(--blue-700); }
.inquiry-fields { min-width:0; margin:0; padding:0; border:0; transition:opacity .2s; }
.inquiry-fields[disabled] { opacity:.46; }
.education-edit-form.is-readonly .inquiry-fields[disabled] { opacity:1; }
.education-edit-form.is-readonly input:disabled,.education-edit-form.is-readonly select:disabled,.education-edit-form.is-readonly textarea:disabled { opacity:1; color:var(--ink); -webkit-text-fill-color:var(--ink); background:#f7fafb; cursor:not-allowed; }
.education-edit-form.is-readonly select:disabled { color:var(--ink); -webkit-text-fill-color:var(--ink); }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px 20px; margin-top:28px; }
.form-field { display:block; min-width:0; }
.form-field-full { grid-column:1/-1; }
.form-field > span,.form-field > label { display:block; margin-bottom:9px; color:#253945; font-size:14px; font-weight:800; }
.form-field em { color:#e34839; font-style:normal; }
.form-field input, .form-field select, .form-field textarea { -webkit-appearance:none; appearance:none; width:100%; border:1px solid #cbdce5; border-radius:3px; color:var(--ink); background:#fff; font:inherit; font-size:15px; outline:0; transition:border-color .2s,box-shadow .2s; }
.form-field input, .form-field select { height:50px; padding:0 14px; }
.form-field select { padding-right:42px; background-image:linear-gradient(45deg,transparent 50%,#607783 50%),linear-gradient(135deg,#607783 50%,transparent 50%); background-position:calc(100% - 19px) 21px,calc(100% - 13px) 21px; background-size:6px 6px,6px 6px; background-repeat:no-repeat; }
.form-field textarea { min-height:210px; padding:14px; resize:vertical; line-height:1.7; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color:var(--blue-700); box-shadow:0 0 0 3px rgba(21,153,213,.14); }
.form-field input::placeholder, .form-field textarea::placeholder { color:#95a3ab; }
.form-field > .phone-field { display:grid; grid-template-columns:138px minmax(0,1fr); gap:10px; margin:0; color:inherit; font-size:inherit; font-weight:inherit; }
.hospital-search { position:relative; }
.hospital-results { position:absolute; z-index:18; top:calc(100% + 5px); left:0; right:0; max-height:330px; overflow:auto; border:1px solid #a9c9da; background:#fff; box-shadow:0 16px 40px rgba(0,52,95,.16); }
.hospital-results[hidden] { display:none; }
.hospital-option,.hospital-custom-option { width:100%; display:flex; align-items:flex-start; justify-content:space-between; gap:16px; padding:12px 14px; border:0; border-bottom:1px solid #e3edf2; color:var(--ink); background:#fff; text-align:left; font:inherit; cursor:pointer; }
.hospital-option:last-child,.hospital-custom-option:last-child { border-bottom:0; }
.hospital-option:hover,.hospital-option:focus,.hospital-custom-option:hover,.hospital-custom-option:focus { color:var(--blue-900); background:#eef8fc; outline:0; }
.hospital-option strong { font-size:14px; }
.hospital-option small { flex:0 0 auto; color:#617783; font-size:12px; }
.hospital-custom-option { color:var(--blue-800); font-size:13px; font-weight:800; }
.hospital-help { min-height:19px; margin:7px 0 0; color:#607783; font-size:12px; line-height:1.55; }
.hospital-help.selected { color:#08724d; font-weight:750; }
.website-field { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.character-count { display:block; margin-top:7px; color:#75858f; font-size:12px; text-align:right; }
.character-count b { color:var(--blue-800); }
.form-status { min-height:22px; margin:18px 0 0; color:#c33f31; font-size:13px; font-weight:700; }
.form-submit-row { display:flex; align-items:center; justify-content:space-between; gap:24px; margin-top:4px; padding-top:24px; border-top:1px solid var(--line); }
.form-submit-row p { max-width:470px; margin:0; color:#71808a; font-size:12px; line-height:1.65; }
.inquiry-submit, .secondary-action { -webkit-appearance:none; appearance:none; min-height:52px; padding:0 24px; border:1px solid var(--blue-800); border-radius:3px; font-family:inherit; font-size:14px; font-weight:850; cursor:pointer; transition:.2s; }
.inquiry-submit { display:inline-flex; align-items:center; justify-content:center; gap:12px; color:#fff; background:var(--blue-800); }
.inquiry-submit:hover:not(:disabled) { border-color:var(--blue-950); background:var(--blue-950); transform:translateY(-1px); }
.inquiry-submit:disabled { color:#8b9ba4; border-color:#d7e0e5; background:#e9eef1; cursor:not-allowed; }
.secondary-action { color:var(--blue-800); background:#fff; }
.secondary-action:hover { background:#f2f9fc; }

.info-modal[hidden] { display:none; }
.info-modal { position:fixed; inset:0; z-index:2100; display:grid; place-items:center; padding:24px; }
.info-modal-backdrop { position:absolute; inset:0; background:rgba(0,31,57,.72); backdrop-filter:blur(5px); }
.info-dialog { position:relative; width:min(820px,100%); max-height:calc(100vh - 48px); max-height:calc(100dvh - 48px); overflow:auto; padding:40px; border:1px solid rgba(255,255,255,.6); border-radius:18px; background:#fff; box-shadow:0 28px 90px rgba(0,31,57,.38); }
.info-dialog h2 { margin:0; padding-right:52px; color:var(--blue-950); font-size:clamp(28px,4vw,40px); letter-spacing:-.045em; }
.info-close { -webkit-appearance:none; appearance:none; position:absolute; top:20px; right:20px; width:42px; height:42px; display:grid; place-items:center; padding:0; border:1px solid var(--line); border-radius:50%; color:var(--blue-950); background:#fff; font-family:inherit; font-size:28px; line-height:1; cursor:pointer; }
.info-close:hover { color:#fff; border-color:var(--blue-800); background:var(--blue-800); }
.legal-lead { margin:14px 0 26px; color:var(--muted); line-height:1.75; }
.legal-items { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.legal-items article { padding:22px; border:1px solid var(--line); background:#f7fbfd; }
.legal-items strong { color:var(--blue-950); font-size:17px; }
.legal-items p { margin:12px 0; color:var(--muted); font-size:14px; line-height:1.75; }
.legal-items a, .privacy-guide-link { color:var(--blue-800); font-size:13px; font-weight:800; text-decoration:underline; text-underline-offset:3px; }
.legal-caution { margin-top:18px; padding:20px 22px; border-left:4px solid #ef6958; background:#fff5f3; }
.legal-caution strong { color:#9b3328; }
.legal-caution p { margin:7px 0 0; color:#6d544f; font-size:13px; line-height:1.7; }
.privacy-guide-link { display:inline-block; margin-top:22px; }
.confirm-summary { margin:0; border-top:2px solid var(--blue-900); }
.confirm-summary > div { display:grid; grid-template-columns:135px 1fr; border-bottom:1px solid var(--line); }
.confirm-summary dt, .confirm-summary dd { margin:0; padding:14px 16px; font-size:14px; line-height:1.65; white-space:pre-wrap; overflow-wrap:anywhere; }
.confirm-summary dt { color:var(--blue-950); background:#f2f8fb; font-weight:800; }
.confirm-summary dd { color:var(--muted); }
.copy-status { min-height:20px; margin:14px 0 0; color:var(--blue-700); font-size:13px; font-weight:800; text-align:right; }
.copy-status.error { color:#c33f31; }
.copy-status.success { padding:14px 16px; border:1px solid #b9dac8; color:#17663a; background:#f0faf4; text-align:left; }
.confirm-actions { display:flex; justify-content:flex-end; gap:10px; margin-top:8px; }

.education-section { background:#f6fafc; }
.education-heading { display:flex; align-items:end; justify-content:space-between; gap:40px; margin-bottom:30px; }
.education-heading h2 { margin:5px 0 0; color:var(--blue-950); font-size:clamp(34px,5vw,52px); letter-spacing:-.05em; }
.education-heading p { max-width:570px; margin:0; color:var(--muted); line-height:1.8; }
.education-alert { margin-bottom:28px; padding:20px 24px; border:1px solid #efb9b2; border-left:5px solid #d94b3b; color:#74352d; background:#fff5f3; }
.education-alert.success { border-color:#b7d8c5; border-left-color:#278054; color:#185c3b; background:#f2faf5; }
.education-alert strong { display:block; font-size:17px; }
.education-alert p { margin:7px 0 0; line-height:1.65; }
.education-empty { padding:48px 32px; border:1px solid var(--line); color:var(--muted); background:#fff; text-align:center; }
.education-empty strong { display:block; color:var(--blue-950); font-size:22px; }
.education-empty p { margin:10px 0 0; }
.education-self-service { display:flex; align-items:center; justify-content:space-between; gap:28px; margin-bottom:24px; padding:22px 26px; border:1px solid #bdd7e6; border-left:4px solid var(--blue-700); background:#eef8fd; }
.education-self-service strong { display:block; color:var(--blue-950); font-size:18px; }
.education-self-service p { margin:5px 0 0; color:var(--muted); font-size:14px; line-height:1.65; }
.education-self-service a { flex:0 0 auto; min-height:44px; display:inline-flex; align-items:center; gap:12px; padding:0 17px; border:1px solid var(--blue-800); border-radius:3px; color:#fff; background:var(--blue-800); font-size:13px; font-weight:850; }
.education-programs { display:grid; gap:16px; }
.education-program { display:grid; grid-template-columns:92px minmax(0,1fr) auto; gap:28px; align-items:center; padding:30px; border:1px solid var(--line); border-left:4px solid var(--blue-700); background:#fff; box-shadow:0 12px 34px rgba(0,62,109,.06); }
.education-program.closed { border-left-color:#a9b5bc; background:#fbfcfc; }
.education-date { width:78px; height:78px; display:grid; align-content:center; justify-items:center; border-radius:50%; color:#fff; background:linear-gradient(145deg,var(--blue-950),var(--blue-700)); }
.education-program.closed .education-date { background:#84949d; }
.education-date strong { font-size:23px; letter-spacing:-.04em; }
.education-date span { margin-top:1px; font-size:11px; opacity:.78; }
.education-program-title { display:flex; align-items:center; gap:10px; }
.education-program h3 { margin:0; color:var(--blue-950); font-size:24px; letter-spacing:-.035em; }
.education-program-copy > p { margin:10px 0 16px; color:var(--muted); font-size:14px; line-height:1.7; }
.education-status { flex:0 0 auto; padding:5px 8px; border-radius:4px; color:#6f7f88; background:#edf1f3; font-size:11px; font-weight:900; }
.education-status.open { color:#0876ae; background:#e6f5fc; }
.education-status.waitlist { color:#8c4c12; background:#fff0df; }
.education-cancel-form { margin:22px 0 0; padding-top:20px; border-top:1px solid var(--line); text-align:right; }
.education-cancel-button { min-height:44px; padding:0 17px; border:1px solid #c64b40; border-radius:4px; color:#a8342b; background:#fff; font:inherit; font-size:13px; font-weight:850; cursor:pointer; }
.education-cancel-button:hover { color:#fff; background:#b63e33; }
.education-cancel-deadline { margin:22px 0 0; padding:15px 17px; border:1px solid #e4c8a7; color:#79521c; background:#fff8ed; font-size:13px; font-weight:750; line-height:1.65; }
.education-notice-open { overflow:hidden; }
.education-notice[hidden] { display:none; }
.education-notice { position:fixed; z-index:1200; inset:0; display:grid; place-items:center; padding:20px; background:rgba(0,35,63,.62); }
.education-notice-dialog { width:min(620px,100%); max-height:calc(100vh - 40px); max-height:calc(100dvh - 40px); overflow:auto; padding:36px; border-top:5px solid var(--blue-700); background:#fff; box-shadow:0 30px 90px rgba(0,27,50,.28); }
.education-notice-dialog h2 { margin:7px 0 22px; color:var(--blue-950); font-size:32px; letter-spacing:-.045em; }
.education-notice-dialog h3 { margin:26px 0 8px; color:var(--blue-950); font-size:18px; }
.education-notice-dialog ul { margin:0; padding:18px 20px 18px 38px; color:var(--text); background:#f3f8fb; }
.education-notice-dialog li { padding:4px 0; line-height:1.65; }
.education-notice-dialog p { margin:0; color:var(--muted); line-height:1.75; }
.education-notice-actions { display:flex; justify-content:flex-end; gap:10px; margin-top:28px; }
.education-notice-actions button { min-height:44px; padding:0 16px; border:1px solid var(--line); border-radius:3px; color:var(--blue-800); background:#fff; font:inherit; font-size:13px; font-weight:850; cursor:pointer; }
.education-notice-actions button.primary { border-color:var(--blue-700); color:#fff; background:var(--blue-700); }
.map-service-panel { min-height:300px; display:grid; place-items:center; padding:36px; border:1px solid var(--line); border-radius:12px; color:var(--blue-950); background:linear-gradient(145deg,#eef8fc,#f9fcfd); text-align:center; }
.map-service-pin { width:64px; height:64px; display:grid; place-items:center; margin:0 auto 16px; border-radius:50% 50% 50% 12px; color:#fff; background:var(--blue-800); font-size:26px; transform:rotate(-45deg); box-shadow:0 12px 28px rgba(0,78,132,.22); }
.map-service-pin span { transform:rotate(45deg); }
.map-service-panel strong { display:block; font-size:21px; }
.map-service-panel p { margin:8px 0 0; color:var(--muted); font-size:14px; line-height:1.7; }
.education-meta { display:flex; flex-wrap:wrap; gap:10px 26px; margin:0; }
.education-meta div { display:flex; gap:8px; }
.education-meta dt, .education-meta dd { margin:0; font-size:14px; line-height:1.6; }
.education-meta dt { color:var(--blue-800); font-weight:900; }
.education-meta dd { color:#61727c; }
.education-select { -webkit-appearance:none; appearance:none; min-width:116px; min-height:48px; padding:0 18px; border:1px solid var(--blue-800); border-radius:3px; color:#fff; background:var(--blue-800); font-family:inherit; font-size:13px; font-weight:850; cursor:pointer; transition:.2s; }
.education-select:hover:not(:disabled) { border-color:var(--blue-950); background:var(--blue-950); transform:translateY(-1px); }
.education-select:disabled { color:#84929a; border-color:#d7e0e5; background:#edf1f3; cursor:not-allowed; }
.education-apply-layout { display:grid; grid-template-columns:300px minmax(0,1fr); gap:34px; align-items:start; margin-top:70px; }
.education-guide { position:sticky; top:138px; padding:36px 30px; color:#fff; background:linear-gradient(150deg,var(--blue-950),var(--blue-700)); box-shadow:var(--shadow); }
.education-guide .kicker { color:#8ed8f3; }
.education-guide h2 { margin:4px 0 0; font-size:25px; line-height:1.25; letter-spacing:-.045em; }
.education-guide ol { margin:28px 0 0; padding:0; list-style:none; }
.education-guide li { display:grid; grid-template-columns:34px 1fr; gap:12px; padding:18px 0; border-top:1px solid rgba(255,255,255,.17); }
.education-guide li > span { width:30px; height:30px; display:grid; place-items:center; border-radius:50%; color:var(--blue-950); background:#8ed8f3; font-size:11px; font-weight:900; }
.education-guide li p { margin:0; color:rgba(255,255,255,.76); font-size:13px; line-height:1.6; }
.education-guide li strong { display:block; margin-bottom:2px; color:#fff; font-size:14px; }
.education-guide-note { margin:22px 0 0; color:rgba(255,255,255,.7); font-size:12px; line-height:1.7; }
.education-guide-note a { color:#fff; font-weight:850; text-decoration:underline; text-underline-offset:3px; }
.education-application { min-width:0; }
.education-my-shell { max-width:1020px; }
.education-my-card { border:1px solid var(--line); background:#fff; box-shadow:0 12px 34px rgba(0,62,109,.06); }
.education-my-heading { padding:34px 36px 0; }
.education-my-heading h2 { margin:5px 0 0; color:var(--blue-950); font-size:34px; letter-spacing:-.045em; }
.education-my-heading p { margin:12px 0 0; color:var(--muted); line-height:1.7; }
.education-application-picker { margin-bottom:18px; padding:24px; border:1px solid var(--line); background:#f6fafc; }
.education-application-picker > strong { color:var(--blue-950); font-size:20px; }
.education-application-picker > p { margin:6px 0 16px; color:var(--muted); font-size:13px; }
.education-application-picker > div { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
.education-application-picker a { display:grid; gap:4px; min-width:0; padding:15px 16px; border:1px solid var(--line); border-radius:4px; color:var(--blue-950); background:#fff; }
.education-application-picker a[aria-current="true"] { border-color:var(--blue-700); box-shadow:0 0 0 2px rgba(0,104,173,.12); }
.education-application-picker a span { color:var(--blue-700); font-size:11px; font-weight:900; }
.education-application-picker a b { overflow:hidden; font-size:15px; text-overflow:ellipsis; white-space:nowrap; }
.education-application-picker a small { color:var(--muted); font-size:12px; }
.education-lookup-form { margin-top:26px; border:0; border-top:1px solid var(--line); box-shadow:none; }
.education-my-status { display:flex; align-items:flex-start; justify-content:space-between; gap:24px; padding:30px 32px; border:1px solid var(--line); border-top:4px solid var(--blue-700); background:#fff; }
.education-my-status h2 { margin:13px 0 0; color:var(--blue-950); font-size:30px; letter-spacing:-.045em; }
.education-my-status p { margin:7px 0 0; color:var(--muted); }
.education-application-status { display:inline-flex; padding:6px 10px; border-radius:999px; font-size:12px; font-weight:900; }
.education-application-status.pending { color:#9a5d00; background:#fff2cc; }
.education-application-status.waitlist { color:#864411; background:#ffead7; }
.education-application-status.approved { color:#116640; background:#e6f7ee; }
.education-application-status.closed { color:#65747c; background:#edf1f3; }
.education-lookup-exit { min-height:40px; padding:0 14px; border:1px solid var(--line); border-radius:3px; color:var(--blue-800); background:#fff; font:inherit; font-size:12px; font-weight:850; cursor:pointer; }
.education-my-summary { display:grid; grid-template-columns:repeat(4,1fr); margin:14px 0 0; border:1px solid var(--line); background:#fff; }
.education-my-summary > div { min-width:0; padding:20px; border-right:1px solid var(--line); }
.education-my-summary > div:last-child { border-right:0; }
.education-my-summary dt,.education-my-summary dd { margin:0; }
.education-my-summary dt { color:var(--blue-800); font-size:12px; font-weight:900; }
.education-my-summary dd { margin-top:7px; color:var(--blue-950); font-size:14px; font-weight:750; line-height:1.55; }
.education-edit-form { margin-top:20px; }
.education-locked-note { margin-top:20px; padding:20px 24px; border:1px solid #c9d9e2; background:#eef5f8; }
.education-locked-note strong { color:var(--blue-950); font-size:16px; }
.education-locked-note p { margin:6px 0 0; color:var(--muted); line-height:1.6; }
.education-locked-note a { color:var(--blue-800); font-weight:850; }

.site-footer { padding:58px 0 34px; color:rgba(255,255,255,.72); background:#002c50; }
.footer-main { display:grid; grid-template-columns:1.2fr 2fr; gap:70px; padding-bottom:42px; border-bottom:1px solid rgba(255,255,255,.13); }
.footer-brand img { width:146px; filter:brightness(0) invert(1); }
.footer-brand p { max-width:370px; margin:20px 0 0; font-size:13px; line-height:1.8; }
.footer-nav { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.footer-nav h3 { margin:0 0 14px; color:#fff; font-size:14px; }
.footer-nav a { display:block; margin:9px 0; font-size:12px; }
.footer-nav a:hover { color:#8ed8f3; }
.copyright { display:flex; justify-content:space-between; gap:20px; margin-top:28px; font-size:11px; }
.back-top { color:#8ed8f3; font-weight:800; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s,transform .7s; }
.reveal.in { opacity:1; transform:none; }

@media (max-width: 1050px) {
  .main-nav a { padding-inline:12px; font-size:17px; }
  .main-nav a::after { left:15px; right:15px; }
  .hero { grid-template-columns:1fr 1.1fr; min-height:600px; }
  .hero-copy { padding-left:40px; padding-right:40px; }
  .feature-grid { grid-template-columns:1fr 1fr; }
  .branch-strip { grid-template-columns:repeat(3,1fr); }
  .branch-strip article:first-child { grid-column:1/-1; }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .inquiry-layout { grid-template-columns:250px minmax(0,1fr); gap:22px; }
  .inquiry-guide { padding:30px 24px; }
  .education-apply-layout { grid-template-columns:250px minmax(0,1fr); gap:22px; }
  .education-guide { padding:30px 24px; }
  .privacy-consent, .inquiry-form { padding:30px; }
}

@media (max-width: 780px) {
  .shell { width:min(calc(100% - 32px), var(--max)); }
  .header-top { display:none; }
  .header-main { min-height:78px; }
  .brand img { width:170px; }
  .menu-toggle { position:relative; z-index:1002; display:block; }
  .main-nav {
    position:absolute; top:100%; left:0; right:0; z-index:1001; display:none; height:calc(100vh - 78px); height:calc(100dvh - 78px);
    margin:0; overflow-y:auto; align-items:flex-start; color:#fff;
    background:linear-gradient(155deg,#003767 0%,#005c9f 58%,#0078be 100%);
    box-shadow:0 24px 60px rgba(0,35,65,.34);
  }
  .main-nav.open { display:block; }
  .main-nav ul { height:auto; display:block; padding:34px 22px 60px; background:transparent; }
  .main-nav li { height:auto; display:block; }
  .main-nav a {
    height:auto; min-height:78px; padding:0 22px; border-bottom:1px solid rgba(255,255,255,.2);
    color:#fff; background:transparent; font-size:24px;
  }
  .main-nav a:hover, .main-nav a[aria-current="page"] { color:#fff; background:rgba(255,255,255,.1); }
  .main-nav a::after { left:22px; right:auto; bottom:0; width:42px; background:#8ed8f3; }
  .hero { min-height:auto; grid-template-columns:1fr; }
  .hero-copy { min-height:500px; padding:70px 24px; }
  .hero-visual { min-height:380px; }
  .section { padding:78px 0; }
  .section-heading { display:block; }
  .section-heading p { margin-top:18px; }
  .feature-grid { grid-template-columns:1fr; }
  .feature-card { min-height:auto; }
  .video-panel { grid-template-columns:1fr; }
  .video-copy { padding:34px; }
  .video-wrap { min-height:260px; }
  .branch-strip { grid-template-columns:1fr 1fr; }
  .branch-strip article:first-child { grid-column:1/-1; }
  .page-hero { padding-top:60px; }
  .page-hero-inner { padding:30px 0 42px; }
  .split-story { grid-template-columns:1fr; gap:36px; }
  .split-story.reverse .story-visual { order:0; }
  .split-story.reverse .story-copy { order:1; }
  .story-visual { min-height:0; }
  .values { grid-template-columns:1fr; }
  .product-grid { grid-template-columns:1fr; }
  .product-grid.single { grid-template-columns:1fr; }
  .product-group-head { display:block; }
  .product-group-head p { margin-top:10px; }
  .training-grid { grid-template-columns:1fr; }
  .training-card.wide { grid-column:auto; grid-template-columns:1fr; }
  .training-photo { min-height:0; }
  .contact-layout { grid-template-columns:1fr; }
  .route-card { min-height:auto; padding:36px 28px; }
  .route-title { gap:12px; }
  .route-title .branch-map-button { margin-top:2px; }
  .mini-map { height:280px; border-width:6px; }
  .branch-grid { grid-template-columns:1fr; }
  .branch-card.main { grid-column:auto; }
  .map-modal { padding:12px; }
  .map-dialog { max-height:calc(100vh - 24px); max-height:calc(100dvh - 24px); padding:30px 20px 22px; border-radius:13px; }
  .map-close { top:14px; right:14px; }
  .map-address { margin-right:44px; }
  .map-embed { height:52vh; min-height:300px; }
  .map-actions { display:grid; }
  .map-provider-actions { grid-template-columns:1fr; }
  .inquiry-layout { grid-template-columns:1fr; }
  .inquiry-guide { position:static; }
  .education-heading { display:block; }
  .education-heading p { margin-top:16px; }
  .education-self-service { align-items:flex-start; }
  .education-program { grid-template-columns:76px minmax(0,1fr); gap:18px; padding:24px; }
  .education-date { width:68px; height:68px; }
  .education-program-title { align-items:flex-start; flex-direction:column; gap:7px; }
  .education-program h3 { font-size:21px; }
  .education-select { grid-column:1/-1; width:100%; }
  .education-apply-layout { grid-template-columns:1fr; margin-top:54px; }
  .education-guide { position:static; }
  .education-my-summary { grid-template-columns:1fr 1fr; }
  .education-my-summary > div:nth-child(2) { border-right:0; }
  .education-my-summary > div:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .privacy-heading, .form-section-heading { display:block; }
  .privacy-detail-button { margin-top:18px; }
  .form-section-heading p { max-width:none; text-align:left; }
  .privacy-summary > div { grid-template-columns:140px 1fr; }
  .legal-items { grid-template-columns:1fr; }
  .footer-main { grid-template-columns:1fr; gap:42px; }
  .footer-nav { grid-template-columns:1fr 1fr; }
  .copyright { display:block; }
  .copyright .back-top { display:inline-block; margin-top:14px; }
}

@media (max-width: 460px) {
  .hero-copy { min-height:470px; }
  .hero h1 { font-size:42px; }
  .hero-visual { min-height:290px; }
  .slider-controls { left:14px; right:14px; bottom:9px; }
  .hero-actions { display:grid; }
  .branch-strip { grid-template-columns:1fr; }
  .product-photo { height:220px; }
  .education-program { grid-template-columns:1fr; padding:22px 18px; }
  .education-date { width:64px; height:64px; }
  .education-meta { display:grid; gap:10px; }
  .education-meta dt, .education-meta dd { font-size:14px; }
  .education-self-service { display:block; padding:20px; }
  .education-self-service a { width:100%; justify-content:center; margin-top:16px; }
  .education-application-picker > div { grid-template-columns:1fr; }
  .education-notice-dialog { padding:28px 20px 22px; }
  .education-notice-dialog h2 { font-size:27px; }
  .education-notice-actions { display:grid; }
  .education-my-heading { padding:28px 22px 0; }
  .education-my-heading h2 { font-size:29px; }
  .education-my-status { display:block; padding:24px 20px; }
  .education-my-status form { margin-top:18px; }
  .education-my-summary { grid-template-columns:1fr; }
  .education-my-summary > div { border-right:0; border-bottom:1px solid var(--line); }
  .education-my-summary > div:last-child { border-bottom:0; }
  .privacy-consent, .inquiry-form { padding:24px 18px; }
  .privacy-summary > div, .confirm-summary > div { grid-template-columns:1fr; }
  .privacy-summary dt, .privacy-summary dd, .confirm-summary dt, .confirm-summary dd { padding:12px 14px; }
  .privacy-summary dd, .confirm-summary dd { padding-top:0; background:#f2f8fb; }
  .form-grid { grid-template-columns:1fr; }
  .form-field-full { grid-column:auto; }
  .form-field > .phone-field { grid-template-columns:126px minmax(0,1fr); }
  .form-submit-row { display:block; }
  .form-submit-row .inquiry-submit { width:100%; margin-top:18px; }
  .info-modal { padding:10px; }
  .info-dialog { max-height:calc(100vh - 20px); max-height:calc(100dvh - 20px); padding:32px 18px 22px; border-radius:12px; }
  .info-close { top:12px; right:12px; }
  .confirm-actions { display:grid; grid-template-columns:1fr; }
  .footer-nav { grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; transition:none !important; animation:none !important; }
  .reveal { opacity:1; transform:none; }
}
