@charset "utf-8";

@font-face {
  font-family: "Pretendard Subset";
  src: url("../fonts/pretendard-subset.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  
  --brand:        #002f47;   
  --brand-2:      #006899;   
  --brand-point:  #ff6161;   
  --brand-grad:   linear-gradient(135deg, #002f47 0%, #00283c 100%);
  --brand-rgb:    0, 47, 71;
  --point-rgb:    255, 97, 97;
  --shadow-rgb:   0, 24, 36;

  
  --paper:      #ffffff;
  --wash-1:     #f8f9fa;
  --wash-2:     #f1f3f5;
  --line:       #e9ecef;
  --line-2:     #ced4da;
  --ink:        #343a40;   
  --ink-body:   #495057;   
  --ink-mute:   #5f676f;   

  
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-18: 72px;

  --container: 1280px;
  --pad-x: 20px;
  --sec-y: 32px;

  
  --r-card: 20px;
  --r-media: 12px;
  --r-field: 10px;
  --r-pill: 999px;

  
  --danger: #c92a2a;
  --success: #2b8a3e;

  
  --sh-card: 0 1px 3px rgba(0,0,0,.03), 0 8px 24px rgba(0,0,0,.02);
  --sh-card-hover: 0 4px 12px rgba(0,0,0,.04), 0 24px 56px rgba(0,0,0,.08);
  --sh-cta: 0 2px 8px rgba(0,0,0,.06);
  --sh-cta-hover: 0 12px 32px rgba(var(--brand-rgb), .28);
  --sh-bar: 0 -2px 12px rgba(0,0,0,.1);

  
  --ease: cubic-bezier(.25,.46,.45,.94);
  --t-fast: .2s;
  --t-mid: .35s;
  --t-slow: .5s;
}

@media (min-width: 1024px) {
  :root { --pad-x: 32px; --sec-y: 72px; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-body);
  font-family: "Pretendard Subset", -apple-system, BlinkMacSystemFont,
               "Apple SD Gothic Neo", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.section { padding-block: var(--sec-y); }
.section--wash { background: var(--wash-1); }
.section--wash2 { background: var(--wash-2); }

.sec-head { max-width: 720px; margin-bottom: var(--sp-10); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .sec-lead { margin-inline: auto; }

.sec-title {
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.025em;
}
.sec-lead {
  margin-top: var(--sp-4);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-body);
}

.sec-rule {
  width: 48px; height: 3px;
  margin: var(--sp-5) 0 var(--sp-5);
  border-radius: 2px;
  background: linear-gradient(to right, var(--brand), var(--brand-2));
}
.sec-head--center .sec-rule { margin-inline: auto; }
.sec-head .sec-lead { margin-top: 0; }
.sec-head--center .sec-rule { margin-inline: auto; }

@media (min-width: 768px) { .sec-title { font-size: 38px; line-height: 1.2; letter-spacing: -.035em; } }
@media (min-width: 1024px) { .sec-title { font-size: 56px; line-height: 1.12; letter-spacing: -.045em; }
  .sec-lead { font-size: 17px; } }

.eyebrow {
  display: block;
  margin-bottom: var(--sp-3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brand);
}

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: 64px;
  display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease),
              backdrop-filter var(--t-mid) var(--ease);
}
.site-header .wrap { display: flex; align-items: center; gap: var(--sp-6); }

.site-header.is-stuck {
  background: var(--paper);
  border-bottom-color: var(--line);
}

.brandmark {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: 17px; font-weight: 700; letter-spacing: -.03em;
  color: #fff;
  transition: color var(--t-mid) var(--ease);
}
.is-stuck .brandmark { color: var(--brand); }

.gnb { display: none; margin-left: auto; }
.gnb ul { display: flex; align-items: center; gap: var(--sp-6); }
.gnb a {
  position: relative;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.88);
  padding-block: var(--sp-2);
  transition: color var(--t-fast) var(--ease);
}
.is-stuck .gnb a { color: var(--ink-body); }
.gnb a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; border-radius: 2px;
  background: var(--brand-point);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-fast) var(--ease);
}
.gnb a:hover::after, .gnb a.is-active::after { transform: scaleX(1); }
.is-stuck .gnb a:hover { color: var(--brand); }

