@charset "UTF-8";
/* ******************** default ******************** */
/* 프리텐다드 */
@import "../font/pretendard.css";
/* 지마켓 산스 */
@import "../font/gmarketsans.css";
/* 나눔 명조 */
@import "../font/nanum-myeongjo.css";
/* root (CSS 변수) */
:root {
  /* com default */
  --theme: #1087F5;
  --brown: #5B4C3E;
  --orange: #F5A200;
  --teal: #083E47;
  --line: #C0CAD3;
  --red: #FF5154;
  --dark: #181719;
  --green: #4FB76A;
  --blue: #4e8bff;
  --gray: #999;
  --deepblue: #24569F;
  --pink: #FF8CC3;
  --navy: #002445;
}

/* background color */
.bg-theme {
  background-color: var(--theme) !important;
}

.bg-brown {
  background-color: var(--brown) !important;
}

.bg-orange {
  background-color: var(--orange) !important;
}

.bg-teal {
  background-color: var(--teal) !important;
}

.bg-red {
  background-color: var(--red) !important;
}

.bg-green {
  background-color: var(--green) !important;
}

.bg-blue {
  background-color: var(--blue) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.bg-deepblue {
  background-color: var(--deepblue) !important;
}

.bg-pink {
  background-color: var(--pink) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-navy {
  background-color: var(--navy) !important;
}

/* font color */
.colr-theme {
  color: var(--theme) !important;
}

.colr-brown {
  color: var(--brown) !important;
}

.colr-orange {
  color: var(--orange) !important;
}

.colr-teal {
  color: var(--teal) !important;
}

.colr-red {
  color: var(--red) !important;
}

.colr-green {
  color: var(--green) !important;
}

.colr-blue {
  color: var(--blue) !important;
}

.colr-gray {
  color: var(--gray) !important;
}

.colr-deepblue {
  color: var(--deepblue) !important;
}

.colr-pink {
  color: var(--pink) !important;
}

.colr-dark {
  color: var(--dark) !important;
}

.colr-navy {
  color: var(--navy) !important;
}

/* content (섹션 너비 등) */
.section {
  position: relative;
  width: 100%;
}

.sec-width {
  position: relative;
  width: 1300px;
  margin: 0 auto;
  max-width: 100%;
}

@media (max-width: 1700px) {
  .sec-width {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .sec-width {
    padding: 0 20px;
  }
}
/* align component */
/*
	[ Align component 사용법 ]
    - 정렬하고자 하는 태그는 display inline-block이어야 함.
    - 자식 요소만 정렬하는거면 부모 태그는 display block이어도 상관없음. 자식요소만 inline or inline-block이어야 함.
*/
/* center */
.align-center {
  text-align: center !important;
}

/* left */
.align-left {
  text-align: left !important;
}

/* right */
.align-right {
  text-align: right !important;
}

/* size component */
/*
	[ size component 사용법 ]
    - input text, textarea, selectbox 등 기본 너비가 100%인 태그에 사이즈 조절이 필요할 경우 사용한다.
*/
/* ********** percentage width ********** */
.w-40pct {
  width: 40% !important;
}

.w-50pct {
  width: 50% !important;
}

.w-100pct {
  width: 100% !important;
}

/* ********** px width ********** */
.w-40px {
  width: 40px !important;
}

.w-50px {
  width: 50px !important;
}

.w-60px {
  width: 60px !important;
}

.w-70px {
  width: 70px !important;
}

.w-80px {
  width: 80px !important;
}

.w-100px {
  width: 100px !important;
}

.w-200px {
  width: 200px !important;
}

.w-300px {
  width: 300px !important;
}

.w-400px {
  width: 400px !important;
}

@media (max-width: 550px) {
  table .w-100px,
table .w-200px,
table .w-300px,
table .w-400px {
    width: 100% !important;
  }
}
/* ********** height ********** */
.h-auto {
  height: auto !important;
}

.h-22px {
  height: 22px !important;
}

.h-25px {
  height: 25px !important;
}

.h-30px {
  height: 30px !important;
}

.h-35px {
  height: 35px !important;
}

.h-80vh {
  height: 80vh !important;
}

.h-100vh {
  height: 100vh !important;
}

/* common (리셋 및 공통 스타일) */
/************************************** 리셋 **************************************/
/* 여백 초기화 */
html, body, div, span, h1, h2, h3, h4, h5, h6,
ul, ol, li, dl, dt, dd, p, address, blockquote, pre, cite,
form, fieldset, input, textarea, select, button, iframe, table, th, td {
  margin: 0;
  padding: 0;
}

/* 테두리 */
table, fieldset, img {
  border: 0 none;
}

/*목록*/
ul, ol, li {
  list-style-type: none;
}

/*테이블*/
table {
  border-collapse: collapse;
}

th {
  font-weight: normal;
  text-align: left;
}

caption {
  overflow: hidden;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  text-align: left;
}

/* 이미지와 폼 요소 정렬 */
img {
  vertical-align: top;
}

label, input, select, textarea, button {
  vertical-align: middle;
}

/* 텍스트 */
strong {
  font-weight: normal;
}

em, address, cite {
  font-style: normal;
}

/* 폼 요소 */
label, button {
  cursor: pointer;
}

legend {
  position: absolute;
  font-size: 0;
  line-height: 0;
  height: 0;
}

input, textarea, option, button {
  font-family: "pretendard", "Sans-serif";
  font-size: 16px;
  letter-spacing: -0.5px;
  border-radius: 0;
  border: 0;
  background: transparent;
}

input[type=file],
input[type=number],
input[type=text],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: 0;
}

select {
  font-family: "pretendard", "Sans-serif";
  font-size: 16px;
  letter-spacing: -0.5px;
  color: #222;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: 0;
}

textarea {
  white-space: pre-wrap;
  resize: none;
}

textarea:focus {
  outline: none;
}

button:focus {
  outline: none;
}

input:focus {
  outline: none;
}

select:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

input::-ms-input-placeholder {
  color: #757575;
}

input::-webkit-input-placeholder {
  color: #757575;
}

input::-moz-placeholder {
  color: #757575;
}

textarea::-ms-input-placeholder {
  color: #757575;
}

textarea::-webkit-input-placeholder {
  color: #757575;
}

textarea::-moz-placeholder {
  color: #757575;
}

/* input number 스핀 제거. 크롬, 사파리, 엣지 */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* input number 스핀 제거. 파이어폭스 */
input[type=number] {
  -moz-appearance: textfield;
}

/************************************** 사이트 공통 **************************************/
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  font-size: 62.5%;
  overflow-x: hidden;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "pretendard", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #222;
}

/* container */
div.container {
  position: relative;
  overflow-x: hidden;
}

/* slick - 새로고침 시 전체 이미지가 아래로 잠깐 보이는 오류 대응 */
.slick-slider .item {
  visibility: hidden;
}
.slick-slider.slick-initialized {
  background: none;
  height: auto;
}
.slick-slider.slick-initialized .item {
  visibility: visible;
}

.pre-wrap {
  white-space: pre-wrap;
}

@media screen and (max-width: 768px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  input, select, textarea {
    font-size: 16px;
    line-height: 1.4;
  }

  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 16px;
  }

  input::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 16px;
  }

  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 16px;
  }

  input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font-size: 16px;
  }

  input::placeholder, textarea::placeholder {
    font-size: 16px;
  }
}
/* ******************** 공통 요소 ******************** */
/* button */
.btn-wrap {
  position: relative;
  text-align: center;
  margin-top: 13px;
}
.btn-wrap.inline {
  display: inline-block !important;
  margin-top: 0;
  vertical-align: middle;
}
.btn-wrap.block {
  display: block !important;
  margin: 5px 0 !important;
}
.btn-wrap:after {
  content: "";
  display: block;
  clear: both;
}
.btn-wrap.pd-10 {
  padding-top: 10px;
}
.btn-wrap.pd-bot {
  padding-bottom: 25px;
}
.btn-wrap.mg-0 {
  margin-top: 0;
}
.btn-wrap .btn-center {
  float: left;
  width: 100%;
  text-align: center;
}
.btn-wrap .btn-left {
  float: left;
}
.btn-wrap .btn-right {
  float: right;
}
.btn-wrap .a-btn,
.btn-wrap button {
  padding: 6px 14px;
  border: 1px solid #e5e5e5;
  display: inline-block;
  font-size: 1.5rem;
  color: #797979;
  border-radius: 5px;
  -webkit-transition: background 0.3s, border 0.3s;
  transition: background 0.3s, border 0.3s;
  vertical-align: middle;
  font-weight: 500;
}
.btn-wrap .a-btn.s-pd,
.btn-wrap button.s-pd {
  padding: 0 15px !important;
  font-size: 1.3rem !important;
  font-weight: 400;
}
.btn-wrap .a-btn.bg-blue,
.btn-wrap button.bg-blue {
  border-color: var(--blue);
  color: #fff;
}
.btn-wrap .a-btn.bg-theme,
.btn-wrap button.bg-theme {
  border-color: var(--theme);
  color: #fff;
}
.btn-wrap .a-btn.bg-olive,
.btn-wrap button.bg-olive {
  border-color: var(--olive);
  background: var(--olive);
  color: #fff;
}
.btn-wrap .a-btn.bg-brown,
.btn-wrap button.bg-brown {
  border-color: var(--brown);
  background: var(--brown);
  color: #fff;
}
.btn-wrap .a-btn.bg-pink,
.btn-wrap button.bg-pink {
  border-color: var(--pink);
  color: #fff;
}
.btn-wrap .a-btn.bg-green,
.btn-wrap button.bg-green {
  border-color: var(--green);
  color: #fff;
}
.btn-wrap .a-btn.bg-navy,
.btn-wrap button.bg-navy {
  border-color: var(--navy);
  color: #fff;
}
.btn-wrap .a-btn.bg-black,
.btn-wrap button.bg-black {
  border-color: #000;
  background: #000;
  color: #fff;
}
.btn-wrap .a-btn.bg-red,
.btn-wrap button.bg-red {
  border-color: var(--red);
  color: #fff;
}
.btn-wrap .a-btn.bg-light-black,
.btn-wrap button.bg-light-black {
  background: #333;
  border-color: #333;
  color: #fff;
}
.btn-wrap .a-btn.bg-light-gray,
.btn-wrap button.bg-light-gray {
  color: #333;
  border-color: #d5d5d5;
  background: #e9ecef;
}
.btn-wrap .a-btn.bg-white,
.btn-wrap button.bg-white {
  background: #fff;
  border: 1px solid #777;
  color: #222;
}
.btn-wrap .a-btn.bg-white:hover,
.btn-wrap button.bg-white:hover {
  border-color: #bababa;
  color: #999;
}
.btn-wrap .a-btn.full-btn,
.btn-wrap button.full-btn {
  width: 100%;
  height: 55px;
  line-height: 45px;
  font-size: 1.6rem;
  font-weight: 600;
}
.btn-wrap .a-btn.full-btn.center,
.btn-wrap button.full-btn.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-wrap .a-btn.border-none,
.btn-wrap button.border-none {
  border: none;
}
.btn-wrap .a-btn:active,
.btn-wrap button:active {
  -webkit-transform: scale(0.94);
          transform: scale(0.94);
}
.btn-wrap .a-btn:disabled,
.btn-wrap button:disabled {
  opacity: 0.5;
  cursor: no-drop;
}
.btn-wrap .a-btn:disabled:active,
.btn-wrap button:disabled:active {
  -webkit-transform: none;
          transform: none;
}
.btn-wrap .a-btn.s-btn,
.btn-wrap button.s-btn {
  line-height: 28px;
  height: 30px;
  padding: 0 10px;
  font-size: 1.3rem;
}
.btn-wrap .a-btn.s-btn.down,
.btn-wrap button.s-btn.down {
  line-height: 20px;
  height: 47px;
  padding: 3px 14px;
}
.btn-wrap .a-btn.s-pd,
.btn-wrap button.s-pd {
  padding: 0 10px;
}
.btn-wrap .a-btn.disabled,
.btn-wrap button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn-wrap .a-btn.md-btn,
.btn-wrap button.md-btn {
  width: 300px;
  max-width: 100%;
  height: 50px;
  line-height: 37px;
}
.btn-wrap .a-btn.arrow-btn,
.btn-wrap button.arrow-btn {
  position: relative;
  padding: 6px 14px 6px 28px;
  background: #f2f2f2;
  font-weight: 700;
}
.btn-wrap .a-btn.arrow-btn.search,
.btn-wrap button.arrow-btn.search {
  padding: 6px 28px 6px 14px;
}
.btn-wrap .a-btn.arrow-btn.search::after,
.btn-wrap button.arrow-btn.search::after {
  left: auto;
  right: 10px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.btn-wrap .a-btn.arrow-btn:hover,
.btn-wrap button.arrow-btn:hover {
  opacity: 0.8;
}

@media (max-width: 680px) {
  .btn-wrap .a-btn,
.btn-wrap button {
    margin: 1px;
    font-size: 1.3rem;
  }
  .btn-wrap .a-btn.full-btn.md-btn,
.btn-wrap button.full-btn.md-btn {
    width: 100%;
    height: 45px;
    line-height: 30px;
    font-size: 1.4rem;
  }
}
/* header */
.header-container {
  position: relative;
  z-index: 200;
  overflow: visible;
  /* ============================= */
  /* GNB 확장형 구조 */
  /* ============================= */
  /* ============================= */
  /* 우측 버튼 영역 */
  /* ============================= */
}
.header-container::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 95px;
  background: #fff;
  border-bottom: 1px solid #D5D5D5;
  z-index: -1;
  -webkit-transition: height 0.15s ease-out;
  transition: height 0.15s ease-out;
}
.header-container::after {
  content: "";
  position: absolute;
  top: 95px;
  left: 0;
  right: 0;
  height: 1px;
  background: #D5D5D5;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.06s ease-out;
  transition: opacity 0.06s ease-out;
  z-index: 2;
}
.header-container:hover::before {
  height: 360px;
}
.header-container:hover::after {
  opacity: 1;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.header-container .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 95px;
  min-height: 95px;
  overflow: visible;
}
.header-container .header-wrap.sec-width {
  width: 1700px;
  max-width: 100%;
  margin: 0 auto;
}
.header-container .logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 95px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header-container .logo-area .logo {
  width: 180px;
}
.header-container .logo-area .logo img {
  width: 100%;
  display: block;
}
.header-container .gnb-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 0;
}
.header-container .gnb {
  position: relative;
  width: 100%;
  min-height: 95px;
}
.header-container .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.header-container .depth-1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 180px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
.header-container .depth-1:hover > a {
  color: #1B74E4;
  font-weight: 800;
}
.header-container .depth-1:hover .depth-2 {
  background: #f3f3f3;
}
.header-container .depth-1:hover .depth-2 a {
  color: #333;
}
.header-container .depth-1:hover .depth-2 a:hover {
  color: #1B74E4;
}
.header-container .depth-1:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 95px;
  width: 1px;
  height: calc(360px - 95px);
  background: #D5D5D5;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.06s ease-out;
  transition: opacity 0.06s ease-out;
  z-index: 2;
}
.header-container .depth-1:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 95px;
  width: 1px;
  height: calc(360px - 95px);
  background: #D5D5D5;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.06s ease-out;
  transition: opacity 0.06s ease-out;
  z-index: 2;
}
.header-container .depth-1:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 95px;
  width: 1px;
  height: calc(360px - 95px);
  background: #D5D5D5;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.06s ease-out;
  transition: opacity 0.06s ease-out;
  z-index: 2;
}
.header-container .depth-1 > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 95px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  -webkit-transition: color 0.2s, font-weight 0.2s;
  transition: color 0.2s, font-weight 0.2s;
}
.header-container .depth-1 .depth-2 {
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  min-height: calc(360px - 95px - 2px);
  padding: 32px 0 32px;
  text-align: center;
  -webkit-transition: background-color 0.2s ease, opacity 0.06s ease-out;
  transition: background-color 0.2s ease, opacity 0.06s ease-out;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.header-container .depth-1 .depth-2 li {
  margin-bottom: 12px;
}
.header-container .depth-1 .depth-2 li:last-child {
  margin-bottom: 0;
}
.header-container .depth-1 .depth-2 li a {
  font-size: 1.6rem;
  font-weight: 600;
  color: #535353;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.header-container .depth-1 .depth-2 li a:hover {
  color: #1B74E4;
}
.header-container:hover .gnb .depth-2 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header-container:hover .gnb .depth-1::before, .header-container:hover .gnb .depth-1::after {
  opacity: 1;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.header-container:hover .gnb .depth-2 {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.header-container .header-btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  height: 95px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header-container .login-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #1B74E4;
  border-radius: 50px;
  padding: 2px;
}
.header-container .login-btn-group a {
  padding: 10px 24px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  text-decoration: none;
}
.header-container .login-btn-group a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 40%;
  background: #fff;
  opacity: 0.4;
}
.header-container .hamburger-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #002445;
  border: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  padding: 0;
}
.header-container .hamburger-btn img {
  display: block;
}

