@charset "utf-8";
@import url(../../../css/common/fonts/SUIT.css);

:root {
  --primary: #244261;
  --header-height: 780px;
  --header-bar-max: 1920px;
  --header-bar-padding: 80px;
  --gnb-mega-panel-min-height: 280px;
  --gnb-mega-panel-pad: 20px;
  --gnb-mega-panel-height: var(--gnb-mega-panel-min-height);
  --gnb-bar-height: 82px;
  --gnb-logo-gap: 12px;
  --gnb-wrap-gap: 16px;
  --quick-content-max: 1440px;
  --quick-bleed: max(0px, calc((100vw - var(--quick-content-max)) / 2));
  --color-white: #ffffff;
  --color-overlay: rgba(0, 0, 0, 0.5);
  --z-header-nav: 100;
  --z-gnb-panel: 0;
  --z-gnb-submenu: 1;
  --layout-max: 1920px;
  --top-banner-h: 0px;
  --gnb-sticky-top: 0px;
  --font-sans: "SUIT", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow: visible;
  padding-top: var(--top-banner-h, 0px);
  transition: padding-top 0.35s ease;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

/* ----- Header + Hero ----- */
.site-header {
  position: relative;
  width: 100%;
  height: var(--header-height);
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__swiper .swiper-slide {
  height: 100%;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--color-overlay);
  pointer-events: none;
}

.site-header__front {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.site-header__front a,
.site-header__front button,
.site-header__front select,
.site-header__front .util-menu__select-wrap,
.site-header__front .util-menu__translate,
.site-header__front .lang-box,
.site-header__front .gnb,
.site-header__front .site-header__utils {
  pointer-events: auto;
}

.site-header__bar {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;

}

@media (min-width: 1921px) {
  .site-header__bar {
    padding-left: 0;
    padding-right: 0;
  }
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.gnb-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: var(--gnb-wrap-gap);
  min-height: var(--gnb-bar-height);
  margin-top: 0;
  padding: 0 var(--header-bar-padding);
  border-bottom: 1px solid transparent;
  overflow: visible;
  transition: background-color 0.26s ease, border-color 0.26s ease;
}

/* Logo */
.site-header__logo {
  margin: 0;
  flex-shrink: 0;
  align-self: center;
}

.site-header__logo a {
  display: flex;
  align-items: center;
  gap: var(--gnb-logo-gap);
}

.site-header__logo-img-wrap {
  display: flex;
  align-items: center;
  padding-right: var(--gnb-logo-gap);
  border-right: 1px solid var(--color-white);
}

.site-header__logo-picture {
  display: flex;
  align-items: center;
  line-height: 0;
}

.site-header__logo-img {
  width: auto;
  height: 36px;
  transition: filter 0.22s ease;
}

.site-header__logo-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color 0.22s ease;
}

.site-header__logo-img-wrap {
  transition: border-color 0.22s ease;
}

/* GNB */
.gnb {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  width: auto;
  max-width: none;
  min-width: 0;
  min-height: var(--gnb-bar-height);
  padding: 0;
}

.gnb-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  flex: 1 1 0;
  min-width: 0;
  min-height: 100%;
  padding-bottom: 0;
  margin-bottom: 0;
  overflow: visible;
}

.gnb-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: var(--gnb-bar-height);
  height: 100%;
  color: var(--color-white);
  font-family: "SUIT", sans-serif;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 0.22s ease;
}

.gnb-submenu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: var(--z-gnb-submenu);
  width: 100%;
  min-width: 0;
  height: var(--gnb-mega-panel-height);
  min-height: var(--gnb-mega-panel-min-height);
  box-sizing: border-box;
  margin: 0;
  padding: 0 0 var(--gnb-mega-panel-pad);
  list-style: none;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  text-align: center;
  transform: translateY(-6px);
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: transform 0.24s ease, opacity 0.24s ease, max-height 0.28s ease, visibility 0s linear 0.24s, background-color 0.2s ease;
}

.gnb-item:not(:has(~ .gnb-item)) .gnb-submenu {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.gnb-submenu li {
  display: block;
}

.gnb-submenu li:first-child {
  padding-top: 15px;
}

.gnb-submenu a {
  display: block;
  padding: 8px 14px;
  text-align: center;
  color: #111;
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  word-break: break-all;
}

.gnb-submenu a:hover {
  color: var(--primary);
}

.gnb-item:hover .gnb-link,
.gnb-item:focus-within .gnb-link {
  color: var(--primary);
}

.gnb-item:hover .gnb-submenu,
.gnb-item:focus-within .gnb-submenu,
.gnb-item:has(.gnb-submenu a:hover) .gnb-submenu,
.gnb-item:has(.gnb-submenu a:focus-visible) .gnb-submenu {
  background: #f8f8f8;
}

@media (min-width: 1241px) {
  .gnb-wrap::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: var(--z-gnb-panel);
    width: 100vw;
    height: 0;
    box-sizing: border-box;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    transition: height 0.24s ease, opacity 0.24s ease, visibility 0s linear 0.24s;
  }

  .gnb-wrap:has(.gnb:hover)::after,
  .gnb-wrap:has(.gnb:focus-within)::after {
    height: var(--gnb-mega-panel-height);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s, 0s, 0s;
  }

  .gnb-wrap:has(.gnb:hover) .gnb-submenu,
  .gnb-wrap:has(.gnb:focus-within) .gnb-submenu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    max-height: var(--gnb-mega-panel-height);
    overflow: visible;
    transition-delay: 0s, 0s, 0s, 0s;
  }
}

.gnb-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: calc(var(--z-gnb-submenu) + 1);
}

.gnb-item:hover::after,
.gnb-item:focus-within::after,
.gnb-item:has(.gnb-submenu a:hover)::after,
.gnb-item:has(.gnb-submenu a:focus-visible)::after {
  opacity: 1;
}

