*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --sky:      #5BB8F5;
  --sky-lt:   #D6EEFF;
  --sky-dk:   #2E87C8;
  --sun:      #FFD260;
  --sun-lt:   #FFF3C4;
  --sun-dk:   #C98B00;
  --mint:     #4ECBA5;
  --mint-lt:  #C8F5E8;
  --mint-dk:  #2A9A7A;
  --coral:    #FF7B6B;
  --coral-lt: #FFE0DC;
  --lav:      #A78BFA;
  --lav-lt:   #EDE9FE;
  --lav-dk:   #7C5CCC;
  --bg:       #F0F9FF;
  --bg2:      #E6F4FC;
  --white:    #FFFFFF;
  --ink:      #1A2B3C;
  --ink-m:    #4A6278;
  --ink-f:    #90A8BA;
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 40px;
  --sh-sm: 0 2px 10px rgba(91,184,245,.12);
  --sh-md: 0 6px 24px rgba(91,184,245,.18);
  --sh-lg: 0 12px 48px rgba(91,184,245,.22);
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  font-size: 15px;
  padding-bottom: 80px;
  overflow-x: hidden;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* =============================================
   PAGE HERO (compact)
   ============================================= */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--sky-dk) 0%, #1a5498 55%, #1a7a60 100%);
  padding: 72px 28px 80px;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  top: -180px; right: -120px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78,203,165,.12) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.ph-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.22);
  margin-bottom: 20px;
  animation: fadedn .7s .1s both;
}
.ph-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--sky);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.6);opacity:.5} }

.page-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 6vw, 46px);
  font-weight: 300; color: #fff;
  line-height: 1.4; margin-bottom: 14px;
  animation: fadedn .7s .25s both;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.ph-accent { color: #7ee8d0; }
.page-hero p {
  font-size: 15px; color: rgba(255,255,255,.8); font-weight: 300;
  animation: fadedn .7s .4s both;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  max-width: 800px; margin: 0 auto;
  padding: 18px 28px 0;
  font-size: 12px; color: var(--ink-f);
}
.breadcrumb a { color: var(--sky-dk); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--ink-f); }

/* SECTION */
.sec {
  max-width: 800px; margin: 0 auto; padding: 64px 28px;
}
.sec + .sec { border-top: 1.5px dashed rgba(91,184,245,.22); }

.sec-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sky-lt); color: var(--sky-dk);
  font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.sec-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 4vw, 32px); font-weight: 300;
  color: var(--ink); margin-bottom: 14px; line-height: 1.5;
}
.sec-lead {
  font-size: 15px; color: var(--ink-m); line-height: 1.85; margin-bottom: 40px;
}

/* =============================================
   OVERVIEW TABLE
   ============================================= */
.overview-tbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1.5px solid var(--sky-lt);
}
.overview-tbl tr {
  transition: background .15s;
}
.overview-tbl tr:hover td,
.overview-tbl tr:hover th { background: #f5fbff; }
.overview-tbl th {
  text-align: left;
  font-size: 12px; font-weight: 500;
  color: var(--ink-m);
  padding: 18px 24px;
  background: var(--bg2);
  border-bottom: 1px solid rgba(91,184,245,.12);
  width: 36%;
  vertical-align: middle;
  letter-spacing: .04em;
  position: relative;
}
.overview-tbl th::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: linear-gradient(to bottom, var(--sky), var(--mint));
  border-radius: 3px;
}
.overview-tbl td {
  padding: 18px 24px;
  font-size: 14px; color: var(--ink);
  border-bottom: 1px solid rgba(91,184,245,.1);
  vertical-align: middle;
  line-height: 1.7;
}
.overview-tbl tr:last-child th,
.overview-tbl tr:last-child td { border-bottom: none; }
.overview-tbl small { font-size: 12px; color: var(--ink-f); display: block; margin-top: 3px; }

.tbl-tag {
  display: inline-block; font-size: 11px; font-weight: 500;
  padding: 2px 10px; border-radius: 100px;
  background: var(--mint-lt); color: var(--mint-dk);
  margin-right: 6px; margin-bottom: 4px;
}

/* =============================================
   PHILOSOPHY / VISION
   ============================================= */
