:root {
  --font-large: 48px;
  --font-regular: 36px;
  --font-medium: 28px;
  --font-small: 22px;
  --font-xsmall: 20px;

  --font-montserrat: "Montserrat";
}
body {
  background: #f0f0f0;
}
.loading {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 399;
  background-color: #522b2b;
}
.loading_wrap {
  width: 120px;
}
.loading_wrap svg {
  width: 80px;
}
header {
  position: fixed;
  padding: 40px 0;
  top: 0;
  width: 100%;

  height: 60px;
  z-index: 10;
}
.header_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  width: 40px;
}

/* hero */
.hero {
  background: url("../imgs/bg_xlarge.jpg") no-repeat center/cover;
  height: 100vh;
  position: sticky;
  position: -webkit-sticky;
  transform: translate3d(0, 0, 0);
  top: 0;
}
.hero_contents {
  width: 100%;
  text-align: center;
}
.hero_contents h1 {
  font-size: var(--font-regular);
  color: white;
  font-weight: 700;
  margin-bottom: 36px;
  line-height: 180%;
}
.hero_contents h2 {
  font-size: var(--font-large);
  font-family: var(--font-montserrat);
  color: white;
  font-weight: 700;
}
.hero_btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  gap: 40px;
}
.hero_btn {
  width: 320px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  background: linear-gradient(to right, #54ffa7, #075e31, #075e31, #54ffa7);
  position: relative;
  cursor: pointer;
}
.hero_btn span {
  color: #54ffa7;
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font-montserrat);
}
.hero_btn:after {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 99px;
  background-color: black;
  content: "";
  z-index: 0;
}

/* slogan */
.slogan {
  height: 100vh;
  position: relative;
}
.slogan_bg {
  background: url("../imgs/kv_base_pc.jpg") no-repeat center/cover;
  width: 100%;
  height: 100%;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.slogan_contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}
.slogan_contents h3 {
  position: absolute;
  font-size: var(--font-medium);
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  opacity: 0;
}

/* alaram */
.alaram {
  overflow: hidden;
}
.alaram_title {
  text-align: center;
  margin-bottom: 60px;
}
.alaram_title h3 {
  font-size: var(--font-large);
  font-weight: 700;
  margin-bottom: 40px;
}

.alaram_title h4 {
  font-size: var(--font-xsmall);
  font-weight: 500;
  color: #666666;
}

