@charset "UTF-8";
/*-------------------------------------------------------------------
    파일정의 : 공통스타일
-------------------------------------------------------------------*/
@import url("../../../../fonts/Pretendard.css");
:root {
  --blue-color: #3898FF; /* 포인트파란색 */
  --navy-color: #2D6DB2; /* 포인트파란색 */
  --green-color: #6EBD23; /* 포인트초록색 */
  --green-color2: #62AE19; /* 포인트초록색 */
  --deep-green: #388E3C; /* 포인트초록색 */
  --sky-color: #009BDB; /* 포인트하늘색 */
  --red-color: #BD3A65; /* 포인트하늘색 */
  --blue-gradient-color: #2E67B9; /* 그라데이션 블루 */
  --green-gradient-color: #11AE4F; /* 그라데이션 그린 */
  --border-color: #DEDEDE; /* 보더색상 */
  --txt-gray-color: #787878; /* 텍스트그레이색상 */
}

html {
  font-size: 62.5%;
}
html.active {
  visibility: visible;
}
html.disable-outline * {
  outline: none;
}

body {
  line-height: 1.5;
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.04em;
  font-family: "Pretendard", "맑은 고딕", "돋움", sans-serif;
}

#wrap {
  position: relative;
  width: 100%;
  min-width: 320px;
}

#skipNav {
  position: relative;
  z-index: 99999;
}
#skipNav a {
  position: absolute;
  top: -200px;
  left: 0;
  color: #333;
  width: 100%;
  line-height: 30px;
  border: 1px solid var(--border-color);
  background-color: #fff;
  text-align: center;
  box-sizing: border-box;
}
#skipNav a:focus, #skipNav a:active {
  top: 0;
}

