body {
  background: #11100e;
  color: #fff;
}

.inner {
  max-width: 1600px;
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 10rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #11100e;
  z-index: 99;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
header .logo {
  width: 27.2rem;
}
header .logo img {
  width: 100%;
}
header.hidden {
  transform: translateY(-100%);
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 7rem;
}
header nav ul li a {
  font-size: 2rem;
  font-weight: 500;
}
header .btn-reserve {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.6rem 2rem;
  border: 1px solid #fff;
  border-radius: 5rem;
}

footer {
  background: #000;
  padding: 7rem 0 5rem;
}
footer .top-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 3rem;
}
footer .top-wrap .info-wrap img {
  margin-bottom: 3rem;
}
footer .top-wrap .info-wrap ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 680px;
  gap: 1.6rem 3rem;
  padding: 2rem 0;
}
footer .top-wrap .info-wrap ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
footer .top-wrap .info-wrap ul li span {
  font-size: 1.7rem;
  font-weight: 600;
}
footer .top-wrap .info-wrap ul li p {
  font-size: 1.7rem;
}
footer .top-wrap .contact-wrap span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}
footer .top-wrap .contact-wrap a {
  font-size: 5rem;
  font-weight: 600;
  white-space: nowrap;
}
footer .btm-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
footer .btm-wrap .policy-box {
  display: flex;
  align-items: center;
  gap: 3rem;
}
footer .btm-wrap .policy-box button {
  font-size: 1.7rem;
}
footer .btm-wrap .policy-box button.policy {
  font-weight: 600;
}
footer .btm-wrap .copyright {
  font-size: 1.7rem;
}

.floating-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: fixed;
  bottom: 18rem;
  right: 3rem;
  z-index: 90;
}
.floating-wrap button {
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 100%;
}
.floating-wrap button.reserve {
  background: #c3a058;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.floating-wrap button.reserve::before, .floating-wrap button.reserve::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100%;
  background: #c3a058;
  opacity: 0.5;
  animation: reservePulse 2s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
.floating-wrap button.reserve::after {
  animation-delay: 0.7s;
}

@keyframes reservePulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
.modal-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #000;
  z-index: 999;
}
.modal-wrap .modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 500px;
}
.modal-wrap .modal-container .title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
  border-bottom: 1px solid #ddd;
}
.modal-wrap .modal-container .title-wrap h4 {
  font-size: 2rem;
  font-weight: 600;
}
.modal-wrap .modal-container .title-wrap img {
  width: 1.6rem;
}
.modal-wrap .modal-container .contents-wrap {
  padding: 3rem;
}
.modal-wrap .modal-container .contents-wrap .date-wrap {
  display: flex;
  gap: 2rem;
}
.modal-wrap .modal-container .contents-wrap .date-wrap .box {
  width: 100%;
}
.modal-wrap .modal-container .contents-wrap .date-wrap select {
  background: #fff url("/_img/arrow-down2.png") no-repeat calc(100% - 2rem) 50%/1.1rem;
}
.modal-wrap .modal-container .contents-wrap ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.modal-wrap .modal-container .contents-wrap ul li label {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.modal-wrap .modal-container .contents-wrap ul li input,
.modal-wrap .modal-container .contents-wrap ul li select {
  width: 100%;
  font-size: 1.8rem;
  color: #111;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.4rem;
  padding: 1.8rem 2rem;
}
.modal-wrap .modal-container .contents-wrap ul .btn-wrap {
  display: flex;
  gap: 2rem;
}
.modal-wrap .modal-container .contents-wrap ul .btn-wrap button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  background: #2b2b2b;
  padding: 2rem 3rem;
  border-radius: 0.4rem;
  width: 100%;
}
.modal-wrap .modal-container .contents-wrap ul .btn-wrap button.reserve {
  background: #c3a058;
}
.modal-wrap .modal-container .contents-wrap p {
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: -1px;
}

.policy-modal .modal-container {
  width: 90%;
  max-width: 900px;
}
.policy-modal .modal-container .contents-wrap {
  height: 60dvh;
  overflow: auto;
}
.policy-modal .modal-container .contents-wrap::-webkit-scrollbar {
  width: 5px;
}
.policy-modal .modal-container .contents-wrap::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}
.policy-modal .modal-container .contents-wrap::-webkit-scrollbar-track {
  background: #ccc;
}

.password-modal .modal-container {
  width: 350px;
}
.password-modal .modal-container input[type=password] {
  border: 1px solid #ddd;
  width: 100%;
  font-size: 1.8rem;
  padding: 1.5rem;
}
.password-modal .modal-container button.confirm {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  background: #11100e;
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 0.6rem;
  margin: 1.5rem auto 0;
}

@media (max-width: 1650px) {
  header {
    padding: 3rem 2rem;
  }
  .inner {
    padding: 0 2rem;
  }
}
@media (max-width: 1280px) {
  header {
    justify-content: flex-start;
  }
  header nav {
    margin-left: auto;
    margin-right: 3rem;
  }
  header nav ul {
    gap: 3.5rem;
  }
  footer .top-wrap .info-wrap ul {
    max-width: 580px;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 9px;
  }
  footer .top-wrap .contact-wrap a {
    font-size: 4rem;
  }
  footer .top-wrap .info-wrap ul {
    max-width: 450px;
  }
}
.btn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 4.8rem;
  height: 4.8rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 2rem;
  flex-shrink: 0;
}
.btn-hamburger span {
  display: block;
  width: 3.2rem;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.btn-hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.btn-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.btn-hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #11100e;
  z-index: 98;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-nav.active {
  visibility: visible;
  opacity: 1;
}
.mobile-nav nav {
  display: flex;
  height: 100%;
  padding: 0 3rem;
  padding-top: 13rem;
}
.mobile-nav nav ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mobile-nav nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-nav nav ul li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-nav nav ul li a {
  display: block;
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
  padding: 3.5rem 1rem;
}

@media (max-width: 960px) {
  header nav {
    display: none;
  }
  .btn-hamburger {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
  header .btn-reserve {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 8px;
  }
  footer .top-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
  }
  footer .top-wrap .info-wrap ul {
    max-width: auto;
  }
  .floating-wrap {
    bottom: 5rem;
  }
}
@media (max-width: 540px) {
  .modal-wrap .modal-container {
    width: 90%;
  }
  .password-modal .modal-container {
    width: 60%;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 7px;
  }
  footer .btm-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
@media (max-width: 400px) {
  header .btn-reserve {
    display: none;
  }
  .btn-hamburger {
    margin-left: auto;
  }
  .modal-wrap .modal-container .title-wrap {
    padding: 2rem;
  }
  .modal-wrap .modal-container .contents-wrap {
    padding: 2rem;
  }
  .modal-wrap .modal-container .contents-wrap .date-wrap {
    flex-direction: column;
  }
  .modal-wrap .modal-container .contents-wrap ul .btn-wrap {
    flex-direction: column;
    gap: 1.2rem;
  }
}