@charset "UTF-8";
.form h1 {
  font-size: 5rem;
  color: #00178B;
  font-weight: bold;
  width: 600px;
  text-align: center;
  margin: 104px auto 70px;
  position: relative;
}
@media (max-width: 910px) {
  .form h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
    width: 100%;
    margin: 40px auto;
  }
}
.form h1::after {
  content: "";
  background: rgba(216, 219, 235, 0.25);
  width: 100%;
  height: 38px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 910px) {
  .form h1::after {
    width: clamp(148px, 32vw, 250px);
    left: 50%;
    transform: translateX(-50%);
    height: 20px;
  }
}
.form .form_area .col__wrap {
  padding: 23px;
  display: flex;
  max-width: 1020px;
  margin: 0 auto;
}
@media (max-width: 910px) {
  .form .form_area .col__wrap {
    display: block;
    padding-bottom: 0;
  }
}
.form .form_area .col__wrap:nth-of-type(odd) {
  background: #F7F7F7;
}
@media (max-width: 910px) {
  .form .form_area .col__wrap:nth-of-type(odd) {
    background: none;
  }
}
.form .form_area .col__wrap .col__box.topics {
  width: 262px;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
@media (max-width: 910px) {
  .form .form_area .col__wrap .col__box.topics {
    width: 100%;
    background: #F7F7F7;
    padding: 12px 20px;
    margin-left: 0;
  }
}
.form .form_area .col__wrap .col__box.topics span {
  background: #E60013;
  color: #fff;
  padding: 2px 5px;
  font-size: 1.2rem;
  margin-left: 10px;
  font-weight: 500;
}
.form .form_area .col__wrap .col__box.dtl {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  width: calc(100% - 262px);
}
@media (max-width: 910px) {
  .form .form_area .col__wrap .col__box.dtl {
    width: 100%;
    margin-left: 0;
  }
}
.form .form_area .col__wrap .col__box.dtl .caution {
  background: #FFCFCF;
  padding: 7px 10px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 1.4rem;
}
@media (max-width: 910px) {
  .form .form_area .col__wrap .col__box.dtl .caution {
    margin-top: 15px;
  }
}
.form .form_area .col__wrap .col__box.dtl.radio .caution {
  margin-bottom: 20px;
}
@media (max-width: 910px) {
  .form .form_area .col__wrap .col__box.dtl.radio .caution {
    margin-bottom: 0;
  }
}
.form .form_area .col__wrap .col__box.dtl.radio .radio_area {
  display: flex;
}
@media (max-width: 910px) {
  .form .form_area .col__wrap .col__box.dtl.radio .radio_area {
    margin: 20px 0 0 5%;
  }
  .form .form_area .col__wrap .col__box.dtl.radio .radio_area.mail {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .form .form_area .col__wrap .col__box.dtl.radio .radio_area.fl_n {
    display: block;
  }
  .form .form_area .col__wrap .col__box.dtl.radio .radio_area.fl_n div {
    margin-bottom: 20px;
  }
  .form .form_area .col__wrap .col__box.dtl.radio .radio_area.fl_n div:nth-of-type(3) {
    margin-bottom: 0;
  }
}
.form .form_area .col__wrap .col__box.dtl.radio .radio_area div {
  width: 200px;
}
.form .form_area .col__wrap .col__box.dtl.radio .radio_area div.long {
  width: auto;
}
.form .form_area .col__wrap .col__box.dtl.radio .radio_area input[type=radio] {
  position: absolute;
  opacity: 0;
}
.form .form_area .col__wrap .col__box.dtl.radio .radio_area input[type=radio] + .radio-label span {
  font-size: 1.4rem;
  margin-left: 15px;
}
@media (max-width: 768px) {
  .form .form_area .col__wrap .col__box.dtl.radio .radio_area input[type=radio] + .radio-label span {
    display: block;
    margin: 10px 0 0 0;
  }
}
.form .form_area .col__wrap .col__box.dtl.radio .radio_area input[type=radio] + .radio-label::before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 1px solid #b7b7b7;
  display: inline-block;
  width: 22px;
  height: 22px;
  position: relative;
  top: -0.2em;
  margin-right: 0.5em;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.form .form_area .col__wrap .col__box.dtl.radio .radio_area input[type=radio]:checked + .radio-label:before {
  background-color: #005DB8;
  box-shadow: inset 0 0 0 4px #fff;
}
.form .form_area .col__wrap .col__box.dtl textarea, .form .form_area .col__wrap .col__box.dtl [type=tel], .form .form_area .col__wrap .col__box.dtl [type=email] {
  resize: none;
  width: 630px;
  padding: 7px 20px;
  background: #fff;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  margin: 6px 0;
}
@media (max-width: 910px) {
  .form .form_area .col__wrap .col__box.dtl textarea, .form .form_area .col__wrap .col__box.dtl [type=tel], .form .form_area .col__wrap .col__box.dtl [type=email] {
    width: 90%;
    margin: 20px auto 10px;
  }
}
@media (max-width: 910px) {
  .form .form_area .col__wrap .col__box.dtl textarea, .form .form_area .col__wrap .col__box.dtl [type=tel], .form .form_area .col__wrap .col__box.dtl [type=email] {
    min-height: 43px;
  }
}
.form .form_area .col__wrap .col__box.dtl textarea:focus, .form .form_area .col__wrap .col__box.dtl [type=tel]:focus, .form .form_area .col__wrap .col__box.dtl [type=email]:focus {
  outline: none;
  border: 1px solid #aaa;
}
.form .form_area .col__wrap .col__box.dtl textarea:focus::-moz-placeholder, .form .form_area .col__wrap .col__box.dtl [type=tel]:focus::-moz-placeholder, .form .form_area .col__wrap .col__box.dtl [type=email]:focus::-moz-placeholder {
  color: transparent;
}
.form .form_area .col__wrap .col__box.dtl textarea:focus::placeholder, .form .form_area .col__wrap .col__box.dtl [type=tel]:focus::placeholder, .form .form_area .col__wrap .col__box.dtl [type=email]:focus::placeholder {
  color: transparent;
}
.form .form_area .col__wrap .col__box.dtl textarea::-moz-placeholder, .form .form_area .col__wrap .col__box.dtl [type=tel]::-moz-placeholder, .form .form_area .col__wrap .col__box.dtl [type=email]::-moz-placeholder {
  color: #ccc;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.form .form_area .col__wrap .col__box.dtl textarea::placeholder, .form .form_area .col__wrap .col__box.dtl [type=tel]::placeholder, .form .form_area .col__wrap .col__box.dtl [type=email]::placeholder {
  color: #ccc;
  transition: 0.3s;
}
.form .form_area .col__wrap .col__box.dtl [type=tel], .form .form_area .col__wrap .col__box.dtl [type=email] {
  margin-bottom: 5px;
}
.form .form_area .col__wrap .col__box.dtl .tmp {
  display: flex;
  align-items: center;
}
@media (max-width: 910px) {
  .form .form_area .col__wrap .col__box.dtl .tmp {
    flex-wrap: wrap;
    padding: 20px 0 20px 5%;
  }
}
@media (max-width: 768px) {
  .form .form_area .col__wrap .col__box.dtl .tmp {
    padding-bottom: 0;
  }
}
.form .form_area .col__wrap .col__box.dtl .tmp .tmp_file {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .form .form_area .col__wrap .col__box.dtl .tmp .tmp_file {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .form .form_area .col__wrap .col__box.dtl .tmp .tmp_file > p {
    font-size: 1.4rem;
    margin-bottom: 10px;
    width: 100%;
  }
}
.form .form_area .col__wrap .col__box.dtl .tmp .tmp_file .file_area {
  padding: 7px 20px;
  background-color: #fff;
  cursor: pointer;
  border: 1px solid #d2d2d2;
  margin-right: 10px;
  transition: 0.3s;
  width: 160px;
}
@media (max-width: 768px) {
  .form .form_area .col__wrap .col__box.dtl .tmp .tmp_file .file_area {
    margin: 0;
  }
}
.form .form_area .col__wrap .col__box.dtl .tmp .tmp_file .file_area:hover {
  background: #00178B;
  color: #fff;
}
.form .form_area .col__wrap .col__box.dtl .tmp .tmp_file .file_area input[type=file] {
  display: none;
}
.form .form_area .col__wrap .col__box.dtl .tmp .tmp_file .file_area p {
  border: 1px solid #ccc;
  padding: 7px 10px;
  width: 154px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 100%;
}
.form .form_area .col__wrap .col__box.dtl .tmp .tmp_file .file_area + .file_name {
  width: calc(100% - 370px);
  font-weight: bold;
}
@media (max-width: 768px) {
  .form .form_area .col__wrap .col__box.dtl .tmp .tmp_file .file_area + .file_name {
    margin-top: 10px;
    width: calc(100% - 170px);
  }
}
.form .form_area .col__wrap .col__box.dtl .tmp_info {
  margin-top: 10px;
}
.form .form_area .col__wrap .col__box.dtl .tmp_info p {
  font-size: 1.2rem;
}
@media (max-width: 910px) {
  .form .form_area .col__wrap .col__box.dtl .tmp_info {
    margin-left: 5%;
  }
}
@media (max-width: 768px) {
  .form .form_area .col__wrap .col__box.dtl .tmp_info {
    width: 100%;
  }
}
@media (max-width: 910px) {
  .form .form_area .col__wrap .col__box.dtl .tel_area {
    text-align: center;
    width: 100%;
  }
}
.form .form_area .col__wrap .col__box.dtl .tel_area span {
  font-size: 1.4rem;
  display: block;
  text-align: left;
  margin-left: 15px;
}
@media (max-width: 910px) {
  .form .form_area .col__wrap .col__box.dtl.agree {
    margin-bottom: 50px;
  }
}
.form .form_area .col__wrap .col__box.dtl.agree p {
  margin-bottom: 20px;
}
.form .form_area .col__wrap .col__box.dtl.agree p a {
  text-decoration: underline;
}
.form .form_area .col__wrap .col__box.dtl.agree p a:hover {
  color: #005DB8;
}
@media (max-width: 910px) {
  .form .form_area .col__wrap .col__box.dtl.agree p {
    margin: 10px 20px 20px 20px;
  }
}
.form .form_area .col__wrap .col__box.dtl.agree .agree__area {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
}
@media (max-width: 910px) {
  .form .form_area .col__wrap .col__box.dtl.agree .agree__area {
    margin-left: 20px;
  }
}
.form .form_area .col__wrap .col__box.dtl.agree .agree__area a {
  text-decoration: underline;
  color: #00178B;
  display: inline-block;
  margin-bottom: 20px;
}
.form .form_area .col__wrap .col__box.dtl.agree .agree__area .agree_btn input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.form .form_area .col__wrap .col__box.dtl.agree .agree__area .agree_btn input[type=checkbox] + .agree_label {
  position: relative;
}
.form .form_area .col__wrap .col__box.dtl.agree .agree__area .agree_btn input[type=checkbox] + .agree_label span {
  font-weight: bold;
}
.form .form_area .col__wrap .col__box.dtl.agree .agree__area .agree_btn input[type=checkbox] + .agree_label::before {
  content: "";
  background: #fff;
  border: 1px solid #b7b7b7;
  display: inline-block;
  width: 22px;
  height: 22px;
  position: relative;
  top: -0.2em;
  margin-right: 0.5em;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.form .form_area .col__wrap .col__box.dtl.agree .agree__area .agree_btn input[type=checkbox]:checked + .agree_label::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 8px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #005DB8;
  border-right: 3px solid #005DB8;
}
.form .form_area .col__wrap.txt {
  padding: 8px 20px;
}
.form .form_area .col__wrap.txt.file {
  padding: 20px;
}
@media (max-width: 910px) {
  .form .form_area .col__wrap.txt.file {
    padding-top: 0;
  }
}
.form .form_area .col__wrap.txt.file .caution {
  margin-top: 0;
}
@media (max-width: 910px) {
  .form .form_area .col__wrap.txt.file .caution {
    margin-top: 15px;
  }
}
.form .form_area .col__wrap.txt .caution {
  margin-top: 10px;
}
.form .form_area .submit_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 55px;
  background: #FFCC00;
  color: #000;
  font-weight: bold;
  margin: 50px auto 100px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  transition: 0.3s;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.form .form_area .submit_btn:hover {
  opacity: 0.8;
}
@media (max-width: 910px) {
  .form .form_area .submit_btn {
    margin: 10px auto 70px;
  }
}
.form .confirm {
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}
.form .confirm .col__wrap {
  display: flex;
  padding: 20px;
}
.form .confirm .col__wrap:nth-of-type(odd) {
  background: #F7F7F7;
}
@media (max-width: 768px) {
  .form .confirm .col__wrap {
    display: block;
    padding: 0;
  }
  .form .confirm .col__wrap:nth-of-type(odd) {
    background: none;
  }
}
.form .confirm .col__wrap .col__box.topics {
  width: 297px;
  font-weight: bold;
}
@media (max-width: 910px) {
  .form .confirm .col__wrap .col__box.topics {
    width: 220px;
  }
}
@media (max-width: 768px) {
  .form .confirm .col__wrap .col__box.topics {
    width: 100%;
    background: #F7F7F7;
    padding: 20px;
  }
}
.form .confirm .col__wrap .col__box.dtl {
  width: calc(100% - 297px);
}
@media (max-width: 910px) {
  .form .confirm .col__wrap .col__box.dtl {
    width: calc(100% - 220px);
  }
}
@media (max-width: 768px) {
  .form .confirm .col__wrap .col__box.dtl {
    width: 100%;
    padding: 20px;
  }
}
.form .confirm .btn_area {
  display: flex;
  justify-content: center;
  margin: 50px auto 100px;
}
.form .confirm .btn_area .btn:first-of-type {
  width: 180px;
  margin-right: 15px;
}
.form .confirm .btn_area .btn:first-of-type span {
  background: #B2B2B2;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  border-radius: 5px;
  font-size: 1.6rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.form .confirm .btn_area .btn:first-of-type span:hover {
  opacity: 0.8;
}
.form .confirm .btn_area .btn:last-of-type {
  width: 250px;
}
.form .confirm .btn_area .btn:last-of-type input[type=submit] {
  width: 100%;
  background: #FFCC00;
  color: #000;
  height: 55px;
  border-radius: 5px;
  font-size: 1.6rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.form .confirm .btn_area .btn:last-of-type input[type=submit]:hover {
  opacity: 0.8;
}
.form .complete {
  max-width: 640px;
  padding: 0 20px;
  margin: 0 auto;
}
.form .complete p {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .form .complete p {
    margin-bottom: 30px;
  }
}
.form .complete .contact_num {
  display: flex;
  justify-content: center;
}
.form .complete .contact_num p {
  margin-bottom: 0;
}
.form .complete .btn a {
  background: #FFCC00;
  color: #000;
  width: 270px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin: 70px auto 100px;
  transition: 0.3s;
  font-weight: bold;
}
@media (max-width: 768px) {
  .form .complete .btn a {
    margin: 40px auto 100px;
  }
}
.form .complete .btn a:hover {
  opacity: 0.8;
}