@charset "UTF-8";
/* -----------------
form_wrap
-------------------- */
.form_wrap {
  padding: 144px 0 150px;
}
@media screen and (max-width: 767px) {
  .form_wrap {
    padding: 13.3333333333vw 0;
  }
}
.form_wrap .m_wrap {
  max-width: 730px;
}
.form_wrap .intro_txt {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .form_wrap .intro_txt {
    font-size: 4.2666666667vw;
  }
}
.form_wrap .input_list {
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .form_wrap .input_list {
    margin-top: 6.6666666667vw;
  }
}
.form_wrap .input_list > li {
  padding: 20px 0;
  border-top: 1px solid #f3f3f3;
}
@media screen and (min-width: 768px) {
  .form_wrap .input_list > li {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .form_wrap .input_list > li {
    padding: 2.6666666667vw 0;
  }
}
.form_wrap .input_list > li:last-child {
  border-bottom: 1px solid #f3f3f3;
}
@media screen and (min-width: 768px) {
  .form_wrap .input_list > li.comment_item {
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .form_wrap .term {
    padding: 5.5px 0;
    width: 285px;
  }
}
.form_wrap .term .txt {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .form_wrap .term .txt {
    font-size: 4.2666666667vw;
  }
}
.form_wrap .term._req .txt {
  position: relative;
}
.form_wrap .term._req .txt::after {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2;
  color: #f00;
  text-align: center;
  content: " *必須";
}
@media screen and (max-width: 767px) {
  .form_wrap .term._req .txt::after {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .form_wrap .input_area {
    width: calc(100% - 285px);
  }
}
.form_wrap .input_area label {
  display: block;
}
.form_wrap .input_area input:not([type=checkbox]):not([type=radio]),
.form_wrap .input_area textarea {
  font-size: 1.6rem;
  line-height: 1.75;
  width: 100%;
  border-radius: 5px;
  background: #f3f3f3;
}
@media screen and (max-width: 767px) {
  .form_wrap .input_area input:not([type=checkbox]):not([type=radio]),
  .form_wrap .input_area textarea {
    font-size: 4.2666666667vw;
  }
}
.form_wrap .input_area input:not([type=checkbox]):not([type=radio]) {
  padding: 0 15px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .form_wrap .input_area input:not([type=checkbox]):not([type=radio]) {
    padding: 0 4vw;
    height: 10.6666666667vw;
  }
}
.form_wrap .input_area textarea {
  padding: 11px 15px;
  height: 140px;
}
@media screen and (max-width: 767px) {
  .form_wrap .input_area textarea {
    padding: 2.9333333333vw 4vw;
    height: 37.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .form_wrap .input_area .radio_box {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
  }
}
.form_wrap .input_area .radio_box label {
  cursor: pointer;
}
.form_wrap .input_area .radio_box .txt {
  font-size: 1.6rem;
  line-height: 1.75;
  display: block;
  position: relative;
  padding: 6px 0 6px 20px;
}
@media screen and (max-width: 767px) {
  .form_wrap .input_area .radio_box .txt {
    font-size: 4.2666666667vw;
    padding: 1.6vw 0 1.6vw 5.3333333333vw;
  }
}
.form_wrap .input_area .radio_box .txt::before, .form_wrap .input_area .radio_box .txt::after {
  content: "";
  display: block;
  position: absolute;
}
.form_wrap .input_area .radio_box .txt::before {
  top: 51%;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid var(--color-base);
  border-radius: 100%;
  background: #fff;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .form_wrap .input_area .radio_box .txt::before {
    width: 4.5333333333vw;
    height: 4.5333333333vw;
  }
}
.form_wrap .input_area .radio_box .txt::after {
  top: 51%;
  left: 3px;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  background: var(--color-orange);
  transform: translateY(-50%);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .form_wrap .input_area .radio_box .txt::after {
    left: 0.8vw;
    width: 2.9333333333vw;
    height: 2.9333333333vw;
  }
}
.form_wrap .input_area .radio_box input[type=radio]:checked + .txt::after {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .form_wrap .input_area .radio_box,
  .form_wrap .input_area .input_box,
  .form_wrap .input_area .comment_box {
    margin-top: 1.3333333333vw;
  }
}
.form_wrap .input_area .input_note {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  margin-top: 7px;
}
.form_wrap .btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .form_wrap .btn_wrap {
    flex-direction: column;
    gap: 5.3333333333vw 0;
    margin-top: 13.3333333333vw;
  }
}
.form_wrap .btn_wrap .btn_box {
  position: relative;
  width: 350px;
}
@media screen and (max-width: 767px) {
  .form_wrap .btn_wrap .btn_box {
    width: 76vw;
  }
}
.form_wrap .btn_wrap .btn {
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  padding-inline: 39px;
  width: 100%;
  height: 80px;
  border: 1px solid var(--color-blue);
  border-radius: 100em;
  background: var(--color-blue);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .form_wrap .btn_wrap .btn {
    font-size: 3.2vw;
    letter-spacing: 0.05em;
    padding-inline: 7.3333333333vw;
    height: 16vw;
  }
}
.form_wrap .btn_wrap .btn._back {
  color: var(--color-blue);
  background: #fff;
}
.form_wrap .btn_wrap .btn._back ~ .icn {
  fill: var(--color-blue);
  transform: translateY(-50%) scale(-1, 1);
}
.form_wrap .btn_wrap .btn[disabled] {
  cursor: not-allowed;
}
@media screen and (min-width: 768px) {
  .form_wrap .btn_wrap .btn:not([disabled]) {
    transition: color 0.3s, background-color 0.3s;
  }
  .form_wrap .btn_wrap .btn:not([disabled]):hover {
    color: var(--color-blue);
    background: #fff;
    opacity: 1;
  }
  .form_wrap .btn_wrap .btn:not([disabled]):hover ~ .icn {
    fill: var(--color-blue);
  }
  .form_wrap .btn_wrap .btn:not([disabled]):hover._back {
    color: #fff;
    background: var(--color-blue);
  }
  .form_wrap .btn_wrap .btn:not([disabled]):hover._back ~ .icn {
    fill: #fff;
  }
}
.form_wrap .btn_wrap .icn {
  display: block;
  position: absolute;
  top: 50%;
  right: 40px;
  width: 16px;
  fill: #fff;
  transform: translateY(-50%);
  transition: fill 0.3s;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .form_wrap .btn_wrap .icn {
    right: 5.2vw;
    width: 3.0666666667vw;
  }
}
.form_wrap .wpcf7-not-valid-tip {
  font-size: 1.6rem;
  line-height: 1.75;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .form_wrap .wpcf7-not-valid-tip {
    font-size: 4.2666666667vw;
    margin-top: 1.3333333333vw;
  }
}
.form_wrap .wpcf7-spinner,
.form_wrap .wpcf7-response-output {
  display: none;
}
.form_wrap .wpcf7-list-item {
  margin: 0;
}
.form_wrap._confirm .term._req .txt::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .form_wrap._confirm .input_area {
    padding: 5.5px 0;
  }
}
.form_wrap._confirm .input_area span {
  font-size: inherit;
  line-height: inherit;
  display: inherit;
}
.form_wrap._confirm .input_area .radio_box,
.form_wrap._confirm .input_area .input_box,
.form_wrap._confirm .input_area .comment_box {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .form_wrap._confirm .input_area .radio_box,
  .form_wrap._confirm .input_area .input_box,
  .form_wrap._confirm .input_area .comment_box {
    font-size: 4.2666666667vw;
  }
}
.form_wrap._thanks {
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .form_wrap._thanks {
    padding-bottom: 26.6666666667vw;
  }
}
.form_wrap._thanks .m_btn_01 {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .form_wrap._thanks .m_btn_01 {
    margin-top: 13.3333333333vw;
  }
}

/*# sourceMappingURL=form.css.map */