.vision-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.vision-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--sky-lt);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.vision-card::before {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  top: -50px; right: -50px;
  opacity: .4;
}
.vc-sky::before  { background: radial-gradient(circle, var(--sky-lt), transparent 70%); }
.vc-mint::before { background: radial-gradient(circle, var(--mint-lt), transparent 70%); }
.vc-sun::before  { background: radial-gradient(circle, var(--sun-lt), transparent 70%); }
.vc-lav::before  { background: radial-gradient(circle, var(--lav-lt), transparent 70%); }

.vision-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--sky); }
.vc-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 36px; font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.vc-sky  .vc-num  { color: var(--sky); }
.vc-mint .vc-num  { color: var(--mint); }
.vc-sun  .vc-num  { color: var(--sun-dk); }
.vc-lav  .vc-num  { color: var(--lav-dk); }
.vc-title {
  font-weight: 500; font-size: 15px; color: var(--ink);
  margin-bottom: 10px;
}
.vc-desc {
  font-size: 13px; color: var(--ink-m); line-height: 1.8;
}

/* =============================================
   STAFF CARDS
   ============================================= */
.staff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.staff-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--sky-lt);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  cursor: default;
}
.staff-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }

.staff-avatar {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}
.av-sky   { background: linear-gradient(135deg, var(--sky-lt), #b8e5ff); }
.av-mint  { background: linear-gradient(135deg, var(--mint-lt), #aaf0da); }
.av-sun   { background: linear-gradient(135deg, var(--sun-lt),  #ffe9a0); }
.av-lav   { background: linear-gradient(135deg, var(--lav-lt),  #d8d0fe); }
.av-coral { background: linear-gradient(135deg, var(--coral-lt),#ffcfca); }

.staff-avatar .av-emoji {
  font-size: 72px;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  position: relative; z-index: 1;
}
.staff-card:hover .av-emoji { transform: scale(1.15) rotate(-5deg); }

.staff-avatar::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  bottom: -70px; right: -50px;
}

.staff-body { padding: 22px 24px; }
.staff-role {
  font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sky-dk); margin-bottom: 6px;
}
.staff-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; font-weight: 400;
  color: var(--ink); margin-bottom: 10px;
}
.staff-msg {
  font-size: 13px; color: var(--ink-m); line-height: 1.8;
}
.staff-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px;
}
.s-tag {
  font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 100px;
  background: var(--sky-lt); color: var(--sky-dk);
  border: 1px solid rgba(91,184,245,.3);
}

/* =============================================
   MAP / ACCESS
   ============================================= */
.access-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1.5px solid var(--sky-lt);
}
.access-header {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--sky-dk), #1a5ea0);
  color: #fff;
}
.access-header-icon { font-size: 28px; }
.access-header-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px; font-weight: 400;
}
.access-header-sub { font-size: 12px; opacity: .75; margin-top: 2px; }

.access-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.access-info {
  padding: 28px 28px;
  border-right: 1.5px solid var(--sky-lt);
}
.access-row {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(91,184,245,.1);
  align-items: flex-start;
}
.access-row:last-child { border-bottom: none; }
.access-row-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  background: var(--sky-lt);
  transition: transform .25s;
}
.access-row:hover .access-row-icon { transform: rotate(-8deg) scale(1.1); }
.access-row-label {
  font-size: 11px; color: var(--ink-f);
  letter-spacing: .06em; margin-bottom: 3px;
}
.access-row-val {
  font-size: 14px; color: var(--ink); line-height: 1.6;
}
.access-row-val a {
  color: var(--sky-dk); text-decoration: none; font-weight: 500;
}
.access-row-val a:hover { text-decoration: underline; }

/* Stylized map placeholder */
.map-area {
  position: relative;
  background: linear-gradient(160deg, #dff1fb 0%, #e6f9f0 100%);
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
/* decorative map grid lines */
.map-area::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(91,184,245,.1) 0px, transparent 1px, transparent 40px, rgba(91,184,245,.1) 40px),
    repeating-linear-gradient(90deg, rgba(91,184,245,.1) 0px, transparent 1px, transparent 40px, rgba(91,184,245,.1) 40px);
}
.map-pin-wrap {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.map-pin {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--sky), var(--sky-dk));
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 20px rgba(46,135,200,.4);
  display: flex; align-items: center; justify-content: center;
  animation: pinbounce 2.4s ease-in-out infinite;
}
@keyframes pinbounce {
  0%,100% { transform: rotate(-45deg) translateY(0); }
  50%      { transform: rotate(-45deg) translateY(-8px); }
}
.map-pin-inner {
  transform: rotate(45deg);
  font-size: 22px;
}
.map-pin-label {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 8px 16px;
  font-size: 12px; font-weight: 500;
  color: var(--sky-dk);
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--sky-lt);
  white-space: nowrap;
}
.map-open-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--sky-dk);
  background: var(--white);
  padding: 8px 16px; border-radius: 100px;
  border: 1.5px solid var(--sky-lt);
  text-decoration: none;
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s;
}
.map-open-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

