@charset "UTF-8";
@media screen and (max-width:768px) {
.sp_header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  background-color:#9a7c45;
  z-index:9999;
}

  .nav {
    position: fixed;
    right: -300px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: #9a7c45;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: left;
    padding: 0 14px;
    font-size:4vw;
  }
  .nav_item.sub {
    text-align: left;
    padding: 0 14px 0 32px;
  }
  .nav_item a {
    display: block;
    padding: 13px 0.5em 13px 1em;
    text-decoration: none;
    color: #fff;
		background:url(../img/h_ic.png) no-repeat left center ;
		background-size:8px auto;

  }
  .nav_item a:hover {
    background-color: #8b6d37;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #fff;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
    background-color:#fff;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
    background-color:#fff;
  }

}

@media screen and (min-width:769px) {
  .hamburger {
	display:none;
  }
  .black_bg {
	display:none;
  }
}