.site-header:has(.gnb:hover) .gnb-wrap,
.site-header:has(.gnb:focus-within) .gnb-wrap,
.site-header.is-nav-open .gnb-wrap {
  background: #fff;
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.site-header:has(.gnb:hover) .gnb-link,
.site-header:has(.gnb:focus-within) .gnb-link,
.site-header:has(.gnb:hover) .site-header__logo-text,
.site-header:has(.gnb:focus-within) .site-header__logo-text,
.site-header:has(.gnb:hover) .util-menu__select,
.site-header:has(.gnb:focus-within) .util-menu__select,
.site-header:has(.gnb:hover) .util-menu__select-arrow,
.site-header:has(.gnb:focus-within) .util-menu__select-arrow,
.site-header:has(.gnb:hover) .lang-box__label,
.site-header:has(.gnb:focus-within) .lang-box__label,
.site-header:has(.gnb:hover) .lang-box__arrow,
.site-header:has(.gnb:focus-within) .lang-box__arrow,
.site-header:has(.gnb:hover) .util-bar__btn,
.site-header:has(.gnb:focus-within) .util-bar__btn,
.site-header:has(.gnb:hover) .util-bar a,
.site-header:has(.gnb:focus-within) .util-bar a,
.site-header.is-nav-open .gnb-link,
.site-header.is-nav-open .site-header__logo-text,
.site-header.is-nav-open .util-menu__select,
.site-header.is-nav-open .util-menu__select-arrow,
.site-header.is-nav-open .lang-box__label,
.site-header.is-nav-open .lang-box__arrow,
.site-header.is-nav-open .util-bar__btn,
.site-header.is-nav-open .util-bar a {
  color: #000;
}

.site-header:has(.gnb:hover) .gnb-item:hover .gnb-link,
.site-header:has(.gnb:focus-within) .gnb-item:focus-within .gnb-link,
.site-header:has(.gnb:hover) .gnb-item:has(.gnb-submenu a:hover) .gnb-link,
.site-header:has(.gnb:focus-within) .gnb-item:has(.gnb-submenu a:hover) .gnb-link,
.site-header:has(.gnb:hover) .gnb-item:has(.gnb-submenu a:focus-visible) .gnb-link,
.site-header:has(.gnb:focus-within) .gnb-item:has(.gnb-submenu a:focus-visible) .gnb-link,
.site-header.is-nav-open .gnb-item:hover .gnb-link,
.site-header.is-nav-open .gnb-item:focus-within .gnb-link,
.site-header.is-nav-open .gnb-item:has(.gnb-submenu a:hover) .gnb-link,
.site-header.is-nav-open .gnb-item:has(.gnb-submenu a:focus-visible) .gnb-link {
  color: var(--primary);
}

.site-header:has(.gnb:hover) .site-header__logo-img,
.site-header:has(.gnb:focus-within) .site-header__logo-img,
.site-header.is-nav-open .site-header__logo-img {
  filter: brightness(0);
}

.site-header:has(.gnb:hover) .site-header__logo-img-wrap,
.site-header:has(.gnb:focus-within) .site-header__logo-img-wrap,
.site-header.is-nav-open .site-header__logo-img-wrap {
  border-right-color: #000;
}

.site-header:has(.gnb:hover) .util-bar__btn--login,
.site-header:has(.gnb:focus-within) .util-bar__btn--login,
.site-header.is-nav-open .util-bar__btn--login {
  background: rgba(0, 0, 0, 0.08);
}

.site-header:has(.gnb:hover) .util-bar__btn--home,
.site-header:has(.gnb:focus-within) .util-bar__btn--home,
.site-header.is-nav-open .util-bar__btn--home {
  border-color: rgba(0, 0, 0, 0.35);
}

.site-header:has(.gnb:hover) .menu-btn__line,
.site-header:has(.gnb:focus-within) .menu-btn__line,
.site-header.is-nav-open .menu-btn__line,
.site-header.is-gnb-scrolled .menu-btn__line {
  background: #000;
}

/* Scrolled sticky header */
.site-header.is-gnb-scrolled {
  z-index: var(--z-header-nav);
  overflow: visible;
}

.site-header.is-gnb-scrolled .gnb-wrap {
  background: #fff;
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.site-header.is-gnb-scrolled .gnb-link,
.site-header.is-gnb-scrolled .site-header__logo-text,
.site-header.is-gnb-scrolled .util-menu__select,
.site-header.is-gnb-scrolled .util-menu__select-arrow,
.site-header.is-gnb-scrolled .lang-box__label,
.site-header.is-gnb-scrolled .lang-box__arrow,
.site-header.is-gnb-scrolled .util-bar__btn {
  color: #000;
}

.site-header.is-gnb-scrolled .gnb-item:hover .gnb-link,
.site-header.is-gnb-scrolled .gnb-item:focus-within .gnb-link,
.site-header.is-gnb-scrolled .gnb-item:has(.gnb-submenu a:hover) .gnb-link,
.site-header.is-gnb-scrolled .gnb-item:has(.gnb-submenu a:focus-visible) .gnb-link {
  color: var(--primary);
}

.site-header.is-gnb-scrolled .site-header__logo-img {
  filter: brightness(0);
}

.site-header.is-gnb-scrolled .site-header__logo-img-wrap {
  border-right-color: #000;
}

.site-header.is-gnb-scrolled .util-bar__btn--login {
  background: rgba(0, 0, 0, 0.08);
}

.site-header.is-gnb-scrolled .util-bar__btn--home {
  border-color: rgba(0, 0, 0, 0.35);
}

@media (min-width: 1241px) {
  .site-header:has(.gnb:hover),
  .site-header:has(.gnb:focus-within) {
    overflow: visible;
  }

  .site-header:has(.gnb:hover) .site-header__front,
  .site-header:has(.gnb:focus-within) .site-header__front {
    overflow: visible;
  }

  .gnb-wrap.is-measuring-gnb .gnb-submenu {
    visibility: hidden !important;
    opacity: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    transform: none !important;
    pointer-events: none !important;
  }

  .site-header__bar {
    transition:
            background-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
            border-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  }

  .site-header.is-gnb-scrolled .site-header__bar {
    position: fixed;
    top: var(--gnb-sticky-top, 0px);
    left: 0;
    right: 0;
    z-index: var(--z-header-nav);
    max-width: none;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  }
}

.gnb-mobile-util {
  display: none;
}

.gnb-mobile-util__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gnb-mobile-util__list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 0;
  font-family: "SUIT", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  line-height: 1.4;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.2s ease;
}

.gnb-mobile-util__list li:last-child a {
  border-bottom: none;
}

.gnb-mobile-util__list a:hover {
  color: var(--primary);
}

.gnb-mobile-util__list a i {
  width: 1rem;
  font-size: 14px;
  color: #666666;
  text-align: center;
}

.gnb-mobile-util__item--lang {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gnb-mobile-lang {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gnb-mobile-util__list li.gnb-mobile-lang:last-child {
  border-bottom: none;
}

.gnb-mobile-lang__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "SUIT", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  line-height: 1.4;
}

.gnb-mobile-lang__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gnb-mobile-lang__label i {
  width: 1rem;
  font-size: 14px;
  color: #666666;
  text-align: center;
}

.gnb-mobile-lang__arrow {
  font-size: 12px;
  color: #999999;
  transition: transform 0.2s ease;
}

.gnb-mobile-lang.is-open .gnb-mobile-lang__arrow {
  transform: rotate(180deg);
}

.gnb-mobile-lang__menu {
  margin: 0 0 0.5rem;
  padding: 0.25rem 0;
  list-style: none;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.gnb-mobile-lang__menu button {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "SUIT", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #444444;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease;
}

.gnb-mobile-lang__menu button:hover {
  color: var(--primary);
  background: rgba(0, 0, 0, 0.03);
}

.gnb-mobile-util__lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem 0.875rem 0;
}

.gnb-mobile-util__lang-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1rem;
}

.gnb-mobile-util__lang-icon svg {
  display: block;
  width: 14px;
  height: 14px;
}

.gnb-mobile-util__select {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0 1.25rem 0 0;
  border: none;
  background: transparent;
  font-family: "SUIT", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.gnb-mobile-util__select:focus {
  outline: none;
}

.gnb-mobile-util__select option {
  color: #1a1a1a;
  background: #ffffff;
}

.gnb-mobile-util__select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 12px;
  color: #666666;
  pointer-events: none;
  transform: translateY(-50%);
}

.site-header__utils {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 0;
  align-self: center;
}

/* Util bar */
.util-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  overflow: visible;
}

