#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
  /* background-color: rgb(195, 196, 196); */
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  /* background-color: rgb(195, 196, 196); */
}
#menu__toggle:checked ~ .menu__box {
  top: 0 !important;
}
.hamburger-menu {
  display: none;
}
.menu__btn {
  position: fixed;
  top: 33px;
  right: 30px;
  width: 30px;
  height: 34px;
  cursor: pointer;
  z-index: 1;
}

@media screen and (max-width: 800px) {
  .hamburger-menu {
    display: flex;
  }
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #616161;
  transition-duration: 0.25s;
}

.menu__btn > span {
  top: 17px;
}
.menu__btn > span::before {
  content: "";
  top: -10px;
}
.menu__btn > span::after {
  content: "";
  top: 10px;
}
.menu__box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: fixed;
  left: 0;
  top: -200vh;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: rgb(244, 245, 246);
  transition-duration: 0.5s;
}
.menu__item {
  display: block;
  /* padding: 12px 24px; */
  color: #333;
  font-family: "Roboto", sans-serif;
  font-size: clamp(30px, 3vw - 1px, 50px);
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.25s;
}

.menu__box a::before {
  opacity: 0;
}
.overflow_body {
  overflow: hidden;
}

.menu_sup .menu__box li a {
  position: relative;
  color: rgba(5, 5, 52, 0.805);
  margin: 10px 0;
  padding-bottom: 6px;
}

.menu__box li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: rgba(5, 5, 52, 0.805);
  bottom: 0;
  left: 0;
  transform-origin: bottom;
  transform: scaley(0);
  transition: transform 0.2s ease-in-out;
}

.menu__box li a:hover::after {
  transform-origin: top;
  transform: scaley(1);
}
