/* 초기화 */
:root {
	--transition-basic: .3s;
	--transition-custom: .4s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-custom2: 1s ease-in-out;
	--transition-custom3: 1.5s ease;
}


/*-------------- S:Font --------------*/
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 100;
    src: url('../font/Lato-Thin.woff2') format('font-woff2'),
         url('../font/Lato-Thin.woff') format('woff');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    src: url('../font/Lato-Light.woff2') format('font-woff2'),
         url('../font/Lato-Light.woff') format('woff');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../font/Lato-Regular.woff2') format('font-woff2'),
         url('../font/Lato-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../font/Lato-Bold.woff2') format('font-woff2'),
         url('../font/Lato-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    src: url('../font/Lato-Black.woff2') format('font-woff2'),
         url('../font/Lato-Black.woff') format('woff');
}
/*-------------- E:Font --------------*/

/*-------------- S:Reset --------------*/
*,*:before,*:after {
  margin:0; padding:0; box-sizing:border-box;
}

html{
  /* overflow-x:hidden; */
  font-family: 'Pretendard Variable', sans-serif, Helvetica, Arial;
  font-size:62.5% !important;
  color:#262626;
  letter-spacing:-0.025em;
  word-break:keep-all;
  word-wrap:break-word;
  box-sizing:border-box;
  animation:entry .3s ease forwards;
  opacity: 0;
}

body {
  width:100%;
  font-size:1.6rem;
  overflow-x:hidden;
}

img{
  max-width:100%;
}

a{
  text-decoration:none;
  color:inherit;
  outline:none;
}

b,strong{
  font-weight:800;
}

ul,li {
  list-style: none;
}

button{
  font-family:inherit;
  background-color:transparent;
  border:none;
  outline:none;
  cursor:pointer;
}

table{
  border-collapse:collapse;
}

input,select,textarea{
  padding-left:15px;
  padding-right:15px;
  font-family:inherit;
  background-color:#fff;
  border:1px solid #e5e5e5;
  -webkit-transition:all ease .1s;
  transition:all ease .1s;
  outline: none;
}

textarea{
  padding:10px;
}

select{
  padding-right:30px;
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  background-color:#fff;
  background-size:10px auto;
  background-repeat:no-repeat;
  background-position:right 10px center;
}

select::-ms-expand{
  display:none;
}

input[type=number]{
  -moz-appearance:textfield;
}

input:-moz-read-only,textarea:-moz-read-only{
  background-color:#f8f8f8;
}

input:read-only,textarea:read-only{
  background-color:#f8f8f8;
}
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{
  -webkit-appearance:none;margin:0;
}

:focus{
  outline:none;
}

::placeholder{
  color:#b4b4b4;
}

:-ms-input-placeholder{
  color:#bbbbbb;
}

::-ms-input-placeholder{
  color:#bbbbbb;
}

::selection{
  color: #fff !important;
  background-color:#55aa1c !important
}

@keyframes entry {
    to{opacity: 1;}
}

@media (max-width:1024px){
    select{
      background-size:8px auto;
      background-position:right 9px center;
    }
}
/*-------------- E:Reset --------------*/

/*-------------- S:Overflow --------------*/
.hidden {
  overflow: hidden;
}
.d-block{
  display: block;
}
/*-------------- E:Overflow --------------*/

/*-------------- S:Display --------------*/
.sp{display:none;}
.mo{display:none;}

@media(max-width:1024px){
  .sp{display:block;}
  .pc{display:none;}
}

@media(max-width:768px){
  .tb{display:none;}
  .mo{display:block;}
}
/*-------------- E:Display --------------*/

/*-------------- S:Ellip --------------*/
.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; 
}
/*-------------- E:Ellip --------------*/

/*-------------- S:Blind --------------*/
.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px,1px,1px,1px);
}
/*-------------- E:Blind --------------*/

/* Ele Position */
.ele-up {
  opacity: 0;
  transform: translateY(5.208vw);
  transition: opacity var(--transition-custom3), transform var(--transition-custom3);
}

