/* common.css header compatibility */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(229, 231, 235, 1); }
.header .nav, .header.nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.header .brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.header .menu { display: none; gap: 14px; }
.header .menu a { font-size: 14px; color: #6b7280; }
.header .menu a:hover { color: #111827; }
.header .nav-right { display: flex; gap: 10px; align-items: center; }
body {
  font-family: 'ArtnerPrimary', sans-serif;
  
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 100%),
    linear-gradient(180deg, #111111 0%, #1d1d1d 38%, #1a1a1a 100%);
  color: var(--artner-text);
}
.artner-header.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
  
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transform-origin: center;
}

.main-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.main-header.open::before,
.main-header.open::after {
  opacity: 1;
  visibility: visible;
}

.artner-header__inner,
.ht-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 16% 1fr auto;
  align-items: center;
  gap: 20px;
}

.ht-inner__left {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.header-brand-row {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  z-index: 130;
}

.ht-inner__brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  justify-self: start;
}

.header-nav-row {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-inner__center {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-left: 0;
  justify-self: center;
}

.ht-inner__right {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  z-index: 2;
  justify-self: end;
  padding-right: 25px;
}

.artner-brand,
.logo {
  display: inline-flex;
  align-items: center;
}

.artner-brand img,
.logo img {
  width: 220px;
  height: auto;
  padding: 0px 0px 0px 10px;
}

.language {
  position: relative;
  display: block;
  margin-right: 18px;
}

.language > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 96px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease;
}

.language > #langNow {
  width: 5.313rem;
}

.language > span > b {
  font-weight: 700;
}

