/* 폰트 */
/* 프리텐다드 */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

/* 초기화 코드 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul, li {
  list-style: none;
}
a {
  text-decoration: none;
}
body {
  width: 100%;
  font-family: "Pretendard Variable",'Pretendard', Pretendard, 'Noto Sans KR', -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
body::-webkit-scrollbar {
  background-color: #d6d6d6;
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--subColor);
}
img {
  width: 100%;
}
img:not([src]),
img[src=""] {
  display: none;
}
input {
  outline: none;
  font-family: 'Pretendard', "Pretendard Variable";
}
textarea {
  outline: none;
  resize: none;
  font-family: 'Pretendard', "Pretendard Variable";
}
select {
  outline: none;
  font-family: 'Pretendard', "Pretendard Variable";
}

/* 색상변수 */
:root {
  --mainColor: #08408C;
  --subColor: #695D52;
  --anColor: #181F48;

  --hoverColor: #ff9900;
  --hoverColorB: #04306e;
  --hoverColorY: #ffbb00;

  /* 기본 */
  --whiteColor: #fff;
  --blackColor: #000;

  --blueTxt: #C1CEDD;
  --blueHover: #7e91c5;

  --blackBtn: #150E00;

  /* 텍스트 색상 */
  --titColor: #222;
  --txtColor: #333;
  --txt6Color: #666;
  --txt9Color: #999;
  --txtBrColor: #9C8F83;
  --txtBDColor: #695D52;
  --txtGColor: #B6B6B6;
  
  --redColor: #ED2024;
  --orangeColor: #ff7b00;
  --blueColor: #4B3EFC;

  --menuColor: #08408C;

  /* 배경 */
  --backColor1: #E7E7E7;
  --backColor2: #F6F6F6;
  --backColor3: #FFF8EA;

  --tableBack: #F6F6F6;
  --borderLine: #D4D8DD;

  --borderLineB: #9C8F834D;

  --excelBack: #107C41;

  --blueBtn: #1D2C82;

  --footColor: #00183A;
}

