@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  margin: 0px;
  max-width: 100%;
}

@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }
}
* {
  font-family: "Noto Sans JP";
  box-sizing: border-box;
  flex-wrap: wrap;
}

h1, h2, h3, p {
  margin: 0px;
}

header {
  z-index: 999;
  background: #FFF;
  color: #000;
  font-size: 18px;
  font-family: Noto Sans JP;
  font-weight: 500;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
}
header .m-nav {
  display: none;
}
header .logo {
  width: 180px;
}
header .nav {
  display: flex;
  gap: 50px;
  z-index: 999;
  margin-left: auto;
  margin-right: 60px;
}
header .nav a {
  text-decoration: none;
  color: #000;
}
header .nav a > div {
  text-align: center;
}
header .nav a > div .sub {
  font-size: 14px;
}

@media (max-width: 600px) {
  header {
    z-index: 999;
  }
  header .logo {
    width: auto;
    height: 60px;
  }
  header .m-nav {
    display: block;
    margin-left: auto;
    margin-right: 14px;
  }
  header .m-nav .hamburger-menu {
    display: none;
  }
  header .m-nav .hamburger-menu.active {
    display: block;
    width: 24px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  header .m-nav .hamburger-menu.active span {
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background-color: #999999;
  }
  header .m-nav--menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
  header .m-nav--menu--mask {
    width: 100%;
    height: 100%;
    background: rgba(217, 217, 217, 0.7);
  }
  header .m-nav--menu--list {
    transition: right 0.5s ease;
    position: fixed;
    top: 0;
    right: -350px;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #FF5D53 0%, #6434FB 100%);
  }
  header .m-nav--menu--list.active {
    right: 0;
  }
  header .m-nav--menu--list .m-nav--close {
    color: #FFF;
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
  }
  header .m-nav--menu--list .close-icon {
    width: 18px;
    height: 30px;
    cursor: pointer;
  }
  header .m-nav--menu--list .close-icon:before,
  header .m-nav--menu--list .close-icon:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #FFF;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  header .m-nav--menu--list .close-icon:before {
    transform: rotate(45deg);
  }
  header .m-nav--menu--list .close-icon:after {
    transform: rotate(-45deg);
  }
  header .m-nav--menu--list--item {
    color: #FFF;
    font-size: 14px;
    padding: 125px 75px 125px 56px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  header .m-nav--menu--list--item img {
    width: 100px;
    margin-top: 60px;
  }
  header .m-nav--menu--list--item a {
    text-decoration: none;
    color: #FFF;
    cursor: pointer;
  }
  header .nav {
    display: none;
    margin-left: auto;
    margin-right: 60px;
  }
  header .nav a {
    text-decoration: none;
    color: #000;
  }
  header .nav a > div {
    text-align: center;
  }
  header .nav a > div .sub {
    font-size: 14px;
  }
}/*# sourceMappingURL=header.css.map */