@charset "utf-8";

/*----- form -----*/
.formLeft{
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.formRight {
  display: block;
  margin-bottom: 30px;
}
.formLeft span {
  display: inline-block;
  color: #FFFFFF;
  padding: 0 10px;
  margin: 0 10px;
  font-size: 28px;
  font-weight: 300;
  font-style: normal;
  border-radius: 6px;
  position: relative;
  top: -2px;
  background: #f50b0b;
}
@media screen and (max-width: 750px) {
  .formLeft{
    margin-bottom: 1.33333333vw;
  }
  .formRight {
    margin-bottom: 4vw;
  }
  .formLeft span {
    font-size: 3.7333333333vw;
    border-radius: .8vw;
    padding: 0 1.33333333vw;
    margin: 0 1.33333333vw;
    top: -0.26666667vw;
  }
}
.formLeft span.reqd {
  background: #fd4e00;
}
.formLeft span.optional {
  background: #1D1F8C;
}
input, select, textarea {
  vertical-align: bottom;
  box-sizing: border-box;
  border: 1px solid #CCC;
  border-radius: 9px;
  height: 74px;
  line-height: 74px;
  width: 100%;
  padding: 0 20px;
  font-size: 34px;
}
.input::placeholder {
  font-size: 28px;
}
@media screen and (max-width: 750px) {
  input, select, textarea {
    border-radius: 1.2vw;
    height: 9.8666666667vw;
    line-height: 9.8666666667vw;
    padding: 0 2.6666666667vw;
    font-size: 4.53333333vw;
  }
  .input::placeholder {
    font-size: 3.73333333vw;
  }
}

input.height {
  width: 130px;
}
select {
  width: initial;
  color: #231815;
}
textarea {
  line-height: 46px;
  height: 300px;
  padding: 20px;
}
@media screen and (max-width: 750px) {
  input.height {
    width: 1.73333333vw;
  }
  textarea {
    line-height: 6.1333333333vw;
    height: 40vw;
    padding: 2.6666666667vw;
  }
}
input[name=reserve_at], input[name=reserve_at2], input[name=reserve_at3] {
  width: 370px;
}
.f_shop_box, .f_shop_area {display: none;}
.selectShop > div:first-child {
  border-radius: 9px 9px 0 0;
}
.selectShop > div:nth-child(11) {
  border-radius: 0 0 9px 9px;
}
.selectShop > div.active:nth-child(11) {
  border-radius: 0;
}
.f_shop_ttl01::after, .f_shop_ttl02::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  right: 20px;
  top: calc(50% - 4px);
  border-left: 8px solid #FFF;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transition: .3s;
}
@media screen and (max-width:750px) {
  input[name=reserve_at], input[name=reserve_at2], input[name=reserve_at3] {
    width: 45.3333333333vw;
  }
  .selectShop > div:first-child {
    border-radius: 1.2vw 1.2vw 0 0;
  }
  .selectShop > div:nth-child(11) {
    border-radius: 0 0 1.2vw 1.2vw;
  }
  .f_shop_ttl01::after, .f_shop_ttl02::after {
    right: 2.66666667vw;
    top: calc(50% - 0.53333333vw);
    border-left: 1.06666667vw solid #FFF;
    border-top: 0.8vw solid transparent;
    border-bottom: 0.8vw solid transparent;
  }
}
.f_shop_ttl01.active::after, .f_shop_ttl02.active::after {
  transform: rotate(90deg);
}
.f_shop_ttl01 {
  background: #ff5e08;
  color: #FFF;
  padding: 20px;
  margin: 0 0 2px 0;
  cursor: pointer;
  position: relative;
}
.f_shop_ttl02 {
  background: #ffbd9a;
  color: #0e0000;
  padding: 20px;
  margin: 0 0 2px 0;
  cursor: pointer;
  position: relative;
}
.f_shop_area {
  padding: 20px;
}
@media screen and (max-width: 750px) {
  .f_shop_ttl01 {
    padding: 2.6666666667vw;
    margin: 0 0 0.26666667vw 0;
  }
  .f_shop_ttl02 {
    padding: 2.6666666667vw;
    margin: 0 0 0.26666667vw 0;
  }
  .f_shop_area {
    padding: 2.6666666667vw;
  }
}

