@charset "utf-8";

.nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9999;
}

.webp .nav-bg-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/menu/menu-bg-1.webp);
}

.no-webp .nav-bg-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/menu/menu-bg-1.jpg);
}

.webp .nav-bg-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/menu/menu-bg-2.webp);
}

.no-webp .nav-bg-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/menu/menu-bg-2.jpg);
}

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

.nav-item {
  width: 100%;
  margin: 0 0 1.3rem;
  text-align: center;
  font-size: 5vw;
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.nav-item:last-child {
  width: 60%;
  margin: 0 auto;
  padding: 2rem 0 0;
  text-align: center;
}

a.tn_link {
  color: #fff;
  text-decoration: none;
}

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

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

.toggle img {
  width: 100%;
}

#logo-2 {
  display: none;
}

@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: "Kosugi", sans-serif;
    font-weight: 400;
    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) {
  .pc-navi {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    margin: 0 auto;
    padding: 0;
    top: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .pc-navi-item {
    font-size: 15px;
    font-family: "Kosugi", sans-serif;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1;
  }

  a.nav-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  a.nav-link:hover {
    color: #fff000;
    text-decoration: none;
    transform: scale(1.1);
  }
}