header {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  background-color: #ffffff;
  min-width: 320px;
}
header .header-top {
  padding: 1rem 0;
  border-bottom: 1px solid #DDDDDD;
  background: linear-gradient(to right, #144E8C, #005F5F);
}
@media (max-width: 767px) {
  header .header-top {
    padding: 0.4rem 0;
  }
}
header .header-top .inner {
  display: flex;
  justify-content: space-between;
  width: 96%;
  max-width: 180rem;
}
@media (max-width: 1199px) {
  header .header-top .inner {
    justify-content: flex-end;
  }
}
@media (max-width: 1023px) {
  header .header-top .inner {
    justify-content: flex-end;
  }
}
header .header-top .link-page {
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  header .header-top .link-page {
    display: none;
  }
}
header .header-top .link-page li a {
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.02em;
}
@media (max-width: 1400px) {
  header .header-top .link-page li a {
    font-size: 1.6rem;
  }
}
header .header-top .link-page li a.archive-btn {
  color: #3E91FF !important;
  font-weight: 600;
}
header .header-top .link-page li:after {
  content: "|";
  font-size: 1.6rem;
  color: rgba(211, 211, 211, 0.5);
  display: inline-block;
  margin: 0 1.5rem;
}
@media (max-width: 1400px) {
  header .header-top .link-page li:after {
    margin: 0 1rem;
  }
}
header .header-top .link-page li:last-of-type:after {
  display: none;
}
header .header-top .link-page .lang-en {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
header .header-top .link-page .lang-en:after {
  background: url("../img/common/btn_link_wh.png") no-repeat left center;
  background-size: contain;
}
header .header-top .header-sns_wrap {
  display: flex;
  gap: 0 1rem;
  align-items: center;
}
header .header-top .header-sns_wrap .lang-en {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0.2rem 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50rem;
  background: rgba(255, 255, 255, 0.14);
}
@media (max-width: 1199px) {
  header .header-top .header-sns_wrap .lang-en {
    font-size: 1.4rem;
    padding: 0.2rem 1rem;
  }
}
@media (max-width: 1023px) {
  header .header-top .header-sns_wrap .lang-en {
    display: none;
  }
}
header .header-top .header-sns_wrap .lang-en:before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  background: url("../img/common/lang_en.png") no-repeat left center;
  background-size: contain;
}
header .header-top .header-sns_wrap .lang-en:after {
  content: "";
  width: 0.9rem;
  height: 0.95rem;
  display: block;
  margin-left: 2.7rem;
  background: url("../img/common/btn_link.png") no-repeat left center;
  background-size: contain;
}
header .header-top .header-sns_wrap .lang-en:hover:after {
  animation: btnLinkAni2 0.25s ease-in-out forwards;
}
@keyframes btnLinkAni2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0.2rem, -0.2rem);
  }
}
@media (max-width: 1199px) {
  header .header-top .header-sns_wrap .btn-kakao-chat {
    width: 8rem;
    height: 2.8rem;
  }
}
@media (max-width: 1023px) {
  header .header-top .header-sns_wrap .btn-kakao-chat {
    display: none;
  }
}
header .header-top .header-sns_wrap .header-login-info {
  display: inline-flex;
  align-items: center;
  margin-left: 1.5rem;
  height: 100%;
}
header .header-top .header-sns_wrap .header-login-info .info-detail {
  display: flex;
  font-size: 1.6rem;
  color: #FFFFFF;
}
@media (max-width: 1199px) {
  header .header-top .header-sns_wrap .header-login-info .info-detail {
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  header .header-top .header-sns_wrap .header-login-info .info-detail {
    font-size: 1.4rem;
  }
}
header .header-top .header-sns_wrap .header-login-info .info-detail.login_time {
  align-items: center;
}
header .header-top .header-sns_wrap .header-login-info .info-detail.login_time:before {
  content: "";
  width: 0.1rem;
  height: 1.1rem;
  background-color: rgba(255, 255, 255, 0.3);
  display: block;
  margin: 0 1rem;
}
header .header-top .header-sns_wrap .header-login-info .info-detail.login_time .btn-delay {
  display: inline-block;
  margin-left: 0.5rem;
}
header .header-top .header-sns_wrap .before-login {
  height: 3rem;
}
@media (max-width: 1023px) {
  header .header-top .header-sns_wrap .before-login {
    height: 2.8rem;
  }
}
header .header-top .header-sns_wrap .before-login .login-state {
  height: 3rem;
}
header .header-top .header-sns_wrap .after-login {
  height: 3rem;
}
@media (max-width: 1023px) {
  header .header-top .header-sns_wrap .after-login {
    height: 2.8rem;
  }
}
header .header-top .header-sns_wrap .after-login .login-state {
  height: auto;
}
header .header-top .header-sns_wrap .login-state {
  display: inline-flex;
  align-items: center;
}
header .header-top .header-sns_wrap .login-state .login-out {
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  header .header-top .header-sns_wrap .login-state .login-out {
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  header .header-top .header-sns_wrap .login-state .login-out {
    font-size: 1.4rem;
  }
}
header .header-top .header-sns_wrap .login-state .login-out.first {
  margin-left: 1.5rem;
}
header .header-top .header-sns_wrap .login-state .login-out.bar:before {
  content: "";
  width: 0.1rem;
  height: 1.1rem;
  background-color: rgba(255, 255, 255, 0.3);
  display: block;
  margin: 0 1rem;
}
header .gnb {
  width: 100%;
  position: relative;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.06);
}
header .gnb:after {
  content: "";
  width: 100%;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--blue-gradient-color) 0, var(--green-gradient-color) 100%);
  display: none;
}
header .gnb .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 9.6rem;
  position: relative;
  width: 96%;
  max-width: 180rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  header .gnb .inner {
    width: calc(100% - 4rem);
    max-width: 100%;
    height: 7.9rem;
  }
}
@media (max-width: 767px) {
  header .gnb .inner {
    height: 6rem;
    width: calc(100% - 2rem);
  }
}
header .gnb h1 .logo {
  display: block;
  width: 19.7rem;
  height: 4.8rem;
  margin-bottom: 12px;
  background: url("../img/common/logo.png") no-repeat center;
  background-size: contain;
}
@media (max-width: 1400px) {
  header .gnb h1 .logo {
    width: 19rem;
  }
}
@media (max-width: 767px) {
  header .gnb h1 .logo {
    width: 15rem;
    height: 3rem;
  }
}
header .gnb nav {
  max-width: 100rem;
  width: 100%;
  height: 9.7rem;
}
@media (max-width: 1199px) {
  header .gnb nav {
    display: none;
  }
}
header .gnb nav .depth1 {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
header .gnb nav .depth1 > li {
  flex: 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .gnb nav .depth1 > li > a {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  color: #1D1D1D;
  display: block;
  padding: 4rem 0;
  position: relative;
  z-index: 9999;
  width: 100%;
}
@media (max-width: 1400px) {
  header .gnb nav .depth1 > li > a {
    font-size: 1.6rem;
  }
}
header .gnb nav .depth1 > li.active a {
  color: var(--navy-color);
  font-weight: 500;
}
header .gnb nav .depth1 > li .depth2 {
  width: 100%;
  position: fixed;
  left: 0;
  top: 14.7rem;
  z-index: 9999;
  text-align: center;
  /*transition: height 0.3s;*/
  overflow: hidden;
  height: 0;
}
@media (max-width: 1600px) {
  header .gnb nav .depth1 > li .depth2 {
    margin-left: 0;
    width: 100%;
  }
}
header .gnb nav .depth1 > li .depth2 .depth2-inner {
  width: 100%;
  background: #fff;
  padding: 2.4rem 0 4rem;
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul {
  flex-wrap: wrap;
  display: flex;
  gap: 1.6rem 4.4rem;
  max-width: 100rem;
  margin: 0 auto;
  justify-content: flex-start;
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li {
  width: calc(25% - 3.3rem);
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li .depth2-link {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.6rem;
  padding: 2rem 0 2rem 0;
  color: #606060;
  font-weight: 500;
  position: relative;
  border-bottom: 1px solid #F0F0F0;
  background: url("../img/icon/arr_gnb_down_gray.png") no-repeat right center;
  background-size: 1.1rem auto;
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li .depth2-link:hover {
  background: url("../img/icon/arr_gnb_down.png") no-repeat right center;
  background-size: 1.1rem auto;
}
@media (max-width: 1400px) {
  header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li .depth2-link {
    font-size: 1.4rem;
  }
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li:has(.depth3) .depth2-link {
  background: url("../img/icon/arr_gnb_right.png") no-repeat right center;
  background-size: auto 1.1rem;
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li:has(.depth3) .depth2-link:hover {
  background: url("../img/icon/arr_gnb_right_blue.png") no-repeat right center;
  background-size: auto 1.1rem;
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li:has(.depth3).on .depth2-link {
  background: url("../img/icon/arr_gnb_down.png") no-repeat right center;
  background-size: 1.1rem auto;
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li:hover .depth2-link {
  color: var(--navy-color);
  font-weight: 700;
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li .depth3 {
  margin-top: 1.2rem;
  margin-left: 1rem;
  display: none;
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li .depth3 li {
  display: flex;
  align-items: center;
  margin-top: 0.8rem;
  line-height: 1.2;
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li .depth3 li:before {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #606060;
  margin-right: 0.8rem;
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li .depth3 li:first-of-type {
  margin-top: 0;
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li .depth3 li:hover a {
  color: var(--navy-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li .depth3 li:hover:before {
  background: var(--navy-color);
}
header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li .depth3 li a {
  text-align: left;
  font-size: 1.6rem;
  color: #606060;
  padding: 0;
}
@media (max-width: 1400px) {
  header .gnb nav .depth1 > li .depth2 .depth2-inner > ul > li .depth3 li a {
    font-size: 1.4rem;
  }
}
header .gnb nav .depth1 > li.active .depth2 {
  display: block;
}
header .gnb .h-right-wrap {
  display: flex;
  gap: 0 4rem;
  align-items: center;
  flex: none;
}
@media (max-width: 1023px) {
  header .gnb .h-right-wrap {
    gap: 0 2rem;
  }
}
@media (max-width: 767px) {
  header .gnb .h-right-wrap {
    gap: 0;
  }
}
header .gnb .h-right-wrap .esg_certificate {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding: 0.6rem 1.3rem;
  border-radius: 6px;
  flex: none;
}
@media (max-width: 1023px) {
  header .gnb .h-right-wrap .esg_certificate {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  header .gnb .h-right-wrap .esg_certificate {
    display: none;
  }
}
header .gnb.open:after {
  display: block;
}

/* 전체메뉴 */
.menu-all {
  visibility: hidden;
  /*background: url("../img/common/menu_back_logo.png") no-repeat right 10% bottom 10%, linear-gradient(125deg, #154F8D 0, #11A952 100%);*/
  background: linear-gradient(125deg, #154F8D 0, #11A952 100%);
  position: fixed;
  left: 0;
  top: -50%;
  width: 100%;
  overflow: hidden;
  z-index: 9999;
  min-width: 320px;
  height: 50%;
  opacity: 0;
  transition: height 0.45s ease-in-out, opacity 0.45s ease-in-out, top 0.45s ease-in-out;
  /* 열렸을 때 */
}
.menu-all.open {
  height: 100%;
  opacity: 1;
  top: 0;
  display: block;
  visibility: visible;
  overflow-y: auto;
}
.menu-all .inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 100%;
}
.menu-all .top {
  position: relative;
  justify-content: space-between;
  margin: 2.4rem auto 0;
  align-items: center;
  max-width: 130rem;
  width: calc(100% - 4rem);
  display: flex;
}
.menu-all .top .logo {
  width: 24rem;
  height: 5.1rem;
  background: url("../img/common/menu_all_logo.png") no-repeat center;
  background-size: contain;
}
@media (max-width: 1023px) {
  .menu-all .login-area {
    display: block;
    padding: 1.2rem 2rem;
    background: rgba(0, 0, 0, 0.35);
  }
}
.menu-all .login-area .login-area-inner {
  display: flex;
}
.menu-all .login-area .login-area-inner .header-login-info {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.menu-all .login-area .login-area-inner .header-login-info .info-detail {
  font-size: 1.6rem;
  color: #FFFFFF;
}
.menu-all .login-area .login-area-inner .header-login-info .info-detail.login_time {
  display: flex;
  align-items: center;
}
.menu-all .login-area .login-area-inner .header-login-info .info-detail.login_time:before {
  content: "";
  width: 0.1rem;
  height: 1.1rem;
  background-color: rgba(255, 255, 255, 0.3);
  display: block;
  margin: 0 1rem;
}
.menu-all .login-area .login-area-inner .header-login-info .info-detail.login_time .btn-delay {
  display: inline-block;
  margin-left: 0.5rem;
}
.menu-all .login-area .login-area-inner .login-state {
  display: flex;
}
.menu-all .login-area .login-area-inner .login-state .login-out {
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}
.menu-all .login-area .login-area-inner .login-state .login-out.bar:before {
  content: "";
  width: 0.1rem;
  height: 1.1rem;
  background-color: rgba(255, 255, 255, 0.3);
  display: block;
  margin: 0 1rem;
}
.menu-all .btn-wrap {
  display: flex;
}
@media (max-width: 1400px) {
  .menu-all .btn-wrap {
    max-width: 90%;
  }
}
@media (max-width: 1199px) {
  .menu-all .btn-wrap {
    top: 2.5rem;
    align-items: center;
    gap: 0 2rem;
    display: flex;
  }
}
@media (max-width: 1023px) {
  .menu-all .btn-wrap {
    top: 0;
    right: 0.8rem;
    gap: 0 1rem;
  }
}
.menu-all .btn-wrap .btn-kakao-chat {
  display: none;
}
@media (max-width: 1199px) {
  .menu-all .btn-wrap .btn-kakao-chat {
    display: block;
  }
}
@media (max-width: 767px) {
  .menu-all .btn-wrap .btn-kakao-chat {
    width: 7.2rem;
    height: 2.4rem;
    margin-top: 1rem;
  }
}
@media (max-width: 1199px) {
  .menu-all .btn-wrap .btn-ic {
    box-sizing: content-box;
  }
}
.menu-all .btn-wrap .btn-ic.btn-login {
  display: none;
  background: url("../img/icon/ico_login_wh.png") no-repeat center;
  background-size: auto 3rem;
}
@media (max-width: 1199px) {
  .menu-all .btn-wrap .btn-ic.btn-login {
    display: block;
    width: 5rem;
    height: 5rem;
  }
}
@media (max-width: 767px) {
  .menu-all .btn-wrap .btn-ic.btn-login {
    background-size: auto 1.8rem;
    padding: 2rem 1.2rem;
    width: 2rem;
    height: 2rem;
  }
}
.menu-all .btn-wrap .btn-ic.btn-menu-close {
  margin-left: auto;
}
.menu-all .cont img {
  margin-top: 5%;
}
.menu-all .gnb {
  height: 100%;
}
.menu-all .gnb nav {
  margin-top: 5rem;
}
@media (max-width: 1023px) {
  .menu-all .gnb nav {
    margin-top: 0;
  }
}
.menu-all .gnb nav > ul {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.menu-all .gnb nav > ul .depth1 {
  padding: 3.2rem 0;
  position: relative;
  z-index: 10;
}
.menu-all .gnb nav > ul .depth1:after {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1023px) {
  .menu-all .gnb nav > ul .depth1:after {
    display: none;
  }
}
.menu-all .gnb nav > ul .depth1:nth-last-child(2):after {
  display: none;
}
@media (max-width: 1199px) {
  .menu-all .gnb nav > ul .depth1:nth-last-child(2):after {
    display: block;
  }
}
@media (max-width: 1023px) {
  .menu-all .gnb nav > ul .depth1:nth-last-child(2):after {
    display: none;
  }
}
@media (max-width: 1023px) {
  .menu-all .gnb nav > ul .depth1 {
    padding: 0;
  }
}
.menu-all .gnb nav > ul .depth1 .depth1-inner {
  width: calc(100% - 4rem);
  margin: 0 auto;
  max-width: 130rem;
  text-align: center;
  display: flex;
  align-items: flex-start;
  gap: 0 3.2rem;
}
.menu-all .gnb nav > ul .depth1 .tit {
  font-size: 2.7rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.08em;
  position: relative;
  display: block;
  text-align: left;
  flex: none;
  width: 15rem;
  /*   &:after {
       content: '';
       display: block;
       width: 0;
       height: 0.4rem;
       background-color: #1DE9D0;
       border-radius: 5px;
       position: absolute;
       left: 50%;
       bottom: -1rem;
       transform: translateX(-50%);
       transition: width 0.3s;

     }*/
}
.menu-all .gnb nav > ul .depth1 .tit.lang-en {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.menu-all .gnb nav > ul .depth1 .tit.lang-en:before {
  content: "";
  background: url("../img/common/lang_en.png") no-repeat left center;
  background-size: contain;
  width: 3.2rem;
  height: 3.2rem;
  display: inline-block;
  margin-right: 0.6rem;
}
.menu-all .gnb nav > ul .depth1 .depth2 {
  display: flex;
  flex-direction: row;
  /*justify-content: space-between;*/
  gap: 2.4rem;
  width: 100%;
}
.menu-all .gnb nav > ul .depth1 .depth2 > li {
  width: calc(20% - 1.92rem);
}
.menu-all .gnb nav > ul .depth1 .depth2 > li > a {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.15s;
  letter-spacing: -0.04em;
}
.menu-all .gnb nav > ul .depth1 .depth2 > li:hover > a {
  color: #1DE9D0;
}
.menu-all .gnb nav > ul .depth1 .depth2 > li:hover > a:before {
  display: block;
}
.menu-all .gnb nav > ul .depth1 .depth2 > li .depth3 {
  margin-top: 1.2rem;
  text-align: left;
}
@media (max-width: 1023px) {
  .menu-all .gnb nav > ul .depth1 .depth2 > li .depth3 {
    display: none;
    margin-top: 0;
  }
}
.menu-all .gnb nav > ul .depth1 .depth2 > li .depth3 li {
  margin-top: 0.8rem;
}
.menu-all .gnb nav > ul .depth1 .depth2 > li .depth3 li:before {
  content: "-";
  font-size: 1.4rem;
  color: #fff;
  margin-right: 0.5rem;
}
@media (max-width: 1023px) {
  .menu-all .gnb nav > ul .depth1 .depth2 > li .depth3 li:before {
    display: none;
  }
}
.menu-all .gnb nav > ul .depth1 .depth2 > li .depth3 li:first-of-type {
  margin-top: 0;
}
.menu-all .gnb nav > ul .depth1 .depth2 > li .depth3 li a {
  color: #FFFFFF;
  font-size: 1.4rem;
  text-align: left;
}
.menu-all .gnb nav > ul .depth1 .depth2 > li .depth3 li:hover:before {
  color: #1DE9D0;
}
.menu-all .gnb nav > ul .depth1 .depth2 > li .depth3 li:hover a {
  color: #1DE9D0;
  text-decoration: underline;
}
.menu-all .gnb nav > ul .depth1:nth-child(3) .depth2 {
  flex-wrap: wrap;
}
.menu-all .gnb nav > ul .depth1:hover .tit:after {
  width: 100%;
}
@media (max-width: 1023px) {
  .menu-all {
    background: linear-gradient(145deg, #2D6DB2 30%, #11AE4F 120%);
  }
  .menu-all .inner {
    width: 100%;
  }
  .menu-all .top {
    width: calc(100% - 2rem);
    margin: 0 auto 1.5rem;
  }
  .menu-all .gnb {
    margin-top: 0;
  }
  .menu-all .gnb nav > ul {
    flex-direction: column;
  }
  .menu-all .gnb nav > ul .depth1 {
    width: 100%;
  }
  .menu-all .gnb nav > ul .depth1 .depth1-inner {
    display: block;
    width: 100%;
  }
  .menu-all .gnb nav > ul .depth1 .tit,
  .menu-all .gnb nav > ul .depth1 .lang-en {
    padding: 1.5rem 2rem;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: url("../img/common/btn_menu_all_down_base.png") no-repeat right 3.5rem center;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.85;
  }
}
@media (max-width: 1023px) and (max-width: 767px) {
  .menu-all .gnb nav > ul .depth1 .tit,
  .menu-all .gnb nav > ul .depth1 .lang-en {
    background-position: right 2rem center;
  }
}
@media (max-width: 1023px) {
  .menu-all .gnb nav > ul .depth1 .tit.lang-en,
  .menu-all .gnb nav > ul .depth1 .lang-en.lang-en {
    justify-content: flex-start;
    background: none;
  }
  .menu-all .gnb nav > ul .depth1:hover .tit:after {
    display: none;
  }
  .menu-all .gnb nav > ul .depth1:last-child .tit {
    border-bottom: none;
  }
  .menu-all .gnb nav > ul .depth1.active .tit {
    background: url("../img/icon/btn_menu_all_up.png") no-repeat right 3.5rem center;
  }
}
@media (max-width: 1023px) and (max-width: 767px) {
  .menu-all .gnb nav > ul .depth1.active .tit {
    background-position: right 2rem center;
  }
}
@media (max-width: 1023px) {
  .menu-all .gnb nav > ul .depth1.active.show-1200 {
    background: none;
  }
  .menu-all .gnb nav > ul .depth1 .depth2 {
    display: none;
    margin-top: 0;
    background: rgba(1, 14, 23, 0.25);
  }
  .menu-all .gnb nav > ul .depth1 .depth2 > li {
    line-height: 1.65;
    width: 100%;
  }
  .menu-all .gnb nav > ul .depth1 .depth2 > li > a {
    justify-content: flex-start;
    padding: 2rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .menu-all .gnb nav > ul .depth1 .depth2 > li:hover a {
    color: #fff;
  }
  .menu-all .gnb nav > ul .depth1 .depth2 > li:hover a:before {
    display: none;
  }
  .menu-all .gnb nav > ul .depth1 .depth2 > li:has(.depth3) > a {
    background: url("../img/common/btn_menu_all_down_base.png") no-repeat right 3.5rem center;
  }
}
@media (max-width: 1023px) and (max-width: 767px) {
  .menu-all .gnb nav > ul .depth1 .depth2 > li:has(.depth3) > a {
    background-position: right 2rem center;
  }
}
@media (max-width: 1023px) {
  .menu-all .gnb nav > ul .depth1 .depth2 > li.active > a {
    background: url("../img/common/btn_menu_all_up_on.png") no-repeat right 3.5rem center, #003E7D;
  }
}
@media (max-width: 1023px) and (max-width: 767px) {
  .menu-all .gnb nav > ul .depth1 .depth2 > li.active > a {
    background-position: right 2rem center;
  }
}
@media (max-width: 1023px) {
  .menu-all .gnb nav > ul .depth1 .depth2 > li .depth3 {
    background: rgba(0, 62, 125, 0.8);
    padding: 1rem 0;
  }
  .menu-all .gnb nav > ul .depth1 .depth2 > li .depth3 li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    font-weight: 500;
    display: block;
    text-align: left;
    padding: 1.5rem 2rem;
  }
  .menu-all .gnb nav > ul .depth1 .depth2 > li .depth3 li a:hover {
    color: #1DF1FF;
  }
}
@media (max-width: 767px) {
  .menu-all .top .logo {
    width: 15rem;
    height: 3.2rem;
  }
  .menu-all .gnb {
    margin-top: 0;
  }
  .menu-all .gnb nav > ul .depth1 .tit,
  .menu-all .gnb nav > ul .depth1 .lang-en {
    font-size: 2rem;
    background-size: 1.3rem auto;
  }
  .menu-all .gnb nav > ul .depth1 .tit.lang-en:before,
  .menu-all .gnb nav > ul .depth1 .lang-en.lang-en:before {
    width: 2.1rem;
    height: 2.1rem;
  }
  .menu-all .gnb nav > ul .depth1.active .tit {
    background-size: 1.3rem auto;
  }
  .menu-all .gnb nav > ul .depth1 .depth2 > li a {
    font-size: 1.6rem;
    letter-spacing: 0.075em;
  }
  .menu-all .gnb nav > ul .depth1 .depth2 > li:has(.depth3) > a {
    background-size: 1.3rem auto;
  }
  .menu-all .gnb nav > ul .depth1 .depth2 > li .depth3 li a {
    font-size: 1.4rem;
    display: block;
    text-align: left;
  }
}

.search-area {
  position: fixed;
  top: -30rem;
  left: 0;
  background: #fff;
  width: 100%;
  z-index: 9999;
  visibility: hidden;
  transition: top 0.3s;
  padding-bottom: 3rem;
}
@media (max-width: 1199px) {
  .search-area {
    height: 100%;
  }
}
.search-area .inner {
  position: relative;
}
.search-area .top {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.search-area .top .logo {
  background: url("../img/common/logo.png") no-repeat center;
  background-size: contain;
  width: 22.6rem;
  height: 4.5rem;
  box-sizing: content-box;
}
@media (max-width: 1199px) {
  .search-area .top .logo {
    padding: 1.5rem 0;
    width: 15rem;
    height: 3rem;
  }
}
.search-area .search-wrap {
  border-width: 1px;
}
.search-area .search-words {
  margin: 2.2rem auto 0;
  max-width: 73.7rem;
}
@media (max-width: 767px) {
  .search-area .search-words {
    max-width: 100%;
  }
}
.search-area .search-words .txt {
  font-size: 1.4rem;
  font-weight: 600;
  color: #323232;
  letter-spacing: -0.04em;
}
.search-area .search-words .words-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.6rem;
  margin-top: 0.8rem;
}
.search-area .search-words .words-wrap .word {
  padding: 1.2rem 2.4rem;
  font-size: 1.3rem;
  color: #606060;
  letter-spacing: -0.04em;
  border: 1px solid #DEDEDE;
  border-radius: 8px;
  text-align: center;
}
.search-area .search-words .words-wrap .word:before {
  content: "#";
  font-size: 1.3rem;
  color: #606060;
}
.search-area .search-words .words-wrap .word:hover {
  border: 1px solid var(--navy-color);
}
.search-area .btn-wrap .btn-menu-close {
  position: absolute;
  right: 0;
  top: 0.5rem;
}
@media (max-width: 767px) {
  .search-area .btn-wrap .btn-menu-close {
    top: 0;
  }
}
.search-area.open {
  top: 0;
  visibility: visible;
}
.search-area.v2 {
  position: inherit;
  visibility: visible;
}

#footer {
  background-color: #2A2E39;
  padding-bottom: 6.7rem;
}
#footer .top {
  display: flex;
  justify-content: space-between;
  padding: 1.8rem 0 1.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1199px) {
  #footer .top {
    flex-direction: column;
    border-bottom: none;
    padding: 2rem 0 0 0;
  }
}
#footer .top .right-area {
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  #footer .top .right-area {
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1.6rem;
  }
}
@media (max-width: 479px) {
  #footer .top .right-area {
    flex-direction: column;
    align-items: flex-start;
  }
}
#footer .top .right-area li {
  display: flex;
  align-items: center;
}
#footer .top .right-area li:after {
  content: "";
  width: 0.1rem;
  height: 1.2rem;
  display: block;
  margin: 0 2rem;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 1199px) {
  #footer .top .right-area li:after {
    margin: 0 1.3rem;
  }
}
@media (max-width: 479px) {
  #footer .top .right-area li:after {
    display: none;
  }
}
#footer .top .right-area li:last-of-type:after {
  display: none;
}
#footer .top .right-area li a {
  font-size: 1.6rem;
  color: #fff;
}
@media (max-width: 1199px) {
  #footer .top .right-area li a {
    font-size: 1.5rem;
  }
}
#footer .top .site-link select {
  width: 26.5rem;
  box-sizing: border-box;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  font-size: 1.8rem;
  color: #fff;
  background-color: #2A2E39;
  height: auto;
}
@media (max-width: 767px) {
  #footer .top .site-link select {
    font-size: 1.4rem;
    width: 100%;
    max-width: 26.5rem;
  }
}
@media (max-width: 1199px) {
  #footer .top .site-link {
    margin-top: 2.4rem;
  }
}
#footer .bottom {
  margin-top: 5.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1199px) {
  #footer .bottom {
    flex-direction: column;
    margin-top: 2.4rem;
  }
}
#footer .bottom .logo-wrap {
  display: flex;
  gap: 0 3.7rem;
}
@media (max-width: 767px) {
  #footer .bottom .logo-wrap {
    flex-direction: column;
    gap: 1.7rem 0;
  }
}
#footer .bottom .logo-wrap a.f_logo1 {
  width: 17rem;
  height: 4.5rem;
  background: url("../img/common/f_logo1.png") no-repeat center;
  background-size: contain;
}
#footer .bottom .logo-wrap a.f_logo2 {
  width: 26.1rem;
  height: 4.5rem;
  background: url("../img/common/f_logo2.png") no-repeat center;
  background-size: contain;
}
#footer .bottom .sns-wrap {
  display: flex;
  gap: 0 1.6rem;
}
@media (max-width: 1199px) {
  #footer .bottom .sns-wrap {
    margin-top: 2.4rem;
    gap: 0 1.2rem;
  }
  #footer .bottom .sns-wrap .btn-sns {
    width: 3.6rem;
    height: 3.6rem;
  }
}
@media (max-width: 767px) {
  #footer .bottom .sns-wrap .btn-sns {
    width: 3rem;
    height: 3rem;
  }
}
#footer .bottom .sns-wrap .btn-insta:hover {
  background: url("../img/icon/ico_insta_line.png") no-repeat center, linear-gradient(45deg, var(--blue-gradient-color), var(--green-gradient-color));
  background-size: contain;
}
#footer .bottom .sns-wrap .btn-kakao:hover {
  background: url("../img/icon/ico_kakao_line.png") no-repeat center, linear-gradient(45deg, var(--blue-gradient-color), var(--green-gradient-color));
  background-size: contain;
}
#footer .bottom .sns-wrap .btn-blog:hover {
  background: url("../img/icon/ico_blog_line.png") no-repeat center, linear-gradient(45deg, var(--blue-gradient-color), var(--green-gradient-color));
  background-size: contain;
}
#footer .bottom .sns-wrap .btn-facebook:hover {
  background: url("../img/icon/ico_facebook_line.png") no-repeat center, linear-gradient(45deg, var(--blue-gradient-color), var(--green-gradient-color));
  background-size: contain;
}
#footer .bottom .sns-wrap .btn-youtube:hover {
  background: url("../img/icon/ico_youtube_line.png") no-repeat center, linear-gradient(45deg, var(--blue-gradient-color), var(--green-gradient-color));
  background-size: contain;
}
#footer .bottom .sns-wrap .btn-tweeter:hover {
  background: url("../img/icon/ico_tweeter_line.png") no-repeat center, linear-gradient(45deg, var(--blue-gradient-color), var(--green-gradient-color));
  background-size: contain;
}
#footer .bottom address {
  margin-top: 3.2rem;
}
#footer .bottom address .txt {
  display: block;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 1199px) {
  #footer .bottom address .txt {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
  }
}
#footer .bottom .copy {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.3);
  display: block;
}
@media (max-width: 1199px) {
  #footer .bottom .copy {
    font-size: 1.4rem;
  }
}

