@charset "utf-8"; 
/*//ドロワーメニューのClose時のスタイルシート*/
.drawer {
  position:fixed;
  top:0;
  right:0;
  width: 300px;
  height: 100%;
  background: rgba(111, 111, 111, .8);
  margin: 0;
  -webkit-transform: translateX(300px);
  transform: translateX(300px);
  -webkit-transition:ease .3s;
  transition:ease .3s;
  z-index:900;
}
/*//ドロワーメニューの開閉ボタン*/
.drbtn {
  position: fixed;
  top: 20px;
  right: 16px;
  width: 50px;
  height: 50px;
  -webkit-transition:ease .3s;
  transition:ease .3s;
  cursor:pointer;
  align-items: flex-end;
  display: flex;
  justify-content: center;
  font-size: 10px;
  padding-bottom: 2px;
  z-index: 950;
    background :rgba(255, 255, 255, .8);
}
/*//ハンバーガーボタンを作るスタイルシート*/
.hambarg {
  position: absolute;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  height: 4px;
  width: 30px;
  background: #99373f;
  -webkit-transition: ease .3s;
  transition: ease .3s;
}
.hambarg:nth-child(1) {
    top: 30%;
    left: 50%;
}
.hambarg:nth-child(2) {
    top: 50%;
    left: 50%;
}
.hambarg:nth-child(3) {
    top: 70%;
    left: 50%;
}
/*//ドロワーメニューをOPENにするスタイルシート*/
.drawer.action {
  -webkit-transform:translateX(0);
  transform:translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
 
/*//ボタンをドロワーメニュー内に表示*/
.drbtn.action {
    right: 16px;
    top: 20px;
    background:none;
}
 
/*//ハンバーガーボタンを"×"に変える*/
.drbtn.action .hambarg:nth-child(1) {
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transform: translate(-50%,-50%) rotate(45deg);
    background:#fff;
  }
.drbtn.action .hambarg:nth-child(2) {
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    opacity: 0;
  }
.drbtn.action .hambarg:nth-child(3) {
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(-45deg);
    transform: translate(-50%,-50%) rotate(-45deg);
    background:#fff;
  }

.header-bar{
    position: fixed;
    top: 0;
    left: 0;
    /*background-color: rgba(255, 225, 0,.8);*/
    padding: 19px 16px;
    height: 60px;
	width:100%;
	z-index: 900;
}
.header-bar .menu_title {
    line-height: 35px;
    position: relative;
    width:auto;
	top:-6px;
	color:#fff;
}
li.menu-item a{color:#fff;padding: 1em 1.5em;font-size: 15px;display: block;}
li.current-menu-item > a,li.menu-item a:hover {
    background: #7a7a7a;
}
.drawer .menu{
    margin-top:40px;
}
@media(max-width: 500px) {
.drawer {width:200px;
    -webkit-transform: translateX\(200px;
transform: translateX(200px);
/*スクロールするようにする*/
  overflow: scroll;}
li.menu-item a {
    color: #fff;
    padding: .8em 1.5em;
    font-size: 14px;
    display: block;
}
}