.hdr-cta { display: none; gap: var(--sp-2); margin-left: var(--sp-4); }

.nav-toggle {
  margin-left: auto;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-field);
  color: #fff;
  transition: color var(--t-mid) var(--ease), background var(--t-fast) var(--ease);
}
.is-stuck .nav-toggle { color: var(--brand); }
.nav-toggle:hover { background: rgba(255,255,255,.14); }
.is-stuck .nav-toggle:hover { background: var(--wash-2); }

@media (min-width: 1024px) {
  .site-header { height: 72px; }
  .gnb { display: block; }
  .hdr-cta { display: flex; }
  .nav-toggle { display: none; }
}

.drawer {
  position: fixed; inset: 0; z-index: 70;
  display: grid; grid-template-rows: 1fr auto;
  background: var(--brand);
  color: #fff;
  padding: 88px var(--pad-x) calc(var(--sp-8) + env(safe-area-inset-bottom, 0px));
  
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
}
.drawer[data-open="true"] { transform: none; }
.drawer ul { display: grid; gap: var(--sp-2); align-content: start; }
.drawer a {
  display: block; padding-block: var(--sp-4);
  text-align: center;
  font-size: 22px; font-weight: 600; letter-spacing: -.02em;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.drawer-close {
  position: absolute; top: 18px; right: calc(var(--pad-x) - 8px);
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-field); color: #fff;
}
.drawer-foot { display: grid; gap: var(--sp-3); text-align: center; }

.drawer a.drawer-tel {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-size: 22px; font-weight: 700; letter-spacing: -.01em;
  border-bottom: 0;   
}

@media (max-height: 800px) {
  .drawer { padding-top: 68px; }
  .drawer a { padding-block: var(--sp-3); font-size: 20px; }
  .drawer-tel { font-size: 20px; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  border-radius: var(--r-pill);
  font-weight: 600;
  white-space: nowrap;
  transition: transform var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease),
              background var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease),
              color var(--t-mid) var(--ease);
}
.btn:active { transform: translateY(0); }

.btn--primary {
  padding: 16px 36px;
  font-size: 15px; letter-spacing: .01em;
  color: #fff;
  background: var(--brand-grad);
  box-shadow: var(--sh-cta);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--sh-cta-hover); }

.btn--ghost {
  padding: 16px 32px;
  font-size: 15px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(var(--shadow-rgb), .7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { transform: translateY(-3px); background: rgba(var(--shadow-rgb), .85); border-color: #fff; }

.btn--sm { padding: 9px 20px; font-size: 13px; }
.btn--outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}
.btn--outline:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-2px); }
.is-stuck .btn--outline { color: var(--ink-body); border-color: var(--line-2); }
.is-stuck .btn--outline:hover { color: var(--brand); border-color: var(--brand); background: var(--wash-1); }

.btn .ic { width: 17px; height: 17px; flex: 0 0 auto; }

.btn:active,
.btn--primary:active,
.btn--ghost:active,
.btn--outline:active {
  transform: translateY(0) scale(.97);
  transition-duration: 60ms;
}
.nav-toggle:active, .drawer-close:active, .to-top:active,
.tabs button:active, .loc-nav button:active {
  transform: scale(.94);
  transition-duration: 60ms;
}

.news-card:active, .drawer a:active, .rail a:active, .rail button:active,
.gnb a:active, .brandmark:active, .agree-view:active {
  background-color: var(--wash-2);
  transition-duration: 60ms;
}
.drawer a:active, .rail a:active, .rail button:active { background-color: rgba(255,255,255,.12); }

.hero {
  position: relative;
  min-height: 82svh;
  display: grid; align-items: end;   
  padding-block: 100px var(--sp-8);
  overflow: hidden;
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 68%; }

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 68%;
  opacity: 0;
  transition: opacity .6s var(--ease);
  pointer-events: none;
}
.hero-video[data-playing="true"] { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }

.hero .wrap { position: relative; z-index: 1; text-align: center; }

.shot-note {
  margin: 0;
  word-break: keep-all;   
  padding: var(--sp-4) var(--pad-x);
  background: var(--wash-1);
  color: var(--ink-mute);
  font-size: 12px; line-height: 1.5; text-align: center;
}

