@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input,
textarea {
  border: none;
  font-family: inherit;
  font-size: 100%;
  -webkit-user-select: auto;
  vertical-align: middle;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  background: #FFF;
  padding: 10px 10px 10px 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 6px;
  border: 2px solid #ccc;
  height: 70px;
  width: 100%;
  font-size: 29px;
}

select {
  height: 70px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 29px;
  width: 100%;
  background-color: #FFF;
  padding-left: 18px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #333333;
}

textarea {
  height: 240px;
}

.radio {
  display: inline-block;
  padding-right: 20px;
  line-height: 42px;
  cursor: pointer;
  color: #333333;
  font-size: 24px;
}
.radio input {
  display: none;
}
.radio .outer {
  height: 18px;
  width: 18px;
  display: block;
  float: left;
  margin: 10px 5px 10px 0;
  border: 1px solid #CCC;
  border-radius: 50%;
  background-color: #fff;
}
.radio .inner {
  transition: all 0.25s ease-in-out;
  height: 8px;
  width: 8px;
  transform: scale(0);
  display: block;
  margin: 4px;
  border-radius: 50%;
  background-color: #F18104;
  opacity: 0;
}

.radio input:checked + .outer .inner {
  transform: scale(1);
  opacity: 1;
}

.form {
  -webkit-text-size-adjust: 100%;
  min-width: 750px;
  max-width: 2000px;
  margin: 0 auto;
  font-feature-settings: "palt";

  padding-bottom: 250px;

}
.form_inner {
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
}
.form_wrap {
  width: 640px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.form_row {
  margin-bottom: 20px;
}
.form_left {
  display: block;
  color: #2e3860;
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 10px;
  position: relative;
}
.form_left span {
  color: #fff;
  font-weight: bold;
  font-size: 35px;
  padding: 2px 12px;
  margin: 0 0 0 10px;
  background: #f18104;
  position: relative;
  top: -2px;
}
.form_left span.free {
  background: #ccc;
}
.form_right {
  position: relative;
  color: #2e3860;
  font-weight: bold;
  font-size: 32px;
}
.form_dateContent {
  display: flex;
  justify-content: space-between;
}
.form_dateContent input {
  width: 55%;
  margin-right: 10px;
  cursor: pointer;
}
.form_select {
  width: 25%;
  margin-right: 10px;
  position: relative;
}
.form_select::before {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  margin-top: -3px;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.4s ease-in-out;
  transform-origin: 50% 0;
}
.form_rowRadio input[type=radio] {
  width: 22px;
  height: 22px;
}
.form_rowRadio input[type=radio]:not(:first-child) {
  margin-left: 20px;
}
.form_checkContent {
  text-align: center;
  margin-bottom: 15px;
  margin-top: 30px;
}
.form_checkContent input[type=checkbox] {
  display: none;
}
.form_checkContent input[type=checkbox]:checked + .form_checkBoxWrap .form_checkBox:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 3px;
  width: 10px;
  height: 18px;
  border: solid #f94d84;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.form_checkBoxWrap {
  cursor: pointer;
  display: inline-block;
  padding-bottom: 0px;
}
.form_checkBox {
  width: 34px;
  height: 34px;
  background: #FFF;
  border: 2px solid #ccc;
  border-radius: 6px;
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
  display: inline-block;
}
.form_checkText {
  vertical-align: middle;
  color: #2e3860;
  font-weight: bold;
  font-size: 40px;
}
.form_coution {
  border: 1px solid #CCC;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
  color: #706770;
  font-size: 25px;
}
.form_btn {
  position: relative;
  margin: 0 auto;
  transition: 0.2s;
  z-index: 100;
  width: 750px;
  margin-left: -55px;
  animation: scaling 1s ease-in-out infinite alternate;
}

.form_btnImg {
  transition: 0.3s;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;

  width: 750px;
}

@keyframes anime {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  90% {
    opacity: 0.1;
  }
  to {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
.shops div {
  border-radius: 6px;
}
.shops_title {
  background: #0CA26C;
  color: #FFF;
  padding: 14px 20px;
  margin: 0 0 2px 0;
  cursor: pointer;
  position: relative;
  font-size: 24px;
}
.shops_title.active::after {
  transform: rotate(-90deg);
}
.shops_title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  right: 20px;
  top: calc(50% - 2px);
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #ffffff transparent transparent transparent;
  transition: 0.3s;
}
.shops_box {
  padding: 20px 0 25px 20px;
  display: none;
}
.shops_active {
  display: block;
}

.air-datepicker {
  font-size: 28px;
  width: 500px;
}

.air-datepicker-cell {
  height: 64px;
}

.air-datepicker-body--cells.-days- {
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  grid-auto-rows: auto;
  font-size: 16px;
}

.air-datepicker-body--day-name {
  font-size: 16px;
  color: #9896c8 !important;
}

.air-datepicker-nav--title,
.air-datepicker-nav--action {
  font-size: 28px;
}

.air-datepicker-nav {
  min-height: 64px;
}

.air-datepicker-time-icon {
  font-size: 32px;
  width: 2em;
  height: 2em;
}

.air-datepicker-nav--action {
  width: 64px;
}

.air-datepicker-nav--action svg {
  width: 64px;
  height: 64px;
}/*# sourceMappingURL=style.css.map */