.util-bar a { color: var(--color-white); }

.is-gnb-scrolled .util-bar a { color: var(--color-black); }

.site-header:has(.gnb:hover) .util-bar a,
.site-header:has(.gnb:focus-within) .util-bar a,
.site-header:has(.gnb:hover) .util-bar__btn,
.site-header:has(.gnb:focus-within) .util-bar__btn,
.site-header:has(.gnb:hover) .util-bar a i,
.site-header:has(.gnb:focus-within) .util-bar a i,
.site-header:has(.gnb:hover) .util-bar a span,
.site-header:has(.gnb:focus-within) .util-bar a span,
.site-header.is-nav-open .util-bar a,
.site-header.is-nav-open .util-bar__btn,
.site-header.is-nav-open .util-bar a i,
.site-header.is-nav-open .util-bar a span {
  color: #000;
}

.util-menu__translate-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: visible;
}

.util-menu__translate {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.util-menu__select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.util-menu__select-icon {
  position: absolute;
  left: 0.625rem;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translateY(-50%);
}

.util-menu__select-icon svg {
  display: block;
  width: 14px;
  height: 14px;
}

.util-menu__select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 7.5rem;
  padding: 0.25rem 1.5rem 0.25rem 2rem;
  border: none;
  border-radius: 4px;
  background: transparent;
  font-family: "SUIT", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
  cursor: pointer;
  outline: none;
  transition: color 0.22s ease;
}

.util-menu__select:focus {
  outline: none;
}

.util-menu__select option {
  color: #1a1a1a;
  background: #ffffff;
}

.util-menu__select-arrow {
  position: absolute;
  right: 0.625rem;
  top: 50%;
  font-size: 12px;
  color: var(--color-white);
  pointer-events: none;
  transform: translateY(-50%);
  transition: color 0.22s ease;
}

.util-menu__translate .goog-te-gadget {
  font-family: "SUIT", sans-serif !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
}

.util-menu__translate .goog-te-gadget > span {
  display: none !important;
}

.util-menu__translate .goog-te-combo {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}

.util-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.util-bar__btn i {
  font-size: 12px;
}

.util-bar__btn--login {
  background: rgba(0, 0, 0, 0.35);
}

.util-bar__btn--login:hover {
  background: rgba(0, 0, 0, 0.5);
}

.util-bar__btn--home {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.util-bar__btn--home:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header:has(.gnb:hover) .util-bar a,
.site-header:has(.gnb:focus-within) .util-bar a,
.site-header:has(.gnb:hover) .util-bar__btn,
.site-header:has(.gnb:focus-within) .util-bar__btn,
.site-header:has(.gnb:hover) .util-bar a i,
.site-header:has(.gnb:focus-within) .util-bar a i,
.site-header:has(.gnb:hover) .util-bar a span,
.site-header:has(.gnb:focus-within) .util-bar a span,
.site-header.is-nav-open .util-bar a,
.site-header.is-nav-open .util-bar__btn,
.site-header.is-nav-open .util-bar a i,
.site-header.is-nav-open .util-bar a span {
  color: #000;
}

/* Hero content */
.hero__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--header-bar-padding) 60px;
}

@media (min-width: 1920px) {
  .hero__content {
    padding-left: 0;
    padding-right: 0;
  }
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-white) !important;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 0px 10px 28px;
  border: 1px solid var(--color-white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.3em;
  line-height: 1.4;
  color: var(--color-white);
}

