@charset "UTF-8";
.rec_sec01 {
  margin-top: 90px;
  position: relative;
  z-index: 1;
}

.rec_pic01 {
  margin-top: 60px;
}

.rec_text {
  font-size: 15px;
  margin-top: 45px;
  line-height: 1.73;
}

@media screen and (max-width: 768px) {
  .rec_sec01 {
    margin-top: 25px;
  }
  .rec_pic01 {
    margin-top: 20px;
  }
  .rec_text {
    font-size: 14px;
    margin-top: 25px;
  }
}
.contact_sec01 {
  margin-top: 90px;
}

.contact_text {
  font-size: 15px;
  line-height: 1.73;
  margin-top: 60px;
}

.contact_exa {
  margin-top: 40px;
  border: 1px solid #DFDFDF;
  background-color: #fff;
  padding: 28px 50px 45px;
  position: relative;
}
.contact_exa::before {
  content: "";
  display: inline-block;
  width: 264px;
  height: 1px;
  display: inline-block;
  background: linear-gradient(0deg, #009bdb 0%, #043f89 100%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.contact_exa_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

.contact_exaList {
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  margin-top: 25px;
}
.contact_exaList li {
  width: calc((100% - 50px) / 3);
}
.contact_exaList .contact_exa_text {
  margin-top: 13px;
}

.division {
  align-items: flex-start !important;
  padding-top: 45px;
  padding-bottom: 40px;
}
.division label:nth-child(4) {
  display: inline-block;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .contact_sec01 {
    margin-top: 25px;
  }
  .contact_text {
    margin-top: 15px;
    font-size: 14px;
  }
  .contact_exa {
    margin-top: 25px;
    padding: 23px 0px 10px;
  }
  .contact_exa::before {
    width: 213px;
  }
  .contact_exa_ttl {
    font-size: 16px;
  }
  .contact_exaListWrap {
    overflow: auto;
  }
  .contact_exaList {
    min-width: 720px;
    padding: 0 20px;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.6;
    padding-bottom: 20px;
  }
}
.formWrap {
  margin-top: 95px;
  font-size: 15px;
}

#form {
  padding: 10px 50px 25px;
  border: 1px solid #DFDFDF;
  background-color: #fff;
  position: relative;
}
#form::before {
  content: "";
  display: inline-block;
  height: 100%;
  width: 3px;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, #009bdb 0%, #043f89 100%);
}
#form > div {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 115px;
}
#form > div::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  display: inline-block;
  left: 0;
  bottom: 0;
  background-image: radial-gradient(#dfdfdf 1px, transparent 1px);
  background-size: 3px 1px;
}
#form > div.textarea {
  padding: 30px 0;
  align-items: flex-start;
}
#form > div.textarea::before {
  display: none;
}
#form > div.textarea dt {
  margin-top: 18px;
}
#form label {
  cursor: pointer;
}
#form dt {
  font-weight: bold;
  width: 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#form .must {
  font-size: 10px;
  background-color: #C72B2B;
  display: inline-block;
  padding: 4px 4.5px;
  color: #fff;
  border-radius: 3px;
  line-height: 1;
}
#form dd {
  width: calc(100% - 160px);
  padding-left: 45px;
}
#form dd label {
  white-space: nowrap;
  margin-left: 5px;
}
#form dd label:not(:last-child) {
  margin-right: 19px;
}
#form input[type=radio] {
  display: inline-block;
  width: 19px;
  height: 19px;
  border: 1px solid #ababab;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  margin: 0 2px 0 0;
  vertical-align: -3px;
}
#form input[type=radio]:checked {
  background-color: #0069BA;
  border: none;
}
#form input[type=radio]:checked::after {
  content: "";
  display: inline-block;
  height: 11px;
  width: 11px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  cursor: pointer;
}
#form input[type=text], #form input[type=email], #form input[type=tel], #form select, #form textarea {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 12px 20px;
  font-size: 16px;
  margin-left: 5px;
  width: 350px;
  max-width: 100%;
}
#form textarea {
  height: 160px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .formWrap {
    margin-top: 45px;
  }
  #form {
    padding: 5px 20px 20px;
  }
  #form > div {
    display: block;
    padding-top: 23px;
    padding-bottom: 23px;
  }
  #form > div.textarea {
    padding: 8px 0;
  }
  #form dt {
    justify-content: flex-start;
    padding-left: 5px;
  }
  #form .must {
    margin-left: 5px;
  }
  #form dd {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-top: 20px;
    font-size: 14px;
  }
  #form dd label {
    margin-right: 0 !important;
  }
  #form dd label + label {
    margin-top: 19px;
  }
  #form input[type=radio] {
    margin-left: 2px;
  }
  #form input[type=text], #form input[type=email], #form input[type=tel], #form select, #form textarea {
    margin-left: 0;
  }
  #form textarea {
    height: 180px;
  }
  #form input[type=radio] {
    vertical-align: -4px;
    margin: 0;
    margin-right: 2px;
  }
}
.consentWrap {
  font-size: 14px;
  margin-top: 50px;
  padding-bottom: 150px;
  position: relative;
  z-index: 1;
}
.consentWrap label {
  cursor: pointer;
}
.consentWrap input[type=checkbox] {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  vertical-align: -7px;
  position: relative;
  margin-right: 4px;
  cursor: pointer;
  border-radius: 4px;
  background-color: #fff;
}
.consentWrap input[type=checkbox]:checked {
  background-color: #0069BA;
  border: none;
}
.consentWrap input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 4px;
  width: 10px;
  height: 5px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
}

