:root {
  --navy: #001a60;
  --ink: #272727;
  --muted: #272727;
  --paper: #fafafa;
  --header-height: 100px;
  --gnb-depth2-height: 0px;
  --rel-padding: clamp(28px, 9.375vw, 180px);
  --rel-left: max(0px, calc((100vw - 1560px) / 2));
}

@font-face {
  font-family: "Iropke Batang";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/iropke/font-iropke-batang/IropkeBatangM.woff")
    format("woff");
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 180px 1fr 300px;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--rel-padding);
  background: transparent;
  transition: background-color 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.site-header.is-header-hover-active,
.site-header.is-hover-active {
  background-color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-header.is-header-hover-active .brand img,
.site-header.is-hover-active .brand img {
  filter: none !important;
}
.site-header.is-header-hover-active .gnb a,
.site-header.is-hover-active .gnb a {
  color: var(--ink) !important;
}
.site-header.is-header-hover-active .gnb .divider,
.site-header.is-header-hover-active .gnb .gnb-regist::before,
.site-header.is-hover-active .gnb .divider,
.site-header.is-hover-active .gnb .gnb-regist::before {
  background: rgba(39, 39, 39, 0.12) !important;
}
.site-header.is-header-hover-active .header-tools,
.site-header.is-hover-active .header-tools {
  color: var(--muted) !important;
}
.site-header.is-header-hover-active .tel,
.site-header.is-header-hover-active .tel strong,
.site-header.is-header-hover-active .tel span,
.site-header.is-hover-active .tel,
.site-header.is-hover-active .tel strong,
.site-header.is-hover-active .tel span {
  color: var(--ink) !important;
}
.site-header.is-header-hover-active .header-tools .divider,
.site-header.is-hover-active .header-tools .divider {
  background: rgba(39, 39, 39, 0.12) !important;
}
.site-header.is-header-hover-active .menu-button span,
.site-header.is-hover-active .menu-button span {
  background: var(--ink) !important;
}

.is-footer-page .site-header {
  opacity: 0;
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  width: 122px;
  height: 52px;
}

.brand img,
.hero-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gnb {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
  padding-top: 0;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--muted);
  white-space: nowrap;
}

.gnb .depth1 {
  display: flex;
  gap: 36px;
  align-items: stretch;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
}

.gnb .depth1 > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.gnb .depth1 > li > a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.gnb a {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.gnb a:hover {
  color: var(--navy);
}

.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  z-index: -1;
  pointer-events: none;
  transition:
    background-color 0.3s ease,
    height 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-header-hover-active::after {
  height: var(--header-height);
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.site-header.is-hover-active::after {
  height: calc(var(--header-height) + var(--gnb-depth2-height, 0px));
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gnb .depth2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 150px;
  padding: 0 20px 26px !important;
  background-color: transparent;
  list-style: none;
  z-index: 19;
  opacity: 0;
  visibility: hidden;
  height: auto;
  max-height: none !important;
  overflow: visible !important;
  box-sizing: border-box;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.gnb .gnb-regist .depth2 {
  margin-left: 16px;
}

.site-header.is-hover-active .gnb .depth1 > li.is-active .depth2 {
  opacity: 1 !important;
  visibility: visible !important;
  max-height: none !important;
  padding-bottom: 20px !important;
}

.gnb .depth2 li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.gnb .depth2 a {
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 7px 0;
  font-size: 16px;
  line-height: 1.35;
  color: #666666 !important;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.gnb .depth2 a:hover {
  color: #666666 !important;
}

.divider {
  display: inline-block;
  width: 1px;
  height: 30px;
  background: rgba(39, 39, 39, 0.12);
  align-self: center;
}

.gnb-regist {
  display: inline-flex;
  align-items: center;
}

.gnb .gnb-regist::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 30px;
  background: rgba(39, 39, 39, 0.12);
  margin-right: 24px;
  transition: background 0.45s ease;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 0;
  color: var(--muted);
  white-space: nowrap;
}

.tel {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.tel span {
  font-size: 16px;
  letter-spacing: -0.03em;
}

.tel strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.menu-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 28px;
  height: 1px;
  margin-left: auto;
  background: var(--ink);
}

body.is-menu-open {
  overflow: hidden;
}

.full-menu {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  background:
    linear-gradient(90deg, rgba(0, 14, 52, 0.18), rgba(0, 14, 52, 0.52)),
    rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.full-menu-inner {
  position: relative;
  width: min(520px, 100%);
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 34px clamp(28px, 5vw, 76px) 48px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(244, 243, 236, 0.98)
    ),
    var(--paper);
  color: var(--ink);
  box-shadow: -24px 0 80px rgba(0, 14, 52, 0.2);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.25, 1, 0.5, 1);
}

.full-menu-inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(28px, 5vw, 76px);
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(0, 26, 96, 0),
    rgba(0, 26, 96, 0.2) 18%,
    rgba(0, 26, 96, 0.08) 84%,
    rgba(0, 26, 96, 0)
  );
}