.hero__divider {
  display: block;
  width: 1px;
  height: 68px;
  margin: 14px 0;
  background: var(--color-white);
}

.hero__title {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero__subtitle {
  margin: 16px 0 0;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0.92;
  color: var(--color-white);
}

/* Hero controls */
.hero__controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: auto;
}

.hero__pagination.swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero__pagination .swiper-pagination-bullet-active {
  background: var(--color-white);
  transform: scale(1.15);
}

/* Mobile menu */
.menu-btn {
  display: inline-flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  width: 24px;
  padding: 0;
  z-index: 10;
}

.menu-btn__line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-white);
  transition: background-color 0.22s ease, transform 0.28s ease, opacity 0.22s ease, width 0.22s ease;
  transform-origin: center;
}

.menu-btn__line:nth-child(2) {
  width: 14px;
}

body.is-nav-open {
  overflow: hidden;
  touch-action: none;
}

html.is-nav-open {
  overflow: hidden;
}

.gnb-backdrop {
  display: none;
}

@media (min-width: 1241px) {
  .menu-btn {
    display: none;
  }

  .gnb-mobile-util {
    display: none !important;
  }

  .site-header.is-nav-open .gnb-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-header-nav) - 1);
    background: rgba(0, 0, 0, 0.45);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.28s ease, visibility 0s linear 0s;
  }

  .site-header.is-nav-open .gnb-wrap::after {
    height: var(--gnb-mega-panel-height);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s, 0s, 0s;
  }

  .site-header.is-nav-open .gnb-wrap .gnb-submenu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    max-height: var(--gnb-mega-panel-height);
    transition-delay: 0s, 0s, 0s, 0s;
  }

  .gnb-wrap.gnb-mega-force-closed::after {
    height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition-delay: 0s, 0s, 0.24s;
  }

  .gnb-wrap.gnb-mega-force-closed .gnb-submenu {
    transform: translateY(-6px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0 !important;
    transition-delay: 0s, 0s, 0s, 0.24s;
  }



}