.radio {
  display: inline-block;
  padding-right: 20px;
  line-height: 42px;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .radio {
    padding-right: 2.6666666667vw;
    line-height: 5.6vw;
  }
}
.radio:hover .inner {
  -webkit-transform: scale(.5);
  transform: scale(.5);
  opacity: .5
}
.radio input, #check_item_1 {
  display: none;
}
.radio input:checked + .outer .inner {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1
}
.radio input:checked + .outer {
  border: 1px solid #005cc8
}
.radio input:focus + .outer .inner {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  background-color: #005cc8
}
.radio .outer {
  height: 18px;
  width: 18px;
  display: block;
  float: left;
  margin: 12px 5px 10px 0;
  border: 1px solid #CCC;
  border-radius: 50%;
  background-color: #fff
}

.radio .inner {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  height: 10px;
  width: 10px;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: block;
  margin: 4px;
  border-radius: 50%;
  background-color: #005cc8;
  opacity: 0;
}

@media screen and (max-width: 750px) {
  .radio .outer {
    height: 2.4vw;
    width: 2.4vw;
    margin: 1.26vw 0.06666667vw 1.33333333vw 0;
  }
  .radio .inner {
    height: 1.33333333vw;
    width: 1.33333333vw;
    margin: 0.53333333vw;
  }
}

.vir-label {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: max-content max-content;
  justify-content: center;
  cursor: pointer;
}
.vir-checkbox {
  border: 1px solid #CCC;
  border-radius: 6px;
  display: block;
  width: 26px;
  height: 26px;
  position: relative;
}
#check_item_1:checked + .vir-label .vir-checkbox::after {
  content: '';
  display: block;
  width: 10px;
  height: 20px;
  border-right: 5px solid #005cc8;
  border-bottom: 5px solid #005cc8;
  position: absolute;
  top: -5px;
  left: 6px;
  transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(.7, .7, 1);
}
.formDes {
  border: 1px solid #ccc;
  padding:20px;
  box-sizing: border-box;
  font-size: 24px;
  line-height: 1.4;
}
.formDes p{
  margin: 0;
}
@media screen and (max-width: 750px) {
  .vir-label {
    gap: 1.33333333vw;
  }
  .vir-checkbox {
    border-radius: 0.8vw;
    width: 3.46666667vw;
    height: 3.46666667vw;
  }
  #check_item_1:checked + .vir-label .vir-checkbox::after {
    width: 1.33333333vw;
    height: 2.66666667vw;
    border-right: 0.66666667vw solid #005cc8;
    border-bottom: 0.66666667vw solid #005cc8;
    top: -0.66666667vw;
    left: 0.8vw;
  }
  .formDes {
    padding: 2.66666667vw;
    font-size: 3.2vw;
  }
}
button {
  padding: 0;
  border: none;
  cursor: pointer;
  margin-bottom: 50px;
}
#errors {
  color: #f23c52;
  text-align: center;
}

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

.datepicker--cell {
  height: auto !important;
  padding: 5px 0;
}

.checkbox-label {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: max-content max-content;
  justify-content: center;
  cursor: pointer;
}
.checkbox {
  appearance: none;
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  line-height: 0;
}
.checkbox-icon {
  border: 1px solid #CCC;
  border-radius: 6px;
  display: block;
  width: 26px;
  height: 26px;
  position: relative;
}
.checkbox:checked + .checkbox-label .checkbox-icon::after {
  content: '';
  display: block;
  width: 10px;
  height: 20px;
  border-right: 5px solid #f07a05;
  border-bottom: 5px solid #f07a05;
  position: absolute;
  top: -5px;
  left: 6px;
  transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(.7, .7, 1);
}

#form .formFv {
  display: block;
  margin: 0 auto;
  width: 750px;
}

@media screen and (max-width: 750px) {
  button {
    margin-bottom: 6.66666667vw;
  }
  .datepicker {
    width: 66.6666667vw !important;
    font-size: 3.7333333333vw !important;
  }
  .datepicker--cell {
    padding: 0.66666667vw 0;
  }
  .checkbox-label {
    gap: 1.33333333vw;
  }
  .checkbox-icon {
    border-radius: 0.8vw;
    width: 3.46666667vw;
    height: 3.46666667vw;
  }
  .checkbox:checked + .checkbox-label .checkbox-icon::after {
    width: 1.3333333vw;
    height: 2.66666667vw;
    border-right: 0.66666667vw solid #f07a05;
    border-bottom: 0.66666667vw solid #f07a05;
    top: -0.66666667vw;
    left: 0.8vw;
  }
  #form .formFv {
    width: 100vw;
  }
}