/*-- ドロワーボタン --*/
.drawer_btn {
	cursor: pointer;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999999;
	width: 50px;
	height: 33px;
	padding: 17px 0 0 0;
	border: 1px solid #382d2d;
	background: #382d2d;

}
.sidr-open .drawer_btn {
	right: 260px;
}
/*.drawer_btn:hover { background: #555; }*/
.drawer_btn span {
	display: block;
	width: 16px;
	height: 2px;
	margin: 0 auto 5px auto;
	background: #fff;
}
/*-- ドロワーメニュー --*/
.sidr {
	display: block;
	position: fixed;
	top: 0;
	height: 100%;
	z-index: 999998;
	overflow-x: hidden;
	/*overflow-y: auto;*/
	overflow-y:scroll;
	  -webkit-overflow-scrolling: touch;
	width: 260px;
	color: #fff;
	background: #333;
}
.sidr.right {
	right: -260px;
	left: auto;
}
.drawer_menu {
	margin-bottom: 10px;
}


/*-- 壁 --*/
.wall {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999997;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}
/*-- メニューを開いたときにコンテンツを固定 --*/
.contents_area.sidr-open {
	position: fixed!important;
}
/*-- 非表示 --*/
.hide {
	display: none!important;
}




.drawer_btn{
	display:none;
	}

@media screen and (max-width:760px) {
	
.drawer_btn{
	display:block;
	}
	
	}