/* Responsive */
@media (max-width: 1610px) {
  .gnb-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1440px) {
  .site-footer__inner {padding: 0px 30px;}
}
@media (max-width: 1400px) {
  :root {
    --gnb-logo-gap: 8px;
    --gnb-wrap-gap: 12px;
  }

  .gnb-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gnb-link {
    font-size: clamp(13px, 16px, 17px);
  }

  .gnb-submenu a {
    font-size: clamp(12px, 14px, 14px);
    padding: 7px 12px;
  }

  .gnb-submenu li:first-child {
    padding-top: 12px;
  }

  .site-header__logo-img {
    height: 25px;
  }

  .site-header__logo a {
    gap: var(--gnb-logo-gap);
  }

  .site-header__logo-img-wrap {
    padding-right: var(--gnb-logo-gap);
  }

  .site-header__logo-text {
    font-size: 14px;
  }

  .site-header__utils {
    gap: 8px;
    margin-left: 0;
  }

  .util-bar {
    gap: 8px;
  }

  .util-menu__select {
    min-width: 6.5rem;
    padding: 0.2rem 1.25rem 0.2rem 1.7rem;
    font-size: 13px;
  }

  .util-menu__select-icon svg {
    width: 12px;
    height: 12px;
  }

  .util-menu__select-arrow {
    right: 0.5rem;
    font-size: 11px;
  }

  .util-bar__btn {
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
    gap: 6px;
  }

  .util-bar__btn i {
    font-size: 11px;
  }

  .gnb-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1200px) {
  :root {
    --header-bar-padding: 48px;
  }

  .gnb-link {
    font-size: clamp(13px, 1.1vw, 16px);
    white-space: normal;
    line-height: 1.25;
    padding: 0 0.25rem;
  }

  .util-bar__btn span {
    display: none;
  }

  .util-bar__btn {
    width: 38px;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 1240px) {
  .site-header.is-nav-open,
  .site-header.is-nav-open .site-header__front {
    overflow: visible;
  }

  .site-header {
    z-index: var(--z-header-nav);
    overflow: visible;
  }

  :root {
    --header-height: 660px;
    --header-bar-padding: 32px;
  }

  .site-header {
    height: var(--header-height);
  }

  .hero__content {
    padding-bottom: 48px;
  }

  .hero__title {
    font-size: clamp(32px, 5vw, 48px);
  }

  .hero__badge {
    font-size: 15px;
    letter-spacing: 0.85em;
    padding: 8px 0 8px 20px;
  }

  .hero__divider {
    height: 48px;
    margin: 12px 0;
  }

  .site-header__bar {
    min-height: var(--gnb-bar-height);
    padding-top: 0;
    padding-bottom: 0;
  }

  .util-bar {
    display: none;
  }

  .gnb-backdrop {
    display: none !important;
  }

  .gnb-wrap {
    position: fixed;
    top: var(--gnb-sticky-top, 0px);
    left: 0;
    right: 0;
    z-index: var(--z-header-nav);
    max-width: none;
    margin: 0;
    padding: 0 max(1.5rem, env(safe-area-inset-right, 0)) 0 max(1.5rem, env(safe-area-inset-left, 0));
    align-items: center;
    min-height: var(--gnb-bar-height);
    background-color: rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: none;
    transition:
            background-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
            border-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header.is-gnb-scrolled .gnb-wrap,
  .site-header.is-nav-open .gnb-wrap {
    background-color: #fff;
    border-bottom-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  }

  .site-header.is-gnb-scrolled .menu-btn__line,
  .site-header.is-nav-open .menu-btn__line {
    background: #000;
  }

  .site-header.is-gnb-scrolled .site-header__logo-img,
  .site-header.is-nav-open .site-header__logo-img {
    filter: brightness(0);
  }

  .site-header.is-gnb-scrolled .site-header__logo-img-wrap,
  .site-header.is-nav-open .site-header__logo-img-wrap {
    border-right-color: #000;
  }

  .site-header.is-gnb-scrolled .site-header__logo-text,
  .site-header.is-nav-open .site-header__logo-text {
    color: #000;
  }

  .site-header.is-nav-open .util-bar {
    display: flex;
  }

  .site-header.is-nav-open .util-menu__translate-group {
    display: none;
  }

  .site-header.is-nav-open .util-bar a,
  .site-header.is-nav-open .util-bar__btn,
  .site-header.is-nav-open .util-bar a i,
  .site-header.is-nav-open .util-bar a span {
    color: #000;
  }

  .site-header.is-nav-open .util-bar__btn--login {
    background: rgba(0, 0, 0, 0.08);
  }

  .site-header.is-nav-open .util-bar__btn--home {
    border-color: rgba(0, 0, 0, 0.35);
  }

  .site-header__utils {
    margin-left: auto;
    gap: 0.5rem;
  }

  .menu-btn {
    display: inline-flex;
  }

  .gnb-wrap::after {
    display: none;
  }

  .gnb {
    display: flex;
    position: fixed;
    top: calc(var(--gnb-bar-height) + var(--gnb-sticky-top, 0px));
    left: 0;
    right: 0;
    bottom: 0;
    z-index: calc(var(--z-header-nav) - 1);
    flex-direction: column;
    align-items: stretch;
    align-self: auto;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0 0 calc(1.75rem + env(safe-area-inset-bottom, 0));
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s ease, visibility 0s linear 0.32s;
  }

  .site-header.is-nav-open .gnb {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s, 0s;
  }

  .gnb-mobile-util {
    display: block;
    flex-shrink: 0;
    margin-top: auto;
    padding: 1rem 1.25rem 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #fafafa;
  }

  .gnb-item {
    flex: 0 0 auto;
    align-self: auto;
    min-height: 0;
    height: auto;
    align-items: stretch;
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .gnb-item::after {
    display: none;
  }

  .gnb-link {
    justify-content: flex-start;
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 0.875rem 1.25rem;
    box-sizing: border-box;
    color: #111;
    font-size: 17px;
    font-weight: 600;
    white-space: normal;
    line-height: 1.35;
  }

  .gnb-item:has(.gnb-submenu) > .gnb-link {
    position: relative;
    padding-right: 3rem;
  }

  .gnb-item:has(.gnb-submenu) > .gnb-link::after {
    content: "";
    position: absolute;
    right: 1.375rem;
    top: 50%;
    width: 9px;
    height: 9px;
    margin-top: -6px;
    border-right: 2px solid #444;
    border-bottom: 2px solid #444;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    background: transparent;
    opacity: 1;
  }

  .gnb-item.is-open > .gnb-link::after {
    transform: rotate(225deg);
    margin-top: -2px;
  }

  .gnb-submenu {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    display: none;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #f8f8f8;
    text-align: left;
    transform: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    list-style: none;
    transition: none;
  }

  .gnb-item.is-open > .gnb-submenu {
    display: block;
  }

  .gnb-item.is-open {
    z-index: 2;
  }

  .gnb-submenu li:first-child {
    margin-top: 0;
    padding-top: 0;
  }

  .gnb-submenu a {
    display: block;
    padding: 0.75rem 1.25rem 0.75rem 1.75rem;
    text-align: left;
    white-space: normal;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    line-height: 1.4;
  }

  .gnb-submenu a:hover {
    color: var(--primary);
  }

  .site-header.is-nav-open .menu-btn__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 22px;
  }

  .site-header.is-nav-open .menu-btn__line:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .site-header.is-nav-open .menu-btn__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 22px;
  }


}

@media (max-width: 768px) {
  :root {
    --header-bar-padding: 24px;
    --header-height: 560px;
    --gnb-bar-height: 72px;
  }

  .site-header {
    height: var(--header-height);
  }

  .site-header__bar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .site-header__logo a {
    gap: 12px;
  }

  .site-header__logo-img-wrap {
    padding-right: 12px;
  }

  .site-header__logo-img {
    height: 30px;
  }

  .site-header__logo-text {
    font-size: 15px;
  }

  .gnb-wrap {
    padding-left: max(1rem, env(safe-area-inset-left, 0));
    padding-right: max(1rem, env(safe-area-inset-right, 0));
  }

  .menu-btn {
    width: 28px;
  }

  .gnb-link {
    padding: 0.9375rem 1rem;
    font-size: 16px;
  }

  .gnb-submenu a {
    padding: 0.8125rem 1rem 0.8125rem 1.5rem;
    font-size: 14px;
  }

  .gnb-mobile-util {
    padding: 0.875rem 1rem 0.375rem;
  }

  .hero__content {
    padding-bottom: 40px;
  }

  .hero__badge {
    font-size: 13px;
    letter-spacing: 0.55em;
    padding: 7px 0 7px 14px;
  }

  .hero__title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero__subtitle {
    font-size: 14px;
    margin-top: 12px;
  }

  .hero__controls {
    bottom: 24px;
  }

  .hero__divider {
    height: 36px;
    margin: 16px 0 20px;
  }
}

@media (max-width: 480px) {
  .site-header__logo-img {
    height: 28px;
  }
}

/* ----- Notice ----- */
.section-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;

}

@media (min-width: 1921px) {
  .section-inner--notice,
  .section-inner--gallery {
    padding-left: 0;
    padding-right: 0;
  }

  .site-footer__inner,
  .site-footer__family-selects {
    padding-left: 0;
    padding-right: 0;
  }
}

.section--notice {
  padding: 100px 0 120px;
  background: #fff;
}

.section-inner--notice {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--header-bar-padding);
  padding-right: var(--header-bar-padding);
}

.notice-intro {
  flex: 0 0 380px;
  max-width: 380px;
}

.notice-intro__label {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #c8c8c8;
}

.notice-intro__title {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #111;
  word-break: keep-all;
}

.notice-intro__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 44px;
  margin-top: 36px;
  padding: 0 28px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.notice-intro__more:hover {
  border-color: #111;
  background: #fafafa;
}