.lnb {
  width: 28rem;
  position: relative;
  top: -11.5rem;
  z-index: 1;
}
@media (max-width: 1199px) {
  .lnb {
    display: none;
  }
}
.lnb > .tit-wrap {
  width: 100%;
  height: 11rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--blue-gradient-color) 0, var(--green-gradient-color) 100%);
}
.lnb > .tit-wrap .tit {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -0.075em;
}
.lnb nav {
  padding: 1.6rem 2.4rem;
  border-radius: 16px;
  border: 1px solid #DDDDDD;
  margin-top: 1.3rem;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.06);
}
.lnb nav > ul {
  width: 100%;
}
.lnb nav > ul > li:last-of-type .lnb-depth2 {
  border-bottom: none;
}
.lnb nav > ul > li:last-of-type .lnb-depth3 {
  margin-bottom: 1.6rem;
}
.lnb nav > ul > li .lnb-depth2 {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  letter-spacing: -0.07em;
  color: #1D1D1D;
  padding: 1.8rem 1.6rem 1.8rem 0;
  word-break: keep-all;
  font-weight: 400;
  text-align: left;
  background: url("../img/common/btn_lnb_down_arr.png") no-repeat right center;
  border-bottom: 1px solid #F4F4F4;
}
.lnb nav > ul > li .lnb-depth3 {
  padding: 1.2rem 1.6rem;
  background-color: #F4F4F4;
  border-radius: 8px;
  display: none;
}
.lnb nav > ul > li .lnb-depth3 li a {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  color: #8E8E8E;
  letter-spacing: -0.07em;
  padding: 1.2rem 0;
  line-height: 1.2;
  word-break: keep-all;
  border-bottom: 1px solid #fff;
}
.lnb nav > ul > li .lnb-depth3 li.active a {
  color: var(--navy-color);
  font-weight: 700;
}
.lnb nav > ul > li .lnb-depth3 li:last-of-type a {
  border-bottom: none;
}
.lnb nav > ul > li.active .lnb-depth2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-gradient-color);
  background: url("../img/common/btn_lnb_right_arr.png") no-repeat right center;
}
.lnb nav > ul > li.active .lnb-depth3 {
  display: block;
}
.lnb nav > ul > li.active:has(.lnb-depth3) .lnb-depth2 {
  border-bottom: none;
}

