@charset "utf-8";

.nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9999;
  background-position: top left;
  background-repeat: repeat-y;
  background-size: 50% auto;
  background-color: #fff;
}

.nav::before,
.nav::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: calc(100% + 1px);
}

.nav-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100vh;
}

.nav-item {
  width: 100%;
  margin: 0 0 0.6em;
  text-align: left;
  font-size: min(2vw, 48px);
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-item a {
  color: #aa9dab;
}

.toggle img {
  width: 100%;
}

@media screen and (min-width: 1px) and (max-width: 743px) {
  .nav-item {
    margin: 0 0 1.4rem;
    font-size: 6vw;
  }

  .toggle {
    cursor: pointer;
    position: fixed;
    width: 12%;
    top: 2px;
    right: 2px;
    z-index: 999;
  }
}

@media screen and (min-width: 744px) and (max-width: 1024px) {
  .nav-item {
    width: 100%;
    margin: 0 0 1.8rem;
    font-size: 4vw;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 0.05em;
    line-height: 1;
  }

  .toggle {
    cursor: pointer;
    position: fixed;
    width: 60px;
    top: 5px;
    right: 5px;
    z-index: 999;
  }
}

@media screen and (min-width: 1025px) {
  .nav-item a:hover {
    width: 100%;
    color: #ff4366;
  }

  .toggle {
    cursor: pointer;
    position: fixed;
    width: 60px;
    top: 5px;
    right: 5px;
    z-index: 999;
  }
}
