@charset "UTF-8";
/* --------------------------------------------------
	section size
-------------------------------------------------- */
/* sec-contact
---------------------------------------------------------------------------- */
.sec-contact {
  padding: 8rem 0 12rem 0;
  background-color: transparent;
  box-sizing: border-box;
  /* sec-contact.-thanks
  ---------------------------------------------------------------------------- */
}
.sec-contact .l-inner {
  max-width: 86rem;
}
@media screen and (max-width: 767px) {
  .sec-contact .l-inner {
    max-width: inherit;
  }
}
.sec-contact .lead {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  color: #224589;
}
@media screen and (max-width: 767px) {
  .sec-contact .lead {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 500;
  }
}
.sec-contact .form-style {
  margin-top: 8rem;
  /*　チェックマーク　*/
  /* error */
}
.sec-contact .form-style .input-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .input-box {
    flex-direction: column;
    gap: 0.8rem 0;
  }
}
.sec-contact .form-style .input-box .form_ttl {
  position: relative;
  top: 1.1rem;
  width: 23rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .input-box .form_ttl {
    top: 0;
    width: 100%;
    justify-content: flex-start;
    gap: 0 0.8rem;
  }
}
.sec-contact .form-style .input-box .form_ttl .ttl {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .input-box .form_ttl .ttl {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
  }
}
.sec-contact .form-style .input-box .form_ttl .required {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 0.4rem;
  background: #224589;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .input-box .form_ttl .required {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
    padding: 0.2rem 0.8rem 0.3rem 0.8rem;
  }
}
.sec-contact .form-style .input-box .form_input {
  width: calc(100% - 23rem);
  padding-left: 4rem;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .input-box .form_input {
    width: 100%;
    padding-left: 0;
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
  }
}
.sec-contact .form-style .input-box .form_input input, .sec-contact .form-style .input-box .form_input textarea {
  width: 100%;
  color: #101010;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 0.4rem;
  border: 2px solid rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .input-box .form_input input, .sec-contact .form-style .input-box .form_input textarea {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
  }
}
.sec-contact .form-style .input-box .form_input input::-moz-placeholder, .sec-contact .form-style .input-box .form_input textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.sec-contact .form-style .input-box .form_input input::placeholder, .sec-contact .form-style .input-box .form_input textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.sec-contact .form-style .input-box .form_input textarea {
  height: 36.3rem;
  resize: vertical;
  word-break: initial;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .input-box .form_input textarea {
    height: 19rem;
  }
}
.sec-contact .form-style .input-box .form_input .small-width {
  max-width: 19.7rem;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .input-box .form_input .small-width {
    max-width: 18rem;
  }
}
.sec-contact .form-style .input-box .form_input .select-wrap {
  position: relative;
}
.sec-contact .form-style .input-box .form_input .select-wrap:after {
  position: absolute;
  content: "";
  right: 1.6rem;
  top: 2rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #224589 transparent transparent transparent;
  border-width: 0.8rem 0.6rem 0 0.6rem;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .input-box .form_input .select-wrap:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #224589 transparent transparent transparent;
    border-width: 0.6rem 0.45rem 0 0.45rem;
  }
}
.sec-contact .form-style .input-box .form_input .select-wrap .wpcf7-form-control-wrap {
  position: relative;
  background: #fff;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .input-box .form_input .select-wrap .wpcf7-form-control-wrap {
    max-width: inherit;
  }
}
.sec-contact .form-style .input-box .form_input .select-wrap select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #101010;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 0.4rem;
  border: 2px solid rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .input-box .form_input .select-wrap select {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
  }
}
.sec-contact .form-style .input-box .form_input .select-wrap option {
  color: #101010;
}
.sec-contact .form-style .input-box + .input-box {
  margin-top: 3.2rem;
}
.sec-contact .form-style .agree-wrap {
  margin-top: 8rem;
  text-align: center;
}
.sec-contact .form-style .agree-wrap .agree-txt {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .agree-wrap .agree-txt {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
  }
}
.sec-contact .form-style .agree-wrap .agree-txt a {
  font-weight: 700;
  color: #1202BD;
  text-decoration: underline;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .sec-contact .form-style .agree-wrap .agree-txt a:hover {
    text-decoration: none;
  }
}
.sec-contact .form-style .wpcf7-list-item,
.sec-contact .form-style .input-checkbox {
  position: relative;
  text-align: center;
  margin: 0;
}
.sec-contact .form-style .wpcf7-list-item label,
.sec-contact .form-style .input-checkbox label {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .wpcf7-list-item label,
  .sec-contact .form-style .input-checkbox label {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
  }
}
.sec-contact .form-style .wpcf7-list-item-label {
  padding-left: 2.2rem;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .wpcf7-list-item-label {
    padding-left: 1.6rem;
  }
}
.sec-contact .form-style input[type=checkbox] {
  visibility: hidden;
  width: 1px !important;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 !important;
  margin: 0 !important;
}
.sec-contact .form-style input[type=checkbox] + span:before {
  display: block;
  position: absolute;
  content: "";
  top: 0.2rem;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  background: #fff;
  border: 2px solid #1202BD;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style input[type=checkbox] + span:before {
    top: 0;
  }
}
.sec-contact .form-style input[type=checkbox]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.3rem;
  left: 0.7rem;
  width: 0.6rem;
  height: 1.2rem;
  transform: rotate(45deg);
  border-right: 3px solid #1202BD;
  border-bottom: 3px solid #1202BD;
  content: "";
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style input[type=checkbox]:checked + span:after {
    top: 0.3rem;
    height: 0.9rem;
  }
}
.sec-contact .form-style .btn_wrap {
  position: relative;
  text-align: center;
  margin-top: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-direction: column-reverse;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .btn_wrap {
    margin-top: 8rem;
  }
}
.sec-contact .form-style .btn_wrap .form-button {
  position: relative;
  height: 4.8rem;
  box-sizing: border-box;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .btn_wrap .form-button {
    width: 100%;
    height: 4.2rem;
    margin: 0 auto;
  }
}
.sec-contact .form-style .btn_wrap .form-button:before, .sec-contact .form-style .btn_wrap .form-button:after {
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  pointer-events: none;
  transition: 0.4s;
}
.sec-contact .form-style .btn_wrap .form-button:before {
  right: 2rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 4px 0 4px 8px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .btn_wrap .form-button:before {
    right: 1.6rem;
  }
}
.sec-contact .form-style .btn_wrap .form-button:after {
  width: 4.8rem;
  height: 4.8rem;
  border-left: 1px solid #fff;
  background: #D73030;
  border-radius: 0 0.4rem 0.4rem 0;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .btn_wrap .form-button:after {
    width: 4.2rem;
    height: 4.2rem;
  }
}
.sec-contact .form-style .btn_wrap .form-button .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 0.8rem 6.4rem 0.8rem 1.6rem;
  border-radius: 0.4rem;
  color: #fff;
  background: #D73030;
  border: none;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  opacity: 1 !important;
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .btn_wrap .form-button .btn {
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 500;
    padding: 1rem 6.4rem 1rem 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .sec-contact .form-style .btn_wrap .form-button:hover:before {
    right: 0.4rem;
  }
  .sec-contact .form-style .btn_wrap .form-button:hover:after {
    right: -1.6rem;
    background: #1202BD;
  }
  .sec-contact .form-style .btn_wrap .form-button:hover .btn {
    background: #1202BD;
  }
}
.sec-contact .form-style .btn_wrap .form-button.is-disabled {
  pointer-events: none;
}
.sec-contact .form-style .btn_wrap .form-button.is-disabled:after {
  background: #a2a2a2;
}
.sec-contact .form-style .btn_wrap .form-button.is-disabled .btn {
  background: #a2a2a2;
}
.sec-contact .form-style .wpcf7-not-valid-tip,
.sec-contact .form-style .error {
  margin-top: 0.8rem;
  text-align: left;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.0008em;
  font-weight: 500;
  color: #1202BD;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .wpcf7-not-valid-tip,
  .sec-contact .form-style .error {
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.0007em;
    font-weight: 500;
  }
}
.sec-contact .form-style .wpcf7-spinner {
  margin: 1rem auto 0 auto;
}
.sec-contact .form-style .wpcf7-response-output {
  border-color: #1202BD;
  color: #1202BD;
  padding: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec-contact .form-style .wpcf7-response-output {
    text-align: left;
    line-height: 1.45;
    padding: 1.2rem;
  }
}
.sec-contact.-thanks {
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .sec-contact.-thanks {
    padding: 8rem 0;
  }
}
.sec-contact.-thanks .txt-box {
  padding: 8rem 13rem;
  border-radius: 0.4rem;
  border: 2px solid #224589;
  background: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sec-contact.-thanks .txt-box {
    padding: 4rem 1.6rem;
  }
}
.sec-contact.-thanks .txt-box .ttl {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.6;
  letter-spacing: 0.00048em;
  font-weight: 700;
  color: #224589;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 2px solid #D73030;
}
@media screen and (max-width: 767px) {
  .sec-contact.-thanks .txt-box .ttl {
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0.00032em;
    font-weight: 700;
  }
}
.sec-contact.-thanks .txt-box .txt {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  color: #181414;
}
@media screen and (max-width: 767px) {
  .sec-contact.-thanks .txt-box .txt {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
  }
}