:root {
  --color-point: #0B476F;
}

/* 초기화 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  color: #191919;
  font-family: 'Pretendard', sans-serif;
  font-size: 62.5% !important;
  word-break: keep-all;
  word-wrap: break-word;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent !important;
  animation: entry .3s ease forwards;
  opacity: 0;
  /* -ms-overflow-style: none;
  scrollbar-width: none; */
}

/* html::-webkit-scrollbar {
  display: none;
} */

body {
  font-size: 1.6rem;
  overflow-x: hidden;

}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

b,
strong {
  font-weight: 700;
}

img {
  max-width: 100%;
}

button {
  font-family: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  color: inherit;
  -webkit-appearance: none;
  background: none;
}

select {
  outline: none;
  border: 1px solid transparent;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
}

input,
textarea {
  font-family: inherit;
  outline: none;
  border: 1px solid transparent;
}

:focus {
  outline: none;
}

::placeholder {
  color: #A4A4A4;
}

em,
i {
  font-style: normal;
}

@-webkit-keyframes entry {
  to {
    opacity: 1;
  }
}

@keyframes entry {
  to {
    opacity: 1;
  }
}

br.ta_only{display: none;}
br.m_only{display: none;}

@media screen and (max-width:1200px) {}

@media screen and (max-width:1024px) {
  br.pc_only{display: none;}
  br.ta_only{display: block;}
}

@media screen and (max-width:768px) {
  br.m_only{display: block;}
}

@media screen and (max-width:576px) {}


.hidden {
  overflow: hidden;
}

/* 블라인드 */
.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}


/* 줄바꿈 */
@media screen and (max-width:1200px) {
  .lg {
    display: none;
  }
}

@media screen and (max-width:1024px) {
  .md {
    display: none;
  }
}

@media screen and (max-width:768px) {
  .sm {
    display: none;
  }
}

@media screen and (max-width:576px) {
  .xs {
    display: none;
  }
}

.w100 {
  width: 100%;
}

/* 블록 */
.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}


.ellip {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clamp-2 {
  -webkit-line-clamp: 2;
}

.clamp-3 {
  -webkit-line-clamp: 3;
}

/* 컨테이너 */
.container {
  max-width: 1500px;
  width: 95%;
  margin: 0 auto;
  position: relative;
}
.container.w1670{
  max-width: 1670px;
}
.container.w1660{
  max-width: 1660px;
}


/* Ele Position */
.ele-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .4s cubic-bezier(0.4, 0, 0.2, 1), transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ele-left {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .4s cubic-bezier(0.4, 0, 0.2, 1), transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ele-right {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .4s cubic-bezier(0.4, 0, 0.2, 1), transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ele-blur {
  letter-spacing: 0.05em;
  filter: blur(20px);
  transition: letter-spacing .4s cubic-bezier(0.4, 0, 0.2, 1), .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ele-delay1 {
  transition-delay: .1s;
}

.ele-delay2 {
  transition-delay: .2s;
}

.ele-delay3 {
  transition-delay: .3s;
}

.ele-delay4 {
  transition-delay: .4s;
}

.ele-delay5 {
  transition-delay: .5s;
}

.ele-delay6 {
  transition-delay: .6s;
}

.ele-delay7 {
  transition-delay: .7s;
}

.ele-delay8 {
  transition-delay: .8s;
}

.ele-delay9 {
  transition-delay: .9s;
}

.ele-delay10 {
  transition-delay: 1s;
}

.ele-delay11 {
  transition-delay: 1.1s;
}

.ele-delay12 {
  transition-delay: 1.2s;
}

.ele-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.ele-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.ele-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.ele-blur.in-view {
  letter-spacing: 0em;
  filter: blur(0);
}

/* 메인 */
#main {}

/* 헤더 */
/*header*/
#header {
  z-index: 101;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  transition: transform .3s;
}
#header.active{
  transform: translateY(-100%);
}

.header_empty{
  padding-top: 84px;
}

#header:before{
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #d3d3d3;
  content: '';
  left: 0;
  z-index: 3;
  pointer-events: none;

}
#header.hover:before,
#header.active:before {
  width: 100%;
}

