@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
.sample-logo {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
}
@media only screen and (max-width: 640px) {
  .sample-logo {
    font-size: 28px;
  }
}

#header .gnv {
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 50px;
  background-color: #fff;
  z-index: 997;
}
@media print, screen and (max-width: 750px) {
  #header .gnv {
    padding: 20px 6%;
  }
}
#header .gnv .left {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#header .gnv .left .header-squ {
  max-width: 240px;
}
@media print, screen and (max-width: 1300px) {
  #header .gnv .left .header-squ {
    max-width: 200px;
  }
}
#header .gnv .left .header-squ:hover {
  opacity: 0.7;
  transition: 0.3;
}
#header .gnv .right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#header .gnv .right .glb-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media print, screen and (max-width: 1024px) {
  #header .gnv .right .glb-menu {
    display: none;
  }
}
#header .gnv .right .glb-menu li {
  margin-right: 40px;
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 1300px) {
  #header .gnv .right .glb-menu li {
    margin-right: 10px;
  }
}
#header .gnv .right .glb-menu li a {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
#header .gnv .right .glb-menu li a:hover {
  transition: 0.3s;
  color: #1590FA;
}
#header .gnv .right .glb_menu_contact {
  width: 260px;
}
@media print, screen and (max-width: 1300px) {
  #header .gnv .right .glb_menu_contact {
    width: 200px;
  }
}
@media print, screen and (max-width: 1024px) {
  #header .gnv .right .glb_menu_contact {
    display: none;
  }
}
#header .gnv .right .glb_menu_contact .contact-link {
  padding: 16px 35px 16px 15px;
}

.hamburger {
  display: none;
}
@media print, screen and (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
}

.hamburger {
  position: fixed;
  z-index: 999;
  right: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-color: #1590FA;
  cursor: pointer;
  transition: background-color 0.7s ease;
  padding: 8px 8px;
  border-radius: 3px;
}
.hamburger .bar {
  width: 30px;
  height: 3px;
  background-color: white;
  transition: transform 0.7s ease, opacity 0.7s ease, background-color 0.7s ease;
}
.hamburger.open {
  background-color: white;
  z-index: 999;
}
.hamburger.open .bar:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
  background-color: #1590FA;
  margin-left: 15px;
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
  background-color: #1590FA;
  margin-left: 15px;
}

#menu {
  display: none;
  position: fixed;
  top: -120vh;
  left: 0;
  width: 100%;
  background-color: #011E55;
  transition: top 0.7s ease;
  z-index: 0;
  height: 100vh;
  overflow-y: scroll;
}
@media print, screen and (max-width: 1024px) {
  #menu {
    display: block;
  }
}
#menu .hum-menu-inner {
  height: 100%;
  padding: 6%;
}
#menu .hum-menu-inner .icon-wrap {
  max-width: 200px;
}
#menu .hum-menu-inner .hedaer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 21.3333333333vw 0 17.3333333333vw;
  width: 100%;
}
#menu .hum-menu-inner .hedaer-menu li {
  width: 50%;
  margin-bottom: 4.8vw;
}
#menu .hum-menu-inner .hedaer-menu li a:hover {
  opacity: 0.7;
  transition: 0.5s;
}
#menu .hum-menu-inner .hedaer-menu .hedaer-menu-item {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.8rem;
}
#menu .hum-menu-inner .contact-wrap {
  margin: auto;
}
#menu .hum-menu-inner .contact-wrap a {
  margin: auto;
}
#menu .hum-menu-inner .sns-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 22.4vw;
  justify-content: center;
}
#menu .hum-menu-inner .sns-menu a:hover {
  opacity: 0.7;
  transition: 0.5s;
}
#menu .hum-menu-inner .sns-menu li {
  margin-right: 6.4vw;
}
#menu .hum-menu-inner .sns-menu li:last-child {
  margin-right: 0;
}
#menu .hum-menu-inner .sns-menu li img {
  width: 9.6vw;
}
#menu.open {
  top: 0px;
  z-index: 998;
}/*# sourceMappingURL=header.css.map */