@charset "utf-8";

.form input,
.form input[type="text"],
.form textarea {
  width: 100%;
  margin-bottom: 0;
  padding: 10px 13px 8px;
  border-radius: 8px;
  font-weight: 510;
  line-height: 26px;
  box-sizing: border-box;
  background-color: var(--color-gray07);
}
.form input:focus,
.form input[type="text"]:focus,
.form textarea:focus {
  background-color: var(--color-gray07);
  outline: none;
  border: none;
}
.form input::placeholder,
.form textarea::placeholder {
  color: var(--color-gray03);
}
.form textarea {
  height: 187px;
}
.form .form_explain {
  margin-bottom: 44px;
}
.form .form_explain .sentence {
  font-weight: 600;
  line-height: 30px;
}
.form .form_explain .supply {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy03);
}
.form .box {
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form > dl:last-of-type {
  margin-bottom: 24px;
}
.form dt {
  font-weight: 600;
  line-height: 30px;
}
.form dt:after {
  content: "任意";
  color: var(--color-navy03);
  font-size: 14px;
  font-weight: 600;
  margin-left: 16px;
}
.form dt.nec:after {
  content: "必須";
  color: var(--color-red);
}
.form .box_col2 {
  display: flex;
  gap: 40px;
}
.form .box_col2 .box {
  width: calc(50% - 20px);
}
.form .privacy_policy {
  line-height: 30px;
  font-weight: 510;
}
.form .privacy_policy a {
  font-family: var(--font-noto);
  color: var(--color-navy03);
  text-decoration: underline;
}
.form .wrap_submit {
  margin-top: 46px;
}
.form .wrap_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.form .button_blue {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 70px 8px;
  box-sizing: border-box;
  min-width: 296px;
  width: 296px;
  border-radius: 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 790;
  line-height: 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: unset;
}
.form .button_blue:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  background-color: var(--color-navy02);
  transition: filter 0.3s;
}
.form .button_blue:hover:before {
  filter: brightness(90%);
}
.form .error {
  font-size: 14px;
  font-weight: 556;
  color: var(--color-red);
  margin-top: 4px;
}
.form .wrap_submit .error {
  margin-bottom: 12px;
}
@media screen and (max-width: 750px) {
  h1.text_center {
    text-align: left;
    margin-bottom: 37px;
  }
  .form .form_explain {
    margin-bottom: 38px;
  }
  .form .form_explain .sentence {
    line-height: 26px;
  }
  .form .form_explain .supply {
    margin-top: 8px;
    font-weight: 510;
  }
  .form dt {
    line-height: 26px;
  }
  .form dt:after {
    font-weight: 500;
    line-height: 23px;
  }
  .form .box_col2 {
    display: block;
  }
  .form .box_col2 .box {
    width: 100%;
  }
  .form > dl:last-of-type {
    margin-bottom: 9px;
  }
  .form .privacy_policy {
    line-height: 26px;
  }
  .form .wrap_submit {
    margin-top: 45px;
  }
  .form .button_blue {
    min-width: 343px;
    font-weight: 700;
    line-height: 26px;
    padding: 11px 70px 9px;
  }
  .form .error {
    font-weight: 510;
  }
  .form .wrap_submit:has(.error) {
    margin-top: 20px;
  }
  .form .wrap_button {
    flex-flow: column;
  }
}