.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);
}

.fm-aboreto{
    font-family: 'Aboreto', sans-serif;
}

/*-------------- S:Main --------------*/
.main {
  min-height:calc(100vh - 215px);
}
/*-------------- E:Main --------------*/

/*-------------- S:Contaer --------------*/
.container {
  max-width:1720px;
  width:95%;
  margin:0 auto;
}
.container.w1400{
  max-width: 1400px;
}
.container.w1450{
  max-width: 1450px;
}

.container.w560{
  max-width: 560px;
}

.container-st01 {
  max-width:1630px;
}
/*-------------- E:Contaer --------------*/

/*-------------- S:Header --------------*/
@media all and (max-width:1200px){
  br.lg{display: none;}
}
@media all and (max-width:1024px){
  br.md{display: none;}
}

.ver-align-middle{vertical-align: middle;}

/*header*/
#header{
  position: relative;
  /* border-bottom: 1px solid #D2D2D2; */
  z-index: 11;
}
#header .container{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .gnb{
  width: 100%;
}

#header .gnb > ul{
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  justify-content: center;
}

#header .gnb > ul > li {
    position: relative;
    min-height: 82px; /* 헤더의 높이에 맞춰 명시적으로 높이를 고정하면 더 안전합니다 */
}


#header .gnb > ul > li > a{
  font-size: 1.8rem;
  padding: 32px 45px;
  display: block;
}
#header .gnb > ul > li:hover > a{
  color: #424242;
  font-weight: 500;
}
#header .gnb > ul > li:hover .depth02{
  opacity: 1;
  visibility: visible;
}
#header .gnb > ul > li{
  position: relative;
}
#header .gnb .depth02{
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 10px;
  z-index: 9;
  width: 100%;
  text-align: center;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
#header .gnb .depth02 li a{
  padding: 10px 0;
  font-size: 1.4rem;
  display: block;
}
#header .gnb .depth02 li:hover a{
  color: #424242;
  font-weight: 500;
}
#header .header-bg{
	position: absolute;
	width: 100%;
	top: 100%;
	left: 0;
	background-color: #fff;
	content: '';
	border-top: 1px solid #D2D2D2;
	opacity: 0;
	visibility: hidden;
}

#header .gnb > ul > li.is-logged-out {
    visibility: hidden; /* 보이지 않지만 자리는 차지함 */
    pointer-events: none; /* 클릭 방지 */
}

/* 로그인 상태일 때 보이기 */
#header .gnb > ul > li.is-logged-in {
    visibility: visible;
}

#header.hover .header-bg{
	opacity: 1;
	visibility: visible;	
}
#header.hover .gnb .depth02{
	opacity: 1;
	visibility: visible;	
}

#header .head-air-box{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#header .head-air-box .head-air{
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
}
#header .head-air-box .logo{
  left: 0;
}
#header .head-air-box .head-right{
  right: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
#header .top_head{padding: 10px 0; background-color: #f1f1f1;
  position: relative;
  z-index: 11;
}
#header .ico-href{
  display: flex;
  align-items: center;
  font-size: 1.8rem;
}
#header .ico-href .ico-btn{
  padding: 0 10px;
  display: block;
}
#header .ico-href > li{
  position: relative;
}
#header .ico-href > li + li:before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #262626;
}
#header .ico-href .glo-dep02{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}
#header .ico-href .active .glo-dep02{
  opacity: 1;
  visibility: visible;
}
#header .ico-href .glo-dep02 .gl-btn{
  display: block;
  padding: 5px 20px;
}

#header .head-right .head-btn{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background-color: #727171;
}

/*moblie*/
#header .m_btn {
  display: none;
  width: 24px;
  text-align: right;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-end;
  padding: 15px 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);
}

.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: 18px 10px; 
  box-sizing: border-box;
}

.m_menu .top_box .logo-img{
  max-height: 20px;
}

.m_menu .top_box .close_btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
}