/* Road lines decoration */
.road-h, .road-v {
  position: absolute;
  background: rgba(255,255,255,.7);
  border-radius: 3px;
}
.road-h { height: 10px; left: 0; right: 0; top: 50%; transform: translateY(-50%); }
.road-v { width: 10px; top: 0; bottom: 0; left: 38%; }

/* =============================================
   HISTORY TIMELINE
   ============================================= */
.history-wrap {
  position: relative;
  padding-left: 40px;
}
.history-wrap::before {
  content: '';
  position: absolute;
  left: 14px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--sky), var(--mint));
  border-radius: 2px;
  opacity: .4;
}
.history-item {
  position: relative;
  padding: 0 0 28px 28px;
}
.history-item:last-child { padding-bottom: 0; }
.history-dot {
  position: absolute;
  left: -32px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--sky);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--sky);
  transition: transform .25s, box-shadow .25s;
}
.history-item:hover .history-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 3px var(--sky-dk), 0 0 12px rgba(91,184,245,.4);
}
.history-year {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px; font-weight: 600;
  color: var(--sky-dk);
  margin-bottom: 4px; letter-spacing: .06em;
}
.history-title {
  font-weight: 500; font-size: 15px; color: var(--ink);
  margin-bottom: 6px;
}
.history-desc {
  font-size: 13px; color: var(--ink-m); line-height: 1.75;
}
.history-body {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--sky-lt);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
}
.history-item:hover .history-body {
  transform: translateX(4px);
  box-shadow: var(--sh-md);
  border-color: var(--sky);
}