.hero-kicker {
  font-size: 13px; font-weight: 500; letter-spacing: .06em;
  color: rgba(255,255,255,.86);
}
.hero h1 {
  margin-top: var(--sp-5);
  font-size: 40px; font-weight: 700; line-height: 1.14; letter-spacing: -.025em;
  text-shadow: 0 2px 24px rgba(0,0,0,.32);
}
.hero-sub {
  margin-top: var(--sp-4);
  font-size: 20px; font-weight: 500; line-height: 1.4; letter-spacing: -.02em;
  color: rgba(255,255,255,.94);
  text-shadow: 0 2px 18px rgba(0,0,0,.3);
}
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-2);
  margin-top: var(--sp-8);
}

.hero-badges li {
  padding: 8px 14px;
  border-radius: 4px;                 
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(var(--shadow-rgb), .72);
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
}

.hero-actions {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-2);
  max-width: 520px; margin: var(--sp-10) auto 0;
}

.hero-actions .btn,
.hero-actions .btn--primary,
.hero-actions .btn--ghost {
  width: 100%;
  border-radius: var(--r-field);      
  box-shadow: none;
  background: var(--brand);           
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
.hero-actions .btn:hover { background: var(--brand-2); border-color: rgba(255,255,255,.34); }

@media (min-width: 768px) {
  .hero h1 { font-size: 60px; }
  .hero-sub { font-size: 26px; }
  .hero-badges li { font-size: 14px; }
  .hero-actions { max-width: 560px; gap: var(--sp-3); }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 76px; letter-spacing: -.03em; }
  .hero-sub { font-size: 30px; }
}

.ov-grid { display: grid; gap: var(--sp-10); position: relative; z-index: 1; }
@media (min-width: 1024px) { .ov-grid { grid-template-columns: 5fr 7fr; gap: var(--sp-16); align-items: start; } }

.ov-points { display: grid; gap: var(--sp-5); align-content: start; }

.ov-points { gap: var(--sp-6); }
.ov-points li {
  font-size: 19px; font-weight: 600; line-height: 1.45; letter-spacing: -.03em;
  color: var(--ink);
}
@media (min-width: 1024px) { .ov-points li { font-size: 22px; } }

.spec-table { display: grid; }
.spec-table > div {
  display: grid; grid-template-columns: 96px 1fr; gap: var(--sp-4);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.spec-table > div:last-child { border-bottom: 0; }
.spec-table dt { font-size: 13.5px; color: var(--ink-mute); }
.spec-table dd { font-size: 14.5px; color: var(--ink); letter-spacing: -.01em; }
@media (min-width: 1024px) {
  .spec-table > div { grid-template-columns: 128px 1fr; }
  .spec-table dd { font-size: 15px; }
}

.has-ghost { position: relative; overflow: hidden; }

.ghost-bg {
  position: absolute; right: 0; bottom: 0;
  width: 46%; max-width: 620px; opacity: .07; pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, #000 40%, transparent 100%),
                      linear-gradient(to top, #000 45%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to left, #000 40%, transparent 100%),
              linear-gradient(to top, #000 45%, transparent 100%);
  mask-composite: intersect;
}
.ghost-bg img { width: 100%; }
.has-ghost .wrap { position: relative; z-index: 1; }

.tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px;
  margin-bottom: var(--sp-10);
  border-bottom: 1px solid var(--line);
}
.tabs button {
  padding: 16px 24px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: none;
  font-size: 14px; font-weight: 600; color: var(--ink-mute);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.tabs button:hover { color: var(--ink); }
.tabs button[aria-selected="true"] {
  color: var(--ink);
  border-bottom-color: var(--brand);
  background: none;
}
@media (max-width: 767px) {
  .tabs { gap: 0; }
  .tabs button { padding: 13px 14px; font-size: 13.5px; }
}

.unit-bar {
  display: grid;
  
  grid-template-columns: repeat(3, max-content);
  justify-content: space-between;
  gap: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-6);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--r-media);
  background: var(--wash-1);
}
.unit-bar-cell { display: grid; gap: 2px; min-width: 0; }
.unit-bar-k { font-size: 13px; color: var(--ink-mute); }
.unit-bar b { font-size: 19px; font-weight: 700; letter-spacing: -.03em; color: var(--ink); white-space: nowrap; }
@media (min-width: 768px) { .unit-bar b { font-size: 22px; } }

.unit-panel { display: block; max-width: 1088px; margin-inline: auto; }
.unit-panel[hidden] { display: none; }

.unit-name {
  margin-bottom: var(--sp-5);
  font-size: 28px; font-weight: 700; letter-spacing: -.03em; color: var(--ink);
}
.unit-name span {
  display: block; margin-top: 6px;
  font-size: 14.5px; font-weight: 500; letter-spacing: -.01em; color: var(--ink-mute);
}
@media (min-width: 768px) {
  .unit-name { display: flex; align-items: baseline; gap: var(--sp-4); font-size: 34px; }
  .unit-name span { margin-top: 0; font-size: 15px; }
}

.unit-panel { padding: var(--sp-6); border-radius: var(--r-card); background: var(--paper); box-shadow: var(--sh-card); }
@media (min-width: 768px) { .unit-panel { padding: var(--sp-8); } }
.unit-figure {
  margin: 0;
  border-radius: var(--r-media);
  overflow: hidden;
}
.unit-figure img { width: 100%; }

.plan-figure {
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--sh-card);
}
.plan-figure img { width: 100%; }
.plan-legend {
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-6);
  padding: var(--sp-6);
  border-top: 1px solid var(--line);
}
.plan-legend li { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: 13.5px; }
.plan-legend i { width: 18px; height: 14px; border-radius: 3px; border: 1px solid rgba(0,0,0,.14); }
.plan-total {
  font-size: 15px; font-weight: 700; color: var(--ink);
  padding-right: var(--sp-4); margin-right: var(--sp-2);
  border-right: 1px solid var(--line);
}

