@charset "UTF-8";
/* ----------------------------------------------
    お問い合わせ
---------------------------------------------- */
.contact-form {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 60px 0;
  }
}
.contact-form .inner {
  width: 900px;
}
@media screen and (max-width: 767px) {
  .contact-form .inner {
    width: 90%;
  }
}

.contact__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__text {
    text-align: left;
  }
}

.form-wrap {
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 16px rgba(56, 83, 115, 0.04);
          box-shadow: 2px 2px 16px rgba(56, 83, 115, 0.04);
  border-radius: 28px;
  padding: 60px 80px 80px;
  margin: 60px auto;
}
@media screen and (max-width: 767px) {
  .form-wrap {
    padding: 60px 20px 60px;
  }
}
.form-wrap .caution,
.form-wrap .any {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  border-radius: 3px;
  padding: 2px 5px;
  margin-left: 16px;
}
@media screen and (max-width: 767px) {
  .form-wrap .caution,
  .form-wrap .any {
    font-size: 1.1rem;
    padding: 1px 5px;
    margin-left: 0;
  }
}
.form-wrap .caution {
  background-color: #ec3f6c;
}
.form-wrap .any {
  background-color: #b1b1b1;
}
.form-wrap dl div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .form-wrap dl div {
    display: block;
    margin-bottom: 30px;
  }
}
.form-wrap dl div:not(:last-of-type) {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-wrap dt {
  font-weight: 600;
  line-height: 1.4;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .form-wrap dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 0 10px;
    margin-bottom: 10px;
  }
}
.form-wrap .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 20px;
  white-space: nowrap;
}
.form-wrap select {
  cursor: pointer;
  border: 1px solid #8c8c8c;
  padding: 5px;
}
.form-wrap input:not([type=submit]):not([type=checkbox]):focus,
.form-wrap textarea:focus {
  border: 2px solid #2ca5fe;
}
.form-wrap input:not([type=submit]):not([type=checkbox]),
.form-wrap textarea {
  background-color: #fafafa;
  border: 2px solid #edf3f9;
  border-radius: 5px;
  width: 100%;
  padding: 10px 15px;
}
.form-wrap .privacy-check {
  text-align: center;
  margin-bottom: 50px;
}
.form-wrap .privacy-check a {
  text-decoration: underline;
  -webkit-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
}
.form-wrap .privacy-check a:hover {
  opacity: 0.6;
}
.form-wrap .submit-btn {
  overflow: hidden;
  background-image: linear-gradient(120deg, #00bfff, #0327a6);
  border-radius: 50px;
  max-width: 300px;
  width: 100%;
  height: 70px;
  padding: 2px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .form-wrap .submit-btn {
    height: 60px;
  }
}
.form-wrap .submit-btn input[type=submit] {
  display: block;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
@media screen and (max-width: 767px) {
  .form-wrap .submit-btn input[type=submit] {
    font-size: 1.6rem;
  }
}
.form-wrap .submit-btn input[type=submit]:hover {
  background-color: #fff;
  color: #0327a6;
}
.form-wrap {
  /* contact form7 */
}
.form-wrap .wpcf7-checkbox .wpcf7-list-item-label {
  cursor: pointer;
}
.form-wrap .wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

/* ----------------------------------------------
    お問い合わせ送信完了
---------------------------------------------- */
.contact-thanks {
  padding: 100px 0 300px;
}
@media screen and (max-width: 767px) {
  .contact-thanks {
    padding: 60px 0 100px;
  }
}

.thanks__box {
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 16px rgba(56, 83, 115, 0.04);
          box-shadow: 2px 2px 16px rgba(56, 83, 115, 0.04);
  border-radius: 28px;
  max-width: 800px;
  width: 100%;
  padding: 60px 50px 80px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .thanks__box {
    padding: 40px 20px;
  }
}

.thanks__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .thanks__title {
    font-size: 2.5rem;
  }
}

.thanks__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    text-align: left;
  }
}/*# sourceMappingURL=contact.css.map */