.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(8px, 8px);
  -moz-transform: rotate(45deg) translate(8px, 8px);
  -ms-transform: rotate(45deg) translate(8px, 8px);
  -o-transform: rotate(45deg) translate(8px, 8px);
  transform: rotate(45deg) translate(8px, 8px);
}

.m_menu .top_box .close_btn i:last-of-type {
  -webkit-transform: rotate(-45deg) translate(-6px, 7px);
  -moz-transform: rotate(-45deg) translate(-6px, 7px);
  -ms-transform: rotate(-45deg) translate(-6px, 7px);
  -o-transform: rotate(-45deg) translate(-6px, 7px);
  transform: rotate(-45deg) translate(-6px, 7px);
}

.m_menu .login_box {
  padding: 10px 0;
  background-color: #424242;
  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:first-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.6rem;
  font-weight: bold;
  color: #222222;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

.m_menu .gnb_box .depth02 {
  display: none;
  padding: 10px 0;
  background-color: #000;
}

.m_menu .gnb_box .depth02 li a {
  position: relative;
  display: block;
  padding: 7px 18px;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

.m_menu .global_box{
  display: flex;
  padding: 10px 0;
  justify-content: center;
}
.m_menu .global_box .gb-href{
  padding: 5px 15px;
  font-size: 1.8rem;
  position: relative;
}
.m_menu .global_box .gb-href + .gb-href:before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 1px;
  background-color: #d9d9d9;
}

@media all and (max-width:1500px){
  #header .gnb > ul > li > a{padding: 31px 20px;}
}

@media all and (max-width:1300px){
  #header .gnb > ul > li > a{padding: 31px 10px;}
  #header .head-air-box .head-right{
    gap: 5px;
  }
  #header .head-right .head-btn{
    gap:5px;
    padding: 10px 15px;
  }
  #header .ico-href .ico-btn{
    padding: 0 5px;
  }
}
@media all and (max-width:1200px){
  
  #header .head-right .head-btn{
    padding: 10px 5px;
  }
}

@media all and (max-width: 1024px) {
  #header .m_btn {
    display: flex;
  }
  #header .top_head,
  #header .gnb,
  #header .head-air-box .head-right {
    display: none;
  }

  #header .head-air-box,
  #header .head-air-box .logo{
    position: unset;
    transform: none;
    width: auto;
  }
}

@media all and (max-width:768px){
  #header .head-air-box .logo img{
    max-height: 26px;
  }
}


/* footer */
#footer{
  padding: 66px 0;
  background-color: #424242;
}

#footer .container{
  display: flex;
  justify-content: space-between;
}

#footer .left-area{
  display: flex;
  gap: 80px;
}

#footer .right-area{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#footer .sns-list{
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
#footer .foot-href{
  width: 200px;
  height: 50px;
  background-color: #727171;
  display: flex;
  align-items: center;
  justify-content: center;  
  gap: 10px;
}

@media all and (max-width:1024px){
  #footer{
    padding: 50px 0;
  }
  #footer .container{
    flex-direction: column;
    gap: 30px 0;
  }
  #footer .left-area{
    flex-wrap: wrap;
    gap: 30px;
  }
  #footer .right-area{
    gap: 15px;
  }
}

@media all and (max-width:576px){
  #footer{
    padding: 33px 0;
  }
  #footer .sns-list{
    justify-content: center;
  }
  #footer .left-area{
    justify-content: center;
    text-align: center;
  }
  #footer .foot-href{
    margin: 0 auto;
    width: 150px;
    height: 40px;
  }
}

/* quick */
.quick-menu{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 11;
  box-shadow: 0 0 4px 0 rgba(28, 69, 158, 0.15);
}
.quick-menu .quick-abtn{
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 5px;
  background: var(--bg);
}

@media all and (max-width:768px){
  .quick-menu{
    bottom: 10px;
    right: 10px;
  }
  .quick-menu .quick-abtn{
    width: 45px;
    height: 45px;
  }
  .quick-menu .quick-abtn span{
    display: none;
  }
}


