@charset "utf-8";
#g-nav {
  position: fixed;
  z-index: 99999;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  transition: all 0.6s;
}
#g-nav.panelactive {
  top: 0;
}
#g-nav ul {
  width: 302px;
  height: 336px;
  position: absolute;
  z-index: 99999;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#g-nav ul li {
  height: 66px;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 66px;
  text-align: left;
  color: #000;
  border-top: 1px solid #a6bac9;
}
#g-nav ul li:last-child {
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 23px;
  text-align: left;
  color: #000;
  padding-top: 49px;
}
#g-nav ul li a {
  display: block;
}
#g-nav .toiawase-button {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
}

.openbtn {
  position: fixed;
  z-index: 99999;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 13px;
  height: 1px;
  background-color: #568ac7;
  width: 50%;
}
.openbtn span:nth-of-type(1) {
  top: 16px;
}
.openbtn span:nth-of-type(2) {
  top: 25px;
}
.openbtn span:nth-of-type(3) {
  top: 35px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}