.notice-intro__more span {
  margin-left: 2px;
}

.notice-list {
  flex: 1;
  min-width: 0;
}

.notice-list__items {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid #111;
}

.notice-list__item {
  border-bottom: 1px solid #e8e8e8;
}

.notice-list__item--empty {
  padding: 48px 0;
  text-align: center;
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #b0b0b0;
}

.notice-item {
  display: block;
  padding: 20px 0;
  transition: opacity 0.2s ease;
}

.notice-item:hover {
  opacity: 0.72;
}

.notice-item__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.notice-item__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #111;
}

.notice-item__badge {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #0066ff;
}

.notice-item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.notice-item__date {
  font-size: 15px;
  font-weight: 400;
  color: #b0b0b0;
}

.notice-item__cate {
  font-size: 15px;
  font-weight: 700;
  color: #1a2b88;
}

.notice-item__cate--job {
  color: #1a2b88;
}

@media (max-width: 1200px) {
  .section-inner--notice {
    gap: 48px;
  }

  .notice-intro {
    flex-basis: 300px;
    max-width: 300px;
  }

  .notice-intro__title {
    font-size: 32px;
  }

  .notice-item__title {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .section--notice {
    padding: 72px 0 88px;
  }

  .section-inner--notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .notice-intro {
    flex: none;
    max-width: none;
    width: 100%;
  }

  .notice-list {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section--notice {
    padding: 56px 0 72px;
  }

  .section-inner--notice {
    gap: 32px;
  }

  .notice-intro__title {
    font-size: 28px;
  }

  .notice-intro__title br {
    display: none;
  }

  .notice-intro__more {
    margin-top: 24px;
  }

  .notice-item {
    padding: 22px 0;
  }

  .notice-item__title {
    font-size: 17px;
  }

  .notice-item__meta {
    margin-top: 10px;
  }

  .notice-list__item--empty {
    padding: 40px 0;
    font-size: 15px;
  }
}

/* ----- Quick Menu ----- */
.section--quick {
  padding: 0;
  background: transparent;
  overflow-x: hidden;
}

.quick-menu {
  width: 100%;
  min-height: 300px;
  overflow-x: hidden;
}

.quick-menu__inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: var(--quick-content-max);
  margin: 0 auto;
  min-height: 300px;
}

.quick-menu__title {
  position: relative;
  display: flex;
  flex: 0 0 34%;
  min-width: 0;
  min-height: 300px;
  background: transparent;
  z-index: 2;
}

.quick-menu__title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-1 * var(--quick-bleed));
  right: 0;
  background: #0f1f3d url("../images/main/quick_bg.png") center / cover no-repeat;
  z-index: -1;
}

.quick-menu__title-inner {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 300px;
  padding: 48px 40px 48px 0;
  text-align: right;
}

.quick-menu__label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
}

.quick-menu__heading {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 30px;
}

.quick-menu__nav {
  position: absolute;
  right: 40px;
  bottom:25%;
  z-index: 3;
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.quick-menu__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  pointer-events: auto;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.quick-menu__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.quick-menu__btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.quick-menu__panel {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  background: transparent;
}

.quick-menu__marquee {
  flex-shrink: 0;
  width: 100%;
  padding-top: 8px;
  background: none;
  pointer-events: none;
}

.quick-menu__marquee-track {
  display: flex;
  width: max-content;
  animation: quickMarquee 28s linear infinite;
}

.quick-menu__marquee-text {
  flex-shrink: 0;
  padding-right: 80px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(17, 17, 17, 0.06);
}

@keyframes quickMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.quick-menu__swiper-area {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
}

.quick-menu__swiper-area::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: calc(-1 * var(--quick-bleed));
  background: #eef2f7;
  z-index: 0;
}

.quick-menu__swiper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 875px;
  overflow: hidden;
  background: transparent;
}

.quick-menu__swiper.swiper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding:10px 0px
}

.quick-menu__swiper .swiper-wrapper {
  align-items: center;
}

.quick-menu__swiper .swiper-slide {
  height: auto;
}

.quick-menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.quick-menu__item:hover {
  transform: translateY(-4px);
  opacity: 0.88;
}

.quick-menu__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(15, 31, 61, 0.06);
  font-size: 35px;
  color: #244261;
}

.quick-menu__icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.quick-menu__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
}

.quick-menu__swiper .swiper-wrapper:has(.quick-menu__item--empty) {
  justify-content: center;
  width: 100% !important;
  transform: none !important;
}

.quick-menu__item--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  max-width: 100%;
  min-height: 160px;
  margin: 0 !important;
  padding: 24px 16px;
  box-sizing: border-box;
  text-align: center;
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #b0b0b0;
}