/* NEWS */
.news-common-item .img-box{
  aspect-ratio: 1/1;
  position: relative;
}
.news-common-item .img-box:before{
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  border: 15px solid rgba(28,69,158,.4);
  opacity: 0; 
  height: 100%;
  width: 100%;
  transition: .5s;
}
.news-common-item .img-box:after{
  content: 'VIEW';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color:rgba(28,69,158,.4);
  width: 0;
  height: 0;
  font-family: 'Aboreto', sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border-radius: 100%;
  opacity: 0;
  transition: .5s;
}
.news-common-item:hover .img-box:before{
  opacity: 1;
}
.news-common-item:hover .img-box:after{
  opacity: 1;
  width: 116px;
  height: 116px;
}
.news-common-item .img-box img{
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.news-common-item .txt-box .txt{
  border-top: 1px solid #d9d9d9;
}

@media all and (max-width:1024px){
  .news-common-item .img-box:before{
    border-width: 10px;
  }
  .news-common-item .img-box:after{
    max-width: 100px;
    max-height: 100px;
  }
}
@media all and (max-width:768px){
  .news-common-item .img-box:before{
    border-width: 5px;
  }
  .news-common-item .img-box:after{
    max-width: 80px;
    max-height: 80px;
  }
}

.span-blue-bg{
  position: relative;
  display: inline-block;
}
.span-blue-bg:before{
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color: rgba(28, 69, 158, 0.1);
  width: calc(100% + 15px);
  height: 100%;
}

.span-blue-underline{
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tit-icon-flex{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

@media all and (max-width:768px){
  
.tit-icon-flex .img.mo-he35 img{
  height: 35px;
}

}

/* product common */
.prod-common-box{
  padding: 40px 30px;
  background-color: #F5F5F5;
}
.prod-common-box.bg-white{
  background-color: #fff;
}
.prod-common-box:hover{
  background-color: #FAEEF5;
}
.prod-common-box .img-box{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%;
}
.prod-common-box .img-box.asp-665{
  aspect-ratio: 1/.665;
}
.prod-common-box .img-box.asp-11{
  aspect-ratio: 1/1;
}
.prod-common-box .img-box img{
  max-height: 100%;
}
.prod-common-box .tit-box{
  margin-top: 10px;
}
.prod-common-box .href-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #1C459E;
  padding: 13px 20px;
  cursor: pointer;
}
.prod-common-box .href-box.mw-355{
  max-width: 355px;
  margin-left: auto;
  margin-right: auto;
}
.prod-common-box .href-box.bg-gray{
  background-color: #f5f5f5;
}
.prod-common-box .href-box i{
  transition: transform .5s;
}

.prod-common-box .href-box:hover i{transform: translateX(5px);}


#footer .modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#footer .modal-overlay.active {
  display: flex;
}

#footer .modal-content {
  position: relative;
  width: 680px;
  /*
  min-width: 400px;
  max-width: 800px;
  */
  height: 500px;
  background-color: #fff;
  border-radius: 10px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
}

@media all and (max-width:1400px){
  
.prod-common-box .img-box.asp-665,
  .prod-common-box .img-box{
    aspect-ratio: 1/1;
  }
  
}

@media (max-width : 1024px) {
  #footer .modal-content{
    width: 500px;
    height: 400px;
    padding: 40px 32px;
  }
}

@media (max-width : 768px) {
  #footer .modal-content{
    padding: 36px 24px;
  }
  
}

@media (max-width : 576px) {
  #footer .modal-content{
    width: 90%;
    padding: 30px 20px;
  }

}

#footer .modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 200;
  cursor: pointer;
}

#footer .policy-wrap {
  flex: 1;                
  overflow-y: auto;       
  border: 1px solid #ddd;
  padding: 20px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

#footer .privacy-button{
  cursor: pointer;
}

#footer .policy-wrap p {
  overflow-y: auto;
}
