.c-page-header {
  /* 最終フォールバック */
  background: url("../img/contact/bg_head_01.jpg") center/cover no-repeat;

  /* 古めの Safari 用 */
  background: -webkit-image-set(
    url("../img/contact/bg_head_01.webp") type("image/webp") 1x,
    url("../img/contact/bg_head_01.jpg")  type("image/jpeg") 1x
  ) center/cover no-repeat;

  /* 標準実装 */
  background: image-set(
    url("../img/contact/bg_head_01.webp") type("image/webp") 1x,
    url("../img/contact/bg_head_01.jpg")  type("image/jpeg") 1x
  ) center/cover no-repeat;
}
.text-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .text-flex {
    font-size: 13px;
    margin-top: 20px;
    padding: 0  15px;
    text-align: left;
  }
}

form {
  margin-bottom: 0px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  form {
    margin-top: 20px;
    margin-bottom: 0px;
  }
}
.contact .c-brd {
  padding: 30px 0 200px 10px;
}
@media screen and (max-width: 767px) {
  .contact .c-brd {
    padding: 30px 0 70px 10px;
  }
}

.c-form__note {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-form__note {
    margin-bottom: 15px;
    font-size: 14px;
  }
}
.c-form__required-icon {
  color: #e60000;
}
.c-form__block {
  margin-bottom: 35px;
}
.c-form__block label {
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
}
.c-form__block input,
.c-form__block textarea {
  width: 100%;
  border-radius: 4px;
  background: #efefef;
  height: 58px;
  padding: 15px 20px;
}
.c-form__block textarea {
  resize: none;
  height: 345px;
}
@media screen and (max-width: 767px) {
  .c-form__block {
    margin-bottom: 15px;
  }
  .c-form__block input {
    height: 35px;
  }
  .c-form__block textarea {
    height: 100px;
  }
  .c-form__block label {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.c-form__radio-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 90px;
  border: unset;
}
@media screen and (max-width: 767px) {
  .c-form__radio-group {
    gap: 0 10px;
  }
}
.c-form__radio-group input {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .c-form__radio-group input {
    width: 15px;
    height: 15px;
  }
}
.c-form__radio-group label {
  font-weight: 400;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form__submit {
  display: inline-block;
  background-color: #B98C4D;
  color: #fff;
  border-radius: 37.5px;
  cursor: pointer;
  width: 470px;
  height: 75px;
  font-size: 24px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .c-form__submit {
    width: 210px;
    height: 40px;
    font-size: 16px;
  }
}
.c-form__agree {
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .c-form__agree {
    margin-bottom: 20px;
  }
}
.c-form__agree a {
  text-decoration: underline;
}

.confirm .c-form__block{
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  margin-bottom: 0;
}
.confirm .c-form__block label{
  margin-bottom: 5px;
}

 .c-form__ckbtn {
  text-align: center;
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-form__ckbtn input {
  display: block;
  width: 300px;
  margin: 0 20px;
  text-align: center;
  font-size: 1.6rem;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #253864;
  line-height: 60px;
  border: 1px solid #253864;
}

input.c-form__submit.formbtn.active {
  cursor: pointer;
  background-color: #B98C4D;
  opacity: 1;
  color: #fff;
}
.c-form__ckbtn--back {
  display: block;
  width: 300px;
  margin: 0 20px;
  text-align: center;
  font-size: 1.6rem;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #3A5757;
  line-height: 60px;
  border: 1px solid #3A5757;
}
input[type=submit] {
  cursor: pointer;
  background-color: #B98C4D;
  opacity: 0.5;
  color: #fff;
}
input.formbtn.active {
  opacity: 1;
}
.c-form__done{
  font-size: 2rem;
  text-align: center;
  margin-top: 80px;
}
.c-form__done + p{
  text-align: center;
  margin-top: 40px;
}
._pb{
  padding-bottom: 400px;
}

@media screen and (max-width: 767px) {
  .c-form__ckbtn {
    font-size: 1.4rem;
    margin-top: 30px;
  }
  .c-form__ckbtn input {
    width: 100%;
    font-size: 1.4rem;
    margin: 0 10px;
    line-height: 45px;
  }
  .c-form__ckbtn--back {
    font-size: 1.4rem;
    margin: 0 10px;
    line-height: 45px;
  }
  .c-form__block p{
    font-size: 14px;
  }
  .c-form__done{
    font-size: 16px;
    margin-top: 40px;
  }
  .c-form__done + p{
    font-size: 14px;
    text-align: left;
  }
  ._pb{
    padding-bottom: 200px;
  }
}