@charset "utf-8";
#menu-button {
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 900;
  top: 0;
  right: 0;
  width: clamp(50px, var(--px-100), 100px);
  aspect-ratio: 1 / 1;
  background: var(--navy);
  cursor: pointer;
}

#menu-button.nav-on {
  visibility: visible;
  opacity: 1;
}

#menu-button .ham-lines {
  position: relative;
  margin: 0 auto;
  width: clamp(24px, var(--px-47), 47px);
  height: clamp(20px, var(--px-36), 36px);
}

#menu-button .ham-lines span,
#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
  position: absolute;
  display: block;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: clamp(24px, var(--px-47), 47px);
  height: var(--ham-line);
  background-color: #fff;
  border-radius: 1px;
}

#menu-button .ham-lines span {
  bottom: calc(50% - var(--ham-line) / 2);
  transition: all 0.25s 0.25s;
  opacity: 1;
}

#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
  content: "";
}

#menu-button .ham-lines::before {
  bottom: calc(100% - var(--ham-line));
  animation: menu-bar01 0.75s forwards;
}

#menu-button .ham-lines::after {
  bottom: 0px;
  animation: menu-bar03 0.75s forwards;
}

#menu-button .ham-text {
  font-size: max(var(--px-20), 10px);
  line-height: 1;
  color: #fff;
}

#menu-button.is-active .ham-lines span {
  opacity: 0;
}

#menu-button.is-active .ham-lines::before {
  animation: active-menu-bar01 0.5s forwards;
}

#menu-button.is-active .ham-lines::after {
  animation: active-menu-bar03 0.5s forwards;
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(9px) rotate(45deg);
  }

  50% {
    transform: translateY(9px) rotate(0);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar03 {
  0% {
    transform: translateY(-9px) rotate(-45deg);
  }

  50% {
    transform: translateY(-9px) rotate(0);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(9px) rotate(0);
  }

  100% {
    transform: translateY(clamp(10px, var(--px-18), 18px)) rotate(45deg);
  }
}

@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-9px) rotate(0);
  }

  100% {
    transform: translateY(-14px) rotate(-45deg);
  }
}
#main-menu-container .main-menu {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/*-------container----*/
#main-menu-container {
  position: fixed;
  z-index: 700;
  top: 0;
  left: auto;
  right: -100vw;
  bottom: auto;
  overflow-y: auto;
  background: rgba(0, 86, 153, 0.7);
  background-size: cover;
  display: none;
  width: 100vw;
  height: 100vh;
  transition: 0.3s linear;
}
.main-menu-container .main-menu li a::before {
  content: attr(title);
  font-size: max(var(--px-20), 18px);
  letter-spacing: 0;
}
.main-menu-container .main-menu li:first-child a::before {
  content: attr(data-label);
  font-size: max(var(--px-20), 18px);
  letter-spacing: 0;
}
.main-menu-container .main-menu li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
  gap: 10px;
  line-height: 1;
  color: #fff;
}
.main-menu-container .main-menu li {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#main-menu-container.is-active {
  right: 0vw;
}

body #main-menu-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1180px) {
  @keyframes active-menu-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }

    50% {
      transform: translateY(9px) rotate(0);
    }

    100% {
      transform: translateY(9px) rotate(45deg);
    }
  }
}
/*-------ipad-air----*/
@media screen and (max-width: 820px) {
  @keyframes active-menu-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }

    50% {
      transform: translateY(9px) rotate(0);
    }

    100% {
      transform: translateY(4px) rotate(45deg);
    }
  }
}
/*-------iphone----*/
@media screen and (max-width: 680px) {
}
