@charset "utf-8";

.gnav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9999;
  overflow: hidden;
  overscroll-behavior-y: none;
}

.gnav::before,
.gnav::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: calc(100% + 1px);
}

.gnav-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% auto;
  background-color: #1320ad;
  padding: 0 0 18%;
}

.webp .gnav-wrap {
  background-image: url(../img/toggle/bg-toggle.webp);
}

.no-webp .gnav-wrap {
  background-image: url(../img/toggle/bg-toggle.jpg);
}

.gnav-item {
  margin: 0 0 2rem;
  text-align: center;
  font-size: 5vw;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.06em;;
  line-height: 1;
}

.gnav-item:first-child {
  width: 50%;
  margin: 0 auto 3rem;
}

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

.toggle img {
  width: 100%;
}

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

  .gnav-wrap {
    background-position: center;
  }
  
  .gnav-item {
    margin: 0 0 4rem;
    font-size: 3.4vw;
  }

  .toggle {
    width: 6%;
    top: 10px;
    right: 10px;
  }

}