.prem-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 768px) { .prem-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); } }
@media (min-width: 1024px) { .prem-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); } }

.prem-card {
  height: 100%;
  padding: var(--sp-8) var(--sp-8) var(--sp-10);
  border-radius: var(--r-card);
  background: var(--paper);
  box-shadow: var(--sh-card);
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
}
.prem-card:hover { transform: translateY(-6px); box-shadow: var(--sh-card-hover); }
.prem-no {
  display: block; margin-bottom: var(--sp-4);
  font-size: 34px; font-weight: 700; line-height: 1; letter-spacing: -.04em;
  color: var(--line-2);
}
.prem-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -.025em; color: var(--ink); }
.prem-card p { margin-top: var(--sp-3); font-size: 14.5px; line-height: 1.65; color: var(--ink-body); }
@media (min-width: 1024px) {
  .prem-no { font-size: 40px; }
  .prem-card h3 { font-size: 21px; }
}

.loc-layout { display: grid; gap: var(--sp-8); }
@media (min-width: 1024px) { .loc-layout { grid-template-columns: 4fr 8fr; gap: var(--sp-12); align-items: start; } }

.loc-nav { display: flex; flex-direction: column; gap: var(--sp-2); }
.loc-nav button {
  width: 100%;
  padding: 14px 20px;
  text-align: left;
  border-radius: var(--r-field);
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 14.5px; font-weight: 600; color: var(--ink-body);
  transition: all var(--t-fast) var(--ease);
}
.loc-nav button[aria-selected="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }

.loc-items { display: grid; gap: var(--sp-3); }
.loc-items li {
  position: relative;
  padding: var(--sp-5) var(--sp-6) var(--sp-5) var(--sp-8);
  border-radius: var(--r-media);
  background: var(--paper);
  box-shadow: var(--sh-card);
}

.loc-items li::before {
  content: ""; position: absolute; left: var(--sp-5); top: var(--sp-5); bottom: var(--sp-5);
  width: 3px; border-radius: 2px; background: var(--brand-2);
}
.loc-items b { display: block; font-size: 15.5px; color: var(--ink); letter-spacing: -.015em; }
.loc-items small { display: block; margin-top: 5px; font-size: 13px; line-height: 1.6; color: var(--ink-mute); }
.loc-items[hidden] { display: none; }
.unit-panel[hidden], .plan-figure[hidden] { display: none; }

.news-grid { display: grid; gap: var(--sp-4); max-width: 960px; margin-inline: auto; }
@media (min-width: 768px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
.news-card {
  display: block; height: 100%;
  padding: var(--sp-6);
  border-radius: var(--r-media);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease), border-color var(--t-slow) var(--ease);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--sh-card-hover); border-color: transparent; }
