@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
.entry-title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  letter-spacing: 0.2em;
  font-size: 50px;
  color: #003f75;
}

.entry-form {
  width: 1200px;
  margin: 150px auto;
  max-width: 90%;
  width: 800px;
}

label {
  margin-top: 50px;
  display: flex;
  font-size: 20px;
  align-items: flex-start;
  font-weight: 600;
  color: #003f75;
}
label span.required {
  background: #e8423c;
  color: white;
  padding: 2px 4px;
  font-size: 10px;
  margin-left: 10px;
  display: block;
  display: block;
  line-height: 100%;
  font-weight: 400;
}
label span.info {
  font-weight: 400;
  color: #333333;
  margin-left: 20px;
  font-size: 18px;
}

label.confirm {
  font-weight: 400;
  color: #333333;
  font-size: 18px;
}

input,
textarea,
select {
  width: 100%;
  border: 0;
  padding: 10px 20px;
  font-size: 18px;
  margin-top: 10px;
  border-radius: 10px;
}

.radio-group label {
  display: inline;
  color: #7b7b7b;
  font-weight: 400;
  padding-right: 20px;
}
.radio-group label input {
  width: auto;
  margin-top: 20px;
}

.postal-flex input {
  width: 150px;
  margin-right: 20px;
}
.postal-flex button {
  border: 0;
  background: #ededed;
  color: #003f75;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
}

select {
  width: 250px;
  max-width: 100%;
}

textarea {
  max-width: 100%;
  min-width: 100%;
  min-height: 200px;
}

.form-submit button {
  background: #003f75;
  color: white;
  width: 400px;
  max-width: 90%;
  font-size: 25px;
  padding: 15px 20px;
  font-weight: 600;
  margin: 50px auto;
  display: block;
  border-radius: 9999px;
  cursor: pointer;
  transition: 0.2s;
}
.form-submit button:hover {
  transform: scale(1.03, 1.03);
}

@media screen and (max-width: 700px) {
  .entry-form {
    margin-top: 50px;
  }
  .entry-title {
    font-size: 40px;
  }
  label {
    display: block;
  }
  label span.info {
    font-size: 13px;
    margin-left: 0;
  }
  label span.required {
    display: inline;
  }
  label.confirm {
    font-size: 13px;
  }
  .form-submit button {
    font-size: 20px;
  }
}/*# sourceMappingURL=entry.css.map */