@charset "UTF-8";
/* .wrapper{
    display: flex;
} */
.logo {
  width: 280px;
}
@media (max-width: 768px) {
  .logo {
    width: 240px;
  }
}

.nav-menu {
  font-size: 16px;
}

#navi {
  /* 画面に対してどの位置か */
  position: fixed;
  top: 80px;
  left: 50px;
  z-index: 700;
  transform: translateX(-200px);
}

#navi.open {
  transform: translateX(0);
  transition: 1s;
  z-index: 700;
}

.nav-item {
  line-height: 3rem;
}

/* toggleボタン配下のspanタグ */
.toggle_btn span {
  width: 40px;
  height: 2px;
  display: block;
  background-color: #111;
  margin: 8px 0;
}

.toggle_btn {
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 800;
}

.toggle_btn.open span:nth-child(1) {
  transform: translateY(5px) rotate(-45deg);
  transition: 0.3s ease-in-out;
  z-index: 1200;
}

.toggle_btn.open span:nth-child(2) {
  transform: translateY(-5px) rotate(45deg);
  transition: 0.3s ease-in-out;
}

.toggle_btn.open span {
  background-color: #fff;
}

#mask {
  display: none;
}

#mask.open {
  background-color: #d8d520;
  opacity: 1;
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
}/*# sourceMappingURL=hamburger.css.map */