@charset "UTF-8";
/*=============================================*/
/*Font import */
/*=============================================*/
/*=============================================*/
/*Common Base*/
/*=============================================*/
.pc_only {
  display: block;
}
@media (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

.sp_only {
  display: none !important;
}
@media (min-width: 768px) {
  .sp_only {
    display: block;
  }
}

/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
/*=============================================*/
/*  layout                               */
/*=============================================*/
.adjust_form {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .adjust_form {
    margin-top: 30px;
  }
}
.adjust_form .p-page_ser-price_cont-ttl {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding-bottom: 10px;
  padding-left: 15px;
  border-bottom: 2px solid #999;
  font-size: clamp(13px, 1.4vw, 18px);
}
.adjust_form .p-page_ser-price_cont-ttl::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "";
  width: 5px;
  height: 60%;
  background-color: #999;
}
@media (max-width: 768px) {
  .adjust_form .p-page_ser-price_cont-ttl {
    margin-bottom: 15px;
    padding-left: 10px;
    padding-bottom: 5px;
  }
  .adjust_form .p-page_ser-price_cont-ttl::before {
    top: 0;
    width: 3px;
    height: 60%;
  }
}
.adjust_form dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2%;
}
.adjust_form dt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 25%;
  margin-bottom: 25px;
  font-size: clamp(10px, 1.4vw, 16px);
  font-weight: 500;
}
.adjust_form dt .rq {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 3px 1px 3px;
  color: white;
  background-color: #fe7400;
  font-size: clamp(10px, 1.4vw, 15px);
}
@media (max-width: 768px) {
  .adjust_form dt {
    align-items: center;
    width: auto;
    margin-bottom: 15px;
  }
}
.adjust_form dd {
  display: inline-block;
  width: 73%;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .adjust_form dd {
    width: 100%;
  }
}
.adjust_form .radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
@media (max-width: 768px) {
  .adjust_form .radio {
    display: block;
  }
}
.adjust_form .radio .mwform-radio-field.horizontal-item {
  margin-left: 0;
}
@media (max-width: 768px) {
  .adjust_form .radio .mwform-radio-field.horizontal-item {
    width: 50%;
  }
}
.adjust_form .input_half {
  width: 50%;
}
.adjust_form input {
  background-color: #f6f6f6;
  border: 1px solid #dbdbdb;
  height: 38px;
}
.adjust_form .radio label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 16px;
}
@media (max-width: 768px) {
  .adjust_form .radio label {
    font-size: 12px;
    width: 100%;
  }
}
.adjust_form .mwform-radio-field label input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border: 2px solid #DBDBDB;
  border-radius: 50%;
  background-color: #f6f6f6;
  margin: 0;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .adjust_form .mwform-radio-field label input[type=radio] {
    width: 15px;
    height: 15px;
  }
}
.adjust_form .mwform-radio-field label input[type=radio]:checked {
  background-color: #FD7400;
  box-shadow: inset 0 0 0 5px white; /* 中央に白丸 */
}
@media (max-width: 768px) {
  .adjust_form .mwform-radio-field label input[type=radio]:checked {
    box-shadow: inset 0 0 0 2px white; /* 中央に白丸 */
  }
}
.adjust_form .post_area .input_half {
  display: flex;
  align-items: center;
}
.adjust_form .post_area .input_half .hyphen {
  padding: 0 10px;
}
.adjust_form .post_area .input_half input {
  padding: 5px;
  width: 50%;
}
.adjust_form .comment {
  display: block;
  padding-top: 5px;
  font-size: clamp(10px, 1.4vw, 15px);
}
.adjust_form .mwform-checkbox-field label input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #dbdbdb;
  background-color: #f6f6f6;
  margin: 0;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .adjust_form .mwform-checkbox-field label input[type=checkbox] {
    width: 15px;
    height: 15px;
  }
}
.adjust_form .mwform-checkbox-field label input[type=checkbox]:checked {
  background-color: #FD7400;
  border-color: #FD7400;
  position: relative;
}
.adjust_form .mwform-checkbox-field label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .adjust_form .mwform-checkbox-field label input[type=checkbox]:checked::after {
    left: 2px;
    top: 0;
    width: 4px;
    height: 7px;
  }
}
.adjust_form img {
  display: block;
  width: 100%;
}
.adjust_form .order_form__checkbox {
  padding: 25px 0;
  margin: 25px 0;
  border-top: 1px dotted #DBDBDB;
  border-bottom: 1px dotted #DBDBDB;
}
.adjust_form .order_form__checkbox.flex {
  display: flex;
  flex-wrap: wrap;
}
.adjust_form .order_form__svgarea {
  display: flex;
}
.adjust_form .order_form__svgarea img {
  width: 100%;
}
.adjust_form div.border {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
  border-bottom: 1px dotted #BABABA;
}
@media (max-width: 768px) {
  .adjust_form div.border {
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 20px;
  }
}
.adjust_form .order_form__checkbox_block {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
  width: 25%;
}
@media (max-width: 768px) {
  .adjust_form .order_form__checkbox_block {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
}
.adjust_form .order_form__checkbox_block .mwform-checkbox-field.horizontal-item {
  display: flex;
  align-items: center;
  margin-left: 0;
}
@media (max-width: 768px) {
  .adjust_form .order_form__checkbox_block .mwform-checkbox-field.horizontal-item {
    width: 100%;
    margin-bottom: 5px;
  }
}
.adjust_form .order_form__checkbox_block .mwform-checkbox-field.horizontal-item .mwform-checkbox-field-text {
  font-size: 14px;
}
@media (max-width: 768px) {
  .adjust_form .order_form__checkbox_block .mwform-checkbox-field.horizontal-item .mwform-checkbox-field-text {
    font-size: 12px;
  }
}
.adjust_form .order_form__checkbox_block .mwform-checkbox-field.horizontal-item label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.adjust_form .order_form__checkbox_block .mwform-checkbox-field.horizontal-item label::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}
@media (max-width: 768px) {
  .adjust_form .order_form__checkbox_block .mwform-checkbox-field.horizontal-item label::before {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
}
.adjust_form .order_form__checkbox_block:nth-of-type(1) .mwform-checkbox-field.horizontal-item:nth-last-of-type(2) label::before {
  content: "1";
  background-color: #EEAFC2;
}
.adjust_form .order_form__checkbox_block:nth-of-type(1) .mwform-checkbox-field.horizontal-item:nth-last-of-type(1) label::before {
  content: "1";
  background-color: #FF0000;
}
.adjust_form .order_form__checkbox_block:nth-of-type(2) .mwform-checkbox-field.horizontal-item:nth-last-of-type(2) label::before {
  content: "2左";
  background-color: #FEFF00;
}
.adjust_form .order_form__checkbox_block:nth-of-type(2) .mwform-checkbox-field.horizontal-item:nth-last-of-type(1) label::before {
  content: "2右";
  background-color: #FEFF00;
}
.adjust_form .order_form__checkbox_block:nth-of-type(3) .mwform-checkbox-field.horizontal-item:nth-last-of-type(2) label::before {
  content: "3";
  background-color: #006837;
  color: white;
}
.adjust_form .order_form__checkbox_block:nth-of-type(3) .mwform-checkbox-field.horizontal-item:nth-last-of-type(1) label::before {
  content: "4";
  background-color: #CCEA9D;
}
.adjust_form .order_form__checkbox_block:nth-of-type(4) .mwform-checkbox-field.horizontal-item:nth-last-of-type(2) label::before {
  content: "4";
  background-color: #8CC63F;
}
.adjust_form .order_form__checkbox_block:nth-of-type(4) .mwform-checkbox-field.horizontal-item:nth-last-of-type(1) label::before {
  content: "5";
  background-color: #0171BC;
  color: white;
}
.adjust_form .order_form__checkbox_block.box02 {
  width: 32%;
}
@media (max-width: 768px) {
  .adjust_form .order_form__checkbox_block.box02 {
    width: 100%;
    margin-bottom: 5px;
  }
}
.adjust_form .order_form__checkbox_block.box02:nth-of-type(1) .mwform-checkbox-field.horizontal-item:nth-last-of-type(2) label::before {
  content: "6左";
  background-color: #01FFFF;
}
.adjust_form .order_form__checkbox_block.box02:nth-of-type(1) .mwform-checkbox-field.horizontal-item:nth-last-of-type(1) label::before {
  content: "6右";
  background-color: #01FFFF;
}
.adjust_form .order_form__checkbox_block.box02:nth-of-type(2) .mwform-checkbox-field.horizontal-item:nth-last-of-type(2) label::before {
  content: "7左";
  background-color: #FF00FF;
}
.adjust_form .order_form__checkbox_block.box02:nth-of-type(2) .mwform-checkbox-field.horizontal-item:nth-last-of-type(1) label::before {
  content: "7右";
  background-color: #FF00FF;
}
.adjust_form .order_form__checkbox_block.box02:nth-of-type(3) .mwform-checkbox-field.horizontal-item:nth-last-of-type(2) label::before {
  content: "8左";
  background-color: #D1BAE5;
  color: inherit;
}
.adjust_form .order_form__checkbox_block.box02:nth-of-type(3) .mwform-checkbox-field.horizontal-item:nth-last-of-type(1) label::before {
  content: "8右";
  background-color: #D1BAE5;
}
.adjust_form .order_form__checkbox_block.box03 {
  width: 32%;
}
@media (max-width: 768px) {
  .adjust_form .order_form__checkbox_block.box03 {
    width: 100%;
    margin-bottom: 5px;
  }
}
.adjust_form .order_form__checkbox_block.box03:nth-of-type(1) .mwform-checkbox-field.horizontal-item:nth-last-of-type(2) label::before {
  content: "9";
  background-color: #662D91;
  color: white;
}
.adjust_form .order_form__checkbox_block.box03:nth-of-type(1) .mwform-checkbox-field.horizontal-item:nth-last-of-type(1) label::before {
  content: "10";
  background-color: #F15924;
}
.adjust_form .order_form__checkbox_block.box03:nth-of-type(2) .mwform-checkbox-field.horizontal-item:nth-last-of-type(2) label::before {
  content: "11左";
  background-color: #FAB03C;
}
.adjust_form .order_form__checkbox_block.box03:nth-of-type(2) .mwform-checkbox-field.horizontal-item:nth-last-of-type(1) label::before {
  content: "11右";
  background-color: #FAB03C;
}
.adjust_form .order_form__checkbox_block.box03:nth-of-type(3) .mwform-checkbox-field.horizontal-item:nth-last-of-type(1) label::before {
  content: "12";
  background-color: #FBDD5E;
  color: inherit;
}
.adjust_form .order_form__checkbox_block.box04 {
  width: 32%;
}
@media (max-width: 768px) {
  .adjust_form .order_form__checkbox_block.box04 {
    width: 100%;
    margin-bottom: 5px;
  }
}
.adjust_form .order_form__checkbox_block.box04:nth-of-type(1) .mwform-checkbox-field.horizontal-item:nth-last-of-type(1) label::before {
  content: "13右";
  background-color: #1600FF;
  color: white;
}
.adjust_form .order_form__checkbox_block.box04:nth-of-type(1) .mwform-checkbox-field.horizontal-item:nth-last-of-type(2) label::before {
  content: "13左";
  background-color: #1600FF;
  color: white;
}
.adjust_form .order_form__checkbox_block.box04:nth-of-type(2) .mwform-checkbox-field.horizontal-item:nth-last-of-type(2) label::before {
  content: "14左";
  background-color: #01A99D;
  color: white;
}
.adjust_form .order_form__checkbox_block.box04:nth-of-type(2) .mwform-checkbox-field.horizontal-item:nth-last-of-type(1) label::before {
  content: "14右";
  background-color: #01A99D;
  color: white;
}
.adjust_form .order_form__checkbox_block.box04:nth-of-type(3) .mwform-checkbox-field.horizontal-item:nth-last-of-type(2) label::before {
  content: "15右";
  background-color: #01FF00;
  color: inherit;
}
.adjust_form .order_form__checkbox_block.box04:nth-of-type(3) .mwform-checkbox-field.horizontal-item:nth-last-of-type(1) label::before {
  content: "15左";
  background-color: #01FF00;
  color: inherit;
}
.adjust_form #order_form__block_05 .order_form__checkbox {
  border: none;
}
.adjust_form .order_form__checkbox_block.box05 {
  width: 100%;
}
.adjust_form .order_form__checkbox_block.box05 .mwform-checkbox-field.horizontal-item {
  justify-content: center;
}
.adjust_form .order_form__checkbox_block.box05 .mwform-checkbox-field.horizontal-item:nth-last-of-type(1) label::before {
  content: "16";
  background-color: #D8D8D8;
  color: inherit;
}
@media (max-width: 768px) {
  .adjust_form .mwform-radio-field-text {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .adjust_form .mwform-checkbox-field-text {
    font-size: 12px;
  }
}
.adjust_form input[type=file] {
  width: 100%;
  padding: 5px 10px;
  height: auto;
}
@media (max-width: 768px) {
  .adjust_form input[type=file] {
    font-size: 10px;
    padding: 5px;
  }
}
.adjust_form .file1 {
  height: auto;
  padding: 10px 5px 0 5px;
}
.adjust_form .post_area textarea {
  width: 100%;
}
.adjust_form .post_area .mwform-checkbox-field.horizontal-item {
  display: block;
}

#main .mailForm .submit {
  margin-right: auto;
}

