/* header */
.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  height: 110px;
  transition: transform 0.4s ease;
  border-bottom: 1px solid var(--gray07);
}

.fixed {
  transform: translateY(-100%);
}

.visible {
  transform: translateY(0);
}

.header-innerWrap {
  width: 1472px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.header-innerWrap .left-box a .logo {
  display: block;
}

.innerWrap {
  position: relative;
  width: 1472px;
  margin: 0 auto;
}
.top-manu {
  display: flex;
  align-items: center;
}

.top-manu > li {
  position: relative;
  height: 35px;
  line-height: 35px;
  font-size: 13px;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  margin-left: 10px;
}

.top-manu > li:first-child {
  margin-left: 0;
}

.top-manu > li:before {
  content: "";
  /* display: block; */
  display: none;
  width: 1px;
  height: 15px;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-60%);  
}

.top-manu > li:last-child:before {
  display: none;
}

.top-manu > li:nth-child(2):before {
  display: none;
}

.top-manu > li.search-btn {
  padding-left: 25px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960'%3E%3Cpath d='M442.31-407.69q45.69 0 77.84-32.16 32.16-32.15 32.16-77.84 0-45.69-32.16-77.85-32.15-32.15-77.84-32.15-45.69 0-77.85 32.15-32.15 32.16-32.15 77.85t32.15 77.84q32.16 32.16 77.85 32.16Zm201.46 120L533.38-398.85q-20 15.31-42.88 23.23-22.88 7.93-48.19 7.93-62.54 0-106.27-43.73t-43.73-106.27q0-62.54 43.73-106.27t106.27-43.73q62.54 0 106.27 43.73t43.73 106.27q0 25.31-8.04 48.19t-23.35 42.88L672.31-316l-28.54 28.31ZM224.62-160q-27.62 0-46.12-18.5Q160-197 160-224.62V-360h40v135.38q0 9.24 7.69 16.93 7.69 7.69 16.93 7.69H360v40H224.62ZM600-160v-40h135.38q9.24 0 16.93-7.69 7.69-7.69 7.69-16.93V-360h40v135.38q0 27.62-18.5 46.12Q763-160 735.38-160H600ZM160-600v-135.38q0-27.62 18.5-46.12Q197-800 224.62-800H360v40H224.62q-9.24 0-16.93 7.69-7.69 7.69-7.69 16.93V-600h-40Zm600 0v-135.38q0-9.24-7.69-16.93-7.69-7.69-16.93-7.69H600v-40h135.38q27.62 0 46.12 18.5Q800-763 800-735.38V-600h-40Z'/%3E%3C/svg%3E");
}

.top-manu > li.top-btn {
  border: none;
  color: var(--bgWhite);
  border-radius: 3px;
}

.top-manu > li.top-btn.ty-search {
  width: 80px;
  background: var(--primaryDark);  
}


.top-manu > li.top-btn.ty-contact {
  width: 100px;
  background: var(--primaryDark);
}

header .right-box {
  display: flex;
  flex: 1 0 0%;
  align-items: center;
}

.navi-menu > li {
  float: left;
  line-height: 110px;
  height: 110px;
  margin-left: 100px;
  cursor: pointer;
}

.navi-menu > li span {
  font-size: 15px;
}

.navi-menu > li:last-child span {
  color: var(--primaryDark);
}

/* footer */
#footer {
  background-color: #f9f9f9;
}

#footer .copy-box {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

#footer .copy-box .copy-leftBox {
  float: left;
}

#footer .copy-box .copy-rightBox {
  float: right;
}

#footer .copy-box .copy-leftBox .copyright {
  vertical-align: middle;
}

#footer .copy-box .copy-leftBox .copy-korBox {
  padding-bottom: 20px;
}

#footer .copy-box .copy-rightBox .copy-right-list li {
  float: left;
  margin-left: 20px;
}

#footer .copy-box .copy-rightBox .copy-right-list li:first-child {
  margin-left: 0;
}

#footer .copy-box .copy-leftBox .copyright,
#footer .copy-box .copy-rightBox .copy-right-list li a {
  display: block;
  font-size: 12px;
  font-weight: 400;
}

#footer .copy-box .copy-korBox .copy-topList li {
  float: left;
  padding-left: 10px;
  position: relative;
  margin-left: 10px;
  font-size: 13px;
  font-weight: 500;
  list-style: 21px;
}

#footer .copy-box .copy-korBox .copy-topList li span {
  font-weight: 300;
}

#footer .copy-box .copy-korBox .copy-topList li:first-child,
.login-container .login-rightBox .Sign-tab .login-btList li:first-child {
  margin-left: 0;
  padding-left: 0;
}