.news-card h3 { font-size: 16px; font-weight: 600; line-height: 1.5; letter-spacing: -.02em; color: var(--ink); }
.news-src { display: block; margin-top: var(--sp-3); font-size: 13px; color: var(--ink-mute); }

.contact .sec-title { color: var(--ink); }
.contact .sec-lead { color: var(--ink-body); }

.contact-grid { display: grid; gap: var(--sp-5); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: var(--sp-6); align-items: stretch; } }

.contact-card {
  display: grid; align-content: start; gap: var(--sp-4);
  padding: var(--sp-8);
  border-radius: var(--r-card);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--sh-card);
}
.contact-card-t { font-size: 20px; font-weight: 700; letter-spacing: -.025em; color: #fff; }
.contact-card-s { margin-top: -6px; font-size: 14px; color: rgba(255,255,255,.66); }
.contact-tel { display: grid; gap: var(--sp-2); margin-top: var(--sp-4); }
.contact-tel small { font-size: 12.5px; letter-spacing: .08em; color: rgba(255,255,255,.55); }
.contact-tel a { display: inline-flex; align-items: center; gap: var(--sp-3); font-size: 32px; font-weight: 700; letter-spacing: -.02em; color: #fff; }
.contact-tel .ic { width: 24px; height: 24px; color: var(--brand-point); }
.contact-addr {
  margin-top: var(--sp-5); padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.72);
}

.form-card {
  padding: var(--sp-8);
  border-radius: var(--r-card);
  background: var(--paper);
  border: 0;
  box-shadow: var(--sh-card);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.form-card > p:first-child { color: var(--ink) !important; }
.field-row { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .field-row { grid-template-columns: repeat(2, 1fr); } }
.field { display: grid; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink-body); }
.field .req { color: var(--brand-point); margin-left: 2px; }
.field input, .field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--r-field);
  border: 1px solid var(--line);
  background: var(--wash-1);
  color: var(--ink);
  font-size: 15px;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.field input::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus { outline: none; border-color: var(--brand); background: var(--paper); }

.agree-row { display: flex; align-items: center; gap: var(--sp-3); margin-block: var(--sp-5) var(--sp-6); flex-wrap: wrap; }
.agree-row label { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: 14px; color: var(--ink-body); }
.agree-row input[type="checkbox"] { width: 24px; height: 24px; accent-color: var(--brand); }
.agree-view { font-size: 13px; color: var(--ink-mute); text-decoration: underline; text-underline-offset: 3px; }
.agree-body {
  margin-bottom: var(--sp-5); padding: var(--sp-5);
  border-radius: var(--r-field);
  background: var(--wash-2);
  font-size: 13px; line-height: 1.7; color: var(--ink-body);
}
.agree-body dt { font-weight: 700; color: var(--ink); margin-top: var(--sp-3); }
.agree-body dt:first-child { margin-top: 0; }
.form-submit { width: 100%; }

.form-status { margin-top: var(--sp-4); font-size: 14px; min-height: 20px; color: var(--ink-body); }
.form-status[data-tone="warn"] { color: var(--danger); font-weight: 600; }
.form-status[data-tone="ok"]   { color: var(--success); font-weight: 600; }

