html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
}

.contact {
  font-weight: 600;
  font-size: max(14px, 0.875rem);
  letter-spacing: 0.7px;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}
.contact__wrapper {
  padding-bottom: 80px;
  width: 100%;
}
.contact__wrapper form {
  border-radius: var(--Corner-Rounding-large, 16px);
  line-height: 1.6;
  padding: 64px 110px;
  background: #ddedff;
}
.contact__wrapper form .text {
  color: #0e318d;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1.6px;
  margin-bottom: 10px;
}
.contact__wrapper form input {
  font-size: 1rem;
  letter-spacing: 0.08em;
  width: 100%;
  padding: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
  border: var(--Border-100, 1px) solid #c2c2c2;
  background: #fff;
  font-weight: 700;
}
.contact__wrapper form input::placeholder {
  color: #bdbdbd;
}
.contact__wrapper form textarea {
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: 1.28px;
  width: 100%;
  background: #f6f6f6;
  padding: 1.1875rem 1.5rem;
  border: var(--Border-100, 1px) solid #c2c2c2;
  background: #fff;
  height: 300px;
}
.contact__wrapper form textarea::placeholder {
  color: #bdbdbd;
}
.contact__wrapper form .checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
  margin-bottom: 44px;
}
.contact__wrapper form .checkbox .checkbox-wrapper {
  width: 1rem;
  margin-right: 0.875rem;
  display: flex;
  align-items: center;
}
.contact__wrapper form .checkbox input {
  display: inline-block;
  border: 1px solid #000;
  height: 1rem;
  width: 1rem;
  margin-bottom: 0;
}
.contact__wrapper form .checkbox p {
  color: #4c4c4c;
  /* 14 - SemiBold -1.5 - 0 */
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: 0.28px;
}
.contact__wrapper form .checkbox p a {
  text-decoration: underline;
  text-underline-offset: 20%;
}

.policy {
  padding-bottom: 80px;
}
.policy::before {
  content: "";
  display: block;
  padding-top: 6.375rem;
  margin-top: -6.375rem;
}
.policy .policy-content__heading {
  color: #0e318d;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 38.4px */
  letter-spacing: 1.92px;
  margin-bottom: 24px;
}
.policy .policy-content__detail {
  color: #000;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 1.28px;
  margin-bottom: 40px;
}
.policy .policy-content:last-child .policy-content__detail {
  margin-bottom: 0;
}

.asterisk {
  color: #de1313;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: 1.28px;
}

.submit-btn {
  text-align: center;
  background: rgb(14, 49, 141);
  color: #fff;
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
  letter-spacing: 1.92px;
  max-width: 500px;
  width: 100%;
  height: 5.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: 0.3s;
  color: white;
}
.submit-btn:hover {
  opacity: 0.9;
  transition: 0.5s;
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .contact {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.7px;
    display: flex;
    justify-content: center;
    padding: 0 24px;
  }
  .contact__wrapper {
    padding-bottom: 40px;
    width: 100%;
  }
  .contact__wrapper form {
    border-radius: var(--Corner-Rounding-large, 16px);
    line-height: 1.6;
    padding: 24px;
    background: #ddedff;
  }
  .contact__wrapper form .text {
    color: #0e318d;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 32px */
    letter-spacing: 1.6px;
    margin-bottom: 10px;
  }
  .contact__wrapper form input {
    font-size: 1rem;
    letter-spacing: 0.08em;
    width: 100%;
    padding: 10px;
    margin-bottom: 1.25rem;
    border: var(--Border-100, 1px) solid #c2c2c2;
    background: #fff;
    font-weight: 700;
  }
  .contact__wrapper form input::placeholder {
    color: #bdbdbd;
  }
  .contact__wrapper form textarea {
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 25.6px */
    letter-spacing: 1.28px;
    width: 100%;
    background: #f6f6f6;
    padding: 1.1875rem 1.5rem;
    border: var(--Border-100, 1px) solid #c2c2c2;
    background: #fff;
    height: 200px;
  }
  .contact__wrapper form textarea::placeholder {
    color: #bdbdbd;
  }
  .contact__wrapper form .checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .contact__wrapper form .checkbox .checkbox-wrapper {
    width: 1rem;
    margin-right: 0.875rem;
    display: flex;
    align-items: center;
  }
  .contact__wrapper form .checkbox input {
    display: inline-block;
    border: 1px solid #000;
    height: 1rem;
    width: 1rem;
    margin-bottom: 0;
  }
  .contact__wrapper form .checkbox p {
    color: #4c4c4c;
    /* 14 - SemiBold -1.5 - 0 */
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 21px */
    letter-spacing: 0.28px;
  }
  .contact__wrapper form .checkbox p a {
    text-decoration: underline;
    text-underline-offset: 20%;
  }
  .policy {
    padding-bottom: 80px;
  }
  .policy::before {
    content: "";
    display: block;
    padding-top: 6.375rem;
    margin-top: -6.375rem;
  }
  .policy .policy-content__heading {
    color: #0e318d;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 38.4px */
    letter-spacing: 1.92px;
    margin-bottom: 12px;
  }
  .policy .policy-content__detail {
    color: #000;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 25.6px */
    letter-spacing: 1.28px;
    margin-bottom: 20px;
  }
  .policy .policy-content:last-child .policy-content__detail {
    margin-bottom: 0;
  }
  .asterisk {
    color: #de1313;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 25.6px */
    letter-spacing: 1.28px;
  }
  .submit-btn {
    text-align: center;
    background: rgb(14, 49, 141);
    color: #fff;
    text-align: center;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 100% */
    letter-spacing: 1.92px;
    max-width: 500px;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: 0.3s;
    color: white;
  }
  .submit-btn:hover {
    opacity: 0.9;
    transition: 0.5s;
    transform: scale(1.05);
  }
}/*# sourceMappingURL=contact.css.map */