.wrapHeader {
  position: fixed;
  background: #fff;
  left: 0;
  right: 0;
  top: 0;
  /*height: 125px;*/
  z-index: 200;
}

.wrapHeader::after {
  position: fixed;
  z-index: 30;
  background: #fff;
  left: 0;
  right: 0;
  top: 0;
}

.header {
  width: 100%;
}

.header.topHeader{
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 10px 20px;
}

.header .topHeaderList {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header .topHeaderList .isLoginList li {
    display: flex;
    gap: 8px;
}

.header .topHeaderList li a {
  font-size: 12px;
  color: #586063;
}
.header .topHeaderList li button {
  font-size: 12px;
  color: #586063;
  display: block;
  margin: -2px;
}

.header .topHeaderList li:nth-of-type(2), 
.header .topHeaderList li:nth-of-type(3) {
  display: flex;
  gap: 12px;
}
.header .topHeaderList li:nth-of-type(3) {
  display: none;
}

.header.bottomHeader{
  position: relative;
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header.bottomHeader::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #444;
}
.header.bottomHeader .contNav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px;
}

.header.bottomHeader .bottomHeaderList {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header.bottomHeader .bottomHeaderList li {
  position: relative;
  width: 117px;
  text-align: center;
}

.header.bottomHeader .wrapHeaderLogo .headerLogo {
  max-width: 215px;
}


.header.bottomHeader .bottomHeaderList li a{
  font-size: 1.7rem;
  font-weight: 500;
  color: #1A1A1A;
}

.header.bottomHeader .bottomHeaderList li a.active{
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
  color: #1AB6E4;
}

.header.bottomHeader .bottomHeaderList li a:hover,
.header.bottomHeader .bottomHeaderList li a:focus {
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
  color: #1AB6E4;
}

.header.bottomHeader .modalBtnList {
  display: flex;
  gap: 12px;
  align-items: center;
  /* flex-direction: column; */
}
.header.bottomHeader .modalBtnList.openMenu {
  display: flex;
  gap: 12px;
  align-items: center;
  display: none;
}

.header.bottomHeader .modalBtnList li {
  box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  padding: 12px 20px;
}

.header.bottomHeader .modalBtnList li:nth-of-type(1) {
  background: #fff;
}
.header.bottomHeader .modalBtnList li a {
  font-weight: 500;
  font-size: 15px;
  text-align: center;
}
.header.bottomHeader .modalBtnList li:nth-of-type(2){
  background: #2C3785;
}
.header.bottomHeader .modalBtnList li:nth-of-type(2) a{
  color: #fff;
}

/* pc drawer 버튼 숨기기 */
.header.bottomHeader .modalBtnList li:nth-of-type(3){
  box-shadow: none;
  display: none;
}

/* pc nav 리스트 */
.pcNav {
  display: none;
  border-top: 1px solid #BED1D7;
  background: #fff;
}
.pcNav.show {
  display: flex;
}
.pcNav .wrapNav{
  display: flex;
  gap: 24px;
  width: fit-content;
  margin: 0 auto;
  padding: 30px 24px 30px 0;
}
.pcNav .wrapNav ul{
  position: relative;
  text-align: center;
  width: calc(707px / 6);
}
.pcNav .wrapNav ul .under{
  position: absolute;
  background: #1AB6E4;
  width: 100%;
  height: 3px;
  top: -33px;
  left: 0;
  display: none;
}
.pcNav .wrapNav ul .under.active {
  display: flex;
}

.pcNav .wrapNav ul li {
  margin-bottom: 40px;
}
.pcNav .wrapNav ul li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
}

.pcNav .wrapNav ul li a:hover {
  font-weight: 500;
  color: #1AB6E4;
}

/* 모바일 drawer 버튼  css*/
.btn.drawer {
	position: relative;
	width: 20px;
	height: 33px;
}

