#contact-form {
  min-height: calc(100svh - 260px);
}
@media screen and (max-width: 768px) {
  #contact-form {
    font-size: 1rem;
    min-height: calc(100svh - 180px);
  }
}
#contact-form h2 {
  font-size: 1.7rem;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 5%;
}
@media screen and (max-width: 768px) {
  #contact-form h2 {
    font-size: 1.3rem;
    padding-bottom: 10%;
  }
}
#contact-form .form-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 3% 3% 0 3%;
  width: 100%;
  flex-wrap: wrap;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #contact-form .form-row {
    padding: 5% 5% 0 5%;
  }
}
#contact-form .form-label {
  font-weight: bold;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 20%;
  margin-right: 1rem;
  font-size: 1.1rem;
}
#contact-form .form-label .required {
  margin-left: 0.5rem;
  background-color: #517eb9;
  padding: 1% 1% 1.5% 1%;
  min-width: 2rem;
  text-align: center;
  line-height: 1;
  font-size: 0.7rem;
  color: #fff;
}
#contact-form .form-input {
  flex: 1;
  font-size: 1.1rem;
  min-width: 200px;
}
#contact-form .form-input a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #contact-form .form-row {
    flex-direction: column;
    align-items: flex-start;
  }
  #contact-form .form-label {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  #contact-form .form-input {
    width: 100%;
  }
}
#contact-form textarea,
#contact-form input[type=text],
#contact-form input[type=email],
#contact-form input[type=tel] {
  width: 100%;
  box-sizing: border-box;
  border: #6b6b6b 1px solid;
  padding: 10px;
}
#contact-form textarea {
  height: 200px;
}
#contact-form label {
  display: block !important;
  font-size: 1.1rem;
}
#contact-form .btn_area {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5% 0;
}
#contact-form .btn_area button {
  width: 40%;
  background-color: #517eb9;
  border-color: #517eb9;
  color: #fff;
  border-radius: 0.4rem;
  padding: 1%;
  font-size: 1.3rem;
  text-align: center;
}
#contact-form .btn_area button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 450px) {
  #contact-form .btn_area button {
    width: 70%;
    padding: 2%;
  }
}
#contact-form .check {
  padding-right: 1rem;
}
#contact-form input[type=checkbox] {
  position: relative;
  margin-top: -0.5%;
  margin-right: 0.5%;
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid #231815;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#contact-form input[type=checkbox]:checked:before {
  position: absolute;
  top: -20%;
  left: 35%;
  transform: rotate(50deg);
  width: 0.45rem;
  height: 0.9rem;
  border-right: 2px solid #231815;
  border-bottom: 2px solid #231815;
  content: "";
}
#contact-form input[type=radio] {
  position: relative;
  margin-top: -0.5%;
  margin-right: 0.5%;
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid #231815;
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#contact-form input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #231815;
  content: "";
}
#contact-form .form_wrapper {
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  background-color: #fff;
  padding: 5% 10% 5% 10%;
}
@media screen and (max-width: 450px) {
  #contact-form .form_wrapper {
    padding: 5%;
  }
}
#contact-form .form_wrapper .correction {
  width: 25%;
  margin-right: 1rem;
}
@media screen and (max-width: 450px) {
  #contact-form .form_wrapper .correction {
    width: 30%;
  }
}
#contact-form .form_wrapper .correction .correction_btn_area {
  display: flex;
  justify-content: start;
  align-items: center;
}
#contact-form .form_wrapper .correction .correction_btn_area button {
  width: 70%;
  background-color: #c2c2c2;
  border-color: #c2c2c2;
  border-radius: 0.4rem;
  padding: 3%;
  font-size: 1rem;
  text-align: center;
}
#contact-form .form_wrapper .correction .correction_btn_area button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 450px) {
  #contact-form .form_wrapper .correction .correction_btn_area button {
    width: 100%;
    padding: 2%;
    font-size: 1.2rem;
  }
}
#contact-form .form_wrapper .send {
  width: 75%;
}
@media screen and (max-width: 450px) {
  #contact-form .form_wrapper .send {
    width: 70%;
  }
}
#contact-form .form_wrapper .send .send_btn_area {
  display: flex;
  justify-content: start;
  align-items: center;
}
#contact-form .form_wrapper .send .send_btn_area button {
  width: 70%;
  background-color: #517eb9;
  border-color: #517eb9;
  border-radius: 0.4rem;
  padding: 1%;
  font-size: 1.3rem;
  text-align: center;
  color: #fff;
}
#contact-form .form_wrapper .send .send_btn_area button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 450px) {
  #contact-form .form_wrapper .send .send_btn_area button {
    width: 100%;
    padding: 2%;
  }
}
#contact-form .txt-row {
  width: 100%;
  background-color: #fff;
  padding: 5%;
}
#contact-form .txt-row a {
  text-decoration: underline;
}/*# sourceMappingURL=contact.css.map */