.full-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  z-index: 300;
  display: none;
  overflow: hidden;
  contain: layout paint;
}
.full-nav.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.full-nav .nav-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #D5D5D5;
  min-width: 0;
}
.full-nav .nav-head.sec-width {
  width: 1700px;
  max-width: 100%;
  margin: 0 auto;
}
.full-nav .nav-head .nav-logo img {
  height: auto;
  display: block;
}
.full-nav .nav-head .nav-utils {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.full-nav .nav-head .nav-utils .nav-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #002445;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.full-nav .nav-head .nav-utils .nav-close img {
  display: block;
}
.full-nav .nav-body-pc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 80px 40px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.full-nav .nav-body-pc .nav-copy {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}
.full-nav .nav-body-pc .nav-copy .copy-kicker {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--theme);
  letter-spacing: 0.2em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.full-nav .nav-body-pc .nav-copy .copy-line1 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #555;
  letter-spacing: -0.02em;
  position: relative;
  margin: 0 0 6px;
}
.full-nav .nav-body-pc .nav-copy .copy-line1::after {
  content: "";
  position: absolute;
  top: -1px;
  width: 5px;
  height: 5px;
  background: var(--theme);
  border-radius: 50%;
}
.full-nav .nav-body-pc .nav-copy .copy-line2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.full-nav .nav-body-pc .nav-sitemap {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 80px;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.full-nav .nav-body-pc .nav-sitemap .nav-sec {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.full-nav .nav-body-pc .nav-sitemap .nav-sec:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.full-nav .nav-body-pc .nav-sitemap .nav-sec .sec-head {
  margin-bottom: 20px;
}
.full-nav .nav-body-pc .nav-sitemap .nav-sec .sec-head::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 12px;
  background: #c5c5c5;
}
.full-nav .nav-body-pc .nav-sitemap .nav-sec .sec-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  padding-bottom: 0;
  border-bottom: none;
  line-height: 1.3;
  display: inline-block;
  position: relative;
}
.full-nav .nav-body-pc .nav-sitemap .nav-sec .sec-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 12px;
  width: 100%;
  height: 1px;
  background: #000;
  z-index: 1;
}
.full-nav .nav-body-pc .nav-sitemap .nav-sec .sec-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.full-nav .nav-body-pc .nav-sitemap .nav-sec .sec-list .sec-item .sec-link {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  position: relative;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.full-nav .nav-body-pc .nav-sitemap .nav-sec .sec-list .sec-item .sec-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--theme);
  -webkit-transition: width 0.25s ease;
  transition: width 0.25s ease;
}
.full-nav .nav-body-pc .nav-sitemap .nav-sec .sec-list .sec-item .sec-link:hover {
  color: var(--theme);
}
.full-nav .nav-body-pc .nav-sitemap .nav-sec .sec-list .sec-item .sec-link:hover::after {
  width: 100%;
}
.full-nav .nav-body-mo {
  display: none;
}

