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

.l-form {
  width: 90%;
  max-width: 700px;
  margin: 40px auto 0;
}
.l-form__name {
  margin: 0 0 10px;
}
.l-form__name.required::before {
  background-color: transparent;
  color: #D43939;
}
.l-form__name.optional::before {
  background-color: transparent;
}
.l-form__radio-label {
  min-width: calc((100% - 1em) / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-form__accept {
  margin: 40px auto 64px;
}
.l-form__submit {
  width: 90%;
  max-width: 700px;
  margin: 40px auto 0;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 960px) {
  .l-form__submit {
    padding-right: 0;
  }
}
.l-form__wrap {
  width: 90%;
  max-width: 700px;
  margin: 40px auto 0;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 960px) {
  .l-form__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-right: 0;
  }
}
.l-form__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #59554C;
  border: 2px #59554C 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) {
  .l-form__button {
    font-size: 20px;
    height: 75px;
  }
  .l-form__button:hover {
    color: #59554C;
    background-color: #ffffff;
    border-color: #59554C;
  }
  .l-form__button:hover::after {
    background-color: #59554C;
    right: -25px;
  }
}
.l-form__button::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) {
  .l-form__button::after {
    right: -2px;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
    background-color: #ffffff;
  }
}
.l-form__button--return {
  color: #59554C;
  background-color: #ffffff;
}
@media screen and (min-width: 960px) {
  .l-form__button--return:hover {
    color: #ffffff;
    background-color: #59554C;
  }
  .l-form__button--return:hover::after {
    background-color: #ffffff;
    right: -25px;
  }
}
.l-form__button--return::after {
  background-color: #59554C;
}
.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 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;
  }
}

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