@charset "utf-8";

.nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9999;
  background-image: url(../img/common/bg-black.png);
  background-position: top left;
  background-repeat: repeat-y;
  background-size: 50% auto;
  background-color: #000;
}

.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 1.8rem;
  text-align: center;
  font-size: 2vw;
  font-family: "owners-xwide", sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-item:nth-of-type(1) {
  width: 90%;
  margin: 0 auto 4rem;
}

.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: 5.6vw;
  }

  .nav-item:nth-of-type(1) {
    width: 60%;
    margin: 0 auto 3rem;
  }

  .toggle {
    position: fixed;
    width: 10%;
    top: 0;
    right: 0;
    z-index: 999;
  }

}

@media screen and (min-width: 744px) and (max-width: 1024px) {

  .nav-item {
    width: 100%;
    margin: 0 0 1.8rem;
    text-align: center;
    font-size: 4vw;
    font-family: "owners-xwide", sans-serif;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 0.05em;
    line-height: 1;
  }

  .nav-item:nth-of-type(1) {
    width: 90%;
    margin: 0 auto 4rem;
  }

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

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

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