.l-pd {
  padding-right: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
  padding-left: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}
.searchBreadArea {
  border-top: none;
  border-bottom: none;
  background-color: initial;
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .searchBreadArea {
    border-top: none;
    border-bottom: none;
    background-color: initial;
    margin-top: 0;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* layout
――――――――――――――――――――――――――――――――――――――――――――――*/
.form__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.form__wrap .formInputArea {
  width: 66.3793103448%;
}
.form__wrap .formInputArea .field.pullDown {
  margin-bottom: 0;
  padding-bottom: 0;
}
.form__wrap .formInputArea .field.pullDown select {
  padding: 7px 25px 7px 15px;
}
.form__wrap .formInputArea .field.pullDown::before {
  content: none;
}
.form__wrap .formInputArea .field.radio {
  display: flex;
}
.form__wrap .formInputArea .field.radio input {
  display: none;
}
.form__wrap .formInputArea .field.radio input:checked::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #108df9;
  position: absolute;
  left: 2px;
  top: 2px;
}
.form__wrap .formInputArea .field.radio span {
  display: block;
  border: 1px solid #57bef1;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: block;
  margin-right: 10px;
  position: relative;
}
.form__wrap .field input {
  border-radius: 4px;
}
.form__wrap .formSubArea {
  width: 30.8620689655%;
}
.form__wrap .w70 {
  width: 75px !important;
}
.form__wrap .w120 {
  width: 125px !important;
}

.form__btn {
  width: 100%;
  background: #d9d9d9;
  border-radius: 25px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  display: block;
  color: #fff;
  padding: 15px 0;
  line-height: 1;
}
.form__btn.-orange {
  background: #ff951a;
  padding: 15px 40px;
  display: flex;
  font-size: 16px;
  justify-content: center;
  column-gap: 5px;
  align-items: center;
}
.form__btn.-orange::before {
  display: block;
  content: "";
  width: 19px;
  height: 19px;
  background: url("/assets/images/form/icon_resycle.svg") no-repeat;
  background-size: contain;
}
.form__btn.-orange2 {
  background: #ff951a url("/assets/images/form/btn_arrow.svg") no-repeat right 20px top 50%;
  padding: 15px 40px;
  display: flex;
  font-size: 16px;
  justify-content: center;
  column-gap: 5px;
}
.form__btn.-red {
  background: #ff407b;
}

.form__btn.-orange:disabled {
  background: #c9c9c9;
}


@media screen and (max-width: 768px) {
  .form__wrap {
    display: block;
  }
  .form__wrap .formInputArea {
    width: auto;
  }
  .form__wrap .formSubArea {
    width: auto;
  }
  .form__btn.-orange {
    padding: 15px;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* formTitleArea
――――――――――――――――――――――――――――――――――――――――――――――*/
.formTitleArea {
  margin-bottom: 40px;
}
.formTitleArea h1 {
  text-align: center;
  margin: 30px 0 75px;
  font-size: 28px;
  font-weight: 600;
}
.formTitleArea__step {
  display: flex;
  justify-content: center;
  column-gap: 160px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
.formTitleArea__step.-thanks::after {
  background: #108df9;
}
.formTitleArea__step::after {
  content: "";
  display: block;
  height: 2px;
  background: #c9c9c9;
  width: 160px;
  position: absolute;
  bottom: 6px;
  left: calc(50% - 80px);
}
.formTitleArea__step li {
  position: relative;
}
.formTitleArea__step li.-active span.dot {
  background: #108df9;
}
.formTitleArea__step li.-active span.text {
  color: #108df9;
}
.formTitleArea__step li.-active::after {
  content: "";
  display: block;
  background: #f5f6f8;
  position: absolute;
  bottom: -7px;
  left: calc(50% - 13.5px);
  z-index: 1;
  width: 27px;
  border-radius: 50%;
  border: 1px solid #108df9;
  height: 27px;
}
.formTitleArea__step li span.dot {
  position: relative;
  z-index: 5;
  display: block;
  width: 13px;
  height: 13px;
  background: #c9c9c9;
  border-radius: 50%;
}
.formTitleArea__step li span.text {
  position: absolute;
  display: block;
  top: -40px;
  left: 50%;
  font-size: 17px;
  color: #c9c9c9;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .formTitleArea {
    margin: 0 20px 20px;
  }
}
.thanks-title {
  text-align: center;
}



/*――――――――――――――――――――――――――――――――――――――――――――
/* formInputArea
――――――――――――――――――――――――――――――――――――――――――――――*/
.formInputArea__section {
  margin-bottom: 70px;
  border-radius: 10px;
  overflow: hidden;
}
.formInputArea__section.-green .formInputArea__title {
  background: #7dc359;
}
.formInputArea__section.-green .formInputArea__inner {
  background: #f3ffed;
}
.formInputArea__section.-orange .formInputArea__title {
  background: #ff951a;
}
.formInputArea__section.-orange .formInputArea__inner {
  background: #fff4e6;
}
.formInputArea__title {
  background: #108df9;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 20px 60px;
}
.formInputArea__layout {
  margin-left: 25px;
  margin-bottom: 50px;
}
.formInputArea__layout:last-child {
  margin-bottom: 0;
}
.formInputArea__layout > div {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d3d6d7;
  margin-bottom: 15px;
  padding-bottom: 15px;
  column-gap: 10px;
}
.formInputArea__layout > div:last-child {
  border: none;
  margin-bottom: 0;
}
.formInputArea__layout > div dt {
  width: 30.4%;
  font-weight: 600;
}
.formInputArea__layout > div dd {
  width: 68%;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.formInputArea__layout > div dd .field,
.formInputArea__layout > div dd input[type=text] {
  width: 100%;
}
.formInputArea__layout > div dd .-radioList {
  display: flex;
  column-gap: 95px;
}
.formInputArea__layout > div dd .radio-container {
  gap: 10px;
}
.formInputArea__layout > div dd .radio-container + .radio-container {
  margin-top: 0;
}
.formInputArea__layout > div dd .radio-container .radio-wrap {
  position: relative;
}
.formInputArea__layout > div dd .radio-container input[type=radio] {
  width: 24px;
  height: 24px;
  border-color: #108df9;
  margin-right: 10px;
}
.formInputArea__layout > div dd .radio-container input[type=radio]::before {
  width: 14px;
  height: 14px;
}
.formInputArea__layout > div dd .radio-container input[type=radio] + i {
  display: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #108df9;
}
.formInputArea__layout > div dd .radio-container input[type=radio]:checked + i {
  display: block;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translate(0, -50%);
}
.formInputArea__layout > div dd .-cardType {
  display: flex;
  column-gap: 10px;
}
.formInputArea__layout > div dd .-price {
  color: #ff407b;
  font-weight: 600;
  font-size: 24px;
}
.formInputArea__layout > div dd .-medical a {
  display: flex;
  align-items: center;
  border: 1px solid #e9eaeb;
  padding-right: 35px;
  border-radius: 19px;
  background: url("/assets/images/form/ext.svg") no-repeat top 50% right 15px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.formInputArea__layout > div dd .-medical a .checkbox-container {
  margin-left: 5px;
  position: relative;
  pointer-events: none;
}
.formInputArea__layout .field {
  margin-bottom: 0;
}
.formInputArea__layout .inout-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: 100%;
}
.formInputArea .payment-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d3d6d7;
  margin-bottom: 15px;
  padding-bottom: 15px;
  column-gap: 10px;
}
.formInputArea .payment-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.formInputArea .payment-item dt {
  width: 30.4%;
}
.formInputArea .payment-item dd {
  flex: 1;
}
.formInputArea__layout2 {
  border: 1px solid #c6c6c6;
  border-radius: 10px;
  padding: 30px 30px 20px;
  margin-bottom: 30px;
}
.formInputArea__layout2 h4 {
  color: #108df9;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.formInputArea__layout2 .formInputArea__layout {
  margin-left: 0;
  margin-bottom: 0;
}
.formInputArea__layout2 .formInputArea__layout dt {
  width: 16.1016949153%;
}
.formInputArea__layout2 .formInputArea__layout dd {
  width: 82.2033898305%;
}
.formInputArea__inner {
  padding: 50px 60px 60px;
  background: #fff;
}
.formInputArea__inner h3 {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}
.formInputArea__inner h3 span {
  background: #ff3b30;
  color: #fff;
  border-radius: 13px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  padding: 5px 10px;
  margin-left: 15px;
}
.formInputArea__inner h3::before {
  content: "";
  display: block;
  width: 8px;
  height: 36px;
  background: #108df9;
  border-radius: 5px;
  margin-right: 20px;
}
.formInputArea .center {
  max-width: 320px;
  margin: 0 auto;
}
.formInputArea__caution {
  font-weight: 600;
  color: #ff3b30;
  margin-bottom: 20px;
  margin-top: 20px;
}
.formInputArea__thanksInfo li {
  border-bottom: 1px dotted #b5b5b5;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.formInputArea__thanksInfo li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.formInputArea__thanksInfo li dl dd {
  font-size: 14px;
}
.formInputArea__thanksInfo li dl dd span {
  color: #ff407b;
}
.formInputArea__thanksReserve p {
  font-size: 14px;
  margin-bottom: 50px;
}
.formInputArea__thanksReserve ul.-info {
  margin-bottom: 20px;
  font-size: 16px;
}
.formInputArea__thanksReserve ul.-info span {
  font-weight: 600;
  white-space: nowrap;
}
.formInputArea__thanksReserve ul.-info a {
  color: #108df9;
  word-break: break-all;
  text-decoration: underline;
}
.formInputArea__thanksReserve ul.-note {
  font-size: 14px;
  margin-bottom: 30px;
}
.formInputArea__thanksReserve ul.-note span {
  color: #ff407b;
}
.formInputArea__product {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.formInputArea__product figure {
  width: 43.0769230769%;
}
.formInputArea__product figure img {
  border-radius: 10px;
}
.formInputArea__product__info {
  width: 100%;
}
.formInputArea__product table {
  margin-top: 10px;
  width: 100%;
}
.formInputArea__product table th,
.formInputArea__product table td {
  font-size: 14px;
  border-bottom: 1px dotted #c3c3c3;
  padding: 10px;
}
.formInputArea__product table th {
  white-space: nowrap;
}
.formInputArea__product table tr:last-child th,
.formInputArea__product table tr:last-child td {
  border-bottom: none;
}
.formInputArea__info {
  border-top: 1px solid #d3d6d7;
  padding-top: 25px;
}
.formInputArea__info li {
  position: relative;
  padding-left: 15px;
}
.formInputArea__info li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #108df9;
  position: absolute;
  left: 0;
  top: 10px;
}
.formInputArea__info li dl {
  display: flex;
}
.formInputArea__coupon {
  background: #f2f2f2;
  border-radius: 9px;
  padding: 25px;
  margin-left: 25px;
  margin-top: -40px;
}
.formInputArea__coupon dd {
  font-size: 14px;
}

@media screen and (max-width: 1000px) {
  .formInputArea__inner {
    padding: 20px 10px;
  }
  .formInputArea__inner h3 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .formInputArea__inner {
    padding: 30px 20px;
  }
  .formInputArea__title {
    padding: 20px;
  }
  .formInputArea__layout {
    margin-left: 0;
  }
  .formInputArea__layout > div {
    display: block;
  }
  .formInputArea__layout > div dt,
  .formInputArea__layout > div dd {
    width: auto;
  }
  .formInputArea__layout > div dt {
    margin-bottom: 10px;
  }
  .formInputArea__layout2 {
    padding: 30px 20px;
  }
  .formInputArea__layout2 .formInputArea__layout dt,
  .formInputArea__layout2 .formInputArea__layout dd {
    width: auto;
  }
  .formInputArea__product {
    display: block;
  }
  .formInputArea__product figure {
    width: auto;
    margin-bottom: 20px;
  }
  .formInputArea__product__info {
    width: auto;
  }
  .formInputArea__coupon {
    margin-left: 0;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* formSubArea
――――――――――――――――――――――――――――――――――――――――――――――*/
.formSubArea {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  position: sticky;
  top: 63px;
}
.formSubArea__title {
  font-weight: bold;
  color: #108df9;
  margin-bottom: 10px;
  word-break: break-all;
}
.formSubArea__date {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.formSubArea__date::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 14px;
  background: url("/assets/images/common/ico_calendar-gray.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
  position: relative;
  top: -3px;
}
.formSubArea__fee {
  background: #f2f2f2;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.formSubArea__fee > dl > dt {
  color: #108df9;
  font-size: 14px;
  margin-bottom: 4px;
}
.formSubArea__fee > dl > dd ul li {
  margin-bottom: 10px;
}
.formSubArea__fee > dl > dd ul li:last-child {
  margin-bottom: 0;
}
.formSubArea__fee > dl > dd ul li dt::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 7px;
  margin-right: 5px;
  background: url("/assets/images/form/arrow.svg") no-repeat;
  background-size: contain;
}
.formSubArea__fee > dl + dl {
  margin-top: 10px;
}
.formSubArea__total {
  border-top: 1px solid #c3c3c3;
  padding-top: 10px;
}
.formSubArea__total li {
  margin-bottom: 10px;
}
.formSubArea__total li.-separator {
  border-top: 1px dotted #c3c3c3;
  padding-top: 10px;
}
.formSubArea .-pricelist span {
  display: inline-block;
}
.formSubArea .-pricelist dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.formSubArea .-pricelist dl dt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.formSubArea .-pricelist dl dd {
  text-align: right;
  color: #ff407b;
  font-weight: 600;
  font-size: 14px;
}
.formSubArea .-pricelist dl dd span {
  font-size: 12px;
}
.formSubArea__rest {
  background: #ffedf3;
  border-radius: 7px;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 15px;
}
.formSubArea__rest dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.formSubArea__rest dl dt {
  font-size: 14px;
  line-height: 1;
}
.formSubArea__rest dl dd {
  color: #ff407b;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}
.formSubArea__rest dl dd span {
  font-size: 14px;
}
.formSubArea__rest p {
  font-size: 14px;
  color: #ff407b;
}
.formSubArea__reserve {
  background: #fff4e5;
  border-radius: 7px;
  padding: 20px;
}
.formSubArea__reserve p {
  color: #ff951a;
  margin-bottom: 20px;
  font-weight: 600;
}
.formSubArea__reserve dl div {
  display: flex;
  font-size: 14px;
  gap: 4px;
}
.formSubArea__reserve dl div dt {
  white-space: nowrap;
  flex-shrink: 0;
}
.formSubArea__reserve dl div a {
  color: #108df9;
  word-break: break-all;
  text-decoration: underline;
}

@media screen and (max-width: 1000px) {
  .formSubArea {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 768px) {
  .formSubArea {
    margin-bottom: 70px;
    position: relative;
    top: auto;
  }
  .formSubArea.-thanks {
    position: fixed;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    margin-bottom: 0;
    z-index: 32;
    padding-bottom: 10px;
    border-radius: 10px 10px 0 0;
    padding: 15px 20px;
  }
  .formSubArea.-thanks .formSubArea__title,
  .formSubArea.-thanks .formSubArea__date {
    margin-bottom: 0;
  }
  .formSubArea.-thanks .formSubArea__fee {
    margin-top: 20px;
  }
  .formSubArea__expand {
    display: none;
  }
  .formSubArea__acc {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    font-weight: 600;
    padding: 5px 10px;
    line-height: 1;
    margin-bottom: 5px;
    font-size: 12px;
    color: #848484;
    text-align: center;
  }
  .formSubArea__acc .icon {
    display: block;
  }
  .formSubArea__acc.-open .icon {
    transform: rotate(180deg);
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* formFloatInfo
――――――――――――――――――――――――――――――――――――――――――――――*/
@media screen and (max-width: 768px) {
  .formFloatInfo {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    z-index: 32;
  }
  .formFloatInfo__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    align-items: center;
  }
  .formFloatInfo__header dl {
    display: flex;
    align-items: center;
    column-gap: 5px;
  }
  .formFloatInfo__header dl dt {
    font-size: 10px;
  }
  .formFloatInfo__header dl dd {
    color: #ff407b;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
  }
  .formFloatInfo__header dl dd span {
    font-size: 10px;
    vertical-align: middle;
  }
  .formFloatInfo__date {
    background: #f2f2f2;
    border-radius: 5px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
  }
  .formFloatInfo__date::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 14px;
    background: url("/assets/images/common/ico_calendar-gray.svg") no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
    position: relative;
    top: -1px;
  }
  .formFloatInfo__detail {
    background: #f2f2f2;
    border-radius: 5px;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    flex-wrap: wrap;
  }
  .formFloatInfo__detail dl {
    display: flex;
    column-gap: 8px;
    align-items: center;
  }
  .formFloatInfo__detail dl dt {
    font-size: 12px;
  }
  .formFloatInfo__detail dl dd {
    color: #ff407b;
    font-size: 14px;
  }
  .formFloatInfo__detail dl dd span {
    font-size: 12px;
  }
  .formFloatInfo .formSubArea {
    margin-bottom: 0;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* formOverlay
――――――――――――――――――――――――――――――――――――――――――――――*/
@media screen and (max-width: 768px) {
  .formOverlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 31;
    background: rgba(0, 0, 0, 0.29);
    display: none;
  }
}


.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;
  }
}


/*――――――――――――――――――――――――――――――――――――――――――――
/* formSubmitArea
――――――――――――――――――――――――――――――――――――――――――――――*/
.formSubmitArea {
  margin-bottom: 70px;
}
.formSubmitArea dt {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-direction: column;
  align-items: center;
}
.formSubmitArea dt .checkbox-container {
  margin: 0;
}
.formSubmitArea dt .checkbox-container input {
  width: 24px;
  height: 24px;
  border-color: #96cdfc;
  background: #fff;
  border-radius: 3px;
}
.formSubmitArea dt .checkbox-container input.is-checked::before {
  width: 14px;
  height: 11px;
}
.formSubmitArea dt a {
  color: #108df9;
  text-decoration: underline;
}
.formSubmitArea dd {
  max-width: 320px;
  margin: 0 auto;
  align-items: center;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .formSubmitArea dt {
    flex-wrap: wrap;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* formSubArea
――――――――――――――――――――――――――――――――――――――――――――――*/
.formSubArea {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  position: sticky;
  top: 63px;
}
.formSubArea__title {
  font-weight: bold;
  color: #108df9;
  margin-bottom: 10px;
  word-break: break-all;
}
.formSubArea__date {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.formSubArea__date::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 14px;
  background: url("/assets/images/common/ico_calendar-gray.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
  position: relative;
  top: -3px;
}
.formSubArea__fee {
  background: #f2f2f2;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.formSubArea__fee > dl > dt {
  color: #108df9;
  font-size: 14px;
  margin-bottom: 4px;
}
.formSubArea__fee > dl > dd ul li {
  margin-bottom: 10px;
}
.formSubArea__fee > dl > dd ul li:last-child {
  margin-bottom: 0;
}
.formSubArea__fee > dl > dd ul li dt::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 7px;
  margin-right: 5px;
  background: url("/assets/images/form/arrow.svg") no-repeat;
  background-size: contain;
}
.formSubArea__fee > dl + dl {
  margin-top: 10px;
}
.formSubArea__total {
  border-top: 1px solid #c3c3c3;
  padding-top: 10px;
}
.formSubArea__total li {
  margin-bottom: 10px;
}
.formSubArea__total li.-separator {
  border-top: 1px dotted #c3c3c3;
  padding-top: 10px;
}
.formSubArea .-pricelist span {
  display: inline-block;
}
.formSubArea .-pricelist dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.formSubArea .-pricelist dl dt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.formSubArea .-pricelist dl dd {
  text-align: right;
  color: #ff407b;
  font-weight: 600;
  font-size: 14px;
}
.formSubArea .-pricelist dl dd span {
  font-size: 12px;
}
.formSubArea__rest {
  background: #ffedf3;
  border-radius: 7px;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 15px;
}
.formSubArea__rest dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.formSubArea__rest dl dt {
  font-size: 14px;
  line-height: 1;
}
.formSubArea__rest dl dd {
  color: #ff407b;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}
.formSubArea__rest dl dd span {
  font-size: 14px;
}
.formSubArea__rest p {
  font-size: 14px;
  color: #ff407b;
}
.formSubArea__reserve {
  background: #fff4e5;
  border-radius: 7px;
  padding: 20px;
}
.formSubArea__reserve p {
  color: #ff951a;
  margin-bottom: 20px;
  font-weight: 600;
}
.formSubArea__reserve dl div {
  display: flex;
  font-size: 14px;
  gap: 4px;
}
.formSubArea__reserve dl div dt {
  white-space: nowrap;
  flex-shrink: 0;
}
.formSubArea__reserve dl div a {
  color: #108df9;
  word-break: break-all;
  text-decoration: underline;
}

@media screen and (max-width: 1000px) {
  .formSubArea {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 768px) {
  .formSubArea {
    margin-bottom: 70px;
    position: relative;
    top: auto;
  }
  .formSubArea.-thanks {
    position: fixed;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    margin-bottom: 0;
    z-index: 32;
    padding-bottom: 10px;
    border-radius: 10px 10px 0 0;
    padding: 15px 20px;
  }
  .formSubArea.-thanks .formSubArea__title,
  .formSubArea.-thanks .formSubArea__date {
    margin-bottom: 0;
  }
  .formSubArea.-thanks .formSubArea__fee {
    margin-top: 20px;
  }
  .formSubArea__expand {
    display: none;
  }
  .formSubArea__acc {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    font-weight: 600;
    padding: 5px 10px;
    line-height: 1;
    margin-bottom: 5px;
    font-size: 12px;
    color: #848484;
    text-align: center;
  }
  .formSubArea__acc .icon {
    display: block;
  }
  .formSubArea__acc.-open .icon {
    transform: rotate(180deg);
  }
}


.basicCheckbox {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #9D9D9D;
  border-radius: 4px;
  background-color: #fff;
}
.basicCheckbox:checked {
  border: 1px solid #57BEF1;
}
.basicCheckbox:checked::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 11px;
  background: url(/assets/images/common/ico_check.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .basicCheckbox {
    width: 16px;
    height: 16px;
  }
  .basicCheckbox:checked::before {
    width: 12px;
    height: 8px;
  }
}
.error .basicCheckbox {
  border-color: #FF3B30;
  background-color: #FCEEEC;
}
.basicCheckbox:disabled {
  background-color: #9D9D9D;
  background-color: #D3D6D7;
  color: #9D9D9D;
}

.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;
}

.basicSelect {
  position: relative;
  background-color: #fff;
  border: 1px solid #9D9D9D;
  border-radius: 4px;
  width: 200px;
}
.basicSelect:has(select:disabled) {
  background-color: #9D9D9D;
  background-color: #D3D6D7;
  color: #9D9D9D;
}
.basicSelect select {
  position: relative;
  padding: 5px 13px;
  width: 100%;
  z-index: 1;
}
.basicSelect::after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 8px;
  top: calc(50% - 4px);
  right: 12px;
  background: url(/assets/images/common/ico_drop.svg) no-repeat center;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .basicSelect select {
    padding: 8px 10px;
    width: 100%;
  }
}
.error .basicSelect {
  border-color: #FF3B30;
  background-color: #FCEEEC;
}

.basicRadio {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #9D9D9D;
  border-radius: 50%;
  background-color: #fff;
}
.basicRadio::before {
  content: "";
  display: none;
  position: absolute;
  left: calc(50% - 6px);
  top: calc(50% - 6px);
  margin: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #34C759;
}
.basicRadio:checked {
  border: 1px solid #57BEF1;
}
.basicRadio:checked::before {
  display: block;
}
@media screen and (max-width: 768px) {
  .basicRadio {
    width: 20px;
    height: 20px;
  }
  .basicRadio::before {
    width: 10px;
    height: 10px;
  }
}
.basicRadio:disabled {
  background-color: #9D9D9D;
  background-color: #D3D6D7;
  color: #9D9D9D;
}

.error-color {
  color: #FF3B30 !important;
}

.basicTextArea {
  width: 100%;
  height: 200px;
  border: 1px solid #9D9D9D;
  border-radius: 4px;
  background-color: #fff;
  padding: 13px;
  resize: none;
}
@media screen and (max-width: 768px) {
  .basicTextArea {
    padding: 10px;
  }
}
.error .basicTextArea {
  border-color: #FF3B30;
  background-color: #FCEEEC;
}
.basicTextArea:disabled, .basicTextArea:read-only {
  background-color: #9D9D9D;
  background-color: #D3D6D7;
  color: #9D9D9D;
}

.basicOutlineBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  min-width: 128px;
  height: 39px;
  border-radius: 4px;
  padding: 0 8px;
  color: #108DF9;
  border: 1px solid #108DF9;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
.basicOutlineBtn.autoHeight {
  height: auto !important;
  line-height: 1.5;
  padding: 8px;
}
.basicOutlineBtn:disabled {
  color: #9D9D9D;
  background-color: #D3D6D7;
}

.field {
  margin-bottom: 6px;
  position: relative;
}
.field.date::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  margin: auto;
  width: 13px;
  height: 14px;
  background: url(/assets/images/common/ico_calendar.svg) no-repeat center;
  background-size: 13px 14px;
}
.field.pullDown::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  margin: auto;
  width: 14px;
  height: 14px;
  background: url(/assets/images/common/ico_timer-gray.svg) no-repeat center;
  background-size: 14px 14px;
}
.field.pullDown::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 11px;
  height: 4.5px;
  background: url(/assets/images/common/ico_drop.svg) no-repeat center;
  background-size: 11px 5px;
}
.field.pointSelect::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  margin: auto;
  width: 13px;
  height: 16px;
  background: url(/assets/images/common/ico_pin-gray.svg) no-repeat center;
  background-size: 13px 16px;
}
.field.CarSelect {
  width: 100%;
  max-width: 100%;
}
.field.CarSelect::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  margin: auto;
  width: 17px;
  height: 12px;
  background: url(/assets/images/common/ico_car-gray.svg) no-repeat center;
  background-size: 17px 12px;
}

.field:last-child {
  margin-bottom: 0;
}

.field label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.field input,
.field select {
  width: 100%;
  padding: 7px 15px 7px 28px;
  border: 1px solid #D5D5D5;
  border-radius: 10px;
  font-size: 14px;
}


/*――――――――――――――――――――――――――――――――――――――――――――
/* formAmount
――――――――――――――――――――――――――――――――――――――――――――――*/
.formAmount__lead {
  margin-bottom: 30px;
}
.formAmount__lead dt {
  font-weight: 600;
}
.formAmount__block {
  margin-bottom: 30px;
}
.formAmount__block__list.-thanks {
  border-top: 1px solid #c3c3c3;
}
.formAmount__block__list.-thanks .formAmount__inputs li {
  background: none;
  margin-bottom: 5px;
  padding-bottom: 5px;
}
.formAmount__block__list.-thanks li.-total {
  padding-top: 20px;
}
.formAmount__block__list.-thanks li.-total dl {
  display: flex;
  justify-content: space-between;
}
.formAmount__block__list.-thanks li.-total dl dt::before {
  content: none;
}
.formAmount__block__list.-thanks li.-total dl dd {
  color: #ff407b;
  font-size: 26px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.formAmount__block__list.-thanks li.-total dl dd span {
  font-size: 20px;
  display: block;
}
.formAmount__block__list__item {
  border-bottom: 1px solid #c3c3c3;
  padding: 20px 0;
}
.formAmount__block__list__item:last-child {
  border: none;
  margin-bottom: 0;
}
.formAmount__block__list__person {
  display: none;
  margin-top: 15px;
  margin-bottom: 20px;
}
.formAmount__block__list__person__header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 20px;
}
.formAmount__block__list__person__title {
  font-weight: 600;
  color: #108df9;
  display: flex;
  align-items: center;
}
.formAmount__block__list__person__title span {
  background: #ff3b30;
  color: #fff;
  border-radius: 13px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  padding: 5px 10px;
  margin-left: 15px;
}
.formAmount__block__list__person__title::before {
  content: "";
  display: block;
  width: 6px;
  height: 24px;
  background: #108df9;
  border-radius: 5px;
  margin-right: 15px;
}
.formAmount__block__list__person__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.formAmount__block__list__person__content ul {
  position: relative;
  border: 1px solid #c3c3c3;
  border-radius: 10px;
  padding: 20px;
}
.formAmount__block__list__person__content ul li {
  display: flex;
}
.formAmount__block__list__person__content ul li > div:first-child {
  flex-shrink: 0;
  width: 120px;
  font-weight: 600;
}
.formAmount__block__list__person__content ul li.action-col {
  position: absolute;
  right: 15px;
  bottom: 8px;
}
.formAmount__block__list__person__content ul li.action-col button {
  text-decoration: underline;
}
.formAmount__block__list__person__content__btn {
  min-width: 60px;
  background: #108df9;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  border: 1px solid #108df9;
  text-align: center;
}
.formAmount__block__list__person__content__btn.-add {
  background: #108df9;
  color: #fff;
}
.formAmount__ttl {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #108df9;
}
.formAmount__inputs li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  background-image: repeating-linear-gradient(90deg, #c3c3c3, #c3c3c3 2px, transparent 2px, transparent 4px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
}
.formAmount__inputs li dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.formAmount__inputs li dl dt span {
  background: #ff3b30;
  color: #fff;
  border-radius: 13px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  padding: 3px 8px;
  margin-left: 15px;
  font-size: 10px;
  position: relative;
  top: -2px;
}
.formAmount__inputs li dl dd {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.formAmount__inputs li dl dd .-price {
  color: #ff407b;
  font-weight: 600;
  margin-right: 10px;
}
.formAmount__inputs li dl dd .field.pullDown {
  margin: 0 10px;
  width: 74px;
}
.formAmount__inputs li:last-child {
  background: none;
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .formAmount__block__list.-thanks .formAmount__inputs li.-total dl dd {
    font-size: 14px;
  }
  .formAmount__block__list.-thanks .formAmount__inputs li.-total dl dd span {
    font-size: 14px;
  }
  .formAmount__block__list__person__content ul {
    padding: 10px;
    padding-bottom: 20px;
  }
  .formAmount__block__list__person__content ul li > div:first-child {
    width: 80px;
  }
  .formAmount__ttl {
    font-size: 14px;
  }
  .formAmount__inputs li.-total dl {
    display: flex;
    align-items: center;
  }
  .formAmount__inputs li dl {
    flex-wrap: wrap;
  }
  .formAmount__inputs li dl dt,
  .formAmount__inputs li dl dd {
    margin-bottom: 10px;
  }
  .formAmount__inputs li dl dd {
    margin-left: auto;
  }
}


.reserve-wrap__title-box {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
  padding: 0.75rem 0;
  border-color: #108DF9 !important;
}

.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-price {
  color: #FF407B;
  font-weight: 700;
  vertical-align: middle;
}

.participant-section {
  text-align: right;
}

#v2-mdc-name::placeholder {
  color: rgba(0, 0, 0, 0.54) !important;
  opacity: 1 !important;
}
.mdc-text-field__input::placeholder {
  color: rgba(0, 0, 0, 0.54) !important;
  opacity: 1 !important;
}