@charset 'utf-8';
/*============================body*/
html {
  font-size: 62.5%;
}
body {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  width: 100%;
  background-color: #fff;
  min-width: 320px;
  counter-reset: count-number;
  margin: 0;
  padding: 0;
  color: #333;
  position: relative;
}
a {
  color: #333;
}
img {
  height: auto;
  max-width: 100%;
}
.cfx:after {
  content: "";
  display: block;
  clear: both;
}
.btn_wh {
  background: #fff;
  border: 1px solid #eb0015;
  max-width: 280px;
  display: block;
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  padding: 10px 40px;
  box-shadow: 0 0 12px 0 rgb(235 0 21 / 18%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  box-sizing: border-box;
}
.btn_wh:hover {
  box-shadow: none;
  background: #eb0015;
  color: #fff;
}
.btn_wh:hover:after {
  right: 14px;
  background: #fff;
}
.btn_c .btn_wh {
  margin: 0 auto;
}
.wrapper {
  width: 100%;
  position: relative;
}
.content {
  padding: 40px 0 80px;
}
.content_inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .content_inner {
    padding: 0 20px;
    width: calc(100% - 40px);
  }
}
@media (max-width: 1024px) {
  .content {}
}
@media (max-width: 599px) {
  .content {
    padding: 30px 0;
  }
}
/*============================header*/
header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 900;
  top: 0;
  width: calc(100% - 140px);
  background: #fff;
  align-items: center;
  padding: 10px 140px 10px 20px;
}
header .site_logo {
  display: inline-block;
  margin: 0;
}
header .site_logo a {
  display: block;
  line-height: 1;
}
header .site_logo img {
  max-width: 130px;
}
.pc_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  position: fixed;
  z-index: 1000;
  margin-left: auto;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  top: 30px;
  right: 80px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