.language-caret {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.language:hover > span,
.language:focus-within > span {
  color: #fff;
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.language:hover .language-caret,
.language:focus-within .language-caret {
  transform: rotate(225deg) translateY(1px);
}

.select-lang {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: rgba(17, 17, 17, 0.96);
  border: 1px solid rgba(201, 164, 76, 0.28);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.language:hover .select-lang,
.language:focus-within .select-lang {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.select-lang li a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  color: rgba(246, 241, 234, 0.92);
  font-size: 14px;
  line-height: 1.45;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.select-lang li a:hover {
  background: rgba(201, 164, 76, 0.14);
  color: #ffffff;
}

.main-header.open .language {
  visibility: hidden;
  opacity: 0;
  display: none;
}

.hd_call {
  display: none;
  align-items: center;
  margin-right: 3rem;
  color: #fff;
}

.hd_call i {
  display: block;
  width: 1.25rem;
  height: 1.313rem;
  margin-right: 0.5rem;
  background: url("../img/hd_call.png") 50% 50% / 100% no-repeat;
}

.hd_call .txt01 {
  margin-right: 0.9rem;
  font-size: 1rem;
}

.hd_call .txt02 {
  font-family: "ArtnerPrimary", sans-serif;
  font-size: 1.25rem;
}

.main-header.open .hd_call {
  display: flex;
}

.ht-inner__center .links {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ht-inner__center .links li {
  position: relative;
  text-align: center;
  list-style: none;
  padding: 0;
}

.ht-inner__center .links li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.ht-inner__center .links li a {
  display: block;
  color: #000;
  font-size: 1.063rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0;
}

.ht-inner__center .gnb_subList_wrap {
  overflow: hidden;
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  width: 8.813rem;
  height: 0;
  padding-top: 1.063rem;
  transform: translateX(-50%);
  transform-origin: top center;
  transition: height 0.5s ease;
  pointer-events: none;
}

.ht-inner__center .gnb_subList_wrap .gnb_subList {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.813rem;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.6);
}

.ht-inner__center .gnb_subList_wrap.open {
  height: calc(2.875rem + (1.375rem * 8));
  pointer-events: auto;
}

.ht-inner__center .gnb_subList_wrap.subList02.open {
  height: calc(5.875rem + (1.375rem * 2));
  pointer-events: auto;
}

.ht-inner__center .gnb_subList_wrap.subList03.open {
  height: calc(4.875rem + (1.375rem * 3));
  pointer-events: auto;
}

.ht-inner__center .gnb_subList_wrap .gnb_subLink {
  color: #000;
  font-size: 1.063rem;
  letter-spacing: 0.01em;
  text-align: center;
}

.hamberger,
.artner-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s;
  transition-duration: 0.7s;
}

.hd_menu {
  display: block;
  cursor: pointer;
  z-index: 1;
}

.hd_menu span {
  display: block;
  width: 2.9rem;
  height: 3px;
  margin: 0;
  border-radius: 0;
  background: #000;
  transition: margin 0.25s 0.25s, transform 0.25s, background 0.25s;
  background-size: cover;
}

.hd_menu span:first-child {
  margin-bottom: 0.6rem;
}

.hd_menu span:nth-child(3) {
  margin-top: 0.6rem;
}

.main-header.open .hd_menu span {
  background: #fff;
  transition: margin 0.25s, transform 0.25s 0.25s;
}

.main-header.open .hd_menu span:first-child {
  margin-top: 0;
  margin-bottom: 0;
  transform: rotate(45deg);
}

.main-header.open .hd_menu span:nth-child(2) {
  margin-top: -3px;
  transform: rotate(135deg);
}

.main-header.open .hd_menu span:nth-child(3) {
  display: none;
  margin-top: 6px;
  opacity: 0;
  transform: rotate(135deg);
}

.gnb-container {
  position: fixed;
  top: -100vh;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 10.5rem 0 0 31rem;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.98) 0%, rgba(8, 8, 8, 0.98) 100%);
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-500px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), top 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.gnb-container.open,
.main-header.open .gnb-container {
  top: 0;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gnb-wrapper,
.gnb-inner,
.pc_cont_1024 { width: 100%; max-width: 1080px; }

.header-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 42px;
  margin-right: 18px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.header-login-btn:hover {
  color: #fff;
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.header-login-btn--sub {
  background: transparent;
  color: #f6f1ea;
  border-color: rgba(255, 255, 255, 0.2);
}

.header-login-btn--sub:hover {
  color: #ffffff;
}

.header-login-btn--icon {
  min-width: 42px;
  width: 42px;
  padding: 0;
  border-radius: 50%;
}

.header-login-btn--icon i {
  font-size: 16px;
}

.nav.width80.gnb-inner .depth1 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav.width80.gnb-inner .depth1 > li {
  width: 100%;
}

.nav.width80.gnb-inner .depth1 > li > a {
  display: block;
  padding: 0 0 10px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
}

.nav.width80.gnb-inner .depth2 {
  display: block !important;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 1;
  visibility: visible;
  max-height: none;
  overflow: visible;
  transform: none;
  pointer-events: auto;
}

.nav.width80.gnb-inner .depth2 li + li {
  margin-top: 10px;
}

.nav.width80.gnb-inner .depth2 a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.5;
}

.nav.width80.gnb-inner .depth2 a:hover {
  color: #fff;
}

.float-cta {
  position: fixed;
  right: max(16px, calc((100vw - 1400px) / 8 + 16px));
  bottom: 16px;
  z-index: 130;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-cta__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.float-cta__icon {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: background-color 0.25s ease;
}

.float-cta__icon::before,
.float-cta__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.float-cta__icon::before {
  transform: translateY(-6px);
}

.float-cta__icon::after {
  transform: translateY(6px);
}

.float-cta:not(.is-collapsed) .float-cta__icon {
  background: transparent;
}

.float-cta:not(.is-collapsed) .float-cta__icon::before {
  transform: rotate(45deg);
}

.float-cta:not(.is-collapsed) .float-cta__icon::after {
  transform: rotate(-45deg);
}

.float-cta__list {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.float-cta.is-collapsed .float-cta__list {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.float-cta__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.float-cta__list img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.float-cta__list i {
  font-size: 22px;
  color: #fff;
}

.quick-consult-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 125;
  transform: translateX(-50%);
  width: min(100%, 860px);
  padding: 0 12px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.quick-consult-cta__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 330px;
  height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.quick-consult-cta__trigger:hover {
  transform: translateY(-1px);
  background: rgba(27, 42, 47, 0.96);
}

.quick-consult-cta__trigger i {
  font-size: 30px;
  font-style: normal;
  line-height: 1;
  transition: transform 0.2s ease;
}

.quick-consult-cta.is-open .quick-consult-cta__trigger i {
  transform: rotate(180deg);
}

.quick-consult-panel {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  width: min(92vw, 330px);
  padding: 20px 18px 16px;
  border-radius: 14px;
  border: 1px solid #d9d9d9;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
}

.quick-consult-cta.is-open .quick-consult-panel {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quick-consult-panel__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #8a8a8a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.quick-consult-panel__title {
  margin: 0 0 14px;
  color: #111111;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.quick-consult-panel__form {
  display: grid;
  gap: 10px;
}

.quick-consult-panel__input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #d7d7d7;
  background: #f7f7f7;
  color: #1f1f1f;
  font-size: 15px;
  box-sizing: border-box;
  outline: none;
}

.quick-consult-panel__input:focus {
  border-color: #9e9e9e;
  background: #ffffff;
}

.quick-consult-panel__agree {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #343434;
}

.quick-consult-panel__agree input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #1f1f1f;
}

.quick-consult-panel__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.quick-consult-panel__terms {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #d3d3d3;
  background: #f5f5f5;
  color: #7f7f7f;
  font-size: 12px;
  text-decoration: none;
}

.quick-consult-panel__submit {
  min-width: 130px;
  height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
}

html.is-menu-open,
body.is-menu-open,
body.no-scroll {
  overflow: hidden;
}

@media (max-width: 1440px) {
  .gnb-container {
    padding: 10rem 4rem 1rem 3rem;
  }
}

@media (max-width: 1170px) {
  .header .nav,
  .header.nav {
    min-height: 56px;
  }

  .artner-header__inner,
  .ht-inner {
    min-height: 64px;
    grid-template-columns: auto 1fr auto;
  }

  .header-brand-row {
    min-height: 72px;
  }

  .header-nav-row {
    display: none;
    
  }

  .ht-inner__center {
    width: 100%;
  }

  .ht-inner__center .links {
    display: none;
  }

  .hd_call {
    display: none !important;
  }

  .main-header.open .language {
    display: none;
  }

  .main-header.open .artner-brand img,
  .main-header.open .logo img {
    filter: brightness(0) invert(1);
  }

  .gnb-container {
    width: 100%;
    max-height: unset;
    padding: 10rem 2rem calc(7.5rem + env(safe-area-inset-bottom));
    overflow-y: auto;
  }

  .header-login-btn {
    min-width: 96px;
    min-height: 38px;
    margin-right: 12px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .nav.width80.gnb-inner .depth1 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .float-cta {
    right: 12px;
    bottom: 12px;
  }

  .float-cta__toggle,
  .float-cta__list a {
    width: 46px;
    height: 46px;
  }

  .float-cta__icon {
    width: 20px;
  }

  .quick-consult-cta {
    bottom: 12px;
  }

  .quick-consult-cta__trigger {
    min-width: 280px;
    height: 50px;
    font-size: 26px;
    padding: 0 22px;
  }

  .quick-consult-cta__trigger i {
    font-size: 24px;
  }

  .quick-consult-panel {
    width: min(94vw, 520px);
    padding: 18px 16px 14px;
  }

  .quick-consult-panel__title {
    font-size: 22px;
  }
}

@media (max-width: 560px) {
  .header-brand-row {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
  }

  .ht-inner__brand {
    gap: 6px;
    min-width: 0;
  }

  .artner-brand img,
  .logo img {
    width: 118px;
    padding-left: 0;
  }

  .ht-inner__right {
    padding-right: 10px;
  }

  .language {
    display: block;
    margin: 0;
    flex-shrink: 0;
  }

  .language > span {
    min-width: 76px;
    min-height: 30px;
    padding: 0 10px;
    gap: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.01em;
  }

  .language-caret {
    width: 6px;
    height: 6px;
    border-right-width: 1.5px;
    border-bottom-width: 1.5px;
  }

  .header-login-btn {
    min-width: 62px;
    min-height: 32px;
    margin-right: 8px;
    padding: 0 10px;
    font-size: 0.72rem;
    letter-spacing: 0.01em;
  }

  .header-login-btn--icon {
    min-width: 32px;
    width: 32px;
  }

  .main-header .hoverDownIcon_b,
  .main-header .hoverDownIcon_w {
    width: 0.5rem;
  }

  .hd_menu span {
    height: 1px;
  }

  .gnb-container {
    padding: 10rem 1rem calc(8rem + env(safe-area-inset-bottom));
  }

  .quick-consult-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    transform: none;
    width: auto;
  }

  .quick-consult-cta__trigger {
    width: 100%;
    min-width: 0;
    height: 44px;
    font-size: 18px;
    justify-content: center;
  }

  .quick-consult-cta__trigger i {
    font-size: 18px;
  }

  .quick-consult-panel {
    width: 94vw;
    padding: 16px 14px 12px;
    bottom: calc(100% + 6px);
  }

  .quick-consult-panel__close {
    top: 6px;
    right: 6px;
  }

  .quick-consult-panel__title {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .quick-consult-panel__input {
    height: 40px;
    font-size: 13px;
  }

  .quick-consult-panel__agree {
    font-size: 12px;
  }

  .quick-consult-panel__actions {
    gap: 8px;
  }

  .quick-consult-panel__terms {
    min-width: 64px;
    height: 28px;
    font-size: 11px;
  }

  .quick-consult-panel__submit {
    min-width: 112px;
    height: 34px;
    font-size: 13px;
  }

  .select-lang{
    min-width: 130px;
  }
  .select-lang li a span{
    display: none;
  }

}


#fullpage {
  height: 850px;
  /* margin-top: 36px; */
}
