@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif !important;
  line-height: 2;
}

a {
  color: #353535;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: auto;
}
@media only screen and (max-width: 1540px) and (min-width:1000px) {
  .container {
    max-width: 100%;
    padding: 0 50px;
  }
}
@media screen and (max-width: 1060px) {
  .container {
    padding: 0 40px;
  }
}
@media screen and (max-width: 999px) {
  .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 575px) {
  .container {
    padding: 0 15px;
  }
}

.contact__body {
  margin-bottom: 100px;
}

.breadcrumbList {
  margin-bottom: 0 !important;
}

.badge {
  padding: 0;
  font-size: 1.125rem;
}
.badge-danger {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 18px;
  height: 18px;
  background-color: transparent;
}
.badge-danger:before {
  content: "※";
  display: block;
  width: 18px;
  height: 18px;
  color: #c01039;
  font-size: 1.125rem;
  font-weight: bold;
  margin-left: -18px;
}

.red_text {
  color: #c01039;
}

.formContent {
  padding: 40px 40px 55px;
  overflow: hidden;
  background-color: rgba(233, 243, 247, 0.5);
  border-radius: 6px;
}
@media screen and (max-width: 999px) {
  .formContent {
    padding: 25px 25px 20px;
  }
}
@media screen and (max-width: 575px) {
  .formContent {
    padding: 20px 10px 0;
  }
}

.formContent .form_item_area label {
  margin-bottom: 0.5em;
  font-size: 1em;
}
.formContent .form_item_area .form_item_area__row > label {
  padding-bottom: 0.6em;
  font-size: 1.125rem;
  font-weight: bold;
}
.formContent .form_item_area .form_item_area__row.radio_btn .icheck-primary > input:first-child:checked + input[type=hidden] + label::before, .formContent .form_item_area .form_item_area__row.radio_btn .icheck-primary > input:first-child:checked + label::before {
  background-color: #fff;
  border-color: #005fb9;
}
.formContent .form_item_area .form_item_area__row.radio_btn [class*=icheck-] > input:first-child:checked + input[type=hidden] + label::after, .formContent .form_item_area .form_item_area__row.radio_btn [class*=icheck-] > input:first-child:checked + label::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #005fb9;
  position: absolute;
  top: 6px;
  left: 6px;
  right: auto;
  bottom: auto;
  margin: 0;
  border: none;
  -webkit-transform: none;
          transform: none;
}
.formContent .form_item_area p {
  font-size: 1rem;
}
.formContent .form_item_area .form_item_area__button_area {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

label:not(.form-check-label):not(.custom-file-label) {
  font-weight: normal;
}

.form-control {
  background-color: #ececec;
  border-radius: 3px;
  -webkit-box-shadow: 1px 1px 0.2px 0.2px #ccc inset;
  box-shadow: 1px 1px 0.2px 0.2px #ccc inset;
}

.formContent [class*=icheck-] label {
  font-size: 1em;
}

[class*=icheck-] > label {
  padding-left: 29px !important;
  min-height: 22px;
  line-height: 22px;
  display: inline-block;
  position: relative;
  vertical-align: top;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

[class*=icheck-] > input:first-child + input[type=hidden] + label::before, [class*=icheck-] > input:first-child + label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #005fb9;
  background-color: #fff;
  border-radius: 4px;
}

[class*=icheck-] > input:first-child:checked + input[type=hidden] + label::after, [class*=icheck-] > input:first-child:checked + label::after {
  top: -1px;
  left: -1px;
}

.btn {
  border-radius: 6px;
  padding: 13px 60px 13px 20px;
  text-decoration: none !important;
  text-align: left;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 1.125rem;
  min-width: 250px;
  min-height: 50px;
  line-height: 1.3;
  color: #353535 !important;
  background-color: #e5f7ff;
  position: relative;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .btn {
    min-width: 410px;
    min-height: 70px;
    line-height: 2;
  }
}
.btn:before {
  display: block;
  content: "";
  width: 33px;
  height: 33px;
  background: url(/common/img/icon/arrow/round.webp) no-repeat;
  background-size: 33px 33px;
  background-position-y: 0;
  margin-right: 8px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  left: auto;
  margin: auto;
}
.btn:hover {
  background-color: #005fb9 !important;
  color: #fff !important;
}
.btn:hover:before {
  display: inline-block;
  content: "";
  width: 33px;
  height: 33px;
  background: url(/common/img/icon/arrow/round_white.webp) no-repeat;
  background-size: 33px 33px;
}
.btn._white {
  color: #353535 !important;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.05);
}
.btn._white:hover {
  background-color: #1e6db0 !important;
  color: #fff !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn.pdf::before {
  display: block;
  content: "";
  width: 24px;
  height: 28px;
  background: url(/common/img/icon/btn_pdf.webp) no-repeat;
  background-size: 24px 28px;
  background-position-y: 0;
  margin-right: 8px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  left: auto;
  margin: auto;
}
.btn.pdf:hover::before {
  background: url(/common/img/icon/btn_pdf_white.webp) no-repeat;
  background-size: 24px 28px;
}
.btn.ext::before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: url(/common/img/icon/btn_ext.webp) no-repeat;
  background-size: 24px 24px;
  background-position-y: 0;
  margin-right: 8px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  left: auto;
  margin: auto;
}
.btn.ext:hover::before {
  background: url(/common/img/icon/btn_ext_white.webp) no-repeat;
  background-size: 24px 24px;
}
.btn.small {
  min-width: 230px;
  min-height: 50px;
  font-size: 1rem;
  padding: 7px 45px 7px 15px;
}
@media screen and (max-width: 999px) {
  .btn.small {
    padding: 15px;
    padding-right: 45px;
  }
}
.btn.small:before {
  content: "";
  display: block;
  position: absolute;
  background: url(/common/img/icon/arrow/link.webp) no-repeat;
  background-size: contain;
  width: 19px;
  height: 19px;
}
.btn.small.pdf::before {
  display: block;
  content: "";
  width: 14px;
  height: 16px;
  background: url(/common/img/icon/pdf.webp) no-repeat;
  background-size: 14px 16px;
  background-position-y: 0;
  margin-right: 8px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  left: auto;
  margin: auto;
}
.btn.small.pdf:hover::before {
  background: url(/common/img/icon/pdf_white.webp) no-repeat;
  background-size: 14px 16px;
}
.btn.small.ext::before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url(/common/img/icon/btn_ext.webp) no-repeat;
  background-size: 12px 12px;
  background-position-y: 0;
  margin-right: 8px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  left: auto;
  margin: auto;
}
.btn.small.ext:hover::before {
  background: url(/common/img/icon/btn_ext_white.webp) no-repeat;
  background-size: 12px 12px;
}
.btn.small.white {
  background-color: #fff;
  color: #353535;
  border: solid 1px #005fb9;
}
.btn.small.white:hover {
  background-color: #005fb9;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .btn {
    min-width: 100%;
    padding: 15px 60px 13px 33px;
  }
}

