.reserve-wrap {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  box-shadow: none;
  padding: 0 0 48px;
}
.reserve-wrap.addTop {
  margin-top: 48px;
}

.reserve-wrap__title-box {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
  padding: 0.75rem 0;
  border-color: #108DF9 !important;
}
@media screen and (max-width: 768px) {
  .reserve-wrap {
    width: calc(100% - 2rem);
    padding: 0 0 38px;
  }
  .reserve-wrap.addTop {
    margin-top: 38px;
  }
}
.reserve-content {
  margin: 60px auto 40px;
  max-width: 1024px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}
.reserve-content.small {
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .reserve-content {
    margin-top: 40px;
    margin-bottom: 24px;
  }
  .reserve-content.small {
    margin: 24px auto;
  }
}
.reserve-content__title {
  background-color: #108DF9;
  padding: 16px;
}
@media screen and (max-width: 768px) {
  .reserve-content__title {
    padding: 12.8px;
  }
}
.reserve-content__list {
  padding: 0 32px;
}
@media screen and (max-width: 768px) {
  .reserve-content__list {
    padding: 0 16px;
  }
}

.reserve-form__title {
  vertical-align: middle;
  line-height: 1;
}
.reserve-form__title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 36px;
  margin-right: 16px;
  background-color: #108DF9;
  border-radius: 8px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .reserve-form__title::before {
    width: 6px;
    height: 32px;
    margin-right: 12px;
    border-radius: 6px;
  }
}
.reserve-form__item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 10px;
  font-size: 16px;
}
.reserve-form__item-list {
  padding: 0 16px;
}
.reserve-form__item > label {
  width: 180px;
  padding: 10px 0;
  flex-shrink: 0;
}
.reserve-form__item + .reserve-form__item {
  border-top: 1px solid #D3D6D7;
}
.reserve-form__item .text {
  font-weight: 700;
}
.reserve-form__item.small, .reserve-form__item.calendar {
  padding: 8px 16px;
}
@media screen and (max-width: 768px) {
  .reserve-form__item {
    display: block;
    padding: 8px;
  }
  .reserve-form__item > label {
    width: 100%;
    padding: 4px;
  }
  .reserve-form__item-list {
    padding: 0 8px;
  }
  .reserve-form__item.small {
    padding: 8px;
  }
  .reserve-form__item.calendar {
    padding: 0;
  }
  .reserve-form__item .text {
    padding: 4px 8px;
  }
  .reserve-form__item .text.calendar {
    padding: 0;
  }
}
.reserve-form__item.error .error-message {
  display: block;
}
.reserve-form__item-info-text {
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .reserve-form__item-info-text {
    margin-top: 2px;
  }
}
.reserve-form__booker, .reserve-form__reserve, .reserve-form__complete {
  padding: 32px 0 24px;
}
.reserve-form__booker.complete, .reserve-form__reserve.complete, .reserve-form__complete.complete {
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .reserve-form__booker, .reserve-form__reserve, .reserve-form__complete {
    padding: 24px 0 12px;
  }
  .reserve-form__booker.complete, .reserve-form__reserve.complete, .reserve-form__complete.complete {
    padding-top: 30px;
  }
}

.reserve-form .error-message {
  display: none;
  margin-top: 4px;
  color: #FF3B30;
  font-weight: 700;
}
.reserve-form .error-message::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: sub;
  margin-right: 4px;
  background: url(/assets/images/common/ico_error.svg) no-repeat center;
}
@media screen and (max-width: 768px) {
  .reserve-form .error-message::before {
    width: 16px;
    height: 16px;
    margin-right: 2px;
    background-size: cover;
  }
}
.reserve-form__login {
  padding: 24px 0 12px;
}
@media screen and (max-width: 768px) {
  .reserve-form__login {
    padding: 12px 0 8px;
  }
}
.reserve-form__forget {
  padding: 24px 0 12px;
}
@media screen and (max-width: 768px) {
  .reserve-form__forget {
    padding: 12px 0 8px;
  }
}
.reserve-form__inquiry {
  padding: 24px 0 12px;
}
@media screen and (max-width: 768px) {
  .reserve-form__inquiry {
    padding: 12px 0 8px;
  }
}
.reserve-bottom {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  width: 100%;
  background: #9D9D9D;
  z-index: 10;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .reserve-bottom {
    padding: 8px 0;
  }
}
.reserve-bottom__content {
  background-color: #fff;
  max-width: 1024px;
  margin: 0 auto;
  padding: 8px 16px;
}
@media screen and (max-width: 768px) {
  .reserve-bottom__content {
    width: calc(100% - 1rem);
    padding: 4px 8px;
  }
}
@media screen and (max-width: 530px) {
  .reserve-bottom__content > div {
    display: block !important;
  }
  .reserve-bottom__content button {
    display: block;
    padding: 8px 35px;
    margin: 8px auto 4px;
  }
}


.basicInput {
  width: 100%;
  background-color: #fff;
  border: 1px solid #9D9D9D;
  border-radius: 4px;
  padding: 5px 13px;
}
@media screen and (max-width: 768px) {
  .basicInput {
    padding: 8px 10px;
  }
}
.error .basicInput {
  border-color: #FF3B30;
  background-color: #FCEEEC;
}
.basicInput:disabled {
  background-color: #9D9D9D;
  background-color: #D3D6D7;
  color: #9D9D9D;
}
.basicInput.w-200 {
  width: 200px;
}
.date-select .basicInput {
  padding-left: 40px;
}

.fs-16 {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .fs-16 {
    font-size: 12.8px;
  }
}

.reserve-warning {
  padding: 8px 32px 48px;
}
.reserve-warning__title {
  color: #FF3B30;
}
.reserve-warning__info {
  margin-top: 16px;
  line-height: 2;
}
.reserve-warning__agree {
  margin-top: 16px;
  font-size: 14px;
}
.reserve-warning__agree input {
  margin-right: 12px;
  flex-shrink: 0;
}
.reserve-warning__agree a {
  display: inline-block;
  margin: 0 3px;
  color: #108DF9;
  text-decoration: underline;
}
.reserve-warning__agree-text.error {
  background-color: #FCEEEC;
  border: 1px solid #FF3B30;
  border-radius: 4px;
  padding: 2px 6px;
}
@media screen and (max-width: 768px) {
  .reserve-warning {
    padding: 8px 16px 24px;
  }
}


.reserve-content {
  margin: 60px auto 40px;
  max-width: 1024px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}
.reserve-content.small {
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .reserve-content {
    margin-top: 40px;
    margin-bottom: 24px;
  }
  .reserve-content.small {
    margin: 24px auto;
  }
}
.reserve-content__title {
  background-color: #108DF9;
  padding: 16px;
}
@media screen and (max-width: 768px) {
  .reserve-content__title {
    padding: 12.8px;
  }
}
.reserve-content__list {
  padding: 0 32px;
}
@media screen and (max-width: 768px) {
  .reserve-content__list {
    padding: 0 16px;
  }
}
.reserve-btn {
  font-size: 16px;
  padding: 12px 37px;
  border-radius: 25px;
  background-color: #FF407B;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.reserve-btn__center {
  width: 320px;
}