@charset "utf-8";
@import url('./defaults/reset.css?ver=240126');
@import url('./defaults/utils.css?ver=240126');
@import url('./defaults/board.css?ver=240126');
@import url('./defaults/popup.css?ver=240126');
@import url('./defaults/ckeditor5.css?ver=240126');
@import url('./defaults/scroll-ani-transition.css?ver=240126');

#sian-nav {position:fixed;top: 120px;right: 0;z-index: 9999999999;}
#sian-nav a {display: block; font-size: 14px; background-color: #666; color: #fff; line-height: 30px; padding: 0 10px; border-radius: 5px 0 0 5px; margin-bottom: 2px; transition: background-color 0.3s;  min-width: 80px;}
#sian-nav a:hover {background-color: #999;}
#sian-nav a.active {background-color: #FC6262; color: #fff;font-weight: 700;}

/* ** 전역적으로 사용될 변수 스타일을 작성합니다. */
:root {
  --container-width: 1200px;
  --container-medium-width: 1100px;
  --container-narrow-width: 1024px;
  --container-wide-width: 1400px;

  --primary: #1A6AFF;
  --secondary: #9403E9;
  --third: #FF8600;

  --gray1: #707070;
  --gray2: #BDBDBD;

  
  --ff-primary: "Pretendard", "맑은 고딕", sans-serif;
  --ff-secondary: 'SUIT', var(--ff-primary);
  
  --cubic-pop1: cubic-bezier(.85,.14,.29,.99);
  --cubic-pop2: cubic-bezier(.71,.45,.36,1.31);
  --cubic-pop3: cubic-bezier(.85,.14,.29,.99);
  
  --scrollbar-color: var(--primary);
}

