@charset "utf-8";

.nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9999;
  background-image: url(../img/common/sp-bg.jpg);
  background-position: center;
  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-item {
  width: 100%;
  margin: 0 auto 1.2em;
  padding: 0.2em 1em;
  text-align: center;
  font-size: 4.6vw;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-item:last-of-type {
  margin: 0;
}

.nav-item a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--c-1);
}

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

.toggle img {
  width: 100%;
}

@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 1.2em;
    font-size: 2.8vw;
  }

  .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(--c-1);
    text-decoration: none;
    transition: all 0.2s ease;
  }

  a.nav-link:hover {
    color: var(--c-2);
    text-decoration: none;
    transform: translateY(-3px);
  }

  .pc-navi {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: auto;
    height: var(--header-h);
    top: 10px;
    right: 0;
    left: 0;
    z-index: 10;
  }

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

  .pc-navi-item {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.03em;
  }

}