@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Teko:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");
body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
}
@media (min-width: 768px) {
  body {
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  body {
    line-height: 1.8;
  }
}

.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
}

.noto-serif {
  font-family: "Noto Serif JP", serif;
}

.lato {
  font-family: "Lato", serif;
  font-weight: 900;
  font-style: normal;
}

.header {
  position: fixed;
  background-color: #fff;
  color: #1f2c5c;
  border-bottom: 1px solid transparent;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
}
.header[aria-expanded=true] {
  background-color: #1f2c5c;
  border-bottom: 1px solid #fff;
}
.header[aria-expanded=true] .header__nav {
  display: block;
}
.header[aria-expanded=true] .header__icon {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.header[aria-expanded=true] .header__text {
  color: #fff;
}
.header[aria-expanded=true] .header__hr {
  background-color: #fff;
}
.header[aria-expanded=true] .header__hr_b {
  transform: translateY(-12px) rotate(-45deg);
}
.header[aria-expanded=true] .header__hr_m {
  opacity: 0;
}
.header[aria-expanded=true] .header__hr_t {
  transform: translateY(12px) rotate(45deg);
}
.header[aria-expanded=true] .header__menutx {
  display: none;
}
.header__logo {
  font-weight: 500;
}
.header__icon {
  background-color: #1f2c5c;
  width: 80px;
  height: 80px;
}
.header__mark {
  width: 48px;
}
.header__text {
  line-height: 28px;
  letter-spacing: 0.05rem;
  margin-left: 20px;
}
@media (min-width: 768px) {
  .header__nav {
    height: 80px;
    margin-right: 30px;
  }
}
@media (max-width: 999px) {
  .header__nav {
    display: none;
    position: fixed;
    background-color: #1f2c5c;
    color: #fff;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    z-index: 10;
  }
}
@media (max-width: 479px) {
  .header__nav {
    height: calc(100% - 160px);
  }
}
.header__items {
  display: flex;
  list-style: none;
  letter-spacing: 0.1rem;
}
@media (min-width: 1000px) {
  .header__items {
    height: 100%;
    align-items: center;
    font-size: 13px;
  }
}
@media (max-width: 999px) {
  .header__items {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 18px;
    padding: 24px 0;
  }
}
@media (max-width: 999px) {
  .header__item {
    position: relative;
    width: 100%;
    padding: 10px 24px;
  }
}
@media (max-width: 999px) {
  .header__item::before, .header__item::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto;
    vertical-align: baseline;
  }
}
@media (max-width: 999px) {
  .header__item::before {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #fff;
  }
}
@media (max-width: 999px) {
  .header__item::after {
    right: 38px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }
}
@media (min-width: 1000px) {
  .header__item + .header__item {
    margin-left: 25px;
  }
}
.header__anc {
  position: relative;
  padding-bottom: 5px;
}
.header__anc::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #1f2c5c;
  bottom: -5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.header__anc:hover {
  opacity: 1;
}
.header__anc:hover::after {
  visibility: visible;
  bottom: 0;
  opacity: 1;
}
@media (min-width: 1000px) {
  .header__btn {
    display: none;
  }
}
@media (max-width: 999px) {
  .header__btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: none;
    height: 80px;
    width: 80px;
    z-index: 1000;
  }
}
.header__hr {
  background-color: #1f2c5c;
  border: none;
  height: 2px;
  margin-bottom: 10px;
  transition-duration: 0.2s;
  width: 40px;
}
.header__hr_b {
  margin-bottom: 5px;
}

.side {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  top: 0;
  left: auto;
  right: 0;
  width: 80px;
  height: 100vh;
  z-index: 10;
}
@media (max-width: 479px) {
  .side {
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 80px;
    flex-direction: row;
  }
}
.side__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  color: #1f2c5c;
  border: 1px solid #1f2c5c;
  border-right: none;
  border-radius: 10px 0 0 10px;
  width: 70px;
  height: 93px;
}
@media (max-width: 479px) {
  .side__button {
    border-radius: 0;
    width: 50%;
    height: 80px;
  }
}
@media (min-width: 480px) {
  .side__button:hover {
    border-color: #019dc6;
    color: #019dc6;
    flex: none;
    width: 80px;
    opacity: 1;
  }
}
@media (max-width: 479px) {
  .side__button:last-child {
    border-right: 1px solid #1f2c5c;
  }
}
.side__button span {
  font-size: 13px;
}
@media (max-width: 479px) {
  .side__button span {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .side__button span br {
    display: none;
  }
}

.footer {
  background-color: #1f2c5c;
  color: #fff;
}
@media (min-width: 768px) {
  .footer {
    padding: 120px 0 40px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 50px 0 30px;
  }
}
@media (max-width: 479px) {
  .footer {
    padding-bottom: 110px;
  }
}
.footer__wrapper {
  max-width: 1300px;
  padding: 0 30px;
}
@media (min-width: 768px) and (max-width: 1000px) {
  .footer__info {
    display: block;
  }
}
@media (min-width: 768px) {
  .footer__logo img {
    width: 368px;
  }
}
@media (max-width: 767px) {
  .footer__logo img {
    width: 340px;
  }
}
@media (min-width: 768px) {
  .footer__addr {
    margin-left: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .footer__addr {
    margin: 10px 0 0 0;
  }
}
@media (max-width: 767px) {
  .footer__addr {
    text-align: center;
  }
}
.footer__seal {
  width: 50px;
}
.footer__nav {
  padding: 20px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.footer__items {
  list-style: none;
}
@media (max-width: 767px) {
  .footer__items {
    padding: 0 10px;
  }
}
.footer__item:not(:last-child) {
  margin-right: 30px;
}
.footer__anc {
  position: relative;
  padding-bottom: 5px;
}
.footer__anc::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}
.footer__anc:hover {
  opacity: 1;
}
.footer__anc:hover::after {
  left: 0;
  width: 100%;
}/*# sourceMappingURL=common.css.map */