@charset "utf-8";
/* --------------------------------------------------
ハンバーガーメニューのCSS（トップページ含む）
-------------------------------------------------- */
@media screen and (max-width: 750px) {
ul.nav{

}

ul.nav li{
}

ul.nav li a{
display: block;
line-height: 50px;
padding-left: 20px;
border-bottom: dashed 1px #BDBDBD;
}

ul.nav li:last-child a{
border-bottom: none;
}


.header {
  display: flex;
  justify-content: space-between;
  background: #aaa;
  padding: 8px;
  width: 48px;
  z-index: 9999;
  float: right;
  .logo {
    font-size: 20px;
  }
}
.nav-button {
  display: none;
  z-index: 9991;
}
.nav {
  a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    color: #448aff;
  }
  li {
    display: inline-block;
    margin: 0 10px;
	  z-index: 9992;
  }
}
.nav-wrap.open {
  display: block;
}
.nav-wrap.close {
  display: none;
}
@media screen and (min-width: 751px) {
  .nav-wrap {
    display: block !important;
  }
}
.menu_content {
  padding: 20px;
}
@media screen and (max-width: 750px) {
  .nav-button {
    display: block;
    cursor: pointer;
  }
  .nav-wrap {
    position: fixed;
    left: 0;
    top: 60px;
    display: none;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    .nav {
      height: 100%;
      position: relative;
      overflow-x: hidden;
      overflow-y: auto;
    }
    li {
      display: block;
      a {
        color: #fff;
        font-size: 18px;
      }
    }
  }
  /*メニューボタンのエフェクト*/
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .nav-button {
    z-index: 20;
    position: relative;
    width: 30px;
    height: 30px;
  }
  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
  }
  .nav-button span:nth-of-type(1) {
    top: 0;
  }
  .nav-button span:nth-of-type(2) {
    top: 13px;
  }
  .nav-button span:nth-of-type(3) {
    bottom: 0;
  }
  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .nav-button.active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-16px) rotate(45deg);
    transform: translateY(-16px) rotate(45deg);
  }
}

}