#main .mailForm input[type=text] {
  width: 100%;
}

#main .mailForm textarea {
  width: 100%;
}

.submit-container .back {
  max-width: 400px;
  margin: 20px auto 0 auto;
}
@media (max-width: 768px) {
  .submit-container .back {
    max-width: 300px;
  }
}
.submit-container .back button {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  border: 2px solid transparent;
  background-color: #ccc;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s;
  border-radius: 53px;
  cursor: pointer;
}
.submit-container .back button:hover {
  background-color: #000;
  border: 2px solid #000;
}
@media (max-width: 768px) {
  .submit-container .back button {
    font-size: 13px;
    padding: 15px;
  }
}

.submit-container .submit {
  max-width: 400px;
  margin: auto;
}
@media (max-width: 768px) {
  .submit-container .submit {
    max-width: 300px;
  }
}
.submit-container .check_send_btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  border: 2px solid transparent;
  background-color: #FD7400;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s;
  border-radius: 53px;
  cursor: pointer;
}
.submit-container .check_send_btn:hover {
  background-color: #fff;
  border: 2px solid #FD7400;
  color: #FD7400;
}
@media (max-width: 768px) {
  .submit-container .check_send_btn {
    font-size: 13px;
    padding: 15px;
  }
}

.form_check_block .adjust_form .comment {
  display: none;
}
.form_check_block div.border.none {
  display: none;
}

#main .comTable {
  table-layout: fixed;
}

#main .comTable td span {
  color: #e50012;
  font-weight: bold;
}/*# sourceMappingURL=adjust.css.map */