.root-area .root {
  display: flex;
  gap: 0 1.2rem;
  align-items: center;
}
.root-area .root a {
  color: #8E8E8E;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}
.root-area .root a:before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.9rem;
  background: url("../img/icon/ico_root_arr_gray.png") no-repeat center;
  background-size: contain;
  margin-right: 1.2rem;
}
.root-area .root a:first-of-type:before {
  display: none;
}
.root-area .root a.home {
  width: 1.2rem;
  height: 1.5rem;
  display: flex;
  background: url("../img/icon/ico_home_gray.png") no-repeat center;
  background-size: contain;
}
@media (max-width: 1199px) {
  .root-area {
    display: none;
  }
}

.root-area + *,
.root-area + * + * {
  margin-top: 1.3rem;
}
@media (max-width: 1199px) {
  .root-area + *,
  .root-area + * + * {
    margin-top: 0;
  }
}

#wrap .hide-txt,
#contents .hide-txt,
.hide-txt {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  border: none;
  clip: rect(1px, 1px, 1px, 1px);
}

.contents {
  max-width: 160rem;
  margin: 0 auto;
  padding: 12.5rem 0 30rem 0;
  position: relative;
}
.contents:has(.lnb) {
  display: flex;
  justify-content: space-between;
  width: 95%;
  padding: 6rem 0 19rem;
}
@media (max-width: 767px) {
  .contents:has(.lnb) {
    padding: 4rem 0 16rem;
  }
}
.contents:has(.privacy-area) {
  padding: 4rem 0 16rem;
}
@media (max-width: 1199px) {
  .contents {
    width: calc(100% - 4rem);
    padding: 4rem 0 12rem 0;
  }
}
@media (max-width: 767px) {
  .contents {
    padding: 3rem 0 10rem 0;
  }
}

