@charset "utf-8";

.nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9999;
  background-image: url(../img/menu/sp-top-bg.jpg);
  background-size: cover;
  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-menu {
  padding: 0 0 12%;
}

.nav-item {
  width: 100%;
  margin: 0 0 0.6em;
  text-align: center;
  font-size: 5.5vw;
  letter-spacing: 0.05em;
  line-height: 1;
}

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

.nav-item a {
  font-family: "shackleton-condensed";
  font-weight: 400;
  font-style: normal;
  font-stretch: condensed;
}

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

.toggle img {
  width: 100%;
  border: var(--color) solid 1px;
}

@media screen and (min-width: 1px) and (max-width: 743px) {}

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

  .nav-item {
    width: 100%;
    margin: 0 0 1em;
    font-size: 3.2vw;
  }

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

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

@media screen and (min-width: 1025px) {

  .toggle {
    display: none;
  }

  a.nav-link {
    color: var(--color);
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: "shackleton-condensed", serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    padding: 0 0.4em;
  }

  a.nav-link:hover {
    color: #fff;
    text-decoration: none;
  }

  .pc-navi {
    width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 15px;
    right: 0;
    left: 0;
    z-index: 20;
    background-color: #000;
    border: var(--color) solid 1px;
    box-shadow: var(--shadow-glow);
  }

  .pc-navi-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em 1em 0.5em;
  }

  .pc-navi-item {
    line-height: 1;
    letter-spacing: 0.03em;
  }

}