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

#btn-gnav {
  display: none;
}

@media screen and (max-width: 999px) {
  #btn-gnav {
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 5;
    display: block;
    width: 30px;
    height: 19px;
    cursor: pointer;
  }
  #btn-gnav span {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #b55e4e;
    box-shadow: 0 0 2px #fff;
    transition: ease 0.4s;
  }
  #btn-gnav span:nth-child(1) {
    top: 0;
  }
  #btn-gnav span:nth-child(2) {
    margin: 8px 0;
  }
  #btn-gnav span:nth-child(3) {
    top: 0;
  }
  body.open {
    overflow: hidden;
  }
  body.open #btn-gnav {
    transform: translateX(0);
  }
  body.open #btn-gnav span {
    background-color: #fff;
    text-decoration: none;
  }
  body.open #btn-gnav span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
  }
  body.open #btn-gnav span:nth-child(2) {
    opacity: 0;
  }
  body.open #btn-gnav span:nth-child(3) {
    top: -13px;
    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(181, 94, 78, 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;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    padding-bottom: 5px;
    border-bottom: solid 1px #fff;
    gap: 5px 10px;
  }
  #gnav > ul > li ul {
    margin-top: 10px;
  }
  #gnav > ul > li ul li {
    margin-bottom: 5px;
    padding-left: 20px;
    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: 16px;
    line-height: 1.5;
  }
}/*# sourceMappingURL=sp_nav.css.map */