@charset "UTF-8";
/* ------------------------------------------------------------
// スマホ用グローバルナビ
------------------------------------------------------------ */
.openbtn1 {
  display: none;
}
@media screen and (max-width: 991px) {
  .openbtn1 {
    position: fixed;
    top: 15px;
    right: 15px;
    display: block;
    background: #14b885;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    z-index: 900;
  }
  .openbtn1 .line {
    display: inline-block;
    transition: all 0.2s;
    position: absolute;
    top: 0;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
  }
  .openbtn1 .line:nth-of-type(1) {
    top: 15px;
  }
  .openbtn1 .line:nth-of-type(2) {
    top: 23px;
  }
  .openbtn1 .line:nth-of-type(3) {
    top: 31px;
  }
}

.openbtn1.active span:nth-of-type(1) {
  top: 17px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 29px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

#checkbox {
  display: none;
}

#checkbox:checked ~ label .line {
  width: 24px;
  left: 14px;
}
#checkbox:checked ~ label .line:nth-of-type(1) {
  top: 34%;
  transform: translateY(6px) rotate(-45deg);
}
#checkbox:checked ~ label .line:nth-of-type(2) {
  display: none;
}
#checkbox:checked ~ label .line:nth-of-type(3) {
  bottom: 34%;
  transform: translateY(-6px) rotate(45deg);
}

.sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  background: rgb(255, 255, 255);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  z-index: 500;
}
.sp-nav ul {
  list-style: none;
  padding: 100px 4%;
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
}
.sp-nav ul li {
  margin: 0 auto 0.3em;
  max-width: 800px;
}
.sp-nav ul li a {
  display: block;
  padding: 1em 1.5em;
  background: rgb(255, 255, 255);
  font-weight: 700;
  color: #333;
  border: 1px solid #14b885;
  border-radius: 5px;
  transition: all 0.5s;
}
.sp-nav ul li a:hover, .sp-nav ul li a.current {
  color: #ffffff;
  background: #14b885;
}
.sp-nav ul li .login {
  display: flex;
  justify-content: space-between;
  background: #f1fbf1;
}
.sp-nav ul li .login i {
  font-size: 20px;
  color: #14b885;
  margin: 0 0 0 10px;
}
.sp-nav ul li .login:hover, .sp-nav ul li .login.current {
  color: #ffffff;
  background: #14b885;
}
.sp-nav ul li .login:hover i, .sp-nav ul li .login.current i {
  color: #ffffff;
}

#checkbox:checked ~ .sp-nav {
  visibility: visible;
  opacity: 1;
}/*# sourceMappingURL=nav.css.map */