@media (max-width: 1200px) {
  .quick-menu__title {
    flex-basis: 38%;
  }

  .quick-menu__heading {
    font-size: 30px;
  }

  .quick-menu__icon {
    width: 96px;
    height: 96px;
  }

  .quick-menu__icon img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1024px) {
  .quick-menu__inner {
    flex-direction: column;
  }

  .quick-menu__title {
    flex: none;
    width: 100%;
    min-height: 220px;
  }

  .quick-menu__title::before {
    left: calc(-1 * var(--quick-bleed));
    right: calc(-1 * var(--quick-bleed));
  }

  .quick-menu__title-inner {
    min-height: 220px;
    padding: 36px var(--header-bar-padding);
    text-align: left;
  }

  .quick-menu__nav {
    right: var(--header-bar-padding);
    bottom: 24px;
  }

  .quick-menu__panel {
    min-height: 220px;
  }

  .quick-menu__swiper-area {
    padding: 20px var(--header-bar-padding) 28px;
  }

  .quick-menu__swiper-area::before {
    left: calc(-1 * var(--quick-bleed));
    right: calc(-1 * var(--quick-bleed));
  }

  .quick-menu__swiper {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .quick-menu__title {
    min-height: 200px;
  }

  .quick-menu__title-inner {
    min-height: 200px;
    padding: 28px 24px;
  }

  .quick-menu__panel {
    min-height: 200px;
  }

  .quick-menu__heading {
    font-size: 26px;
  }

  .quick-menu__marquee-text {
    font-size: clamp(28px, 10vw, 42px);
    padding-right: 48px;
  }

  .quick-menu__swiper-area {
    padding: 16px 24px 24px;
  }

  .quick-menu__icon {
    width: 88px;
    height: 88px;
  }

  .quick-menu__icon img {
    width: 36px;
    height: 36px;
  }

  .quick-menu__text {
    font-size: 15px;
  }

  .quick-menu__item--empty {
    min-height: 140px;
    padding: 20px 12px;
    font-size: 15px;
  }
}

/* ----- Gallery ----- */
.section--gallery {
  padding: 100px 0 120px;
  background: #fff;
  overflow-x: hidden;
}

.section-inner--gallery {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: var(--quick-content-max);
  margin: 0 auto;
  padding-left: var(--header-bar-padding);
  padding-right: var(--header-bar-padding);
}

.gallery-intro {
  flex: 0 0 280px;
  max-width: 280px;
  padding-top: 8px;
}

.gallery-intro__label {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #c8c8c8;
}

.gallery-intro__title {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #111;
}

.gallery-intro__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 44px;
  margin-top: 36px;
  padding: 0 28px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.gallery-intro__more:hover {
  border-color: #111;
  background: #fafafa;
}

.gallery-intro__more span {
  margin-left: 2px;
}

.gallery-slider {
  position: relative;
  flex: 1;
  min-width: 0;
  margin-right: calc(-1 * var(--quick-bleed));
}

.gallery-slider__btn {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 14px;
  transform: translate(-50%, -50%);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.gallery-slider__btn--prev {
  left: 0;
}

.gallery-slider__btn--next {
  left: auto;
  right: auto;
}

.gallery-slider__btn:hover {
  background: #fafafa;
  border-color: #111;
}

.gallery-slider__btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.gallery-swiper-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.gallery-swiper {
  overflow: visible;
}

.gallery-swiper .swiper-slide {
  height: auto;
}

.gallery-card {
  display: block;
  transition: opacity 0.35s ease;
}

.gallery-swiper .swiper-slide-visible:not(.swiper-slide-fully-visible) .gallery-card {
  opacity: 0.35;
}
.gallery-swiper .swiper-slide-active .gallery-card{
  opacity: 1 !important;
}

.gallery-card__thumb {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f0f0f0;
}

.gallery-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card__title {
  margin: 16px 0 0;
  padding-bottom: 14px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #404040;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.gallery-card__date {
  font-size: 14px;
  font-weight: 400;
  color: #b0b0b0;
}

.gallery-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #203d6b;
  white-space: nowrap;
  line-height: 1.0em;
}

.gallery-card__more i {
  font-size: 18px;
  color: #203d6b;
}

.gallery-slider__fade {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 100px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 75%);
  pointer-events: none;
}

.gallery-swiper .swiper-wrapper:has(.gallery-card--empty) {
  justify-content: center;
  width: 100% !important;
  transform: none !important;
}

.gallery-card--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  max-width: 100%;
  min-height: 248px;
  margin: 0 !important;
  padding: 24px 16px;
  box-sizing: border-box;
  text-align: center;
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #b0b0b0;
  border: 1px solid #e8e8e8;
  background: #fafafa;
}

.gallery-slider:has(.gallery-card--empty) .gallery-slider__btn,
.gallery-slider:has(.gallery-card--empty) .gallery-slider__fade {
  display: none;
}

@media (max-width: 1200px) {
  .section-inner--gallery {
    gap: 40px;
  }

  .gallery-intro {
    flex-basis: 240px;
    max-width: 240px;
  }

  .gallery-intro__title {
    font-size: 32px;
  }
}

