/* -------------------------------------------------------- */
/* -------------------- header ---------------------------- */
/* -------------------------------------------------------- */
#header {
  width: 100%;
  position: fixed;
  top: 4rem;
  z-index: 9995;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1024px) {
  #header {
    top: 3rem;
  }
}
#header .header_inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1920px;
  width: 90%;
  align-items: center;
}
#header .header_inner .logo {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s ease, visibility 0s 0.4s, pointer-events 0s 0.4s;
}
@media (max-width: 1024px) {
  #header .header_inner .logo {
    margin: 0 auto;
  }
}
#header .header_inner .logo a {
  display: block;
  width: 12.4rem;
  height: 9rem;
  background: url("../images/common/logo.png") no-repeat center;
  background-size: contain;
}
@media (max-width: 1024px) {
  #header .header_inner .logo a {
    width: 6.3rem;
    height: 5.2rem;
    background-size: contain;
  }
}
#header .header_inner .h-right {
  display: flex;
}

#header .header_inner .h-right .reserv-btn {
  font-size: 1.7rem;
  color: #fff;
  font-family: 'InriaSerif', serif;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  #header .header_inner .h-right .reserv-btn {
    display: none;
  }
}

#header .header_inner .h-right .logo {
 display: none;
}
@media (max-width: 1024px) {
  #header .header_inner .h-right .logo {
 display: none;
  }
}

#header .header_inner .h-right .hrv-btn {
 display:none;
  font-size: 1.7rem;
  color: #fff;
  font-family: 'InriaSerif', serif;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  #header .header_inner .h-right .hrv-btn {
    display: none;
	line-height: 23px;
  }
}


#header .header_inner .h-right .menu-btn {
  font-size: 1.7rem;
  color: #fff;
  font-family: 'InriaSerif', serif;
  margin-left: 4.3rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  #header .header_inner .h-right .menu-btn {
    display: none;
  }
}
#header .header_inner .h-right .menu-btn:after {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  background: url("../images/common/menu_btn.png") no-repeat center;
  background-size: contain;
  display: block;
  margin-left: 1.6rem;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  #header .header_inner .h-right .menu-btn:after {
    display: none;
  }
}
#header.menu-open {
  z-index: 99999;
}
@media (max-width: 1024px) {
  #header.menu-open {
    border-bottom: none !important;
  }
}
#header.menu-open .logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s 0.2s, pointer-events 0s 0.2s;
}
#header.menu-open .h-right .hrv-btn,
#header.menu-open .h-right .menu-btn {
  color: #000 !important;
}
#header.menu-open .h-right .menu-btn:after {
  background: url("../images/common/menu_btn_close.png") no-repeat center !important;
  background-size: auto !important;
}
@media (max-width: 1024px) {
  #header.menu-open .h-right .menu-btn:after {
    display: block;
  }
}
@media (max-width: 1024px) {
  #header.menu-open .h-right .menu-btn {
    margin-left: auto;
  }
}
@media (max-width: 1024px) {
  #header.menu-open .h-right .hrv-btn {
    display: none !important;
  }
}
#header:not(.menu-open) .logo {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.7s 0.3s ease-in-out, visibility 0s 0.3s, pointer-events 0s 0.3s;
}
#header.active {
  background: #fff;
  top: 0;
  border-bottom: 1px solid #eaeaea;
}
@media (max-width: 1024px) {
  #header.active .header_inner {
    justify-content: space-between;
    padding: 2rem 3rem 1.2rem 3rem;
    width: 100%;
  }
}
#header.active .logo a {
  background: url("../images/common/logo-bk.png") no-repeat center;
  background-size: 8rem auto;
}
@media (max-width: 1024px) {
  #header.active .logo a{
    display: none; 
  }
}
@media (max-width: 1024px) {
  #header.active .h-right {
    width: 100%;
    justify-content: space-between;
  }
}

