@charset "UTF-8";
/*----------------------------------------------
スマホメニュー
----------------------------------------------*/
.wrapper {
  position: relative;
}

#btn-gnav {
  display: none;
}

@media screen and (max-width: 767px) {
  #btn-gnav {
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 8px;
    width: 50px;
    height: 39px;
    padding: 10px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.7);
  }
  #btn-gnav span {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ed828b;
    transition: ease 0.4s;
    /* &:nth-child(1) {
    	top: 0;
    }
    &:nth-child(2) {
    	margin: 8px 0;
    }
    &:nth-child(3) {
    	top: 0;
    } */
  }
  body.open {
    overflow: hidden;
  }
  body.open #btn-gnav {
    transform: translateX(0);
    background-color: unset;
  }
  body.open #btn-gnav span {
    background-color: #fff;
    text-decoration: none;
    position: absolute;
    width: calc(100% - 20px);
  }
  body.open #btn-gnav span:nth-child(1) {
    transform: rotate(45deg);
  }
  body.open #btn-gnav span:nth-child(2) {
    display: none;
  }
  body.open #btn-gnav span:nth-child(3) {
    transform: rotate(-45deg);
  }
  #gnav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100vh;
    padding: 50px 10px 160px 10px;
    background: rgba(237, 130, 139, 0.9);
    overflow-y: auto;
    transition: ease 0.1s;
  }
  #gnav > ul {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  #gnav > ul > li {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
    line-height: 1.5;
  }
  #gnav > ul > li + li {
    margin-top: 25px;
  }
  #gnav > ul > li > a {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    color: #fff;
    font-size: 17px !important;
    line-height: 1.5;
    padding-bottom: 5px;
    border-bottom: solid 1px #fff;
  }
  #gnav > ul > li ul {
    margin-top: 10px;
  }
  #gnav > ul > li ul li {
    margin-bottom: 5px;
    text-align: left;
    border-top: none;
  }
  #gnav > ul > li ul li a {
    text-align: left;
    display: flex;
    justify-content: flex-start;
    color: #fff;
    font-size: 15px !important;
    line-height: 1.5;
  }
}/*# sourceMappingURL=sp_nav.css.map */