@charset "UTF-8";
/* 全体にかけるもの */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 840px) {
  * {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  * {
    font-size: 12px;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

html {
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* ヘッダー */
header {
  position: fixed;
  top: 0;
  width: 100vw;
  display: flex;
  height: 100px;
  z-index: 999;
}
header.top::before {
  display: none;
}
header.fadeout .header__logo {
  display: none;
}
header .header__logo {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 300px;
  height: 40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  header .header__logo {
    top: 2rem;
    transform: translateY(0);
    width: 250px;
    height: 30px;
  }
}
header .block {
  width: 100px;
  aspect-ratio: 1/1;
  margin-left: auto;
  display: block;
  background-color: #31BFF6;
}
header .headerBlock {
  width: 200px;
  display: flex;
  margin-left: auto;
}
header .header-contact .header-contactIcon {
  padding-top: 28px;
  width: 35px;
  margin: 0 auto;
}
header .header-contact .header-contactTxt {
  font-size: 0.875rem;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  display: inline-block;
  width: 100px;
}
header .header-contact .header-contactTxt.action {
  transform: translateX(2px);
}
header .headerLogo {
  margin-left: 1rem;
  z-index: 999;
}
header .modal-btn {
  width: 100px;
  aspect-ratio: 1/1;
  background-color: #05428A;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
header .modal-btn .modalSpans {
  width: 30px;
  height: 26px;
  position: relative;
  transform: translateY(-10px);
}
header .modal-btn .modalSpan {
  background-color: #fff;
  width: 100%;
  height: 2px;
}
header .modal-btn .modalSpan:nth-of-type(1) {
  top: 0px;
  left: 0px;
  position: absolute;
}
header .modal-btn .modalSpan:nth-of-type(1).active {
  rotate: 45deg;
  top: 10px;
  left: 0px;
  position: absolute;
  transition: 0.5s;
}
header .modal-btn .modalSpan:nth-of-type(2) {
  top: calc(50% - 2px);
  left: 0px;
  position: absolute;
}
header .modal-btn .modalSpan:nth-of-type(2).active {
  display: none;
  transition: 0.8s;
}
header .modal-btn .modalSpan:nth-of-type(3) {
  top: calc(100% - 4px);
  left: 0px;
  position: absolute;
}
header .modal-btn .modalSpan:nth-of-type(3).active {
  rotate: -45deg;
  top: 10px;
  left: 0px;
  position: absolute;
  transition: 0.5s;
}
header .modal-btn .modalTxt {
  top: 62px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  font-size: 0.875rem;
  color: #fff;
  line-height: 1rem;
  font-family: Arial;
  letter-spacing: 0.04rem;
}
header .modal {
  position: relative;
  position: fixed;
  top: 0;
  width: 100vw;
  height: calc(100vh - 100px);
  right: -100vw;
  transition: 1s;
  background-color: #05428A;
  margin-top: 100px;
  text-align: left;
  overflow: scroll;
}
header .modal__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  header .modal__list {
    text-align: left;
  }
}
header .modal__list-item {
  border-bottom: 1px solid white;
  position: relative;
}
header .modal__list-item a {
  padding: 30px 0px 10px 30px;
  display: block;
  font-size: 18px;
  color: white;
  width: 100%;
  height: 100%;
  position: relative;
}
header .modal__list-item.action {
  padding: 30px 0 10px 30px;
  color: white;
  font-size: 18px;
  position: relative;
  cursor: pointer;
}
header .modal__list-item.action::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 30px;
  font-size: 30px;
  transform: translateY(-50%);
  color: white;
}
header .modal__list-item:hover {
  background-color: #31BFF6;
}
header .modal__list-item.active {
  background-color: #31BFF6;
}
header .modal-sublist {
  display: none;
  gap: 2rem;
  padding: 30px 30px 10px 30px;
}
header .modal-sublist.active {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
header .modal-sublist-subitem a {
  color: #fff;
  display: block;
  width: 155px;
}
header .modal.active {
  transform: translateX(-100vw);
  transition: 1s;
}

.disblock {
  display: block;
  width: 60px;
  aspect-ratio: 1/1;
  bottom: 0;
  right: 0;
  position: fixed;
  z-index: 99;
  background-color: #fff;
}
.disblock .top-arrow {
  width: 20px;
  aspect-ratio: 1/1;
}

footer .footerUpper {
  background-color: #EFF2F4;
}
footer .footerLower {
  background-color: #fff;
}
footer .footerLower .footerLower__body {
  justify-content: space-between;
  padding: 1rem 0;
}
footer .footerLower .footerLogo {
  width: 173px;
}
footer .footerLower .footer-txt {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.footerMenu {
  padding: 3rem 0;
  justify-content: space-evenly;
}
.footerMenu .footerMenu-parent {
  border-bottom: 1px solid #05428A;
  padding-bottom: 0.5rem;
  display: inline-block;
  width: 120px;
  position: relative;
  cursor: pointer;
}
.footerMenu .footerMenu-parent .footerMenu-subttl {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #05428A;
}
.footerMenu .footerMenu-parent .footerMenu-ttl {
  font-family: "Noto Sans JP", sans-serif;
  color: #05428A;
  font-weight: bold;
}
.footerMenu .footerMenu-parent::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0rem;
  width: 14px;
  aspect-ratio: 1/1;
  background-image: url(../img/btn2.png);
  background-size: cover;
  background-position: center;
}
.footerMenu .footerMenu-parent--accordion::after {
  transform: rotate(90deg);
}
.footerMenu .footerMenu-parent--accordion.close::after {
  transform: rotate(-90deg);
}
.footerMenu .childs {
  display: none; /*はじめは非表示*/
}
.footerMenu .footerMenu-child {
  padding-top: 0.5rem;
  padding-left: 1rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #05428A;
  position: relative;
}
.footerMenu .footerMenu-child::after {
  content: "-";
  position: absolute;
  top: 50%;
  left: 0rem;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: lighter;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 1000px) {
  footer .footerLower {
    background-color: #fff;
  }
  footer .footerLower .footerLower__body {
    justify-content: space-between;
    padding: 1.2rem 0;
    flex-direction: column-reverse;
  }
  footer .footerLower .footerLogo {
    width: 173px;
    margin: 0 auto;
    padding-top: 1rem;
  }
  footer .footerLower .footer-txt {
    font-size: 1rem;
    text-align: center;
  }
  .footerMenu {
    padding: 3rem 0;
    gap: 2rem;
  }
  .footerMenu .footerMenu-parent {
    border-bottom: 1px solid #05428A;
    padding-bottom: 0.5rem;
    display: inline-block;
    width: 140px;
    position: relative;
  }
  .footerMenu .footerMenu-parent .footerMenu-subttl {
    font-size: 1.167rem;
  }
  .footerMenu .footerMenu-parent .footerMenu-ttl {
    font-size: 1.33333rem;
  }
  .footerMenu .footerMenu-child {
    font-size: 1.167rem;
  }
}
@media screen and (max-width: 640px) {
  header {
    height: 160px;
  }
  header .block {
    width: 80px;
    height: 80px !important;
  }
  header .headerBlock {
    width: 80px;
    flex-direction: column-reverse;
  }
  header .header-contact .header-contactIcon {
    padding-top: 24px;
  }
  header .header-contact .header-contactTxt {
    width: 70px;
    font-size: 10px;
  }
  header .modal-btn {
    width: 80px;
  }
  header .modal-btn .modalSpans {
    transform: translateY(-5px);
  }
  header .modal-btn .modalTxt {
    top: 54px;
  }
  header .modal {
    margin-top: 80px;
    height: calc(100vh - 80px);
  }
  .footerMenu .footerMenu-parent {
    width: 140px;
  }
  .footerMenu .footerMenu-parent .footerMenu-subttl {
    font-size: 14px;
  }
  .footerMenu .footerMenu-parent .footerMenu-ttl {
    font-size: 16px;
  }
  .footerMenu .footerMenu-child {
    font-size: 14px;
  }
}
.breadcrumbs__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  letter-spacing: 0.8px;
  padding: 24px 0;
}
@media screen and (max-width: 640px) {
  .breadcrumbs__inner {
    gap: 8px;
    padding: 15px 0;
  }
}
.breadcrumbs__inner--404 .current-item {
  display: none;
}
.breadcrumbs__arrow {
  width: 8.5px;
  height: 8.5px;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  transform: rotate(-225deg);
}
@media screen and (max-width: 640px) {
  .breadcrumbs__arrow {
    width: 5px;
    height: 5px;
  }
}
.breadcrumbs--404 {
  padding: 32px 0 37px;
  border-bottom: 2px solid #E4E4E3;
}
.breadcrumbs--gray {
  background-color: #EFF2F4;
}/*# sourceMappingURL=component.css.map */