@media (min-width: 961px) {
  .full-nav .nav-head {
    border-bottom: none;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .full-nav .nav-logo {
    display: none;
  }
}
@media (max-width: 1500px) {
  .header-container .gnb .depth-1 {
    width: 150px;
  }
  .header-container .gnb .depth-1 > a {
    font-size: 1.7rem;
  }
  .header-container .gnb .depth-2 a {
    font-size: 1.5rem;
  }
}
@media (max-width: 1200px) {
  .header-container {
    /* 헤더 높이가 auto로 변하므로 ::before가 전체를 채워 헤더-배너 사이 틈 제거 */
  }
  .header-container::before {
    height: 100%;
    -webkit-transition: none;
    transition: none;
  }
  .header-container::after {
    -webkit-transition: none;
    transition: none;
  }
  .header-container:hover::before {
    height: 100%;
  }
  .header-container:hover::after {
    opacity: 0;
  }
  .header-container .header-wrap {
    padding: 20px;
    height: auto;
    min-height: auto;
  }
  .header-container .logo-area {
    height: auto;
  }
  .header-container .header-btn-area {
    height: auto;
  }
  .header-container .gnb-area {
    display: none;
  }
  .header-container .gnb .depth-2,
.header-container .gnb .depth-1::before,
.header-container .gnb .depth-1::after {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
@media (max-width: 960px) {
  .header-container .logo-area .logo {
    width: 140px;
  }
  .header-container .header-wrap .header-btn-area .login-btn-group {
    display: none;
  }

  .full-nav .nav-head {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    border-bottom: none;
    padding: 15px 20px;
  }
  .full-nav .nav-head .nav-logo {
    display: none;
  }
  .full-nav .nav-head .nav-utils .nav-close {
    width: 36px;
    height: 36px;
    position: relative;
    top: 10px;
    right: 4px;
  }
  .full-nav .nav-body-pc {
    display: none;
  }
  .full-nav .nav-body-mo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow-y: auto;
    padding: 0 20px 30px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .full-nav .nav-body-mo .nav-login {
    display: block;
    margin: 15px 0 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;
  }
  .full-nav .nav-body-mo .nav-login .nav-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
  }
  .full-nav .nav-body-mo .nav-login .nav-btns .nav-btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 12px 20px;
    background: var(--theme);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
  }
  .full-nav .nav-body-mo .nav-login .nav-btns .nav-btn:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #fff;
    opacity: 0.3;
  }
  .full-nav .nav-body-mo .nav-login .nav-btns .nav-btn:hover {
    background: #333;
  }
  .full-nav .nav-body-mo .nav-sitemap {
    max-width: 100%;
  }
  .full-nav .nav-body-mo .nav-sitemap .nav-sec {
    margin-bottom: 40px;
  }
  .full-nav .nav-body-mo .nav-sitemap .nav-sec .sec-title {
    font-size: 2rem;
    padding-bottom: 20px;
  }
  .full-nav .nav-body-mo .nav-sitemap .nav-sec .sec-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    border-top: 1px solid #333;
    padding-top: 20px;
  }
  .full-nav .nav-body-mo .nav-sitemap .nav-sec .sec-list .sec-item .sec-link {
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #000;
    text-decoration: none;
  }
  .full-nav .nav-body-mo .nav-sitemap .nav-sec .sec-list .sec-item .sec-link::after {
    content: "";
    width: 16px;
    height: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 10px;
    background-image: url("../img/common/full_nav_arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .full-nav .nav-body-mo .nav-sitemap .nav-sec .sec-list .sec-item .sec-link:hover {
    color: var(--theme);
  }
}
html.nav-open,
body.nav-open {
  overflow: hidden;
  overflow-x: hidden;
}