#header.active .h-right .reserv-btn,
#header.active .h-right .menu-btn {
  color: #000 !important;
}
#header.active .h-right .hrv-btn{
  display:none;
}
@media (max-width: 1024px) {
  #header.active .h-right .hrv-btn,
  #header.active .h-right .menu-btn {
    color:#000;
    display: flex;
    align-items: center;
	        font-size: 1.5rem;
        margin-bottom: 5px;
  }
    #header.active .h-right .hrv-btn{
	margin-right: 4.3rem;
	}
}

#header.active .header_inner .h-right .logo {
 display: none;
}
@media (max-width: 1024px) {
  #header.active .header_inner .h-right .logo {
width:100px;
height:27px;
  transition: all 0.3s ease-in-out;
  }
  }

#header.active .h-right .menu-btn:after {
  background: url("../images/common/menu_btn_bk.png") no-repeat center;
  background-size: contain;
}

.menu {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9996;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
@media (max-width: 1024px) {
  .menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.menu .menu-inner {
  height: 100%;
  width: 100%;
}
.menu .menu-inner .menu-content {
  width: 100%;
  height: calc(100% - 25vh);
  display: flex;
  align-items: center;
}
.menu .menu-inner .menu-content .depth1 {
  max-width: 1470px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
}
.menu .menu-inner .menu-content .depth1 .depth2 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.menu .menu-inner .menu-content .depth1 .depth2 span {
  color: #414141;
  font-family: 'InriaSerif', serif;
  font-size: 3.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  display: flex;
  align-items: center;
}
.menu .menu-inner .menu-content .depth1 .depth2 ul {
  margin-top: 2.1rem;
}
.menu .menu-inner .menu-content .depth1 .depth2 ul li a {
  color: #9F9F9F;
  font-family: SUIT;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  padding: 0.9rem 0;
  display: block;
}
.menu .menu-inner .menu-bottom {
  height: 25vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  background: url("../images/common/header_bg.png") no-repeat center;
  background-size: cover;
}
.menu .menu-inner .menu-bottom .big-txt {
  color: #979797;
  font-family: 'InriaSerif', serif;
  font-size: 25.9rem;
  font-style: italic;
  font-weight: 400;
  line-height: 78%;
  letter-spacing: 4.183px;
  position: absolute;
  left: -13px;
  bottom: 0;
  transition: opacity 1.5s 0.5s ease-in-out;
  opacity: 0;
}
.menu .menu-inner .menu-bottom .contact {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.menu .menu-inner .menu-bottom .contact .txt {
  color: #FFF;
  text-align: right;
  font-family: SUIT;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.66;
  display: block;
}
.menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu.open .depth1 .depth2 {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.menu.open .depth1 .depth2:nth-child(1) {
  transition-delay: 0.2s !important;
}
.menu.open .depth1 .depth2:nth-child(2) {
  transition-delay: 0.3s !important;
}
.menu.open .depth1 .depth2:nth-child(3) {
  transition-delay: 0.4s !important;
}
.menu.open .depth1 .depth2:nth-child(4) {
  transition-delay: 0.5s !important;
}
.menu.open .depth1 .depth2:nth-child(5) {
  transition-delay: 0.6s !important;
}
.menu.open .depth1 .depth2:nth-child(6) {
  transition-delay: 0.7s !important;
}
.menu.open .depth1 .depth2:nth-child(7) {
  transition-delay: 0.8s !important;
}
.menu.open .menu-bottom .big-txt {
  opacity: 10%;
}

.menu-mobile {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9996;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.menu-mobile .menu-inner {
  height: 100%;
  width: 100%;
}
.menu-mobile .menu-inner .menu-content {
  width: 100%;
  height: calc(100% - 13.8rem);
  display: flex;
  align-items: center;
  overflow-y: auto;
}
.menu-mobile .menu-inner .menu-content .depth1 {
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 3.8rem;
  margin: 0 auto;
  padding-top: 9.3rem;
  padding-bottom: 5rem;
}
.menu-mobile .menu-inner .menu-content .depth1 .depth2 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.menu-mobile .menu-inner .menu-content .depth1 .depth2 span {
  color: #414141;
  font-family: 'InriaSerif', serif;
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.menu-mobile .menu-inner .menu-content .depth1 .depth2 span:after {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url("../images/common/menu_plus.png") no-repeat center;
  background-size: auto;
  display: inline-block;
  margin-left: 1.6rem;
}
.menu-mobile .menu-inner .menu-content .depth1 .depth2 ul {
  margin-top: 2.1rem;
  display: none;
}
.menu-mobile .menu-inner .menu-content .depth1 .depth2 ul li a {
  color: #7B7B7B;
  text-align: center;
  font-family: SUIT;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.35px;
  padding: 1.1rem 0;
  display: block;
}
.menu-mobile .menu-inner .menu-bottom {
  height: 13.8rem;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  background: url("../images/common/header_bg.png") no-repeat center;
  background-size: cover;
}
.menu-mobile .menu-inner .menu-bottom .big-txt {
  color: #979797;
  font-family: 'InriaSerif', serif;
  font-size: 10rem;
  font-style: italic;
  font-weight: 400;
  line-height: 78%;
  letter-spacing: 4.183px;
  position: absolute;
  left: -13px;
  bottom: 0;
  transition: opacity 1.5s 0.5s ease-in-out;
  opacity: 0;
}
.menu-mobile .menu-inner .menu-bottom .contact {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.menu-mobile .menu-inner .menu-bottom .contact .txt {
  color: #FFF;
  text-align: center;
  font-family: "suit";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.35px;
  display: block;
}
.menu-mobile .menu-inner .menu-bottom .contact .txt + .txt {
  margin-top: 0.8rem;
}
.menu-mobile.open {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .menu-mobile.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.menu-mobile.open .depth1 .depth2 {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.menu-mobile.open .depth1 .depth2:nth-child(1) {
  transition-delay: 0.2s !important;
}
.menu-mobile.open .depth1 .depth2:nth-child(2) {
  transition-delay: 0.3s !important;
}
.menu-mobile.open .depth1 .depth2:nth-child(3) {
  transition-delay: 0.4s !important;
}
.menu-mobile.open .depth1 .depth2:nth-child(4) {
  transition-delay: 0.5s !important;
}
.menu-mobile.open .depth1 .depth2:nth-child(5) {
  transition-delay: 0.6s !important;
}
.menu-mobile.open .depth1 .depth2:nth-child(6) {
  transition-delay: 0.7s !important;
}
.menu-mobile.open .depth1 .depth2:nth-child(7) {
  transition-delay: 0.8s !important;
}
.menu-mobile.open .menu-bottom .big-txt {
  opacity: 10%;
}

/* -------------------------------------------------------- */
/* -------------------- footer ---------------------------- */
/* -------------------------------------------------------- */
.footer-bg {
  position: relative;
  width: 100%;
  height: 44.5vh;
  overflow: hidden;
}
#story .footer-bg{display:none;}

@media (max-width: 1024px) {
  .footer-bg {
    height: 17.8rem;
  }
}
.footer-bg .bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.footer-bg .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../images/common/107.jpg") no-repeat center;
  background-size: cover;
  z-index: -1;
}

#footer {
  background: #fff;
}
#footer .inner {
  padding: 14rem 0 33rem 0;
  max-width: 85%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #footer .inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 7.3rem 0 10rem 0;
    max-width: 100%;
  }
   #footer .inner .left {
    max-width: 84%;
  }
}
#footer .left .tel {
  color: #5F6A2B;
  font-family: Pretendard;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.85px;
}
@media (max-width: 1024px) {
  #footer .left .tel {
    font-size: 1.7rem;
    text-align: center;
    display: block;
  }
}
#footer .left address {
  margin-top: 9.1rem;
}
@media (max-width: 1024px) {
  #footer .left address {
    margin-top: 3.8rem;
    text-align: center;
  }
   #footer .left address.hide-1024 {
    display:none;
  }
}
#footer .left address span {
  color: #000;
  font-family: Pretendard;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.4px;
  display: block;
  margin-top: 0.5rem;
}
@media (max-width: 1024px) {
  #footer .left address span {
    font-size: 1.4rem;
	line-height:1.7;
  }
}
#footer .left .copy {
  margin-top: 10.7rem;
}
@media (max-width: 1024px) {
  #footer .left .copy {
    margin-top: 3.5rem;
  }
}
#footer .left .copy .txt {
  color: #9D9D9D;
  font-family: Pretendard;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.71;
  letter-spacing: -0.35px;
  display: block;
}
@media (max-width: 1024px) {
  #footer .left .copy .txt {
    font-size: 1.2rem;
    text-align: center;
  }
}
#footer .privacy {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 1024px) {
  #footer .privacy {
	display: flex !important;
    margin-top: 6.7rem;
    justify-content: center;
  }
}
#footer .privacy li {
  display: flex;
  align-items: center;
}
#footer .privacy li:before {
  content: "";
  width: 1px;
  height: 15px;
  background: #000;
  margin: 0 1rem;
  display: block;
}
#footer .privacy li:nth-of-type(1):before {
  display: none;
}
#footer .privacy li a {
  color: #000;
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.4px;
}
@media (max-width: 1024px) {
  #footer .privacy li a {
    font-size: 1.4rem;
  }
}
#footer .privacy li:nth-of-type(1) a {
  font-weight: 700;
}
#footer .right .f-nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 9.5rem;
}
@media (max-width: 1024px) {
  #footer .right .f-nav {
    display: none;
  }
}
#footer .right .f-nav li a {
  color: #5F6A2B;
  text-align: right;
  font-family: 'InriaSerif', serif;
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: -1px;
  display: block;
}
#footer .bottom-txt {
  color: #a8b18d;
  font-family: 'InriaSerif', serif;
  font-size: 19vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -23.071px;
  text-transform: uppercase;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -9vw;
  transform: translate(-50%, 0);
}
@media (max-width: 1024px) {
  #footer .bottom-txt {
    font-size: 10rem;
    bottom: -5rem;
    letter-spacing: -11px;
  }
}

