@import url("https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Noto+Sans+JP:wght@300;400;500;700&family=Work+Sans:wght@400;500&display=swap");
.form .title {
  text-align: center;
  border-bottom: 1px #707070 solid;
  max-width: 980px;
  margin: 64px auto 40px;
  padding-bottom: 20px;
  width: 95%;
  font-size: 18px;
  font-weight: 500;
}
.form .form__row {
  width: 90%;
  max-width: 700px;
  margin: 40px auto 0;
}
.form .label_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
@media screen and (min-width: 960px) {
  .form .label_wrap {
    margin-bottom: 10px;
  }
}
.form .tag {
  display: block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 60px;
}
@media screen and (min-width: 960px) {
  .form .tag {
    width: 75px;
  }
}
.form .tag.required {
  color: #D43939;
}
.form .tag.optional {
  color: #b4b4b4;
}
.form .form__wrap input[type=text],
.form .form__wrap input[type=email],
.form .form__wrap input[type=tel],
.form .form__wrap select,
.form .form__wrap textarea {
  display: block;
  width: 100%;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px #59554C solid;
  background-color: #ffffff;
  padding: 10px 20px;
  resize: none;
}
.form .form__wrap input[type=text]::-webkit-input-placeholder, .form .form__wrap input[type=email]::-webkit-input-placeholder, .form .form__wrap input[type=tel]::-webkit-input-placeholder, .form .form__wrap select::-webkit-input-placeholder, .form .form__wrap textarea::-webkit-input-placeholder {
  color: #b4b4b4;
}
.form .form__wrap input[type=text]::-moz-placeholder, .form .form__wrap input[type=email]::-moz-placeholder, .form .form__wrap input[type=tel]::-moz-placeholder, .form .form__wrap select::-moz-placeholder, .form .form__wrap textarea::-moz-placeholder {
  color: #b4b4b4;
}
.form .form__wrap input[type=text]:-ms-input-placeholder, .form .form__wrap input[type=email]:-ms-input-placeholder, .form .form__wrap input[type=tel]:-ms-input-placeholder, .form .form__wrap select:-ms-input-placeholder, .form .form__wrap textarea:-ms-input-placeholder {
  color: #b4b4b4;
}
.form .form__wrap input[type=text]::-ms-input-placeholder, .form .form__wrap input[type=email]::-ms-input-placeholder, .form .form__wrap input[type=tel]::-ms-input-placeholder, .form .form__wrap select::-ms-input-placeholder, .form .form__wrap textarea::-ms-input-placeholder {
  color: #b4b4b4;
}
.form .form__wrap input[type=text]::placeholder,
.form .form__wrap input[type=email]::placeholder,
.form .form__wrap input[type=tel]::placeholder,
.form .form__wrap select::placeholder,
.form .form__wrap textarea::placeholder {
  color: #b4b4b4;
}
.form .form__wrap textarea {
  height: 160px;
}
@media screen and (min-width: 960px) {
  .form .form__wrap textarea {
    height: 270px;
  }
}
.form .form__wrap select {
  cursor: pointer;
}
.form .form__wrap input[type=file] {
  display: none;
}
.form .form__wrap .file_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px #59554C solid;
  color: #b4b4b4;
  font-weight: 500;
}
.form .form__wrap .file_wrap .file_name {
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  line-height: 50px;
}
.form .form__wrap .file_wrap .file_btn {
  display: block;
  width: 125px;
  height: 50px;
  color: #59554C;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  text-align: center;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 1px #59554C solid;
  line-height: 50px;
  font-size: 14px;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .form .form__wrap .file_wrap .file_btn:hover {
    background-color: #59554C;
    color: #ffffff;
  }
}
@media screen and (min-width: 960px) {
  .form .form__wrap.textarea {
    padding-left: 0;
  }
}
.form .select__wrap {
  position: relative;
}
.form .select__wrap::before {
  content: "";
  display: block;
  width: 8px;
  height: 7px;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(./../image/triangle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  pointer-events: none;
}
.form .radio__wrap label {
  display: inline-block;
  min-width: 49%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 13px;
  cursor: pointer;
}
.form .radio__wrap input {
  display: none;
}
.form .radio__wrap input:checked + span::after {
  background-color: #59554C;
}
.form .radio__wrap span {
  position: relative;
  padding-left: 26px;
}
.form .radio__wrap span::before {
  content: "";
  display: block;
  position: absolute;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 11px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px #59554C solid;
}
.form .radio__wrap span::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 11px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  background-color: #ffffff;
}
.form .accept {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.form .accept a {
  margin-right: 1em;
}
.form .error {
  color: #D43939;
  margin-top: 10px;
}
.form .error.none {
  display: none;
}
@media screen and (min-width: 960px) {
  .form.confirm .form__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 960px) {
  .form.confirm .form__row > * {
    width: 50%;
    padding-left: 0;
    padding-right: 50px;
  }
}
.form .pageTitle {
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
  margin-top: 60px;
  font-weight: 500;
}
@media screen and (min-width: 960px) {
  .form .pageTitle {
    font-size: 32px;
    margin-bottom: 45px;
    margin-top: 16px;
  }
}
.form .pageText {
  text-align: center;
  font-weight: 300;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

.submit {
  display: block;
  width: 90%;
  padding-right: 40px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 960px) {
  .submit {
    padding-right: 0;
  }
  .submit:hover::after {
    background-color: #59554C;
    right: -25px;
  }
  .submit:hover input,
  .submit:hover a {
    color: #59554C;
    background-color: #ffffff;
    border-color: #59554C;
  }
}
.submit::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  background-color: #8C887F;
}
@media screen and (min-width: 960px) {
  .submit::after {
    right: 0;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
    background-color: #ffffff;
  }
}
.submit.single {
  max-width: 650px;
  margin: 64px auto 74px;
  width: 90%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 960px) {
  .submit.single {
    margin-bottom: 94px;
  }
}
.submit.double {
  max-width: 375px;
}
.submit input,
.submit a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 50px;
  background-color: #59554C;
  border: 2px #ffffff solid;
  -webkit-appearance: none;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 960px) {
  .submit input,
  .submit a {
    font-size: 20px;
    height: 75px;
  }
}