.consent_text {
  text-align: center;
}

.consentBox {
  height: 150px;
  overflow: auto;
  border: 1px solid #dfdfdf;
  padding: 35px 40px;
  line-height: 1.57;
  margin-top: 15px;
  background-color: #fff;
}

.consent_ttl {
  font-weight: bold;
}

.consentList dt {
  font-weight: bold;
  margin-top: 20px;
}

.consent_check {
  text-align: center;
  margin-top: 38px;
  font-size: 15px;
  font-weight: bold;
}

.submitBtn {
  width: 280px;
  margin: 35px auto 0;
}
.submitBtn label {
  position: relative;
  display: block;
}
.submitBtn label::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -1px;
  left: -1px;
  background: linear-gradient(90deg, #043f89 0%, #009bdb 100%);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: -1;
  border-radius: 50px;
}
.submitBtn input {
  color: #026FB4;
  display: block;
  font-weight: bold;
  text-align: center;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  transition: 0.3s;
  width: 100%;
  border-radius: 90px;
  font-family: inherit;
  background-color: #fff;
  font-size: 15px;
  transition: 0.3s;
}
.submitBtn input:hover {
  color: #fff;
  background: linear-gradient(90deg, #043f89 0%, #009bdb 100%);
}

@media screen and (max-width: 768px) {
  .consentWrap {
    font-size: 13px;
    margin-top: 30px;
    padding-bottom: 80px;
  }
  .consentBox {
    margin-top: 10px;
    padding: 20px;
    height: 120px;
  }
}
.thanks_sec {
  padding-bottom: 150px;
}

.thanks_link {
  margin-top: 75px;
}
.thanks_link a {
  max-width: 274px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-style: normal;
  font-size: 15px;
  font-weight: bold;
  padding: 16px 0;
}

@media screen and (max-width: 768px) {
  .thanks_sec {
    padding-bottom: 80px;
  }
  .thanks_link {
    margin-top: 45px;
  }
}

/* Flash */
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-primary {
  color: #004085;
  background-color: #CCE5FF;
  border: 1px solid;
}

.alert-success {
  color: #155724;
  background-color: #D4EDDA;
  border-color: #C3E6CB;
}


.alert-danger {
  color: #721C24;
  background-color: #F8D7DA;
  border-color: #F5C6CB;
}