/* common */
@media (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
}

.mobile-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .mobile-only {
    display: block !important;
  }
}



/* 탭 */
.tab {width: 100%;background-color: #f8f8f9;margin-bottom: 150px;}
.tab ul {width: 80%;margin: 0 auto;display: flex;justify-content: flex-start;padding: 40px 0;}
.tab ul li {margin-right: 50px;}
.tab ul li button {font-size: 20px;color: #adadad;}
.tab ul li.active button {color: #000000;text-decoration: underline;text-underline-offset: 15px;font-weight: bold;}
.tab-content .tab-panel {
  display: none;
}
.tab-content .tab-panel.active {
  display: block;
}
/* 실시간 달력 - 25/10/29 현진 */
.tab-content .tab-panel .cal-live {
  max-width:1200px;
  width:100%;
}
@media (max-width: 1024px) {
    .tab {margin-bottom: 70px;}
    .tab ul {overflow-x:auto;padding: 3rem 0;}
    .tab ul li {margin-right: 0;flex: none;justify-content:center;}
	.tab ul li:first-child {margin-right: 2.2rem;}
    .tab ul li button {font-size: 1.6rem;}
    .tab ul li.active button {text-underline-offset: 5px;}
}
@media (max-width: 768px) {
    #reserve .list_wrap {
    padding: 0 0 150px;
    overflow: hidden;
	}
}

.top-btn {
  position: fixed;
  right: 2rem;
  bottom: 1rem;
  z-index: 10000;
  display: none;
}
.top-btn button {
  background: url('../images/common/btn-top.png') no-repeat center;
  background-size: contain;
  width: 5.8rem;
  height: 5.8rem;
}