@media (max-width: 1024px) {
  .section--gallery {
    padding: 72px 0 88px;
  }

  .section-inner--gallery {
    flex-direction: column;
    gap: 32px;
  }

  .gallery-intro {
    flex: none;
    max-width: none;
    width: 100%;
  }

  .gallery-slider {
    width: 100%;
    margin-right: 0;
  }

  .gallery-slider__btn {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .gallery-slider__fade {
    width: 60px;
  }

  .gallery-card--empty {
    min-height: 200px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .section--gallery {
    padding: 56px 0 72px;
  }

  .gallery-intro__title {
    font-size: 28px;
  }

  .gallery-intro__more {
    margin-top: 24px;
  }

  .gallery-card__title {
    font-size: 15px;
    white-space: normal;
  }

  .gallery-slider__fade {
    display: none;
  }

  .gallery-card__foot {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ----- Footer ----- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  background: #383838;

}

.site-footer__family {
  background: #383838;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__family-selects {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__select-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);

}

.site-footer__select-wrap:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 18px 52px 18px 28px;
  border: none;
  background: transparent;
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  cursor: pointer;
  outline: none;
}

.site-footer__select:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: -2px;
}

.site-footer__select option {
  color: #1a1a1a;
  background: #fff;
}

.site-footer__select-icon {
  position: absolute;
  right: 28px;
  top: 50%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  pointer-events: none;
  transform: translateY(-50%);
}

.site-footer__main {
  padding: 40px 0 48px;
}

.site-footer__inner {
  width: 100%;
  max-width: var(--quick-content-max);
  margin: 0 auto;
}

.site-footer__body {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__info {
  min-width: 0;
}

.site-footer__logo {
  margin: 0 0 28px;
}

.site-footer__logo a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.site-footer__logo-img-wrap {
  display: flex;
  align-items: center;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer__logo-img {
  width: auto;
  height: 36px;
  filter: grayscale(100%);
  opacity: 0.55;
}

.site-footer__logo-text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

.site-footer__copy {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__address {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__top {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #203d6b;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease;
}

.site-footer__top i {
  font-size: 14px;
  line-height: 1;
}

.site-footer__top:hover {
  background: #0f1f3d;
}

@media (max-width: 1024px) {
  .site-footer__family-selects {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .site-footer__select-wrap {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-footer__select-wrap:first-child {
    border-left: none;
  }

  .site-footer__select-wrap:last-child {
    border-bottom: none;
  }

  .site-footer__select {
    padding: 16px 48px 16px 24px;
    font-size: 15px;
  }

  .site-footer__select-icon {
    right: 24px;
  }

  .site-footer__main {
    padding: 32px 0 40px;
  }

  .site-footer__body {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 72px;
  }

  .site-footer__top {
    position: absolute;
    right: var(--header-bar-padding);
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .site-footer__logo a {
    gap: 12px;
  }

  .site-footer__logo-img-wrap {
    padding-right: 12px;
  }

  .site-footer__logo-img {
    height: 30px;
  }

  .site-footer__logo-text {
    font-size: 15px;
  }

  .site-footer__copy,
  .site-footer__address {
    font-size: 12px;
    word-break: keep-all;
  }

  .site-footer__body {
    padding-bottom: 64px;
  }

  .site-footer__top {
    width: 48px;
    height: 48px;
    font-size: 10px;
  }
}

/* Google Translate */
.lang-box {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 100%;
}

.lang-box.is-open {
  z-index: 2;
}

.lang-box__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.lang-box__trigger:hover {
  opacity: 1;
}

.lang-box__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.lang-box__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.lang-box__label {
  letter-spacing: -0.01em;
}

.lang-box__arrow {
  flex-shrink: 0;
  font-size: 10px;
  color: #fff;
  transition: transform 0.2s ease;
}

.lang-box__trigger:hover .lang-box__arrow {
  color: inherit;
}

.lang-box.is-open .lang-box__arrow {
  transform: rotate(180deg);
}

.lang-box__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  bottom: auto;
  z-index: 1000;
  min-width: 160px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lang-box__menu[hidden] {
  display: none;
}

.lang-box__menu button {
  display: block;
  width: 100%;
  padding: 8px 16px;
  border: 0;
  background: transparent;
  color: #222;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.lang-box__menu button:hover {
  background: #f5f5f5;
}

body.has-top-banner-open .lang-box__menu {
  top: calc(100% + 8px);
  bottom: auto;
  transform: none;
}

.lang-box.lang-box--drop-up .lang-box__menu {
  top: auto;
  bottom: calc(100% + 8px);
}

@media (min-width: 1025px) {
  .site-header.is-lang-open .util-bar,
  .site-header:has(.lang-box.is-open) .util-bar {
    z-index: 10;
  }

  .site-header.is-lang-open .lang-box__menu,
  .site-header:has(.lang-box.is-open) .lang-box__menu {
    z-index: 1001;
  }
}

body {
  top: 0 !important;
}

iframe.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt {
  display: none !important;
}

body > .skiptranslate {
  display: none !important;
}

/* ----- Top Banner (상단 공지) ----- */
.top-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 260;
  width: 100%;
  background: #dfdfdf;
  color: #fff;
  overflow: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.top-banner[hidden] {
  display: none !important;
}

.top-banner.is-closing {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.top-banner__inner {
  position: relative;
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 10px 52px;
  box-sizing: border-box;
  min-height: 130px;
  height: auto;
}

.top-banner__swiper {
  width: 100%;
  overflow: hidden;
}

.top-banner__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 0 0 6px;
  box-sizing: border-box;
}

.top-banner__content {
  width: 100%;
  text-align: center;
  line-height: 1.5;
}

.top-banner__content a {
  color: #fff;
}

.top-banner__content p {
  width: 100%;
  height: 100%;
}

.top-banner__content p img {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  max-height: 110px;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}

.top-banner__pagination {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 50%;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateY(-50%) !important;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  pointer-events: none;
}

.top-banner__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  pointer-events: auto;
}

.top-banner__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  box-shadow: none;
  background: #fff;
}

.top-banner__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #404040;
  font-size: 18px;
  cursor: pointer;
}

.top-banner__nav--prev {
  left: 12px;
}

.top-banner__nav--next {
  right: 12px;
}

.top-banner__actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 6px 8px;
  width: 100%;
  min-height: 30px;
  margin-top: 4px;
  padding-top: 6px;
  box-sizing: border-box;
  font-size: 13px;
  z-index: 9;
  color: #000;
}

.top-banner__today {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  cursor: pointer;
  font-weight: 300;
  user-select: none;
}

.top-banner__today input {
  margin: 0;
}

.top-banner__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.top-banner__close img {
  display: block;
  width: 17px;
  height: 17px;
  filter: brightness(0);
}

.top-banner.is-single .top-banner__nav,
.top-banner.is-single .top-banner__pagination {
  display: none;
}

@media (max-width: 900px) {
  .top-banner__inner {
    min-height: 0;
    padding: 8px 36px 8px;
  }

  .top-banner__slide {
    min-height: 80px;
    padding: 4px 0 0;
  }

  .top-banner__content p img {
    max-height: 80px;
  }

  .top-banner__nav {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .top-banner__nav--prev {
    left: 4px;
  }

  .top-banner__nav--next {
    right: 4px;
  }

  .top-banner__actions {
    gap: 4px 6px;
    min-height: 26px;
    margin-top: 2px;
    padding-top: 4px;
    font-size: 12px;
  }

  .top-banner__pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .top-banner__today {
    gap: 4px;
  }

  .top-banner__today span {
    white-space: nowrap;
  }

  .top-banner__close {
    width: 24px;
    height: 24px;
  }

  .top-banner__close img {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 420px) {
  .top-banner__inner {
    padding: 6px 28px 6px;
  }

  .top-banner__slide {
    min-height: 72px;
  }

  .top-banner__content p img {
    max-height: 72px;
  }
}

@media (max-width: 380px) {
  .top-banner__pagination {
    justify-content: flex-start;
    padding-left: 2px !important;
  }

  .top-banner__today span {
    font-size: 11px;
  }
}