.full-menu-inner::after {
  content: "";
  position: absolute;
  right: -0.04em;
  bottom: -0.1em;
  width: clamp(260px, 30vw, 420px);
  height: clamp(100px, 12vw, 160px);
  background: url("../img/logo-header-only.svg") no-repeat right bottom /
    contain;
  opacity: 0.035;
  pointer-events: none;
}

.full-menu.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.full-menu.is-active .full-menu-inner {
  transform: translateX(0);
}

.full-menu-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(42px, 5.4vh, 68px);
}

.full-menu-head img {
  display: block;
  width: 122px;
  height: auto;
}

.full-menu-close {
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.full-menu-close::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(0, 26, 96, 0.12);
  border-radius: 50%;
  transform: scale(0.82);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.full-menu-close:hover::before {
  opacity: 1;
  transform: scale(1);
}

.full-menu-close span {
  position: absolute;
  top: 50%;
  left: 4px;
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ink);
}

.full-menu-close span:first-child {
  transform: rotate(45deg);
}

.full-menu-close span:last-child {
  transform: rotate(-45deg);
}

.full-menu-intro {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(30px, 4.8vh, 54px);
  padding-left: 24px;
}

.full-menu-intro p {
  margin: 0 0 16px;
  color: rgba(0, 26, 96, 0.52);
  font-family: "Times New Roman", "Noto Serif KR", serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.22em;
}

.full-menu-intro strong {
  display: block;
  color: var(--navy);
  font-family: "Iropke Batang", "Noto Serif KR", serif;
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: -0.045em;
}

.full-menu-nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  counter-reset: menu;
}

.depth1,
.depth2 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.full-menu-item,
.full-menu-nav .depth1 > li {
  position: relative;
  counter-increment: menu;
  border-bottom: 1px solid rgba(0, 26, 96, 0.11);
  width: 100%;
  display: block;
}

.full-menu-link,
.full-menu-nav .depth1 > li > a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 68px;
  padding-left: 50px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: "Iropke Batang", "Noto Serif KR", serif;
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.full-menu-link::before,
.full-menu-nav .depth1 > li > a::before {
  content: "0" counter(menu);
  position: absolute;
  left: 0;
  top: 50%;
  color: rgba(0, 26, 96, 0.38);
  font-family: "Times New Roman", "Noto Serif KR", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  transform: translateY(-50%);
  transition: color 0.25s ease;
}

.full-menu-link::after,
.full-menu-nav .depth1 > li > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 50px;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s ease;
}

.full-menu-link:hover,
.full-menu-item.is-open .full-menu-link,
.full-menu-nav .depth1 > li:hover > a,
.full-menu-nav .depth1 > li:focus-within > a,
.full-menu-nav .depth1 > li.is-open > a {
  color: #001246;
  transform: translateX(8px);
}

.full-menu-link:hover::before,
.full-menu-item.is-open .full-menu-link::before,
.full-menu-nav .depth1 > li:hover > a::before,
.full-menu-nav .depth1 > li:focus-within > a::before,
.full-menu-nav .depth1 > li.is-open > a::before {
  color: var(--navy);
}

.full-menu-link:hover::after,
.full-menu-item.is-open .full-menu-link::after,
.full-menu-nav .depth1 > li:hover > a::after,
.full-menu-nav .depth1 > li:focus-within > a::after,
.full-menu-nav .depth1 > li.is-open > a::after {
  transform: scaleX(1);
}

.has-submenu .full-menu-link {
  padding-right: 42px;
}

