@charset "UTF-8";
.contact .dl_box {
  border-top: solid 1px #ccc;
  margin-bottom: 30px;
}
.contact dl {
  margin: 0;
  display: flex;
  align-items: stretch;
  border-bottom: solid 1px #ccc;
  line-height: 24px;
}
.contact dl dt {
  width: 30% !important;
  font-weight: 500 !important;
  text-align: left !important;
  padding: 25px 3% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background-color: #cce4f3 !important;
  position: relative;
}
.contact dl dd {
  margin: 0 !important;
  width: 70% !important;
  padding: 25px 3% !important;
  background-color: #fff !important;
}
.contact dl dd input {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 94%;
  font-size: 16px;
  padding: 15px 3%;
  border: none;
  outline: none;
  background-color: #eee;
  border-radius: 5px;
}
.contact dl dd .input02 input {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 20%;
  font-size: 16px;
  padding: 15px 3%;
  border: none;
  outline: none;
  background-color: #eee;
  border-radius: 5px;
  margin-bottom: 10px;
}
.contact dl dd .input03 input {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 20%;
  font-size: 16px;
  padding: 15px 3%;
  border: none;
  outline: none;
  background-color: #eee;
  border-radius: 5px;
}
.contact dl dd textarea {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 94%;
  font-size: 16px;
  padding: 15px 3%;
  border: none;
  outline: none;
  background-color: #eee;
  border-radius: 5px;
  display: block;
  height: 150px;
}
.contact dl dd .caption {
  display: block;
  font-size: 13px;
}
.contact .file input {
  padding: 0;
  background: no-repeat;
  border-radius: 0;
}
.contact .required {
  position: absolute;
  right: 10%;
  font-size: 12px;
  color: #fff;
  background-color: #e83a4d;
  margin-left: 10px;
  padding: 0 15px 1px;
  border-radius: 50px;
}
::placeholder {
  color: #aaa;
}
/*ファイルを選択*/
.contact input[type="file"] {
  font-size: 16px;
  padding-top: 2px;
}
.contact input[type="file"]::file-selector-button {
  display: inline-block;
  color: #0078c2;
  background: #fff;
  border: solid 2px #0078c2;
  padding: 5px 20px 4px;
  border-radius: 50px;
  font-size: 13px;
  text-align: center;
  transition: all .3s;
  cursor: pointer;
  outline: none;
  position: relative;
  top: -2px;
}
.contact input[type=file]::file-selector-button:hover {
  color: #fff;
  background-color: #0078c2;
}
/*ラジオボックス*/
.contact .radio_box span.wpcf7-list-item {
  display: block;
  margin: 5px auto;
}
.contact .radio_box input[type="radio"] {
  display: none;
}
.contact .radio_box input[type="radio"] + .wpcf7-list-item-label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}
.contact .radio_box input[type="radio"] + .wpcf7-list-item-label:before, .contact .radio_box input[type="radio"] + .wpcf7-list-item-label:after {
  position: absolute;
  content: '';
  top: 50%;
  border-radius: 100%;
}
.contact .radio_box input[type="radio"] + .wpcf7-list-item-label:before {
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -10px;
  border: 1px solid #0078c2;
  background-color: #fff;
}
.contact .radio_box input[type="radio"] + .wpcf7-list-item-label:hover:before {
  background: #fff;
}
.contact .radio_box input[type="radio"] + .wpcf7-list-item-label:after {
  opacity: 0;
  left: 3px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background: #0078c2;
}
.contact .radio_box input[type="radio"]:checked + .wpcf7-list-item-label:before {
  background: #fff;
  border: 1px solid #0078c2;
}
.contact .radio_box input[type="radio"]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
/*チェックボックス*/
.contact .check_box input[type="checkbox"] {
  display: none;
}
.contact .check_box input[type="checkbox"] + .wpcf7-list-item-label {
  padding-left: 30px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.contact .check_box input[type="checkbox"] + .wpcf7-list-item-label:before {
  border: 1px solid #0078c2;
  background-color: #fff;
  border-radius: 2px;
  content: '';
  display: block;
  height: 18px;
  left: 0;
  margin-top: -8.5px;
  position: absolute;
  top: 50%;
  width: 18px;
}
.contact .check_box input[type="checkbox"] + .wpcf7-list-item-label:after {
  border-right: 3px solid #0078c2;
  border-bottom: 3px solid #0078c2;
  content: '';
  display: block;
  height: 9px;
  left: 6px;
  margin-top: -6.5px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
.contact .check_box input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.contact p.check_box {
  text-align: center;
  margin: 40px auto;
}
.contact p.check_box a {
  color: #000;
}
.contact p.check_box .wpcf7-list-item {
  margin: 0 !important;
}
.contact .btn_box {
  display: flex;
  justify-content: center;
}
.contact .wpcf7-form-control.wpcf7-submit {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  color: #fff;
  background: no-repeat;
  border: none;
  padding: 20px 0 22px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  outline: none;
}
.contact .submit.clear {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  color: #fff;
  background: no-repeat;
  border: none;
  padding: 20px 0;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  outline: none;
}
.contact .btn {
  width: 35%;
  margin: 0 3%;
  color: #fff;
  background-color: #0078c2;
  border-radius: 50px;
  transition: all .3s;
}
.contact .btn.clear {
  background-color: #999;
}
.contact .btn:hover {
  background-color: #005a92;
  transition: all .3s;
}
.contact .btn.clear:hover {
  background-color: #888;
  transition: all .3s;
}
.contact .btn.clear:hover {
  background-color: #555;
  transition: all .3s;
}
.wpcf7 .wpcf7-submit:disabled {
  background-color: #ccc;
  border-radius: 50px;
}
.wpcf7-not-valid-tip {
  color: #e83a4d !important;
  font-weight: 500 !important;
}
.wpcf7-spinner {
  display: none !important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: none;
  color: #e83a4d;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: none;
  color: #008357;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.wpcf7 form .wpcf7-response-output {
  border: none !important;
}
span.wpcf7-form-control-wrap {
  width: 100%;
}
@media screen and (max-width:1050px) {
  .contact .dl_box {
    border: solid 1px #ccc;
    border-bottom: none;
  }
  .contact dl {
    display: block;
  }
  .contact dl dt {
    width: auto !important;
    display: block !important;
    padding: 10px 5% 12px !important;
  }
  .contact dl dd {
    width: auto !important;
  }
  /*ラジオボックス*/
  .contact .radio_box span {
    display: block;
    margin: 5px auto;
  }
  .recruit .contact .radio_box span.wpcf7-list-item {
    display: inline-block;
    margin-right: 20px;
  }
  .contact dl dd .input02 {
    width: 30%;
  }
  .contact dl dd .input03 {
    width: 20%;
  }
  .contact textarea {
    height: 100px;
  }
  .contact .required {
    position: absolute;
    right: 5%;
  }
  .contact p.check_box {
    margin: 30px auto;
  }
  .contact .wpcf7-form-control.wpcf7-submit {
    padding: 15px 0 17px;
  }
  .contact .submit.clear {
    padding: 15px 0 17px;
  }
  .contact .btn {
    width: 40%;
  }
  input[type="reset"] {
    -webkit-appearance: none;
  }
  input[type="submit"] {
    -webkit-appearance: none;
  }
  input[type="button"] {
    -webkit-appearance: none;
  }
  .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    font-size: 16px;
  }
  .wpcf7 form.sent .wpcf7-response-output {
    font-size: 16px;
  }
}