.inner {
  max-width: 160rem;
  margin: 0 auto;
  width: calc(100% - 4rem);
}

.contents-wrap {
  width: calc(100% - 28rem - 8rem);
}
@media (max-width: 1199px) {
  .contents-wrap {
    width: 100%;
  }
}

/* 공통 회전 캐릭터 */
.circle_ani.v1 {
  position: absolute;
  left: 5rem;
  top: 30rem;
  opacity: 0;
  transition: opacity 0.2s 0s;
}
.circle_ani.v1 svg {
  animation: circle 13s linear infinite;
}
.circle_ani.v1 svg text {
  font-size: 3.2rem;
  text-transform: uppercase;
  fill: #1D1D1D;
}
.circle_ani.v1:before {
  content: "";
  width: 17rem;
  height: 16.9rem;
  display: block;
  background: url("../img/common/character_circle1.png") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.circle_ani.v2 {
  transition: opacity 0.2s 0s;
  position: relative;
  margin-top: 3.2rem;
}
.circle_ani.v2 svg {
  animation: circle 13s linear infinite;
  margin: 0 auto;
  /* 수정 이전버전 */
  /*display: block;*/
  display: none;
}
.circle_ani.v2 svg text {
  font-size: 3.2rem;
  text-transform: uppercase;
  fill: #1D1D1D;
  display: none;
}
.circle_ani.v2:before {
  content: "";
  width: 17rem;
  height: 15.5rem;
  display: block;
  margin: 0 auto;
  background: url("../img/common/character06.png") no-repeat center;
  background-size: contain;
  /* 수정 이전 텍스트 돌아가는 svg */
  /*background: url("../img/common/character_circle2.png") no-repeat center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);*/
}
@keyframes circle {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.swiper-button-prev:before,
.swiper-button-next:before {
  display: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.fp-overflow {
  height: 100%;
}

.pretendard900 {
  font-family: "Pretendard Black";
  font-weight: 900;
}

.pretendard800 {
  font-family: "Pretendard ExtraBold";
  font-weight: 800;
}

.pretendard700 {
  font-family: "Pretendard Bold";
  font-weight: 700;
}

.pretendard600 {
  font-family: "Pretendard SemiBold";
  font-weight: 600;
}

.pretendard500 {
  font-family: "Pretendard Medium";
  font-weight: 500;
}

.pretendard400 {
  font-family: "Pretendard";
  font-weight: 400;
}

.pretendard300 {
  font-family: "Pretendard Light";
  font-weight: 300;
}

.pretendard200 {
  font-family: "Pretendard Thin";
  font-weight: 200;
}

.noto900 {
  font-family: "Noto Sans Kr";
  font-weight: 900;
}

.noto700 {
  font-family: "Noto Sans Kr";
  font-weight: 700;
}

.noto500 {
  font-family: "Noto Sans Kr";
  font-weight: 500;
}

.noto400 {
  font-family: "Noto Sans Kr";
  font-weight: 400;
}

.noto300 {
  font-family: "Noto Sans Kr";
  font-weight: 300;
}

.noto200 {
  font-family: "Noto Sans Kr";
  font-weight: 200;
}

.noto100 {
  font-family: "Noto Sans Kr";
  font-weight: 100;
}
