@charset "utf-8";
#menu-button {
  visibility: hidden;
  opacity: 1;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 900;
  top: 0;
  right: 0;
  width: 34px;
  height: 24px;
  background: none;
}

#menu-button.nav-on {
  visibility: visible;
  opacity: 1;
}

#menu-button .c-menu-btn__lines {
  position: relative;
  margin: 0 auto;
  width: 25px;
  height: 17px;
}

#menu-button .c-menu-btn__lines span,
#menu-button .c-menu-btn__lines::before,
#menu-button .c-menu-btn__lines::after {
  position: absolute;
  display: block;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 25px;
  height: 3px;
  background-color: #9c5cdb;
  border-radius: 1px;
}

#menu-button .c-menu-btn__lines span {
  bottom: 7px;
  transition: all 0.25s 0.25s;
  opacity: 1;
}

#menu-button .c-menu-btn__lines::before,
#menu-button .c-menu-btn__lines::after {
  content: "";
}

#menu-button .c-menu-btn__lines::before {
  bottom: 14px;
  animation: menu-bar01 0.75s forwards;
}

#menu-button .c-menu-btn__lines::after {
  bottom: 0px;
  animation: menu-bar03 0.75s forwards;
}

#menu-button.is-active .c-menu-btn__lines span {
  opacity: 0;
}

#menu-button.is-active .c-menu-btn__lines::before {
  animation: active-menu-bar01 0.5s forwards;
}

#menu-button.is-active .c-menu-btn__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(1px) rotate(45deg);
  }
}

@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-9px) rotate(0);
  }

  100% {
    transform: translateY(-14px) rotate(-45deg);
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: var(--px-80);
  padding-right: var(--px-140);
  padding-block: 15px;
}
.c-nav__link-area-wrap {
  display: flex;
  justify-content: flex-end;
  gap: max(var(--px-24), 10px);
  padding-right: max(var(--px-30), 10px);
  margin-bottom: 7px;
}
.c-nav__list {
  display: flex;
  gap: clamp(10px, var(--px-30), 30px);
}
.c-nav__list li {
  font-size: max(var(--px-15), 8px);
  letter-spacing: 0.06em;
}
@media screen and (max-width: 680px) {
  body #menu-button {
    visibility: visible;
    opacity: 1;
    display: flex;
    z-index: 701;
    border: none;
  }
  .l-header__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  #main-menu-container .c-nav__list {
    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: #fafafa;
    background-size: cover;
    display: none;
    width: 100vw;
    height: 100vh;
    transition: 0.3s linear;
  }

  #main-menu-container.is-active {
    right: 0vw;
  }

  body #main-menu-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .c-nav__list li {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  .c-nav__link-area-wrap {
    display: none;
  }
}