.correct {
  display: block;
  width: 90%;
  padding-right: 40px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 960px) {
  .correct {
    padding-right: 0;
  }
  .correct:hover::after {
    background-color: #ffffff;
    right: -25px;
  }
  .correct:hover input,
  .correct:hover a {
    color: #ffffff;
    background-color: #59554C;
    border-color: #ffffff;
  }
}
.correct::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  background-color: #59554C;
}
@media screen and (min-width: 960px) {
  .correct::after {
    right: 0;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
}
.correct.single {
  max-width: 650px;
  margin-top: 50px;
  margin-bottom: 35px;
}
@media screen and (min-width: 960px) {
  .correct.single {
    margin-top: 90px;
    margin-bottom: 80px;
  }
}
.correct.double {
  max-width: 375px;
}
.correct input,
.correct a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  border: 2px #59554C solid;
  -webkit-appearance: none;
  color: #59554C;
  text-decoration: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .correct input,
  .correct a {
    font-size: 20px;
    height: 75px;
  }
}

.double__wrap {
  margin: 64px auto 74px;
  width: 90%;
}
@media screen and (min-width: 960px) {
  .double__wrap {
    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;
    gap: 60px;
    margin-bottom: 94px;
  }
}
.double__wrap > * {
  margin-bottom: 25px;
}
@media screen and (min-width: 960px) {
  .double__wrap > * {
    margin: 0;
  }
}

.wpcf7-spinner {
  display: none;
}

.content__inner .input_text {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 960px) {
  .content__inner .input_text {
    text-align: center;
  }
}
.content__inner .input_text span {
  display: inline-block;
}
.content__inner.thanks {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 960px) {
  .content__inner.thanks {
    width: 80%;
  }
}
.content__inner.thanks > *:nth-child(1) {
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
  margin-top: 60px;
  font-weight: 500;
}
@media screen and (min-width: 960px) {
  .content__inner.thanks > *:nth-child(1) {
    font-size: 32px;
    margin-bottom: 64px;
    margin-top: 16px;
  }
}
.content__inner.thanks p {
  text-align: left;
  font-weight: 300;
}
@media screen and (min-width: 960px) {
  .content__inner.thanks p {
    text-align: center;
  }
}

.page_title {
  margin-bottom: 104px;
}
@media screen and (min-width: 960px) {
  .page_title {
    margin-bottom: 100px;
  }
}

.page_top {
  bottom: 100px;
}