.field-err { margin-top: 6px; font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--danger); }
.field-err:empty { display: none; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: var(--danger); background: #fff5f5; }
.agree-row[data-invalid="true"] { color: var(--danger); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.datefield input[type="date"] { color: transparent; }
.datefield input[type="date"]:focus::-webkit-datetime-edit { opacity: 1; color: var(--ink); }
.datefield input[type="date"]:focus { color: var(--ink); }
.datefield-face { color: var(--ink); }
.datefield-face:empty::before { color: var(--ink-mute); }

.site-footer {
  padding-block: var(--sp-12);
  background: #1b1b1b;
  color: rgba(255,255,255,.62);
  font-size: 13px; line-height: 1.75;
}
.site-footer .wrap { display: grid; gap: var(--sp-8); }
.ft-brand { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.ft-table { margin-top: var(--sp-5); }
.ft-table td { padding: 6px 0; vertical-align: top; }
.ft-table td:first-child { width: 96px; color: rgba(255,255,255,.44); white-space: nowrap; }
.ft-notes { display: grid; gap: var(--sp-2); margin-top: var(--sp-6); font-size: 12.5px; color: rgba(255,255,255,.5); }
.ft-copy { margin-top: var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,.12); font-size: 12.5px; }

.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: var(--sh-bar);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.dock a {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  min-height: 56px;
  font-size: 15px; font-weight: 600; color: var(--brand);
  transition: background var(--t-fast) var(--ease);
}
.dock a:active { background: var(--wash-2); }
.dock a + a { border-left: 1px solid var(--line); }
.dock .ic { width: 19px; height: 19px; }
@media (min-width: 1024px) { .dock { display: none; } }

.rail { display: none; }
@media (min-width: 1024px) {
  .rail {
    position: fixed; right: 20px; top: 50%; transform: translateY(-50%); z-index: 50;
    display: grid; gap: var(--sp-2);
  }
  .rail a, .rail button {
    width: 60px; padding: 14px 0;
    display: grid; justify-items: center; gap: 6px;
    border-radius: var(--r-media);
    background: rgba(var(--brand-rgb), .92);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11.5px; font-weight: 600; letter-spacing: -.02em;
    box-shadow: 0 6px 20px rgba(var(--shadow-rgb), .28);
    transition: transform var(--t-mid) var(--ease), background var(--t-mid) var(--ease);
  }
  .rail a:hover, .rail button:hover { transform: translateX(-3px); background: var(--brand); }
  .rail .ic { width: 20px; height: 20px; }
  .rail .to-top { background: rgba(0,0,0,.42); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

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

@media (prefers-reduced-transparency: reduce) {
  .btn--ghost {
    background: rgba(var(--shadow-rgb), .62);
    border-color: rgba(255,255,255,.75);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .hero-badges li {
    background: rgba(var(--shadow-rgb), .58);
    border-color: rgba(255,255,255,.6);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .rail a, .rail button {
    background: var(--brand);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .rail .to-top { background: rgba(0,0,0,.78); }
}

@media (prefers-contrast: more) {
  .site-header.is-stuck { border-bottom-color: var(--ink-mute); }
  .unit-panel, .form-card, .news-card, .loc-items li, .loc-map, .prem-card {
    border: 1px solid var(--line-2);
    box-shadow: none;
  }
  .field input, .field select, .field textarea { border-color: var(--ink-mute); }
  .hero-badges li { background: rgba(var(--shadow-rgb), .72); border-color: #fff; }
  .btn--ghost { background: rgba(var(--shadow-rgb), .72); border-color: #fff; }
}

.brand-copy--sub { margin-top: var(--sp-4); font-size: 14.5px; color: rgba(255,255,255,.72); }

.brand-grid { display: grid; gap: var(--sp-3); }
@media (min-width: 768px) { .brand-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); } }

.brand-grid figure { margin: 0; border-radius: var(--r-media); overflow: hidden; background: var(--wash-2); }
.brand-grid img { width: 100%; height: auto; }

.loc-map {
  margin: 0 0 var(--sp-10);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--sh-card);
}
.loc-map img { width: 100%; }

@media (max-width: 1023px) {
  .brandmark { padding-block: 10px; }
  .nav-toggle { width: 44px; height: 44px; }
  .agree-view { padding: 11px 6px; margin: -11px -6px; }
  .agree-row label { padding-block: 11px; }
  .field input, .field select { min-height: 46px; }
  .drawer-close { width: 46px; height: 46px; }
}

.agree-row input[type="checkbox"] { width: 24px; height: 24px; }
.agree-view { padding-inline: 12px; margin-inline: -12px; }
.agree-view { min-height: 44px; display: inline-flex; align-items: center; }

.datefield { position: relative; }
.datefield input[type="date"] {
  
  color: transparent;
}
.datefield input[type="date"]::-webkit-datetime-edit { opacity: 0; }
.datefield input[type="date"]:focus::-webkit-datetime-edit { opacity: 1; color: #fff; }
.datefield input[type="date"]:focus { color: #fff; }

.datefield-face {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
  font-size: 15px; color: #fff;
  transition: opacity var(--t-fast) var(--ease);
}
.datefield-face:empty::before {
  content: attr(data-empty);
  color: rgba(255,255,255,.55);
}
.datefield input[type="date"]:focus ~ .datefield-face { opacity: 0; }

@media (max-width: 767px) {
  
  .hero { align-items: stretch; }
  .hero .wrap { display: flex; flex-direction: column; justify-content: space-between; }
  
  .hero-badges {
    margin-top: 0;
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-2);
    max-width: 330px; margin-inline: auto;
  }
  .hero-badges li { text-align: center; }
  
  .hero-actions { margin-top: 0; width: 100%; align-self: center; }
  
  .hero { min-height: 62svh; }
  
  .hero-actions .btn { padding-inline: 8px; font-size: 13px; gap: 6px; }
  .hero-actions .btn .ic { width: 15px; height: 15px; }
  .unit-bar b { font-size: 17px; }

  .ov-points {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }
  .ov-points li {
    padding: var(--sp-4) var(--sp-4) var(--sp-5);
    border-bottom: 0;
    border-radius: var(--r-media);
    background: var(--paper);
    box-shadow: var(--sh-card);
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
    display: flex; align-items: center; justify-content: center;
  }

  
  .prem-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
  .prem-card { padding: var(--sp-5) var(--sp-5) var(--sp-6); }
  .prem-no { margin-bottom: var(--sp-2); font-size: 22px; }
  .prem-card h3 { font-size: 15px; letter-spacing: -.03em; }
  
  .prem-card p { display: block; font-size: 13.5px; line-height: 1.6; }
}
.form-lead { margin-bottom: var(--sp-6); font-size: 15px; font-weight: 600; color: var(--ink); }

.zoomable { position: relative; display: block; cursor: zoom-in; }
.zoomable::after {
  content: "";
  position: absolute; right: 12px; bottom: 12px;
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  background: rgba(var(--shadow-rgb), .58) center / 20px 20px no-repeat
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='%23fff'%3E%3Cpath d='M229.66,218.34l-50.07-50.06a88.11,88.11,0,1,0-11.31,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Zm112,0a8,8,0,0,1-8,8H120v24a8,8,0,0,1-16,0V120H80a8,8,0,0,1,0-16h24V80a8,8,0,0,1,16,0v24h24A8,8,0,0,1,152,112Z'/%3E%3C/svg%3E");
  transition: background-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  pointer-events: none;
}
.zoomable:hover::after { background-color: rgba(var(--shadow-rgb), .82); }
.zoomable:active::after { transform: scale(.92); transition-duration: 60ms; }

.viewer[hidden] { display: none; }
.viewer {
  position: fixed; inset: 0; z-index: 80;
  display: grid; place-items: center;
  background: rgba(var(--shadow-rgb), .94);
  opacity: 0;
  transition: opacity .22s var(--ease);
}
.viewer[data-open="true"] { opacity: 1; }
.viewer-stage {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  overflow: hidden;
  touch-action: none;           
  cursor: grab;
}
.viewer-stage:active { cursor: grabbing; }
.viewer-stage img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  transform-origin: 0 0;
  will-change: transform;
  user-select: none; -webkit-user-drag: none;
}
.viewer-close {
  position: absolute; top: max(12px, env(safe-area-inset-top)); right: 12px;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.14);
  color: #fff;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.viewer-close:hover { background: rgba(255,255,255,.26); }
.viewer-close:active { transform: scale(.92); transition-duration: 60ms; }
.viewer-hint {
  position: absolute; left: 0; right: 0;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 13px; color: rgba(255,255,255,.66);
  opacity: 1; transition: opacity .4s var(--ease);
  pointer-events: none;
}
.viewer-hint[data-fade="true"] { opacity: 0; }
@media (min-width: 1024px) { .viewer-hint { font-size: 13.5px; } }

@media (prefers-reduced-motion: reduce) {
  .viewer { transition: opacity .15s linear; }
}

@media (prefers-reduced-transparency: reduce) {
  .viewer { background: rgb(var(--shadow-rgb)); }
  .viewer-close { background: rgba(255,255,255,.3); }
}

.loc-panel[hidden] { display: none; }
.loc-shot {
  margin: 0 0 var(--sp-6);
  border-radius: var(--r-media);
  overflow: hidden;
  background: var(--wash-2);
  box-shadow: var(--sh-card);
}
.loc-shot img { width: 100%; height: auto; display: block; }
