@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.png);
  background-position: top right;
  background-repeat: repeat-y;
  background-size: 60% auto;
  background-color: #192225;;
}

.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 1em;
  text-align: center;
  font-size: 5vw;
  letter-spacing: 0.05em;
  line-height: 1;
}

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

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

.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 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: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  a.nav-link:hover {
    color: #00aeb8;
    text-decoration: none;
    transform: translateY(-3px);
  }

  .pc-navi {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: auto;
    height: 40px;
    top: 10px;
    right: 0;
    left: 0;
    z-index: 10;

  }

  .pc-navi-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.2em 1.5em 0.5em;
    background-color: #5f7177
  }

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

}