.pc_nav .nav_subtitle, .pc_nav .contact {
  color: inherit;
  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;
  height: 40px;
  padding: 5px 20px;
  text-decoration: none;
  margin: 0;
}
.nav_wrap {
  width: calc(100% - 150px);
  display: flex;
  justify-content: flex-end;
  margin: 0;
  align-items: center;
}
.nav_subtitle {
  padding: 36px 0;
  margin: 0 0 0 26px;
  cursor: pointer;
}
.nav_subtitle.nav04 a, .nav_subtitle.nav05 a {
  color: #333;
  text-decoration: none;
}
.nav_subtitle.nav05 {
  right: 282px;
}
.nav_subtitle.nav06 a {
  display: flex;
  color: #333;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 100px;
  padding: 6px 12px;
  align-items: center;
}
.nav_subtitle.nav06 a img {
  width: 24px;
  height: 16px;
  margin-right: 6px;
}
.nav_item {
  display: none;
  position: fixed;
  top: 110px;
  left: 20px;
  width: calc(100% - 80px);
  z-index: 20;
  background-color: #fff;
  padding: 60px 20px !important;
  box-shadow: 0 0 12px 0 rgb(0 0 0 / 18%);
}
.nav_item .nav_item_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
}
.nav_item .nav_item_inner a {
  margin: 1rem 0;
  text-decoration: none;
  position: relative;
  padding: 3px 0;
  padding-left: 30px;
  padding-right: 30px;
  width: calc(33.3% - 60px);
}
.nav_item .nav_item_inner a:before {
  content: "";
  width: 12px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url("../images/icon_blue_tri.svg") no-repeat;
}
.nav_item .nav_item_inner a:hover:before {
  left: 6px;
}
.nav_item .nav_item_inner .child .child_tit {
  margin-top: 0;
  font-weight: bold;
  color: #333;
  padding-bottom: 6px;
  margin-bottom: 8px;
  border-bottom: 2px solid #10297f;
}
.nav_item .nav_item_inner .child .child_list {
  display: flex;
  flex-direction: column;
}
.nav_item .nav_item_inner .child .child_list a {
  width: calc(100% - 60px);
}
.sp_nav_wrap {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 2100;
  background: #fff;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sp_nav_wrap.active {
  visibility: visible;
  opacity: 1;
}
.sp_nav {
  width: 100%;
  margin: 0 auto;
  height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 80px;
  background: #10297e;
}
.sp_nav_wrap .nav_logo {
  position: fixed;
  top: 14px;
  left: 20px;
  display: inline-block;
  z-index: 20;
}
.sp_nav_wrap .nav_logo img {
  max-width: 130px;
}
.sp_nav .spnav_link p, .sp_nav .spnav_link a {
  text-decoration: none;
  font-size: 150%;
  padding: 20px 0;
  display: block;
  text-align: center;
  margin: 0;
  cursor: pointer;
  color: #fff;
}
.sp_nav .spnav_link p.child_tit {
  font-size: 1.8rem;
  margin-top: 0;
  font-weight: bold;
  color: #fff;
  padding-bottom: 6px;
  margin-bottom: 8px;
  border-bottom: 2px solid #10297f;
  cursor: auto;
}
.sp_nav .sp_has_child span {
  position: relative;
  padding: 0 40px;
  display: block;
}
.sp_nav .sp_has_child span:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 4px;
  margin-top: -4px;
}
.sp_nav .sp_has_child.open span:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 4px;
  margin-top: 0;
}
.sp_nav .childs {
  display: none;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.sp_nav .childs.active {
  display: block;
}
.sp_nav .childs a {
  font-size: 100%;
  padding: 14px;
}
.sp_nav .js-navCloseToggle {
  margin-top: 20px;
  border: none;
  border-radius: 6px;
  padding: 14px;
  width: 100%;
  font-size: 1.6rem;
  max-width: 320px;
	cursor: pointer;
}
.c-toggleMenu {
  position: fixed;
  z-index: 2200;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #10297F;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 6px;
}
.c-toggleMenu.active {
  color: #333;
}
.c-toggleMenu.scrolled {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-toggleMenu__bar {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 100px;
  background-color: #fff;
  position: absolute;
  left: 0;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}
.c-toggleMenu__bar.__1 {
  top: 27px;
  left: 50%;
  margin-left: -20px;
}
.c-toggleMenu__bar.__2 {
  top: 37px;
  left: 50%;
  margin-left: -20px;
}
.c-toggleMenu__bar.__3 {
  top: 47px;
  left: 50%;
  margin-left: -20px;
}
.c-toggleMenu .txt {
  position: absolute;
  top: 35px;
  font-size: 74%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.c-toggleMenu.active .c-toggleMenu__bar.__2 {
  display: none;
}
.c-toggleMenu.active .c-toggleMenu__bar.__1 {
  top: 39px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-toggleMenu.active .c-toggleMenu__bar.__3 {
  top: 39px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 1199px) {
  .sp_nav {
    padding: 100px 20px;
    width: calc(100% - 40px);
    max-width: none;
    overflow-y: scroll;
    position: relative;
  }
}
@media (max-width: 1024px) {
  header {
    padding: 10px 90px 10px 20px;
    width: calc(100% - 110px);
  }
  .nav_subtitle {
    display: none;
  }
  .c-toggleMenu {
    top: 14px;
    right: 10px;
  }
  .sp_nav_wrap .nav_logo {
    top: 10px;
  }
}
@media (max-width: 599px) {
  header {
    padding: 10px 70px 10px 10px;
    width: calc(100% - 80px);
  }
  header .site_logo img {
    width: 80px;
  }
  .c-toggleMenu {
    top: 7px;
    right: 10px;
    width: 60px;
    height: 60px;
  }
  .c-toggleMenu__bar {
    width: 30px;
  }
  .c-toggleMenu__bar.__1 {
    top: 17px;
    margin-left: -15px;
  }
  .c-toggleMenu__bar.__2 {
    top: 27px;
    margin-left: -15px;
  }
  .c-toggleMenu__bar.__3 {
    top: 37px;
    margin-left: -15px;
  }
  .c-toggleMenu.active .c-toggleMenu__bar.__1 {
    top: 29px;
  }
  .c-toggleMenu.active .c-toggleMenu__bar.__3 {
    top: 29px;
  }
  .sp_nav_wrap .nav_logo {
    top: 10px;
    left: 10px;
  }
  .sp_nav_wrap .nav_logo img {
    width: 80px;
  }
  .spnav_link {
    width: 100%;
  }
  .sp_nav .spnav_link p, .sp_nav .spnav_link a {
    font-size: 124%;
  }
  .sp_nav .sp_has_child span {
    display: inline-block;
  }
  .sp_nav .childs a {
    font-size: 100%;
  }
}
/*============================footer*/
footer {
  background: url(../images/bg_footer.png) no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 6px solid #10297F;
}
footer .footer_content .content_inner + .content_inner {
  margin-top: 40px;
}
footer .footer_content .btn_rows {
  display: flex;
  justify-content: space-between;
}
footer .footer_content .btn_rows a {
  width: calc(50% - 120px);
  padding: 50px;
  text-decoration: none;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
}
footer .footer_content a h2 {
  display: flex;
  flex-direction: column;
  font-size: 200%;
  font-weight: normal;
  margin: 0;
  color: #fff;
  min-width: 160px;
  max-width: 160px;
}
footer .footer_content a h2 span {
  font-size: 50%;
  display: block;
  margin-bottom: 10px;
  color: #fff;
}
footer .footer_content a h2:after {
  content: "";
  width: 50px;
  height: 4px;
  display: inline-block;
  background: url(../images/h2_under_wh.png) no-repeat;
  margin-top: 20px;
}
footer .footer_content .btn_rows a p {
  margin: 0;
  color: #fff;
}
footer .footer_content .cont_rec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e61012;
  text-decoration: none;
}
footer .footer_content .content_rec .h2_wrap {
  padding: 20px;
}
footer .footer_content .content_rec h2 {
  width: auto;
}
footer .base_data .data_box {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
footer .base_data .data_box p {
  text-align: center;
}
footer .copy_txt p {
  text-align: center;
  font-size: 1.2rem;
}
#contact_btn {
  position: fixed;
  bottom: 16px;
  right: 10px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#contact_btn.active {
  opacity: 1;
}
#contact_btn .bnr_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}
#contact_btn .bnr_list li {
  line-height: 0;
}
#contact_btn .bnr_list li a {
  display: block;
}
@media (max-width: 1199px) {
  footer .footer_content .btn_rows a {
    width: calc(50% - 50px);
    padding: 20px;
  }
  footer .footer_content .cont_rec {
    display: block;
  }
  footer .footer_content .cont_rec:after {
    content: "";
    display: block;
    clear: both;
  }
  footer .footer_content .cont_rec .h2_wrap {
    width: 160px;
    float: left;
  }
  footer .footer_content .cont_rec img {
    width: calc(100% - 200px);
    float: left;
  }
  footer .base_data .data_box {
    flex-direction: column;
  }
  footer .base_data .data_left {
    order: 2;
    margin-top: 40px;
  }
  footer .base_data .data_right {
    order: 1;
  }
  footer .base_data .data_right ul {
    justify-content: center;
  }
  footer .base_data .data_right ul li {
    margin: 0 40px 20px;
    width: auto;
  }
}
@media (max-width: 1024px) {
  footer {
    padding-top: 40px;
    padding-bottom: 10px;
  }
  #contact_btn {
    right: 0;
    padding: 0 20px;
  }
  #contact_btn .bnr_list {
    gap: 10px;
  }
  footer .footer_content a h2 {
    font-size: 160%;
  }
}
@media (max-width: 599px) {
  #contact_btn {
    padding: 0 10px;
    bottom: 10px;
  }
  #contact_btn .bnr_list {
    gap: 5px;
  }
  footer .base_data .data_box img {
    max-width: 100px;
  }
}