#header .header-bg {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#header .head-air {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
}


#header .head-air .air {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

#header .head-air .logo {
  left: 0;
}

#header .glo-bal {
  right: 0;
  display: flex;
  font-size: 1.8rem;
}

#header .glo-bal .glo-btn {
  padding: 6px 7px;
  display: flex;
  position: relative;
  border-radius: 50px;
  background: linear-gradient(270deg, #B6A3FF 0%, #36B7FA 100%);
  width: 130px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: -2%;
}
#header .glo-bal .glo-btn i{
  transition: .4s;
}
#header .glo-bal .glo-btn:hover i{
  transform: translateX(5px);
}

#header .glo-bal .glo-btn.on {
  color: #191919;
  font-weight: 600;
}

#header .glo-bal .glo-btn+.glo-btn:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 1px;
  height: 15px;
  background: #969696;
}

#header .container {
  max-width: 1860px;
  width: 97%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .gnb>ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

#header .gnb>ul>li {
  position: relative;
}

#header .gnb>ul>li>a {
  width: 169px;
  padding: 30.5px 0;
  font-size: 1.8rem;
  display: block;
  letter-spacing: -2%;
}

#header .depth02 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 30px 0 40px;
  background-color: #fff;
}

#header .depth02 li {
  width: 100%;
}

#header .depth02 a {
  width: 100%;
  line-height: 220%;
  display: block;
  font-size: 1.6rem;
}

/*moblie*/
#header .m_btn {
  display: none;
  width: 24px;
  text-align: right;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 0;
}

#header .m_btn i {
  display: inline-block;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  background: #000;
  transition: all 0.5s;
}

#header .m_btn i:nth-of-type(2) {
  width: 84%;
}

#header .m_btn.on i:nth-of-type(1) {
  margin: 11px 0 -2px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

#header .m_btn.on i:nth-of-type(2) {
  width: 0;
  margin: 0;
}

#header .m_btn.on i:nth-of-type(3) {
  margin: 0 0 11px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

/* #header.hover */
#header.hover .header-bg {
  opacity: 1;
  visibility: visible;
}

#header.hover .gnb>ul>li:hover>a {
  background-color: var(--color-point);
  color: #fff;
}

#header.hover .depth02 {
  opacity: 1;
  visibility: visible;
}

#header.hover .gnb>ul>li:hover .depth02 {
  background-color: var(--color-point);

}

#header.hover .gnb>ul>li:hover .depth02 a {
  color: #fff;

}

.m_menu_bg {
  z-index: 101;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  cursor: pointer;
}

.m_menu {
  z-index: 102;
  position: fixed;
  right: -100%;
  top: 0;
  width: 500px;
  max-width: 80%;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.5s;
  overflow-y: auto;
}

.m_menu.on {
  right: 0;
}

.m_menu .top_box {
  position: relative;
  padding: 10px;
  height: 45px;
  box-sizing: border-box;
}

.m_menu .top_box .close_btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

.m_menu .top_box .close_btn i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
}

.m_menu .top_box .close_btn i:first-of-type {
  -webkit-transform: rotate(45deg) translate(9px, 9px);
  -moz-transform: rotate(45deg) translate(9px, 9px);
  -ms-transform: rotate(45deg) translate(9px, 9px);
  -o-transform: rotate(45deg) translate(9px, 9px);
  transform: rotate(45deg) translate(9px, 9px);
}

.m_menu .top_box .close_btn i:last-of-type {
  -webkit-transform: rotate(-45deg) translate(-7px, 8px);
  -moz-transform: rotate(-45deg) translate(-7px, 8px);
  -ms-transform: rotate(-45deg) translate(-7px, 8px);
  -o-transform: rotate(-45deg) translate(-7px, 8px);
  transform: rotate(-45deg) translate(-7px, 8px);
}

