  @charset "UTF-8";
/* form
________________________________________________________*/
input[type=text],
input[type=tel],
input[type=email] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
}

input[type=submit] {
  width: 80%;
  height: 60px;
  font-size: 18px;
  margin-bottom: 50px;
  box-sizing: border-box;
  background: #E60016;
  color: #fff;
  text-align: center;
  border: none;
  cursor: pointer;
}
@media (min-width: 481px) {
  input[type=submit] {
    width: 400px;
    height: 80px;
    font-size: 24px;
    margin-bottom: 0;
  }
}
input[type=submit]:hover {
  opacity: 0.75;
}

input[type=button] {
  width: 80%;
  height: 60px;
  font-size: 18px;
  margin-bottom: 50px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  background: #fff;
  text-align: center;
  cursor: pointer;
}
@media (min-width: 481px) {
  input[type=button] {
    width: 400px;
    height: 80px;
    font-size: 24px;
    margin-bottom: 0;
  }
}
input[type=button]:hover {
  opacity: 0.75;
}

label {
  cursor: pointer;
}
label.error {
  cursor: initial;
  color: #E60016;
  padding: 5px 0 0 5px;
}

textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
}

p.required {
  position: relative;
  padding-left: 35px;
}
p.required::before {
  content: "±Øíš";
  width: 30px;
  height: 20px;
  display: inline-block;
  background: #E60016;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-size: 10px;
  color: #fff;
  line-height: 20px;
  text-align: center;
}

ul.radio {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}
ul.radio li {
  width: 25%;
  flex-wrap: nowrap;
  text-align: left;
}

div.privacy_policy {
  width: 100%;
  border: 1px solid #ccc;
  padding: 20px;
  box-sizing: border-box;
  font-size: 16px;
  text-align: center;
}
div.button_area {
  margin-top: 70px;
  width: 100%;
  text-align: center;
}
div.buttons_area {
  margin-top: 70px;
  width: 100%;
  display: flex;
}
div.buttons_area .previous {
  width: 50%;
  text-align: center;
}
div.buttons_area .submit {
  width: 50%;
  text-align: center;
}

table tbody tr th {
  vertical-align: middle;
}
table tbody tr th.required {
  position: relative;
}
table tbody tr th.required::before {
  content: "±Øíš";
  width: 30px;
  height: 20px;
  display: inline-block;
  background: #E60016;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 35px;
  margin: auto;
  font-size: 10px;
  color: #fff;
  line-height: 20px;
  text-align: center;
}/*# sourceMappingURL=contact.css.map */