.has-submenu .full-menu-link::after,
.depth1 > li.has-submenu > a::after {
  right: 42px;
}

.has-submenu .full-menu-link::before {
  pointer-events: none;
}

.has-submenu .full-menu-link::marker {
  display: none;
}

.has-submenu .full-menu-link + .full-submenu {
  position: relative;
}

.has-submenu .full-menu-link > span {
  pointer-events: none;
}

.has-submenu .full-menu-link::selection {
  background: transparent;
}

.full-submenu,
.depth2 {
  max-height: 0;
  overflow: hidden;
  padding-left: 50px;
  opacity: 0;
  transition:
    max-height 0.32s ease,
    opacity 0.24s ease,
    padding-bottom 0.32s ease;
}

.full-menu-item.is-open .full-submenu,
.depth1 > li:hover > .depth2,
.depth1 > li:focus-within > .depth2,
.depth1 > li.is-open > .depth2 {
  max-height: 220px;
  padding-bottom: 18px;
  opacity: 1;
}

.full-submenu a,
.depth2 a {
  display: block;
  width: fit-content;
  padding: 8px 0;
  color: rgba(39, 39, 39, 0.68);
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.03em;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.full-submenu a:hover {
  color: var(--navy);
  transform: translateX(6px);
}

.gnb .depth2 a:hover {
  transform: none !important;
  color: #666666 !important;
}

.full-menu-contact {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: clamp(34px, 5vh, 58px);
  padding: 24px 0 0 50px;
}

.full-menu-contact span {
  color: rgba(39, 39, 39, 0.58);
  font-size: 14px;
  letter-spacing: -0.03em;
}

.full-menu-tel {
  display: inline-block;
  color: var(--ink);
  font-family: "Times New Roman", "Noto Serif KR", serif;
  font-size: clamp(26px, 2vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .full-menu,
  .full-menu-inner,
  .full-menu-close::before,
  .full-menu-link,
  .depth1 > li > a,
  .full-submenu,
  .depth2,
  .full-submenu a,
  .depth2 a,
  .has-submenu::after,
  .depth1 > li.has-submenu::after,
  .full-menu-link::before,
  .full-menu-link::after,
  .depth1 > li > a::before,
  .depth1 > li > a::after {
    transition: none;
  }
}
@media (max-width: 1280px) {
  :root {
    --rel-padding: 48px;
  }

  .site-header {
    grid-template-columns: 140px 1fr 230px;
  }

  .gnb {
    display: flex;
    gap: 18px;
    font-size: 16px;
  }

  .gnb .depth1 {
    gap: 18px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 82px;
    --rel-padding: 24px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 96px;
    height: 41px;
  }

  .full-menu-inner {
    padding-top: 24px;
  }

  .full-menu-head img {
    width: 96px;
  }

  .full-menu-head {
    margin-bottom: 38px;
  }

  .full-menu-intro {
    margin-bottom: 28px;
  }

  .full-menu-link,
  .depth1 > li > a {
    min-height: 62px;
  }

  .gnb {
    display: none;
  }

  .header-tools {
    gap: 12px;
    padding-top: 0;
  }

  .header-tools .divider,
  .tel span {
    display: none;
  }

  .tel strong {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  :root {
    --rel-padding: 18px;
  }

  .site-header {
    padding-inline: var(--rel-padding);
  }

  .tel {
    display: none;
  }

  .full-menu-inner {
    width: 100%;
    padding: 22px 28px 38px;
  }

  .full-menu-link,
  .depth1 > li > a {
    min-height: 58px;
    padding-left: 42px;
  }

  .full-menu-link::after,
  .depth1 > li > a::after {
    left: 42px;
  }

  .full-submenu,
  .depth2 {
    padding-left: 42px;
  }

  .full-menu-contact {
    padding-left: 42px;
  }

  .full-menu-inner::before {
    left: 28px;
  }
}
.footer-section {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(39, 39, 39, 0.14);
}

.footer-section .fp-tableCell {
  height: auto !important;
}

.site-footer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: clamp(44px, 4.8vw, 74px) var(--rel-padding) clamp(30px, 3.2vw, 62px);
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(34px, 3.7vw, 56px);
}

.footer-logo img {
  display: block;
  width: clamp(118px, 7.14vw, 137px);
  height: auto;
}

.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(34px, 3.3vw, 64px);
  align-items: center;
  max-width: 1560px;
  margin: 0 auto clamp(30px, 2.8vw, 48px);
}

.footer-partners p {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  color: #272727;
  font-size: clamp(13px, 0.83vw, 16px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.footer-partners span {
  color: #272727;
}

.partner-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.partner-logo-01,
.partner-logo-02,
.partner-logo-03 {
  height: 18px;
}

.footer-notice {
  max-width: 1560px;
  margin: 0 auto;
  padding-right: min(560px, 31vw);
}

.footer-notice p {
  margin: 0;
  color: #8d8d8d;
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.045em;
}

.footer-tel {
  position: absolute;
  right: var(--rel-padding);
  bottom: clamp(138x px, 6.35vw, 122px);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #272727;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.footer-tel::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  color: #272727;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20.36 15.42c-1.5 0-2.96-.24-4.32-.68-.42-.14-.89-.03-1.18.28l-1.93 2.42c-3.49-1.67-6.77-4.82-8.52-8.52l2.39-2.03c.31-.31.42-.76.29-1.18-.46-1.36-.69-2.82-.69-4.32C6.4.62 5.78 0 5.01 0H1.39C.62 0 0 .62 0 1.39 0 13.88 10.12 24 22.61 24c.77 0 1.39-.62 1.39-1.39v-3.8c0-.77-.62-1.39-1.39-1.39h-2.25Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: clamp(34px, 2.45vw, 47px);
  border-top: 1px solid rgba(39, 39, 39, 0.13);
  text-align: right;
}

.footer-bottom p {
  margin: 0;
  color: #9b9b9b;
  font-size: clamp(12px, 0.73vw, 14px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1180px) {
  .footer-partners {
    gap: 22px 40px;
  }

  .footer-notice {
    max-width: calc(100% - 280px);
    padding-right: 0;
  }

  .footer-tel {
    font-size: 22px;
  }
}

@media (max-width: 760px) {
  .site-footer {
    min-height: 0;
    height: auto;
    padding: 36px var(--rel-padding) 30px;
  }

  .footer-logo {
    justify-content: flex-start;
    margin-bottom: 34px;
  }

  .footer-logo img {
    width: 116px;
  }

  .footer-partners {
    display: grid;
    gap: 18px;
    margin-bottom: 28px;
  }

  .footer-partners p {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 12px;
    font-size: 13px;
  }

  .partner-logo-01,
  .partner-logo-02,
  .partner-logo-03 {
    height: 16px;
  }

  .footer-notice {
    max-width: 100%;
    padding-right: 0;
  }

  .footer-notice p {
    font-size: 11px;
    line-height: 1.65;
  }

  .footer-tel {
    position: static;
    margin-top: 28px;
    font-size: 20px;
  }

  .footer-tel::before {
    width: 20px;
    height: 20px;
  }

  .footer-bottom {
    position: static;
    margin-top: 34px;
    padding-top: 24px;
    text-align: left;
  }

  .footer-bottom p {
    font-size: 11px;
    line-height: 1.5;
  }
}

.bds-stab {
  width: 100%;
  margin: 0 auto 24px;
}
.bds-stab ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 4px;
}
.bds-stab-depth2 {
  margin-top: 10px;
}
.bds-stab li {
  flex: 1 1 auto;
  min-width: 120px;
}
.bds-stab a,
.bds-stab button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #d9dee7;
  border-radius: 4px;
  background: #f5f6f8;
  color: #222;
  font: inherit;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}
.bds-stab li.active > a,
.bds-stab li.active > button,
.bds-stab a:hover,
.bds-stab button:hover {
  background: #1f2937;
  border-color: #1f2937;
  color: #fff;
}
.stab_content > .hide,
.stab_content_group > .hide {
  display: none !important;
}
@media (max-width: 768px) {
  .bds-stab li {
    flex-basis: calc(50% - 6px);
    min-width: 0;
  }
  .bds-stab a,
  .bds-stab button {
    min-height: 40px;
    padding: 9px 8px;
    font-size: 14px;
  }
}

.bds-stab a:hover,
.bds-stab button:hover {
  background-color: #192335;
}
.bds-stab li.active > a,
.bds-stab li.active > button {
  background-color: #072355;
}