/* =============================================
   NUMBERS / STATS
   ============================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
}
.stat-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--sky-lt);
  transition: transform .3s, box-shadow .3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  bottom: -40px; right: -30px;
  opacity: .25;
}
.sc-sky::before   { background: var(--sky); }
.sc-mint::before  { background: var(--mint); }
.sc-sun::before   { background: var(--sun); }
.sc-lav::before   { background: var(--lav); }
.sc-coral::before { background: var(--coral); }

.stat-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.stat-icon { font-size: 28px; margin-bottom: 10px; display: block; transition: transform .3s; }
.stat-card:hover .stat-icon { transform: scale(1.2) rotate(-6deg); }
.stat-val {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px; font-weight: 300;
  line-height: 1; margin-bottom: 6px;
}
.sc-sky   .stat-val { color: var(--sky-dk); }
.sc-mint  .stat-val { color: var(--mint-dk); }
.sc-sun   .stat-val { color: var(--sun-dk); }
.sc-lav   .stat-val { color: var(--lav-dk); }
.sc-coral .stat-val { color: #c0392b; }
.stat-unit {
  font-size: 14px; font-weight: 400;
}
.stat-label {
  font-size: 11px; color: var(--ink-f); letter-spacing: .06em;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--sky-dk) 0%, #1a5498 55%, var(--mint-dk) 100%);
  border-radius: var(--r-xl);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -120px; right: -80px;
  animation: spin 24s linear infinite;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -60px; left: -40px;
  animation: spin 32s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 4vw, 28px); font-weight: 300;
  color: #fff; margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.cta-sub {
  font-size: 14px; color: rgba(255,255,255,.8);
  margin-bottom: 30px; line-height: 1.8;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-p {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--sky), var(--sky-dk));
  color: #fff; text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 14px 28px; border-radius: 100px;
  box-shadow: 0 4px 16px rgba(91,184,245,.45);
  transition: transform .2s, box-shadow .2s;
}
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(91,184,245,.55); }
.btn-s {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  color: #fff; text-decoration: none;
  font-size: 14px; font-weight: 500; padding: 14px 28px;
  border-radius: 100px; border: 1.5px solid rgba(255,255,255,.35);
  transition: transform .2s, background .15s;
}
.btn-s:hover { transform: translateY(-2px); background: rgba(255,255,255,.25); }

.hl-box {
  margin-top: 22px;
  background: linear-gradient(135deg, var(--sky-lt), var(--mint-lt));
  border-radius: var(--r-lg); padding: 20px 24px;
  border-left: 4px solid var(--sky);
  font-size: 14px; color: var(--ink-m); line-height: 1.8;
}
.hl-box strong { color: var(--sky-dk); font-weight: 500; }

strong { font-weight: 500; color: var(--ink); }

/* BOTTOM NAV */
.bnav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(240,249,255,.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1.5px solid rgba(91,184,245,.2);
  display: flex; z-index: 100; height: 64px;
}
.ni {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; text-decoration: none; color: var(--ink-f); font-size: 10px; letter-spacing: .04em;
  transition: color .15s; cursor: pointer; border: none; background: none; position: relative;
  -webkit-tap-highlight-color: transparent;
}
.ni.active, .ni:hover { color: var(--sky-dk); }
.ni svg { width: 22px; height: 22px; transition: transform .2s; }
.ni:hover svg { transform: translateY(-2px) scale(1.1); }
.ni.active::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--mint));
  border-radius: 0 0 4px 4px;
}
.sub {
  position: absolute; bottom: calc(100% + 8px);
  left: 50%; transform: translateX(-50%);
  width: 200px; max-width: calc(100vw - 24px);
  background: var(--white); border-radius: 14px;
  box-shadow: 0 4px 28px rgba(91,184,245,.22);
  overflow: hidden; max-height: 0;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.ni.open .sub { max-height: 420px; }
@media(max-width: 360px) { .sub { left: 0; transform: none; } }
.sub a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; font-size: 14px; color: var(--ink-m); text-decoration: none;
  border-bottom: 1px solid var(--bg2);
  transition: background .12s, color .12s, padding-left .15s;
}
.sub a::before { content: '›'; color: var(--sky); font-size: 18px; line-height: 1; transition: transform .15s; }
.sub a:last-child { border-bottom: none; }
.sub a:hover { background: var(--bg2); color: var(--sky-dk); padding-left: 26px; }
.sub a:hover::before { transform: translateX(3px); }

/* SKIP LINK */
.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--sky-dk); color: #fff;
  padding: 10px 20px; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: 13px; font-weight: 500; text-decoration: none;
  z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* FOOTER */
.site-footer {
  max-width: 800px; margin: 0 auto;
  padding: 48px 28px 100px;
  text-align: center;
  border-top: 1.5px dashed rgba(91,184,245,.22);
}
.footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px; font-weight: 300; color: var(--sky-dk); margin-bottom: 16px;
}
.footer-logo span { color: var(--mint-dk); }
.footer-address {
  font-style: normal; font-size: 13px; color: var(--ink-m);
  display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-bottom: 8px;
}
.footer-tel a {
  font-size: 14px; font-weight: 500; color: var(--sky-dk);
  text-decoration: none; margin-bottom: 6px; display: inline-block;
}
.footer-tel a:hover { text-decoration: underline; }
.footer-hours { font-size: 12px; color: var(--ink-f); margin-bottom: 20px; }
.footer-copy { font-size: 11px; color: var(--ink-f); }

@keyframes fadedn { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:none; } }

@media (max-width: 560px) {
  .vision-wrap    { grid-template-columns: 1fr; }
  .staff-grid     { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .access-body    { grid-template-columns: 1fr; }
  .access-info    { border-right: none; border-bottom: 1.5px solid var(--sky-lt); }
  .map-area       { min-height: 220px; }
  .overview-tbl th { width: 40%; font-size: 11px; padding: 14px 14px; }
  .overview-tbl td { padding: 14px 14px; font-size: 13px; }
  .cta-banner     { padding: 32px 22px; }
  .sec            { padding: 52px 20px; }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin: 16px 0;
}
.footer-nav a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 12px;
}
.footer-nav a:hover { color: #fff; }