html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100%;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: "NPS_font", var(--font-sans);
  letter-spacing: 0;
  overflow-wrap: break-word;
  overflow-x: hidden;
  word-break: keep-all;
}

body.is-locked {
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 80px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-ink);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.72);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-weight: 900;
}

.site-logo {
  gap: 10px;
}

.footer-logo {
  gap: 8px;
}

.logo-asset {
  display: block;
  flex: 0 0 auto;
  object-fit: fill;
}

.footer-logo .logo-asset {
  opacity: 0.52;
}

.logo-header-mark {
  width: 86px;
  height: 28px;
}

.logo-header-city {
  width: 88.47px;
  height: 28px;
}

.logo-header-service {
  width: 156.1px;
  height: 28px;
}

.logo-divider {
  width: 1px;
  height: 20px;
  background: rgba(113, 113, 123, 0.22);
}

.footer-logo-mark-wrap {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.footer-logo-mark {
  width: 24px;
  height: 24px;
}

.footer-logo-universe {
  display: grid;
  gap: 2px;
  justify-items: start;
}

.footer-logo-universe-main {
  width: 47.11px;
  height: 5.41px;
}

.footer-logo-universe-sub {
  width: 35.84px;
  height: 3.86px;
}

.footer-logo-city {
  width: 75.47px;
  height: 24px;
}

.footer-logo-service {
  width: 133.8px;
  height: 24px;
}

.footer-logo-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.32);
}

.logo-mark {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  border-radius: 4px;
  background: linear-gradient(135deg, #add600, #009fe3);
}

.footer-logo .logo-mark {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.24));
}

.logo-city {
  color: #0f4da2;
  font-size: 30px;
  line-height: 1;
}

.logo-service {
  color: #0d2872;
  font-size: 25px;
  line-height: 1;
}

.gnb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 54px);
  flex: 1 1 auto;
  min-width: 0;
  font-size: 18px;
  font-weight: 900;
}

.gnb-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
  isolation: isolate;
  transition: color 0.2s ease;
}

.gnb-link::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -10px;
  z-index: -1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e8f4dd;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gnb-link:hover,
.gnb-link:focus-visible,
.gnb-link.is-active {
  color: var(--color-green);
}

.gnb-link:hover::before,
.gnb-link:focus-visible::before,
.gnb-link.is-active::before {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: max-content;
  color: #09090b;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: inherit;
  font-size: 14px;
  font-weight: 900;
}

.login-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 90px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f1f2f4;
  color: inherit;
  font-size: 14px;
  font-weight: 900;
}

.login-icon {
  width: 20px;
  height: 20px;
}

.gnb-dropdown {
  position: absolute;
  top: calc(100% - 20px);
  right: 0;
  left: 0;
  z-index: 20;
  visibility: hidden;
  min-height: 360px;
  pointer-events: none;
  transform: translateY(-8px);
  opacity: 0;
  transition: 0.2s ease;
}

.site-header.is-mega-open .gnb-dropdown,
.force-mega .gnb-dropdown {
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}

.gnb-dropdown-inner {
  position: relative;
  height: 360px;
}

.gnb-dropdown-panel {
  position: absolute;
  top: 0;
  left: clamp(0px, var(--gnb-dropdown-left, 490px), calc(100% - 424px));
  display: none;
  align-items: flex-start;
  gap: 12px;
}

.gnb-dropdown-panel.is-active {
  display: flex;
}

.gnb-dropdown .gnb-depth {
  position: relative;
  top: auto;
  left: auto;
  display: grid;
  width: 200px;
  overflow: hidden;
  border: 0;
  border-radius: 24px 32px 32px 32px;
  background: #fff;
  box-shadow: 0 16px 20px rgba(0, 0, 0, 0.06), 0 8px 16px rgba(0, 0, 0, 0.12), 0 0 8px rgba(0, 0, 0, 0.08);
}

.gnb-dropdown .depth-three {
  display: none;
  margin-top: calc(var(--gnb-active-depth-index, 0) * 64px);
  border-top-left-radius: 16px;
}

.gnb-dropdown-panel.is-third-open .depth-three {
  display: grid;
}

.gnb-depth ul,
.gnb-third-list {
  display: grid;
}

.gnb-third-list:not(.is-active) {
  display: none;
}

.gnb-depth li + li {
  border-top: 1px dashed rgba(113, 113, 123, 0.3);
}

.gnb-depth a {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #09090b;
  font-family: "NPS_font", var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.gnb-depth a:hover,
.gnb-depth a:focus-visible,
.gnb-depth a[aria-current="page"] {
  color: var(--color-green-dark);
}

.gnb-dropdown-panel.is-third-open .depth-two::after,
.gnb-dropdown-panel.is-third-open .depth-three::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-green);
}

.gnb-dropdown-panel.is-third-open .depth-two::after {
  top: calc(var(--gnb-active-depth-index, 0) * 64px + 20px);
  right: -12px;
}

.gnb-dropdown-panel.is-third-open .depth-three::before {
  top: 20px;
  left: -12px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 130;
  width: 100%;
  overflow-y: auto;
  background: #fff;
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 24px;
}

.mobile-nav-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-body {
  height: calc(100dvh - 72px);
  overflow: auto;
  padding: 16px 24px 40px;
}

.gnb-mobile-actions {
  display: grid;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 10px solid #f4f4f5;
}

.gnb-mobile-actions .login-pill,
.gnb-mobile-actions .language-pill {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(113, 113, 123, 0.22);
  border-radius: 999px;
  background: #fff;
  color: #09090b;
  font-size: 20px;
  font-weight: 400;
}

.gnb-mobile-actions .login-pill {
  border: 0;
  background: #f4f4f5;
}

.gnb-mobile-groups {
  padding-top: 24px;
}

.gnb-mobile-group {
  padding: 22px 0;
  border-bottom: 1px dashed rgba(113, 113, 123, 0.3);
}

.gnb-mobile-group h2 {
  font-size: 22px;
  line-height: 1.4;
}

.gnb-mobile-group button {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.gnb-mobile-group.is-open h2 {
  color: var(--color-green-dark);
}

.gnb-mobile-group ul {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.gnb-mobile-group ul[hidden] {
  display: none;
}

.gnb-mobile-group a {
  font-size: 18px;
  font-weight: 800;
}

.gnb-mobile-group a.is-active,
.gnb-mobile-group a[aria-current="page"] {
  color: var(--color-green-dark);
}

.page-visual {
  padding: 0 40px;
}

.page-visual-inner {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border-radius: 0 0 72px 72px;
  background:
    radial-gradient(circle at 13% 22%, rgba(255, 255, 255, 0.16) 0 70px, transparent 72px),
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.18) 0 130px, transparent 132px),
    linear-gradient(135deg, rgba(91, 190, 30, 0.96), rgba(85, 184, 34, 0.88));
  color: #fff;
  text-align: center;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 800;
}

.breadcrumbs strong {
  font-weight: 900;
}

.page-visual h1 {
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.1;
}

.page-main {
  padding-block: 120px 150px;
}

.content-section + .content-section {
  margin-top: 152px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 110px 0 88px;
  background: var(--color-footer);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -5%;
  left: -5%;
  height: 170px;
  border-radius: 0 0 50% 50%;
  background: #fff;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-logo {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 32px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
  margin-top: 52px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.related-site {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 210px;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 900;
}

.top-button {
  position: fixed;
  right: 42px;
  bottom: 110px;
  z-index: 70;
  display: inline-flex;
  width: 52px;
  height: 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--color-ink);
}

.top-button em {
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}