/* Base assets */
html, body {overflow-x: clip; color: #222;}
body {font-family: var(--ff-primary); letter-spacing: 0em; word-break: keep-all;}
.mo {display: none;}
@media screen and (max-width: 1399px) {
  .pc {display: none;}
}
@media screen and (max-width: 767px) {
  .mo {display: block;}
}
.primary {color: var(--primary) !important;}
.secondary {color: var(--secondary) !important;}
.white {color: #fff !important;}

.bg-dark {background-color: #F3F4F5;}

.bg {position: absolute; top:0; left:0; width: 100%; height: 100%; z-index: -1;}
.bg img {width: 100%; height: 100%; object-fit: cover; object-position: center;}

.img-box {width: 100%; height: 100%; overflow: hidden;}
.img-box img {width: 100%; height: 100%; object-fit: cover;}

.link-more {display: flex; color: #fff; align-items: center; justify-content: center; gap: 20px; width: fit-content; height: fit-content; padding: 10px 20px; font-size: 17px; font-weight: 600; border-radius: 41px; background-color: var(--primary); transition: background-color 0.3s ease;}


@media (hover:hover) {
  .link-more:hover {background-color: #222;}
}



/* Header */
.header {position: fixed; top: 0; left: 0; width: 100%; height: 100px; z-index: 9999; font-family: var(--ff-secondary); transition: background 0s, transform .4s;}
.header::before {content: ''; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, #1A2C3F, transparent); z-index: 1; opacity: 0; transition: opacity .4s;}
.header-container {display: grid; grid-template-columns: 300px 1fr 300px; align-items: center; height: 100%; gap: 55px; width: 100%; padding-inline: 60px; position: relative; z-index: 2;}
.header .logo {display: flex; position: relative;}
.header .logo img {display: block; transition: opacity .4s; width: 160px; height: auto;}
.header .logo img.light {opacity: 0;}
.header .logo img.dark {position: absolute; top: 0; left: 0; opacity: 1;}
.header .logo h1 {display: none;}

.header-gnb {display: flex; margin: 0 auto; height: 70px; background: rgba(255,255,255,0.2); border-radius: 43px; padding-inline: 120px; backdrop-filter: blur(10px); position: relative; overflow: visible;}
.header-gnb::before {content: ''; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #fff; z-index: -1; opacity: 0; transition: opacity .4s;}
.header-gnb-item {display: flex; align-items: stretch; position: relative;}
.header-gnb-item > a {display: flex; justify-content: center; align-items: center; text-align: center; padding-inline: 40px; font-weight: 500; text-transform: uppercase; font-size: 18px; position: relative;}

.header-submenu {position: absolute; top: 100%; left: 50%; transform: translate(-50%, -10px); padding: 10px 15px; background: var(--primary); border-block: 1px solid rgb(255,255,255,0.3); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 10px rgb(0,0,0,.15); min-width: 180px; width: max-content; opacity: 0; visibility: hidden; transition: transform .35s var(--cubic-pop1), opacity .35s var(--cubic-pop1), visibility .35s; text-align: center; pointer-events: none; font-family: var(--ff-primary); z-index: 10; color: white;}
.header-submenu::before {content: ''; position: absolute; top: -12px; left: 0; width: 100%; height: 12px;}
.header-submenu-item > a {display: block; padding: 0.5em 20px; font-weight: 700; color: rgb(255,255,255,.7);}

.header-etc-nav {display: flex; justify-content: flex-end; align-items: center; gap: 25px; padding-top: 10px;}

.header-contact-btn {display: inline-flex; align-items: center; justify-content: center; height: 40px; padding: 0 1.4em; font-size: 18px; font-weight: 600; text-transform: uppercase; color: #fff; background: var(--primary); border-radius: 40px; transition: background .3s, opacity .3s;}

.header-etc-nav .btn--sitemap-toggle {display: none;}


/* Header 상태관리 */
.header--hide {transform: translate(0, -100%);}


.sitemap {display: none;}

@media (hover: hover) {
  .header .header-gnb-item:hover > a {font-weight: 700; color: #09ADFF;}
  .header-gnb-item:hover .header-submenu {opacity: 1; visibility: visible; transform: translate(-50%, 0); pointer-events: initial;}
  .header-submenu-item > a:hover {color: #fff;}
  .header-contact-btn:hover {opacity: .85;}
}

@media screen and (max-width: 1700px) and (min-width: 1400px) {
  .header-container {grid-template-columns: 220px 1fr 220px; gap: 32px; padding-inline: 40px;}
  .header .logo img {width: 140px;}
  .header-gnb {height: 64px; padding-inline: 48px;}
  .header-gnb-item > a {padding-inline: 22px; font-size: 16px;}
}

@media screen and (max-width: 1399px) {
  .header::before {display: none;}
  .header {height: 60px; background: #fff; border-bottom: 1px solid #dfdfdf; color: #333!important;}
  .header .header-container {width: min(1920px, calc(100% - 30px)); max-width: none; margin-inline: auto; display: flex; justify-content: space-between; align-items: center; padding-inline: 0; gap: 0;}
  .header-gnb {display: none;}
  .header .logo {height: 40px; margin-right: auto;}
  .header .logo img {height: 100%; width: auto; max-width: none;}
  .header .logo img.dark {position: static; display: block;}
  .header .logo .light {display: none;}
  .header .logo .dark {display: block;}

  .header-etc-nav {gap: 25px; padding: 0;}
  .header-contact-btn {display: none;}
  .header-etc-nav .btn--sitemap-toggle {display: flex; flex-direction: column; justify-content: center; gap: 3px; border: none; outline: none; box-shadow: none; appearance: none; width: 45px; height: 30px; border-radius: 10px; padding: 10px 12px; cursor: pointer; position: relative; overflow: hidden; background: var(--primary);}
  .header-etc-nav .btn--sitemap-toggle .bar {width: 100%; height: 2px; background: #fff; transition: .4s; border-radius: 2px;}

  .sitemap {display: block; position: fixed; top: 0; left: 0; z-index: 9998; width: 100%; height: calc(var(--vh, 1vh) * 100); pointer-events: none;}
  .sitemap-dim {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgb(0,0,0,.6); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); opacity: 0; transition: opacity .5s;}
  .sitemap-container {position: absolute; z-index: 10; top: 0; right: 0; width: 100%; max-width: 520px; height: 100%; background: #fff; overflow: hidden auto; --padding-inline: 30px; transform: translate(100%); opacity: 0; transition: opacity .5s, transform .5s; padding-top: 80px;}
  .sitemap-container .body {padding-block: 20px;}
  .sitemap-container .body .block {padding-inline: var(--padding-inline); padding-block: 15px;}

  body.sitemap--open .sitemap {pointer-events: initial;}
  body.sitemap--open .sitemap-dim {opacity: 1;}
  body.sitemap--open .sitemap-container {opacity: 1; transform: translate(0);}

  .sitemap-gnb-item {padding-block: .7em;}
  .sitemap-gnb-item:not(:last-child) {border-bottom: 1px solid #ededed;}
  .sitemap-gnb-item .trigger {display: flex; align-items: center; justify-content: space-between; font-size: 22px; font-family: var(--ff-secondary);}
  .sitemap-gnb-item .trigger .ico--plus {width: 1em; height: auto; aspect-ratio: 1 / 1;}
  .sitemap-gnb-item .trigger .ico--plus::before,
  .sitemap-gnb-item .trigger .ico--plus::after {background: #afafaf; border-radius: 2px;}
  .sitemap-gnb-item .trigger .ico--plus::before {width: 2px;}
  .sitemap-gnb-item .trigger .ico--plus::after {height: 2px;}
  .sitemap-gnb-item.active .trigger {font-weight: 700;}
  .sitemap-gnb-item.active .trigger .ico--plus::before {display: none;}
  .sitemap-gnb-item.active .trigger .ico--plus::after {background: var(--secondary);}

  .sitemap-submenu {display: none; margin-block: 10px; padding: 0 0 20px 5px;}
  .sitemap-gnb-item.active .sitemap-submenu {display: block;}
  .sitemap-submenu-ls {font-size: 20px;}
  .sitemap-submenu-ls > .item > a {display: block; padding-block: 5px; font-weight: 300;}
  .sitemap-submenu-ls > .item.active > a {font-weight: 500;}

  .sitemap-lang {display: flex; font-size: 18px;}
  .sitemap-lang a {display: flex; align-items: center; color: #909090; text-transform: uppercase;}
  .sitemap-lang a.active {color: var(--primary); font-weight: 600;}
  .sitemap-lang a:not(:last-child)::after {width: 1px; height: .7em; content: ''; background: #dfdfdf; margin: 0 .6em;}

  .sitemap-info {margin-top: 20px; padding-top: 30px; border-top: 1px solid #ededed; color: #666; font-size: 14px; line-height: 1.5;}
  .sitemap-info__label {margin-bottom: 14px; font-size: 18px; font-weight: 700; color: #222;}
  .sitemap-info__addr {word-break: keep-all;}
  .sitemap-info__contact {display: flex; flex-direction: column; gap: 6px; margin-top: 12px;}
  .sitemap-info__contact span {font-weight: 700; color: #222;}
  .sitemap-info__inquiry {display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 20px; font-weight: 700; color: var(--primary); line-height: 1;}
  .sitemap-info__inquiry-ico {display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: #fff;}
  .sitemap-info__inquiry-ico svg {width: 12px; height: 12px;}
  .sitemap-info__copy {margin-top: 24px; font-size: 12px; color: #999;}
  .sitemap-info__policy {display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px;}
  .sitemap-info__policy :is(a, button) {position: relative; background: none; border: 0; padding: 0; font: inherit; font-size: 13px; color: #888; cursor: pointer;}
  .sitemap-info__policy :is(a, button):not(:first-child)::before {content: ''; position: absolute; left: -9px; top: 50%; width: 1px; height: 12px; background: #ddd; transform: translateY(-50%);}
}

@media screen and (max-width: 767px) {
  .header {height: 50px;}
  .header .logo {height: 30px;}
  .header-etc-nav {gap: 10px;}
  .header-etc-nav .btn--sitemap-toggle {width: 40px; height: 28px; padding: 8px 10px;}

  .sitemap-container {--padding-inline: 20px; padding-top: 70px;}
  .sitemap-gnb-item .trigger {font-size: 18px;}
  .sitemap-submenu-ls {font-size: 16px;}
  .sitemap-lang {font-size: 16px;}
  .sitemap-info {font-size: 13px;}
  .sitemap-info__label {font-size: 16px;}
  .sitemap-info__inquiry {font-size: 18px;}
  .sitemap-info__inquiry-ico {width: 24px; height: 24px;}
  .sitemap-info__copy {font-size: 11px;}
  .sitemap-info__policy :is(a, button) {font-size: 12px;}
}


/* footer */
.footer{background: linear-gradient(180deg,#000 0%, #0B0056 100%); color: #BEBEBE; padding-block: 76px 95px;}
.footer .container--wide{padding-left: 78px;}
.footer .grid{grid-template-columns: 1fr 588px; align-items: center;}
.footer .grid img {width: 230px; height: auto; opacity: 0.5;}
.footer li:nth-child(2n+1){margin-right: 21.5px;}
.footer li:nth-child(1){margin-left: -78px;}
.footer li:nth-child(2){font-size: 21px;}
.footer .info{padding-block: 33px 40.5px; border-bottom: 1px solid #707070;}
.footer .info .flex{margin-top: 14px; gap: 20px;}
.footer .info span{color: #fff; font-weight: 700;}
.footer li:nth-child(4){font-size: 108px; line-height: 1; border-bottom: 1px solid #707070; padding-bottom: 28px; transition: color 0.3s ease;}
.footer li:nth-child(4) .flex{align-items: flex-end;}
.footer li:nth-child(4) div{background: var(--primary); border-radius: 55px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; margin-bottom: 12.5px; transition: transform 0.3s ease; transform: translateX(0);}
.footer li:nth-child(5){margin-top: 21.5px; color: #848484;}
.footer li:nth-child(6){margin-top: 21.5px; color: #848484;}
.footer li:nth-child(6){gap: 24px;}
.footer li.footer-policy :is(a, button){position: relative; background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer;}
.footer li.footer-policy :is(a, button)::before{content: ''; background: #848484; width: 1px; height: 14px; position: absolute; left: -11px; top: 50%; transform: translateY(-50%);}
.footer li.footer-policy :is(a, button):first-child::before{display: none;}
.footer .grid .mo {font-size: 21px; margin-block: 28px 18px;}

@media (hover: hover){
  .footer li:nth-child(4):hover {color: #fff;}
  .footer li:nth-child(4):hover div {transform: translateX(20px);}
}

@media screen and (max-width: 1399px) {
  .footer li:nth-child(2n+1) {margin-right: 0;}
  .footer .info {padding-block: 20px 30px;}
  .footer .grid {grid-template-columns: 1fr;}
  .footer .grid .mo {display: block;}
  .footer .grid .pc {display: none;}
  .footer li:nth-child(4) {font-size: 80px; padding-bottom: 30px; text-align: center;}
  .footer li:nth-child(4) .flex {gap: 14px; justify-content: center;}
  .footer li:nth-child(4) div {width: 58px; height: 58px;}
  .footer li:nth-child(6) {margin-top: 14px;}
}

@media screen and (max-width: 767px) {
  .footer {padding-block: 40px 60px;}
  .footer .container--wide {padding-left: 0;}
  .footer li:nth-child(1) {margin-left: 0;}
  .footer li:nth-child(1) img {margin: auto; display: block;}
  .footer .info {font-size: 14px;}
  .footer .info .flex {flex-direction: column; gap: 14px;}
  .footer .grid .mo {font-size: 14px; margin-block: 20px 14px;}
  .footer li:nth-child(4) {font-size: 40px;}
  .footer li:nth-child(4) div {width: 38px; height: 38px; margin-bottom: 0;}
  .footer li:nth-child(5) {margin-top: 20px; font-size: 12px; text-align: center;}
  .footer li:nth-child(6) {justify-content: center; font-size: 14px;}
}


/* Modal */
.modal {--width: 890px; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 999999; align-items: center; justify-content: center; padding: 50px 15px; display: none; opacity: 0;  background: rgb(0,0,0,.7); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);}
.modal-small {--width: 652px;}
.modal .dim {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
.modal .container {--padding: 70px 60px; width: var(--width)!important; max-width: 100%; position: relative; z-index: 1; background: #fff; overflow: hidden auto; max-height: 100%; border-radius: 10px;}
.modal .container .head {position: sticky; top: 0; left: 0; width: 100%; padding: var(--padding); padding-bottom: 30px; background: #fff; z-index: 10;}
.modal .container .btn--close {position: absolute; top: 20px; right: 20px;}
.modal .container .btn--close .ico--times::before {background: #000;}
.modal .container .btn--close .ico--times::after {background: #000;}
.modal .container .content {padding: var(--padding); padding-top: 0;}

.modal.overflow {overflow: hidden auto; align-items: flex-start;}
.modal.overflow .dim {background: none; backdrop-filter: none;}
.modal.overflow .container {overflow: visible; max-height: none;}
.modal.overflow .container .head {top: -50px; border-radius: 10px 10px 0 0; padding-block: 50px 20px; padding-right: 60px; border-bottom: 1px solid var(--gray-lighter);}
.modal.overflow .container .content {padding-top: 20px;}

.modal-brand-notice {--width: 500px;}
.modal-brand-notice.active {opacity: 1; display: flex;}
.modal-brand-notice .container .head {padding-block: 50px 20px;}
.modal-brand-notice .container .content .title {margin-bottom: 0.6em;}

.modal.type--video {--width: 1000px;}
.modal.type--video .container {--padding: 0; border-radius: 0; display: flex; overflow: visible; flex-direction: column; background: transparent; gap: 20px;}
.modal.type--video .container .content {border-radius: 10px; overflow: hidden; order: 1;}
.modal.type--video .container .btn--close {position: static; margin-inline: auto; order: 2;}
.modal.type--video .container .btn--close .ico--times::before,
.modal.type--video .container .btn--close .ico--times::after {background: #fff;}

@media screen and (max-width: 1399px) {
  .modal .container {--padding: 70px 30px;}
  .modal.overflow .container .head {padding-block: 20px;}
}
@media screen and (max-width: 767px) {
  .modal .container {--padding: 70px 15px;}
  .modal.type--video {padding-inline: 0;}
  .modal.type--video .container {--padding: 0; max-height: none;}
}


/* Policy */
.policy-doc {padding: 30px; border-radius: 10px; background: #FCFCFC; border: 1px solid #E8E8E8; font-size: 16px;}
.policy-doc dl {word-break: break-all;}
.en .policy-doc dl {word-break: normal;}
.policy-doc dt {display: block; font-weight: 700; color: var(--dark-navy); margin-bottom: 0.3em;}
.policy-doc dd {margin-bottom: 1.5em;}
.policy-doc dd :where(h1, h2, h3, h4, h5, h6) {color: var(--dark-navy); margin-bottom: 0.3em;}
.policy-doc dd .indent {padding-left: 1em;}
.policy-doc dd p {margin-bottom: 0.5em;}
.policy-doc dd table {width: 100%; font-size: 13px;}
.policy-doc dd table :where(th, td) {border: 1px solid var(--gray-lighter); padding: .3em .5em; line-height: 1.5;}
.policy-doc dd table thead th {background: var(--gray-light);}
.policy-doc .bullet > li::before {background: var(--primary);}
.policy-doc ol {margin-block: 1em;}
.policy-doc ol > li:not(:last-child) {margin-bottom: 0.7em;}

@media screen and (max-width: 1399px) {
  .policy-doc {padding: 30px 20px; font-size: 15px;}
}
@media screen and (max-width: 767px) {
  .policy-doc {padding: 25px 15px; font-size: 14px;}
  .policy-doc dd .indent {padding-left: 0em;}
}