.alaram_btn {
  width: 280px;
  height: 64px;
  border-radius: 99px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333333;
}
.alaram_btn span {
  font-weight: 700;
  font-size: 18px;
  color: white;
}
.alaram_contents {
  margin-top: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alaram_box {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background-color: white;
  overflow: hidden;
}
.alaram_box:first-child {
  transform: translate(50px, 0);
}
.alaram_box:last-child {
  transform: translate(-50px, 0);
}
.alaram_box-big {
  width: 480px;
  height: 480px;
  border: 5px solid #f0f0f0;
  z-index: 2;
}
.alaram_img {
  width: 65%;
  /* margin-top: 50px; */
  margin-top: 50px;
}
.inner {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.alaram_data {
  background-color: #333333;
  width: 100%;
  height: 77px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alaram_data span {
  /* font-size: var(--font-small); */
  font-size: var(--font-xsmall);
  display: inline-block;
  margin-bottom: 25px;
  /* margin-bottom: 15px; */
  color: #ffffff;
  font-weight: 700;
}
/* form */
.form {
  width: 100%;
  padding: 80px 0 40px 0;
  background-color: #333333;
  position: fixed;
  bottom: 0;
  z-index: 10;
  transform: translate(0, 100%);
  transition: all 0.3s;
}

.form.active {
  transform: translate(0, 0);
}
.form .container {
  position: relative;
  max-width: 620px;
}
.form_contents {
  position: relative;
}
.close {
  position: absolute;
  top: -50px;
  right: 10px;
  width: 20px;
  height: 16px;
  margin-left: auto;
  margin-bottom: 20px;
  cursor: pointer;
}
.close div {
  width: 100%;
  background-color: white;
  position: absolute;
  height: 3px;
  top: 50%;
  left: 50%;
}
.close div:first-child {
  transform: rotate(-45deg);
}
.close div:last-child {
  transform: rotate(45deg);
}
.form_contents form {
  display: flex;
  flex-direction: column;

  gap: 20px;
}
.form_list span {
  color: #ffffff;

  font-weight: 500;
  font-size: var(--font-xsmall);
}
.form_list {
  display: flex;

  align-items: center;
}
.form_list input {
  width: 320px;
  height: 32px;
  padding-left: 10px;
  outline: none;
}
.checkbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkbox label {
  display: flex;
  gap: 12px;
  align-items: center;
}
.checkbox input {
  width: 20px;
  height: 20px;
}
.checkbox span {
  font-weight: 400;
  font-size: 18px;
  color: #999999;
}
.checkbox .caution,
.checkbox .personal {
  font-size: 15px;
  cursor: pointer;
  color: #999999;
}
.reservation_btn {
  width: 280px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  background: #5c5c5c;
  border-radius: 71px;
  margin: 0 auto;
  margin-top: 60px;
}
.reservation_btn span {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;

  color: #999999;
}
.reservation_btn.active {
  background-color: #54ffa7;
}
.reservation_btn.active span {
  color: #333333;
}
/* footer */
footer {
  padding: 30px 0;
  background: #111111;
}
footer .copyright {
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
}
.br_mob {
  display: none;
}
.popup {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  width: 100%;
  height: 100vh;
  position: fixed;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 11;
}
.caution_popup.active,
.personal_popup.active {
  display: flex;
}
.popup_wrap {
  width: 100%;
  position: relative;
  max-width: 840px;
  padding: 50px 30px;
  /* background: url("../imgs/popup_bg.jpg") no-repeat center/cover; */
  background: #ffffff;
}
.popup_contents {
  width: 100%;
  overflow: auto;
  height: 400px;
}
.popup_contents::-webkit-scrollbar {
  width: 5px;
}
.popup_contents::-webkit-scrollbar-thumb {
  background-color: #666;
}
.popup_contents::-webkit-scrollbar-track {
  background-color: rgb(235, 235, 235);
}
.popup_close {
  top: 5px;
  right: 15px;
}
.popup_wrap ul {
  display: flex;
  flex-direction: column;
  padding: 25px;
  gap: 10px;
}
.popup_wrap span {
  font-size: 18px;
  color: #000000;
}
.popup_title h4 {
  text-align: center;
  color: #5c5c5c;
  font-size: var(--font-regular);
  margin-bottom: 24px;
}
.popup_title p {
  text-align: center;
  color: #5c5c5c;
  font-size: var(--font-xsmall);
  text-align: center;
  margin-bottom: 24px;
}
.popup_accept_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}
.popup_btn {
  width: 180px;
  height: 50px;
  background-color: #666;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}
.popup_reject {
  background-color: rgb(161, 68, 68);
}
.popup_btn span {
  color: #fff;
  font-weight: bold;
}
.popup_reject span {
  color: #ffffff;
  font-weight: bold;
}
.popup_contents_propose {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  margin-bottom: 30px;
  flex-direction: column;
}
.popup_contents_propose > div {
  border: 1px solid black;
  display: flex;
}
.popup_contents_propose > div:nth-child(2) {
  border-top: 0;
  border-bottom: 0;
}
.personal_popup_title {
  width: 30%;
  border-right: 1px solid black;
  background-color: #cfc9c4;
  padding: 10px;
}
.personal_popup_p {
  flex: 1;

  text-align: center;
  padding: 10px;
}

.product {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product > ul {
  display: flex;
  align-items: center;
}
.product > ul > li:not(:first-of-type) span {
  font-size: 20px;
}
.product > ul.product_notice {
  /* flex-direction: column; */
  align-items: flex-start;
  margin-top: 30px;
}
.product_title {
  width: 300px;
  text-align: left;
}
.product_title span {
  border-radius: 20px;
  font-size: 22px;
  font-weight: 500;
  /* background-color: #333333;
  display: inline-block;
  max-width: 175px;
  width: 100%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center; */
}
.product > ul > ul {
  display: flex;
  margin-top: 15px;
  flex-direction: column;
  gap: 5px;
}
.product > ul > ul li {
  text-align: left;
}
.product > ul > ul li span {
  font-size: 18px;
  font-weight: 300;
}
@media all and (max-width: 768px) {
  .br_pc {
    display: none;
  }
  .br_mob {
    display: block;
  }
  :root {
    --font-large: 32px;
    --font-regular: 28px;
    --font-medium: 24px;
    --font-xsmall: 14px;

    --font-small: 22px;
  }
  header {
    padding: 20px 0;
  }
  .logo {
    width: 28px;
  }
  .hero_contents h1 {
    margin-bottom: 5px;
  }
  .hero_btns {
    margin-top: 60px;
    flex-direction: column;
    gap: 16px;
  }
  .slogan_bg {
    background: url("../imgs/kv_base_sp.jpg") no-repeat center/cover;
  }
  .alaram_contents {
    margin-top: 40px;
    flex-direction: column;
    gap: 40px;
  }
  .alaram_box:first-child {
    transform: translate(0px, 0);
  }
  .alaram_box:last-child {
    transform: translate(0px, 0);
  }
  .alaram_box {
    width: 328px;
    height: 328px;
  }
  .alaram_box-big {
    width: 328px;
    height: 328px;
    border: none;
  }
  .alaram_img {
    margin-top: 0;
    width: 220px;
    transform: translate(0, 20px);
  }
  .form {
    padding: 40px 0;
    border-radius: 20px 20px 0px 0px;
  }
  .form_list input {
    width: 213px;
    height: 32px;
    padding-left: 10px;
    outline: none;
  }

}
  .checkbox input {
    width: 20px;
    height: 20px;
  }
  .checkbox span {
    font-size: 12px;
  }
  .reservation_btn {
    margin-top: 40px;
  }
  .form_close {
    top: -30px;
    right: 20px;
  }
  .product > ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .popup_wrap {
    padding: 30px 10px;
  }
  .popup_wrap span {
    font-size: 16px;
  }
  .personal_popup_title {
    width: 100%;
  }
  .popup_contents_propose {
    max-width: 100%;
  }
  .popup_contents_propose > div {
    flex-direction: column;
  }
  .personal_popup_p {
    text-align: left;
  }
  .popup_wrap ul {
    padding: 0;
  }
  .product > ul > li {
    text-align: left;
  }
  footer .copyright {
    font-size: 10px;
  }
}