.btn.drawer.type02 {
	position: relative;
	width: 27px;
	height: 33px;
}

.btn.drawer span {
	position: absolute;
	left: 2px;
	display: block;
	width: 27px;
	height: 2px;
	background: #000;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.btn.drawer span:nth-child(1) {
	top: 7px;
}

.btn.drawer span:nth-child(2) {
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.btn.drawer span:nth-child(3) {
	bottom: 7px;
}

.btn.drawer.active span:nth-child(1) {
	top: 15px;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.btn.drawer.active span:nth-child(2) {
	opacity: 0;
}

.btn.drawer.active span:nth-child(3) {
	bottom: 16px;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

@keyframes fadeIn {
  from {
    right: -100%;
  }
  to {
    right: 0;
  }
}

/* 모바일 nav */
.lnbArea {
	position: fixed;
  /* right: -100%; */
	top: 0px;
	width: 100%;
	height: 100%;
	/* padding: 8px 20px 50px 20px; */
	background: #fff;
	overflow-y: no-scroll;
  z-index: 20;
  display: none;
}

.lnbArea.show {
  animation: fadeIn 0.3s ease-in-out;
  display: block;
}

.lnbArea > ul {
  padding: 17px 20px;
  border-bottom: 1px solid #D9D9D9;
}

/* line 801, scss/common.scss */
.lnbArea > ul > li > a {
	display: block;
	padding: 16px 0;
	font-weight: 600;
	font-size: 22px;
	color: #000;
}

/* line 813, scss/common.scss */
.lnbArea > ul > li.dep01 > a {
	position: relative;
}

/* line 815, scss/common.scss */
.lnbArea > ul > li.dep01 > a:after {
  content: '';
	position: absolute;
	right: 0;
	top: 16px;
	width: 24px;
	height: 24px;
	background: url("../../images/ico_lnbarrow.svg") no-repeat center;
}

/* line 822, scss/common.scss */
@keyframes showSubmenu {
  from {
    height: 0;
    margin-top: -5px;
    opacity: 0.4;
  }
  to {
    height: 100%;
    margin-top: 0px;
    opacity: 1;
  }
}

.lnbArea > ul > li.dep01 .dep02 {
	padding: 0px 10px;
  overflow: hidden;
  height: 0;
	-ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.lnbArea > ul > li.dep01 .dep02.show {
  height: 100%;
  /* height: auto; */
  display: block;
  overflow: auto;
  animation: showSubmenu 0.3s ease-in ;
}

/* line 826, scss/common.scss */
.lnbArea > ul > li.dep01 .dep02 li {
	display: inline-block;
	width: calc(100% / 2 - 10px);
}

/* line 829, scss/common.scss */
.lnbArea > ul > li.dep01 .dep02 li a {
	padding: 10px 0px;
	display: block;
	font-weight: 400;
	font-size: 18px;
	color: #464646;
}

/* line 840, scss/common.scss */
.lnbArea > ul > li.dep01.active > a {
	color: #1AB6E4;
}

/* line 842, scss/common.scss */
.lnbArea > ul > li.dep01.active > a:after {
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
}

/* line 852, scss/common.scss */
.lnbArea.active {
	right: 0;
}

.lnbArea .menemberBtnList {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  /* margin-right: 5px; */
  padding: 16px 20px;
  border-bottom: 1px solid #D9D9D9;
}

.topHeader .noLoginList li a{
  padding-left: 6px;
}

.lnbArea .menemberBtnList li a {
  display: inline;
  padding: 8px 12px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 14px;
  color: #222;
}
.lnbArea .menemberBtnList li button {
  display: inline;
  padding: 8px 12px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 14px;
  color: #222;
}

.lnbArea .menemberBtnList li:nth-of-type(1) a,
.lnbArea .menemberBtnList li:nth-of-type(1) button {
  border: 1px solid #607277;
  background: #fff;
  margin-right: 20px;
}

.lnbArea .menemberBtnList li:nth-of-type(2) a {
  border: 1px solid #607277;
  background: #fff;
}

.lnbArea .menemberBtnList.isLoginList li:nth-of-type(2)::before {
  display: block;
  content: '';
  position: absolute;
  top: 22px;
  right: 241px;
  width: 1px;
  height: 20px;
  background: #d9d9d9;  
}

.lnbArea .menemberBtnList.noLoginList li:nth-of-type(2)::after {
  display: block;
  content: '';
  position: absolute;
  top: 22px;
  right: 236px;
  width: 1px;
  height: 20px;
  background: #d9d9d9;  
}

.lnbArea .menemberBtnList li:nth-of-type(3) a,
.lnbArea .menemberBtnList li:nth-of-type(3) button {
  background: #fff;
  border: 1px solid #607277;
  margin-right: 5px;
}
.lnbArea .menemberBtnList li:nth-of-type(3) button {
  padding-right: 24px;
}

.lnbArea .menemberBtnList li:nth-of-type(3) {
  position: relative;
}

.lnbArea .menemberBtnList .dropdownIcon {
  position: absolute;
  right: 12px;
  top: 8px;
  width: 18px;
  height: 18px;
}

.bottomMobileHeader > ul {
  display: flex;
  padding: 20px;
  justify-content: space-between;
}
.bottomMobileHeader > ul > li > a {
  color: #586063;
  font-size: 16px;
  font-weight: 400;
}

/* 마이홈 드롭다운 css 추가 */
#myhomeMenu {
  display: none;
}

.myhomeMenu li.myhome-dep01 .subArea {
  margin-bottom: 20px;
}
.myhomeMenu li.myhome-dep01 .subArea strong {
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: #222;
}

.myhomeMenu li.myhome-dep01 .dep02  {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.myhomeMenu li.myhome-dep01 .dep02 li {
  padding: 20px 0 0;
}
.myhomeMenu li.myhome-dep01 .dep02 li a {
  font-weight: 400;
  font-size: 18px;
  color: #464646;
}

/* 모바일 ~ 패드 */
/* 1040px부터는 모바일 형태 UI*/
@media screen and (max-width: 1400px) {
  .wrapHeader {
    height: 81px;
  }
  .pcNav {
    display: none;
  }
  .header.topHeader{
    display: none;
  }
  .header.bottomHeader{
    padding: 0;
  }
  .header.bottomHeader .contNav {
    padding: 16px 20px;
  }
  .header.bottomHeader .contNav .headerLogo{
    width: 142px;
  }
  /* 가로 nav 숨김 */
  .header.bottomHeader .bottomHeaderList {
    display: none;
  }
  /* 헬프 데스크 숨김 */
  .header.bottomHeader .modalBtnList.noOpen li:nth-of-type(1) {
    display: none;
  }
  /* drawer 버튼 보임 */
  .header.bottomHeader .modalBtnList li:nth-of-type(3){
    display: block;
  }
  /* 체험하기 */
  .header.bottomHeader .modalBtnList {
    gap: 0;
  } 
  .header.bottomHeader .modalBtnList li {
    padding: 8px 12px;
  }
  .header.bottomHeader .modalBtnList li button {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
  }
  .header.bottomHeader .modalBtnList li:nth-of-type(2){
    background: #2C3785;
  }
  .header.bottomHeader .modalBtnList li:nth-of-type(2) button{
    color: #fff;
  }
  
}

@media screen and (max-width: 398px) {
  .header.bottomHeader .modalBtnList li button {
    font-size: 12px;
  }

  /* .header.bottomHeader .modalBtnList li {
    padding: 10px 10px;
  } */

  /* .btn.drawer {
    width: 15px;
    height: 32px;
  } */
}
@media screen and (max-width: 368px) {
  .header.bottomHeader .modalBtnList li {
    padding: 10px 7px;
  }
}