.btn {
  min-width: 320px;
  max-width: 410px;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .btn {
    min-width: 100%;
  }
}
.btn-submit, .btn-submit-02 {
  font-weight: bold;
  background-color: #fff !important;
  border: 1px solid #005fb9 !important;
}
.btn-submit:hover, .btn-submit-02:hover {
  background-color: #005fb9 !important;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .btn-submit, .btn-submit-02 {
    margin: 0 auto;
  }
}
.btn-secondary {
  min-width: 230px;
  min-height: 50px;
  font-size: 1rem;
  padding: 7px 45px 7px 15px;
  padding: 7px 15px 7px 45px;
  border: 1px solid #005fb9 !important;
  max-width: 230px;
  display: block;
}
@media screen and (max-width: 999px) {
  .btn-secondary {
    padding: 15px;
    padding-right: 45px;
  }
}
.btn-secondary:before {
  content: "";
  display: block;
  position: absolute;
  background: url(/common/img/icon/arrow/link.webp) no-repeat;
  background-size: contain;
  width: 19px;
  height: 19px;
}
.btn-secondary::before {
  left: 10px;
  right: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 999px) {
  .btn-secondary {
    padding: 14px;
    padding-left: 45px;
  }
}
@media screen and (max-width: 767px) {
  .btn-secondary {
    font-size: 0.938rem;
    max-width: 250px;
    min-height: 50px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
}/*# sourceMappingURL=form_community.css.map */