@charset "UTF-8";
/* -------------------------------------------------------------------------*/
/* MIXIN / ARGUMENT / COMMON CLASS
/* -------------------------------------------------------------------------*/
.contact_area .required {
  position: relative;
}
.contact_area .required::after {
  content: "必須";
  display: inline-block;
  font-size: 12px;
  background-color: red;
  padding: 5px 8px;
  line-height: 100%;
  color: #fff;
  font-weight: 400;
  border-radius: 3px;
  margin-left: 5px;
}
@media only screen and (max-width:640px) {
  .contact_area table {
    border-top: 1px solid #E1E1E1;
  }
}
.contact_area th {
  width: 300px;
}
.contact_area th.required::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 10px);
}
@media only screen and (max-width:640px) {
  .contact_area th {
    width: 100%;
    display: block;
    border-top: none;
  }
}
.contact_area td input::-webkit-input-placeholder {
  color: #ccc;
}
.contact_area td input::-moz-placeholder {
  color: #ccc;
}
.contact_area td input:-ms-input-placeholder {
  color: #ccc;
}
.contact_area td input::-ms-input-placeholder {
  color: #ccc;
}
.contact_area td input::placeholder {
  color: #ccc;
}
.contact_area td input[type=text], .contact_area td textarea {
  border: 1px solid #E1E1E1;
  padding: 10px;
  width: 100%;
  margin: 0;
  display: block;
  min-height: 47px;
  border-radius: 3px;
}
.contact_area td .input_w_s {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact_area td .input_w_s input {
  max-width: 120px;
}
.contact_area td .radioItem {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  line-height: 1;
  cursor: pointer;
}
.contact_area td .radioItem:not(:last-of-type) {
  margin-right: 16px;
}
.contact_area td .radioButton {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  border-radius: 9999px;
  cursor: pointer;
}
.contact_area td .radioButton:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 9999px;
  background-color: #0c9e95;
}
@media only screen and (max-width:640px) {
  .contact_area td {
    width: 100%;
    display: block;
    border-top: none;
  }
}
.contact_area .checkboxItem {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  line-height: 1;
  cursor: pointer;
}
.contact_area .checkboxItem:not(:last-of-type) {
  margin-right: 16px;
}
.contact_area .checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #0c9e95;
  border-radius: 2px;
  cursor: pointer;
}
.contact_area .checkbox:checked {
  background-color: #0c9e95;
}
.contact_area .checkbox:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.contact_area .policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2rem auto;
}
.contact_area .submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}
.contact_area .submit button, .contact_area .submit a {
  text-decoration: none;
  width: calc(50% - 12px);
  max-width: 286px;
  margin-right: 24px;
  border: none;
  padding: 15px;
  color: #fff;
  background-color: #949A9E;
  letter-spacing: 0.2rem;
  position: relative;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-align: center;
  display: inline-block;
  border-radius: 5rem;
}
.contact_area .submit button:hover, .contact_area .submit a:hover {
  opacity: 0.8;
}
.contact_area .submit button[type=submit] {
  background-color: #43c094;
}
.contact_area .form-alart {
  color: red;
  background: #f9eff2;
  border-radius: 8px;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}