/* 공통 요소 */
/* 페이지별 전체 영역 */
.frame {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* 헤더 */
header {
  width: 95%;
  height: 60px;
  background-color: var(--whiteColor);
  margin: 20px auto 0;
  border-radius: 50px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 9;
}

.headerPC {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 0 15px 0 40px;
}

/* 로고 */
.logo {
  width: 140px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hoverOn {
  display: none;
}


/* 메뉴 영역 */

.headerMenus {
  display: flex;
  gap: 10px;
}

.headerMenu {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px
}
.headerMenu > a {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--titColor);
  font-weight: 700;
  font-size: 17px;
}
.headerMenu:hover > a {
  color: #08408C !important;
}

.headerMenu:hover .subMenus {
  display: block;
}

.subMenus {
  background-color: var(--whiteColor);
  border-radius: 10px;
  display: none;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
.subMenu {
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.subMenu > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--titColor);
  font-weight: 600;
}

.subMenu:hover > a {
  color: var(--mainColor);
}

/* 추가항목 */
.headerSide {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

/* 알림 영역 */
.headerAlarm {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.headerAlarm:hover > svg {
  fill: var(--mainColor) !important;
  transition: 0.2s;
}

/* 알림 표시 */
.alarmNumBox {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--redColor);
  width: 10px;
  height: 10px;
  border-radius: 20px;
  display: flex;
  /* display: none; */ /* 알림이 없을 경우 display:none, 있을 경우 display: flex */
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--whiteColor);
  font-weight: 500;
}

/* 로그인/마이페이지 영역 */
.headerMyMenu {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.headerMyMenu:hover > svg {
  fill: var(--mainColor) !important;
  transition: 0.2s;
}

/* 전체 메뉴 아이콘 */
.headerAllMenus {
  width: 40px;
  height: 40px;
  background-color: var(--blackColor);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


/* 판매관리자일 경우에만 표출되는 메뉴 */
.orderAdminMenu {
  display: none !important; /* 판매관리자로 로그인 했을 때 display: block; */
}

/* 호텔관리자일 경우에만 표출되는 메뉴 */
.hotelAdminMenu {
  display: none;
}

/* 전체 메뉴 */
.allMenuDiv {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: var(--whiteColor);
  display: none;
  flex-direction: column;
}

/* 로고 / X 버튼 */
.allMenuTop {
  width: 95%;
  height: 60px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0 40px;
}

.allMenuClose {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* 임시로 메뉴 삭제 */
.yetMenu {
  display: none !important;
}

/* 메뉴 영역 */
.allMenus {
  margin: 50px auto 0;
  flex: 1;
}

.allMenuUl {
  height: 80%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.allMenuLi {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.allMenuBox {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.allMenuBox:hover > a {
  color: var(--mainColor);
}


.allMenuBox > a {
  width: 150px;
  font-size: 25px;
  color: var(--titColor);
  flex-shrink: 0;
  font-weight: 600;
}

/* 장식 */
.allMenuLiDec {
  width: 500px;
  position: relative;
  top: 0;
  opacity: 0;
}

.allMenuBox:hover .allMenuLiDec {
  animation-name: decMove;
  animation-duration: 1s;
  opacity: 1;
}

@keyframes decMove {
  0% {
    opacity: 1;
    left: -10%
  } 
  100% {
    opacity: 1;
    left: 0;
  }
}

/* 서브메뉴 */
.allSubMenu {
  display: flex;
  align-items: center;
  gap: 50px;
}
.allSubMenu > li {
  font-size: 17px;
}
.allSubMenu > li > a {
  color: var(--txt6Color);
  font-weight: 500;
}

.allSubMenu > li:hover > a {
  color: var(--mainColor);
}

/* COPY */
.allMenuCopy {
  width: 100%;
  line-height: 45px;
  text-align: center;
  border-top: 1px solid var(--subColor);
  color: var(--subColor);
  font-size: 14px;
}

/* 푸터 */
footer {
  background-color: var(--footColor);
  display: flex;
  align-items: center;
  padding: 0 0 10px 0;
}
.footInner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* 푸터 상단 */
.footTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #C1CEDD;
  padding: 20px 280px 10px 280px;
}

.footMenus {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
}
.footMenus a {
  color: #C1CEDD;
  font-weight: 500;
}

/* 푸터 로고 */
.logoF {
  width: 120px;
}

.footBottom {
  padding: 20px 280px 0 280px;
}
.footBottomTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footTxts {
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 10px;
  color: var(--blueTxt);
  flex-wrap: wrap;
}

.footBMenus {
  display: flex;
  gap: 10px;
  font-size: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.footBMenus a {
  color: var(--blueTxt);
  font-weight: 500;
}

.footCopy {
  text-align: center;
  line-height: 60px;
  font-size: 13px;
  color: #C1CEDD;
}

.footTxtDiv {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* 인증마크 */
.authList {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
}

.authMark {
  display: block;
  width: 50px;
  height: 50px;
}

/* 반응형 */
@media screen and (max-width: 1600px) { 
  
  /* 헤더 */
  .headerMenu {
    width: 130px;
  }
  .headerMenu > a {
    font-size: 16px;
  }
  .subMenu {
    width: 130px;
    height: 45px;
    font-size: 15px;
  }

  /* 푸터 */
  .footTop {
    padding: 10px 150px
  }
  .footBottom {
    padding: 10px 150px 0 150px;
  }

  /* 전체 메뉴 */
  .allMenuBox > a {
    font-size: 20px;
  }
  .allMenuLi {
    gap: 20px;
  }
  .allSubMenu > li {
    font-size: 15px;
  }

  .allMenuCopy {
    font-size: 13px;
  }


}

@media screen and (max-width: 1440px) { 

  /* 헤더 */
  .headerMenu {
    width: 120px;
  }
  .subMenu {
    width: 120px;
    font-size: 14px;
  }

  .logo {
    width: 120px;
  }

  .headerSide {
    gap: 15px
  }

  .headerAlarm {
    width: 24px;
    height: 24px;
  }
  .headerMyMenu {
    width: 24px;
    height: 24px;
  }
  .headerAllMenus {
    width: 35px;
    height: 35px;
  }

  /* 푸터 */
  .footMenus {
    font-size: 14px;
  }
  .logoF {
    width: 110px;
  }

  .footCopy {
    line-height: 50px;
    font-size: 12px;
  }
  .footTxts {
    font-size: 12px;
  }

  .footTop {
    padding: 10px 100px
  }
  .footBottom {
    padding: 10px 100px 0 100px;
  }
  .footBMenus {
    font-size: 13px;
  }

}

@media screen and (max-width: 1300px) { 

  /* 헤더 */
  header {
    height: 55px;
  }
  .headerMenu > a {
    height: 55px;
  }

  .headerMenu {
    width: 110px;
  }
  .subMenu {
    width: 110px;
    height: 40px;
  }

  /* 전체 메뉴 */
  .allMenuTop {
    height: 55px;
  }

}

@media screen and (max-width: 1200px) { 

  /* 헤더 */
  .headerNav {
    display: none;
  }

  .footTop {
    padding: 10px 50px;
  }
  /* 푸터 */
  .footBottom {
    padding: 20px 50px 0 50px;
  }
  .footBottomTop {
    flex-direction: column;
    gap: 15px;
  }

  .footCopy {
    line-height: 40px;
  }
  .logoF {
    width: 100px;
  }

}


@media screen and (max-width: 1000px) { 

  /* 푸터 */
  .footTxts {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footTxtDiv {
    justify-content: center;
    gap: 8px;
  }

}

@media screen and (max-width: 800px) { 
  
  /* 전체메뉴 */
  .allMenuTop {
    padding: 0 15px;
  }
  .allMenuLiDec {
    width: 80%;
    opacity: 1;
  }
  .allMenus {
    padding: 0 40px;
  }
  .allMenuUl {
    height: 80%;
  }
  .allMenuBox > a {
    font-size: 17px;
  }
  .allSubMenu > li {
    font-size: 14px;
  }

  .allMenuCopy {
    font-size: 11px;
    line-height: 35px;
  }
}

@media screen and (max-width: 600px) {

  /* 헤더 */
  .headerPC {
    padding: 0 15px
  }
  .logo {
    width: 110px;
  }
  .headerSide {
    gap: 10px;
  }

  /* 푸터 */
  .footTxts {
    grid-template-columns: 1fr;
  }
  .logoF {
    display: none;
  }
  .footMenus {
    gap: 10px;
    font-size: 14px;
  }

  .footTop {
    padding: 12px 0;
    justify-content: center;
  }

  .footCopy {
    font-size: 11px;
    line-height: normal;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footBottom { 
    padding: 20px 20px 0 20px;
  }

  .footBMenus {
    font-size: 12px;
  }

  /* 전체메뉴 */
  .allMenuBox > a {
    width: 100px;
    font-size: 16px;
  }
  .allMenus {
    margin: 0 auto;
    padding: 6% 40px 0 40px;
  }

  .allSubMenu > li {
    font-size: 13px;
  }

  .authList {
    margin: 10px 0 0 0;
    justify-content: center
  }

}