.preopen-section {
  position: relative;
  max-width: 1760px;
  margin: 0 auto;
}
.preopen-section .preopen-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.preopen-section .preopen-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20vw;
  display: flex;
  align-items: center;
}
.preopen-section .preopen-wrap .preopen-box {
  width: 50%;
}
.preopen-section .preopen-wrap .preopen-form-wrap .input-h-email {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
.preopen-section .preopen-wrap .preopen-form-wrap form {
  display: block;
}
.preopen-section .preopen-wrap .preopen-form-wrap .form-box + .form-box {
  margin-top: 10px;
}
.preopen-section .preopen-wrap .preopen-form-wrap .form-box .input-text {
  display: block;
  width: 100%;
  height: 3.3vw;
  min-height: 35px;
  max-height: 50px;
  padding: 0 35px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: inherit;
  font-weight: 400;
  border-radius: 15px;
  transition: border-color 0.3s;
}
.preopen-section .preopen-wrap .preopen-form-wrap .form-box .input-text:focus {
  border-color: #f1b477;
}
.preopen-section .preopen-wrap .preopen-form-wrap .form-box + .btn-box {
  margin-top: 10px;
}
.preopen-section .preopen-wrap .preopen-form-wrap .btn-box .btn-qc-submit {
  display: flex;
  width: 100%;
  height: 3.3vw;
  min-height: 35px;
  max-height: 50px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #a6835b;
  border-radius: 15px;
  transition: background-color 0.3s;
}

/* ---------------media screen START--------------- */
@media screen and (min-width: 991.1px) {
  .preopen-section .preopen-img.preopen-img-mobile {
    display: none;
  }
  .preopen-section .preopen-wrap .preopen-form-wrap .form-box .input-text:hover {
    border-color: #f1b477;
  }
  .preopen-section .preopen-wrap .preopen-form-wrap .btn-box .btn-qc-submit:hover {
    background-color: #916f49;
  }
}
@media screen and (max-width: 1350px) {
  .preopen-section .preopen-wrap .preopen-form-wrap .form-box .input-text {
    padding: 0 32px;
    border-radius: 13.5px;
  }
  .preopen-section .preopen-wrap .preopen-form-wrap .btn-box .btn-qc-submit {
    border-radius: 13.5px;
  }
}
@media screen and (max-width: 1150px) {
  .preopen-section .preopen-wrap .preopen-form-wrap .form-box .input-text {
    padding: 0 29px;
    border-radius: 12px;
  }
  .preopen-section .preopen-wrap .preopen-form-wrap .btn-box .btn-qc-submit {
    border-radius: 12px;
  }
}
@media screen and (max-width: 991px) {
  .preopen-section .preopen-img.preopen-img-pc {
    display: none;
  }
  .preopen-section .preopen-wrap {
    bottom: 55vw;
    flex-direction: column;
  }
  .preopen-section .preopen-wrap .preopen-box {
    width: 100%;
  }
  .preopen-section .preopen-wrap .preopen-form-wrap .form-box .input-text {
    height: 5vw;
  }
  .preopen-section .preopen-wrap .preopen-form-wrap .form-box .input-text:active {
    border-color: #f1b477;
  }
  .preopen-section .preopen-wrap .preopen-form-wrap .btn-box .btn-qc-submit {
    height: 5vw;
  }
  .preopen-section .preopen-wrap .preopen-form-wrap .btn-box .btn-qc-submit:active {
    background-color: #916f49;
  }
}
@media screen and (max-width: 600px) {
  .preopen-section .preopen-wrap {
    bottom: 50vw;
  }
  .preopen-section .preopen-wrap .preopen-form-wrap .form-box .input-text {
    padding: 0 26px;
    border-radius: 10.5px;
  }
  .preopen-section .preopen-wrap .preopen-form-wrap .btn-box .btn-qc-submit {
    border-radius: 10.5px;
  }
}
@media screen and (max-width: 450px) {
  .preopen-section .preopen-wrap {
    bottom: 44vw;
  }
  .preopen-section .preopen-wrap .preopen-form-wrap .form-box .input-text {
    padding: 0 23px;
    border-radius: 9px;
  }
  .preopen-section .preopen-wrap .preopen-form-wrap .btn-box .btn-qc-submit {
    border-radius: 9px;
  }
}
/* ---------------media screen END--------------- */