header {
  background-color: #49a839;
  width: 100%;
  z-index: 999;
  height: 120px;
}
@media screen and (max-width: 1023px) {
  header {
    height: 70px;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 40px;
  }
}
header .nav-button {
  display: none;
  position: fixed;
  width: 60px;
  height: 60px;
  top: 10px;
  right: 23px;
  z-index: 999;
  background-color: #49a839;
  border-radius: 30px;
}
@media screen and (max-width: 1023px) {
  header .nav-button {
    display: block;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  header .nav-button {
    top: 10px;
    width: 30px;
    height: 30px;
    padding: 5px;
  }
}
header .nav-button span {
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #fff;
  transition: 0.3s;
  left: 30px;
}
@media screen and (max-width: 767px) {
  header .nav-button span {
    width: 20px;
    height: 2px;
  }
}
header .nav-button::before {
  display: block;
  position: absolute;
  content: "";
  top: 15px;
  left: 10px;
  width: 40px;
  height: 3px;
  background-color: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  header .nav-button::before {
    width: 20px;
    height: 2px;
    top: 7px;
    left: 5px;
  }
}
header .nav-button::after {
  display: block;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 40px;
  height: 3px;
  background-color: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  header .nav-button::after {
    width: 20px;
    height: 2px;
    bottom: 7px;
    left: 5px;
  }
}
header .nav-cross {
  background-color: transparent;
}
header .nav-cross span {
  display: none;
}
header .nav-cross::before {
  transform: translateY(13px) rotateZ(-45deg);
}
@media screen and (max-width: 767px) {
  header .nav-cross::before {
    transform: translateY(7px) rotateZ(-45deg);
  }
}
header .nav-cross::after {
  transform: translateY(-13px) rotateZ(45deg);
}
@media screen and (max-width: 767px) {
  header .nav-cross::after {
    transform: translateY(-7px) rotateZ(45deg);
  }
}
header .top-links {
  justify-content: space-between;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
}
header .top-links .header-logo img {
  max-width: 250px;
}
@media screen and (max-width: 767px) {
  header .top-links .header-logo {
    max-width: 120px;
  }
}
header .top-links .icons {
  display: flex;
  margin-top: 15px;
  gap: 20px;
  justify-content: flex-end;
}
@media screen and (max-width: 1023px) {
  header .top-links .icons {
    background-color: rgba(73, 168, 57, 0.9);
    display: none;
    position: fixed;
    z-index: 990;
  }
}
header .top-links .icons img {
  max-width: 40px;
}
header .top-links .icons .search {
  display: flex;
  padding: 0 20px;
  width: 300px;
  height: 40px;
  font-size: 20px;
  line-height: 40px;
  color: #aaa;
  background-color: #fff;
  border-radius: 25px;
}
header .top-links .icons .search::after {
  margin-right: 0;
  margin-left: auto;
  content: "\f002";
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  font-weight: 900;
}
header .top-responsive {
  padding: 5px 4% 0;
}
header .toggle-nav {
  width: 100%;
  z-index: 998;
  position: relative;
}
header .toggle-nav .nav_responsive {
  margin-top: 5px;
  background: linear-gradient(to bottom, #393f42, #151418);
}
@media screen and (max-width: 1023px) {
  header .toggle-nav .nav_responsive {
    position: fixed;
    background: none;
    display: grid;
    place-content: center;
    background-color: rgba(73, 168, 57, 0.9);
    width: 100%;
    height: 100%;
    transform: translateY(-110%);
    top: 0;
  }
}
header .toggle-nav .nav_responsive ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  header .toggle-nav .nav_responsive ul {
    flex-direction: column;
    place-items: center;
  }
}
header .toggle-nav .nav_responsive ul li {
  border-right: 2px solid #fff;
  border-bottom: none;
}
header .toggle-nav .nav_responsive ul li:last-child {
  border-right: none;
}
@media screen and (max-width: 1023px) {
  header .toggle-nav .nav_responsive ul li {
    border-right: none;
  }
  header .toggle-nav .nav_responsive ul li:last-child {
    border-bottom: none;
  }
}
header .toggle-nav .nav_responsive ul a {
  padding: 10px 5px;
  display: block;
  font-size: 12px;
  width: 125px;
  text-align: center;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1023px) {
  header .toggle-nav .nav_responsive ul a {
    width: 100vw;
  }
}
header .toggle-nav .nav_responsive ul a:hover {
  color: #49a839;
}
header .toggle-nav .nav_responsive ul a span {
  display: block;
  margin-top: 4px;
  font-family: "Oswald", sans-serif;
}
header .toggle-nav .nav_responsive .icons {
  display: none;
  margin-top: 15px;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  header .toggle-nav .nav_responsive .icons {
    z-index: 990;
    display: flex;
  }
}
header .toggle-nav .nav_responsive .icons img {
  max-width: 40px;
}
header .toggle-nav .nav_responsive .search {
  display: none;
}
@media screen and (max-width: 1023px) {
  header .toggle-nav .nav_responsive .search {
    z-index: 990;
    display: flex;
    margin: 15px auto 0;
    display: flex;
    padding: 0 20px;
    width: 300px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
    color: #aaa;
    background-color: #fff;
    border-radius: 25px;
  }
  header .toggle-nav .nav_responsive .search::after {
    margin-right: 0;
    margin-left: auto;
    content: "\f002";
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
    font-weight: 900;
  }
}
header .toggle-nav .nav-active {
  transform: translateY(-5px);
  transition: 0.3s;
}/*# sourceMappingURL=header.css.map */