.m_menu .login_box {
  padding: 10px 0;
  background-color: var(--color-point);
  text-align: center;
}

.m_menu .login_box a {
  position: relative;
  padding: 0 30px;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.04em;
}

/* .m_menu .login_box a:last-of-type:before {
  content: '';
  position: absolute;
  right: -1px;
  top: calc(50% - 7px);
  width: 2px;
  height: 15px;
  background-color: #fff;
} */

.m_menu .gnb_box {
  border-top: 1px solid #ddd;
}

.m_menu .gnb_box>ul>li {
  border-bottom: 1px solid #dddddd;
}

.m_menu .gnb_box>ul>li>a {
  position: relative;
  display: block;
  padding: 13px 18px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222222;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

.m_menu .gnb_box .depth02 {
  display: none;
  padding: 7px 0;
  background-color: #36b7fa;
  height: auto !important;
}

.m_menu .gnb_box .depth02 li a {
  position: relative;
  display: block;
  padding: 5px 15px;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

@media all and (max-width:1600px){
  #header .gnb>ul>li>a{
    width: 150px;
  }
  #header .container{
    gap: 0 15px;
  }
}

@media all and (max-width:1400px) {
  #header .gnb>ul>li>a {
    width: 130px;
  }

  #header .head-air .logo img{
    max-height: 35px;
  }
}

@media all and (max-width:1200px){
  #header .gnb>ul>li>a{
    width: 120px;
  }
}

@media all and (max-width: 1024px) {
  #header .m_btn {
    display: flex;
  }

  #header .gnb,
  #header .glo-bal {
    display: none;
  }

  #header .head-air {
    position: unset;
    transform: none;
    width: fit-content;
  }

  #header .head-air .logo {
    position: unset;
    transform: none;
  }

  #header .head-air .logo a {
    display: block;
  }

  #header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header_empty{
    padding-top: 55px;
  }
  #header .header-bg{display: none;}

  #header .logo a{
    padding: 10px 0;
    display: block;
  }
  #header .logo img{
    height: 35px;
  }
}

@media all and (max-width:768px){
  
  #header .logo a{
    padding: 6px 0;
  }
  #header .logo img{
    height: 30px;
  }
  .header_empty{
    padding-top: 44px;
  }
}



/* footer */
#footer{
  border-top: 1px solid #CFCFCF;
}
#footer .top-foot{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 0;
}
#footer .top-right{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#footer .bot-foot{
  border-top: 1px solid #CFCFCF;
}

#footer .info-li li{
  display: flex;
  align-items: center;
}
#footer .info-li li + li{
  margin-top: 7px;
}
#footer .info-li .li-tit{
  min-width: 145px;
  width: 145px;
}

#footer .ft-btn-box{
  display: flex;
  align-items: center;
}
#footer .ft-btn-box .ft-btn{
  padding: 3px 5px;
  position: relative;
}
#footer .ft-btn-box .ft-btn + .ft-btn:before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background-color: #858585;
}
#footer .ft-btn-box .ft-btn:last-child{
  padding-right: 0;
}
#footer .family-box{
  width: 200px;
  position: relative;
}
#footer .family-box .family-a{
  padding: 17px 20px;
  display: block;
}
#footer .family-box .family-btn{
  background-color: #F5F5F5;
  border: 1px solid #cfcfcf;
  position: relative;
}
#footer .family-box .family-btn:before{
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 10px;
  height: 7px;
  content: '';
  background: url(/asset/img/common/foot_arw.svg)no-repeat center center/cover;
}
#footer .family-box .family-air{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #cfcfcf;
  opacity: 0;
  visibility: hidden;
  transition: visibility .5s, opacity .5s;
}
#footer .family-box.active .family-air{
  opacity: 1;
  visibility: visible;
}

#footer .family-box .family-href{
  width: 100%;
}
#footer .family-box .family-href + .family-href{
  border-top:  1px solid #cfcfcf;
}

