@charset "UTF-8";
@media screen and (max-width: 750px) {
  .display--pc {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  .display--sp {
    display: none;
  }
}

html {
  font-size: 62.5%;
  font-family: "Figtree", sans-serif;
  font-weight: 500;
}

.form {
  margin-top: 145px;
  padding-bottom: 164px;
}
@media screen and (max-width: 750px) {
  .form {
    margin-top: 80px;
  }
}
.form__list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  margin: 0 50px;
  font-weight: 400;
  font-size: clamp(1.3rem, 0.81vw, 2.6rem);
}
@media screen and (max-width: 750px) {
  .form__list {
    margin: 0 20px;
  }
}
.form__list + p {
  text-align: center;
}
.form__item {
  grid-column: 4/10;
  margin-top: 36px;
}
.form__item:first-of-type {
  margin-top: 0;
}
.form__item:has(.wpcf7-not-valid-tip) .form__name::after {
  content: " (必須事項です。入力をお願いします🙏)";
  color: #df6535;
}
.form__item:nth-of-type(3):has(.wpcf7-not-valid-tip) .form__name::after {
  content: " (メールアドレスの形式をご確認ください🙏)";
  color: #df6535;
}
@media screen and (max-width: 750px) {
  .form__item {
    grid-column: 1/13;
    font-size: 12px;
  }
}
.form__name {
  display: flex;
  align-items: center;
}
.form__name--highlight {
  color: #df6535;
}
.form__name + p {
  margin-top: 10px;
}
.form__box {
  width: 100%;
  padding: 24px 30px;
  border: 1px solid #dedcd3;
  border-radius: 4px;
  background: #edeae4;
}
.form__box:focus {
  outline: 1px solid #0a0a0a;
}
.form__box:not(:-moz-placeholder-shown) {
  background: #edeae4;
}
.form__box:not(:-ms-input-placeholder) {
  background: #edeae4;
}
.form__box:not(:placeholder-shown) {
  background: #edeae4;
}
.form__message {
  width: 100%;
  padding: 26px 32px;
  border: 1px solid #dedcd3;
  border-radius: 4px;
  background: #edeae4;
  line-height: 1.8;
}
.form__message:focus {
  outline: 1px solid #0a0a0a;
}
.form__button {
  margin: 40px auto 0;
  font-size: clamp(1.5rem, 0.9375vw, 3rem);
}

.wpcf7-not-valid {
  outline: 1px solid #df6535;
}
.wpcf7-not-valid:focus {
  outline: 1px solid #df6535;
}

.wpcf7-not-valid-tip {
  grid-column: 5/10;
  color: #df6535;
}

.wpcf7 input::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
  color: #898989;
}

.wpcf7 input:-ms-input-placeholder, .wpcf7 textarea:-ms-input-placeholder {
  color: #898989;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #898989;
}

/*送信エラーテキストの非表示*/
.wpcf7 form .wpcf7-response-output {
  border: none;
  color: #df6535;
  text-align: center;
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-spinner {
  display: none;
}