#footer .copy-box .copy-korBox .copy-topList li:before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-60%);
}

#footer .copy-box .copy-korBox .copy-topList li:first-child:before,
.login-container .login-rightBox .Sign-tab .login-btList li:first-child:after {
  display: none;
}

#footer .copy-box .copy-korBox .address {
  font-size: 13px;
  font-weight: 300;
  margin-top: 5px;
  line-height: 21px;
}
#footer .copy-box .copy-korBox .address .tit {
  font-weight: 500;
}

#footer .copy-box .copy-korBox .address.ad-tit {
  font-size:14px;
  font-weight: 500;
}

#footer .copy-box .copy-korBox .address.mt0 {
  margin-top: 0;
}

#footer .copy-box .copy-korBox .address.mt20 {
  margin-top: 20px;
}

#footer .copy-box .copy-korBox .address .dar-tit {
  padding-right: 9px;
  font-weight: 500;
}

#footer .copy-box .copy-korBox .mail {
  font-size: 13px;
  color: #000;
  text-decoration: underline;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-top: 8rem;
  padding-top: 5rem;
  padding-bottom: 6rem;
  text-align: center;
}

.footer .f-sns {
  margin-top: 20px;
}

.footer .f-sns .svg {
  height: 30px;
  margin: 0 5px;
}

.footer .copy-List li {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  padding-left: 10px;
  margin-left: 10px;
}

.footer .copy-List li a {
  font-size: 13px;
}

.footer .copy-List li:before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-60%);
}

.footer .copy-List li:first-child:before {
  display: none;
}

.m-navi-container,
.m-naviBtn {
  display: none;
}

.m-back-btn {
  display: none;
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 1;
}

.toast {
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: white;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 10;
  top: 40%;
  left: 50%;
  font-size: 17px;
  transition: opacity 0.5s linear, visibility 0.5s linear;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

.btnGlobal {
  display: inline-block;  
  height: 22px;
  font-size: 13px;
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 18px;
  background-image: url("../imgs/sub/icon_language.png");
  cursor: pointer;
  padding-left: 25px;
  line-height: 22px;
}

.globalWr {
  position: relative;
  display: inline-block;
  font-size: 0;
}

.globalWr .globalCont {
  display: none;
  position: absolute;
  left: 53%;
  top: 100%;
  transform: translateX(-50%);
  width: 60px;
  height: 89px;
  background: var(--gray09);
  padding: 12px 10px;
  border-radius: 0.5rem;
}

.globalWr.show .globalCont {
  display: block;
}

.globalWr .globalCont > ul > li:nth-child(1) {
  margin-top: -4px;
}

.globalWr .globalCont > ul > li {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  cursor: pointer;
}

.globalWr .globalCont > ul > li:nth-child(n + 2)::before {
  position: absolute;
  display: inline-block;
  top: -3px;
  left: 0px;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--gray07);
}

.globalWr .globalCont > ul > li span {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray01);
}

.member {
  text-align: left !important;
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 19px;
  background-image: url("../imgs/sub/ico_login.png");
  cursor: pointer;
  padding-left: 27px;
  line-height: 22px;
}

.m-lang {
  display: none;
}

.footer-kakao {
  text-align: right;
  margin-top: 15px;
}



/* 신규 ai layout type 추가 */
.rel-box {width: 100%; position: relative;}
.ai-layout  {padding-top:0 !important; overflow: hidden;}

.ai-layout .ai-header {width: 100%; padding: 20px; border-bottom: 1px solid var(--gray07);}
.ai-layout .ai-header .logo {display: inline-block;}
.ai-layout .ai-header .back-btn {width: 40px; height: 40px; border: 1px solid #000; border-radius: 5px; display: block; background-repeat: no-repeat; background-position: center; background-size: 10px; position: absolute; top: 50%; right: 0; transform: translateY(-50%); background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 6.51 10.75'%3E%3Cpath class='st0' d='M6.5,9.62l-1.13,1.13L0,5.37,5.37,0l1.13,1.13L2.26,5.37l4.24,4.24Z'/%3E%3C/svg%3E");}


.ai-layout .ai-footer {width:100%; height:60px; display:flex; align-items:center; justify-content:center; border-top: 1px solid var(--gray07);}
.ai-layout .ai-footer p {font-size:11px}


#footer.sub-footer {width: 100%; height: 60px; padding:0 20px; display: flex; justify-content: center; align-items: center; text-align: center; box-sizing: border-box;}
#footer.sub-footer * {font-size: 14px; word-break:keep-all;}
#footer.sub-footer a {text-decoration: underline;}