@media all and (max-width:1024px){
  #footer .info-li .li-tit{
    width: 100px;
    min-width: 100px;
  }
}

@media all and (max-width:768px){
  #footer .ft-logo img{
    height: 40px;
  }
  #footer .top-right{
    width: 100%;
    align-items: flex-end;
    gap: 5px 0;
  }
  #footer .family-box .family-air{
    top: auto;
    bottom: 100%;
  }
  #footer .family-box{
    width: 180px;
  }
  #footer .family-box .family-a{
    padding: 13px 15px;
  }
  #footer .family-box .family-btn:before{
    right: 9px;
  }
}
@media all and (max-width:768px){
  #footer .ft-logo img{
    height: 30px;
  }
  #footer .family-box{
    width: 160px;
  }
  #footer .family-box .family-a{
    padding: 8px 12px;
  }
}

.privacy-pop-up {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, .6);
}

.privacy-pop-up.active {
  display: block;
}

.privacy-pop-up .pop-wrap {
  width: 1200px;
  max-width: 95%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 60px;
  border-radius: 10px;
}

.privacy-pop-up .pop-closed {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: url(/asset/img/common/btn_close.svg) no-repeat 50% 50%;
  cursor: pointer;
  z-index: 8040;
}

.privacy-pop-up .pop-contents {
  max-height: 65vh;
  overflow-y: auto;
}

.privacy-pop-up .pop-contents::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.privacy-pop-up .pop-contents::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.privacy-pop-up .pop-contents::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.privacy-pop-up .pop-contents::-webkit-scrollbar-thumb:hover {
  background: #999;
}

@media all and (max-width:1024px) {
  .privacy-pop-up .pop-closed {
    width: 70px;
    height: 70px;
  }
}

@media all and (max-width:650px) {
  .privacy-pop-up .pop-closed {
    width: 55px;
    height: 55px;
  }

  .privacy-pop-up .pop-wrap {
    padding: 40px 30px;
  }
}

@media all and (max-width:576px) {
  .privacy-pop-up .pop-wrap {
    padding: 20px 15px;
  }
}


/* list style */
.list-style-circle > li{
  padding-left: 15px;
  position: relative;
}
.list-style-circle > li:before{
  content: '';
  position: absolute;
  left: 7px;
  top: 12px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #191919;
}

.img-box-flex{
  display: flex;
  gap: 40px;
}
.img-box-flex .img{
  width: calc(50% - 20px);
}
@media all and (max-width:768px){
  
.img-box-flex{
  flex-wrap: wrap;
  gap: 20px;
}
.img-box-flex .img{
  width: 100%;
}
}


.popup-layer{
  display: flex;
  flex-direction: column;
  max-height: 90vh;        /* 화면 세로 90% 넘지 않도록 */
  max-width: 90vw;         /* 기존 값 유지 */
  overflow: hidden;        /* 바깥 레이어 자체는 넘치지 않게 */
}

.popup-layer__body{
  flex: 1 1 auto;
  overflow-y: auto;        /* 이미지가 길면 body 안에서만 스크롤 */
  overflow-x: hidden;
}

.popup-layer__body img{
  display: block;
  width: 100%;
  height: auto;            /* 비율 유지, 찌그러짐 방지 */
  max-height: calc(90vh - 50px); /* footer 높이(약 50px)만큼 빼주기 */
  object-fit: contain;
}

.popup-layer__foot{
  flex-shrink: 0;           /* 하단 버튼바는 항상 고정 높이 유지 */
}


/* TOP 버튼 스타일 */
#topBtn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background:linear-gradient(270deg, #B6A3FF 0%, #36B7FA 100%);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 999;

  /* 기본 상태: 보이지 않음 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* 스크롤 시 나타나는 클래스 */
#topBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#topBtn:hover {
  background-color: #555;
}

@media all and (max-width:768px){
  #topBtn{
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
}