@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p, a, span, li, button {
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

div.wrapper_ {
  margin: inherit;
  width: inherit;
  text-align: inherit;
}

.header {
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.header__inner {
  width: 92%;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner__logo {
  height: 70px;
}
.header__inner__logo a {
  position: relative;
  display: block;
  height: 100%;
}
.header__inner__logo a img {
  width: auto;
  height: 100%;
}
.header__inner__nav {
  display: flex;
  gap: 50px;
}
.header__inner__nav li a {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.header__inner__nav li a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1200px) {
  .header__inner {
    height: 70px;
  }
  .header__inner__logo {
    height: 35px;
    column-gap: 16px;
  }
  .header__inner__nav {
    gap: 40px;
  }
  .header__inner__nav li a {
    font-size: 15px;
  }
}
@media screen and (max-width: 520px) {
  .header__inner {
    width: 95%;
    height: 70px;
  }
  .header__inner__logo {
    height: 60px;
    column-gap: 12px;
  }
  .header__inner__nav {
    display: none;
  }
}
.footer {
  padding: 80px 0 0;
  text-align: center;
}
.footer__logo {
  margin-bottom: 40px;
  display: block;
}
.footer__logo img {
  height: 45px;
}
.footer__nav {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  column-gap: 30px;
}
.footer__nav li a {
  font-size: 16px;
  color: #333;
  transition: 0.3s;
}
.footer__nav li a:hover {
  text-decoration: none;
}
.footer__copyright {
  border-top: 1px solid #ccc;
  padding: 12px 0;
  font-size: 14px;
}

@media screen and (max-width: 520px) {
  .footer__logo img {
    height: 40px;
  }
  .footer__nav {
    flex-direction: column;
    row-gap: 20px;
  }
  .footer__nav li a {
    font-size: 3.5vw;
  }
  .footer__copyright {
    font-size: 3vw;
  }
}