/* footer */
.footer-info {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.footer-info .info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-info .info-wrap .logo-area {
  width: 140px;
  position: relative;
}
.footer-info .info-wrap .logo-area > img {
  width: 100%;
  height: auto;
}
.footer-info .info-wrap .info-area {
  padding-left: 50px;
  padding-top: 10px;
}
.footer-info .info-wrap .info-area .policy {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.footer-info .info-wrap .info-area .policy > a {
  font-size: 1.5rem;
  font-weight: 800;
}
.footer-info .info-wrap .info-area .policy > a:hover {
  text-decoration: underline;
}
.footer-info .info-wrap .info-area .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  color: #596269;
  font-size: 1.5rem;
  font-weight: 500;
}
.footer-info .info-wrap .info-area .copyright {
  color: #A0A5AA;
  font-size: 1.4rem;
  padding-top: 10px;
}
.footer-info .info-wrap .site {
  position: absolute;
  top: 10px;
  right: 20px;
}
.footer-info .info-wrap .site .selectbox {
  width: 200px;
}
.footer-info .info-wrap .site .selectbox:after {
  top: 20px;
}
.footer-info .info-wrap .site .selectbox select {
  font-size: 1.5rem;
  line-height: 45px;
}

@media (max-width: 1700px) {
  .footer-info .info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 20px;
    width: 100%;
  }
  .footer-info .info-wrap .info-area {
    padding-left: 0;
    padding-top: 30px;
  }
}
@media (max-width: 1200px) {
  .footer-info .info-wrap .info-area .policy {
    padding-bottom: 15px;
  }
  .footer-info .info-wrap .info-area .policy > a {
    font-size: 1.4rem;
  }
  .footer-info .info-wrap .info-area .copyright {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .footer-info .info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .footer-info .info-wrap .logo-area {
    padding: 0 0 20px;
    width: 120px;
  }
  .footer-info .info-wrap .policy {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-info .info-wrap .info-area {
    padding: 0;
  }
  .footer-info .info-wrap .info-area .info {
    gap: 5px 10px;
    font-size: 1.4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-info .info-wrap .info-area .copyright {
    font-size: 1.3rem;
    padding-top: 20px;
  }
  .footer-info .info-wrap .site {
    position: relative;
    right: unset;
    margin-top: 20px;
  }
  .footer-info .info-wrap .site .selectbox select {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=default.css.map */