body {
	overflow: auto;
}

/* ▽▽ハンバーガーメニュー▽▽
------------------------------------------------------- */
.hm_menu_check {/* チェックボックスを隠す */
  display: none;
}
/* ▽▽サイドメニュー▽▽ */
#menus {
    box-sizing: border-box;
	display: block;
	position :fixed;
	top :0;
    left: -85%;
	width :200px;
	height: 90%;
	/*padding :5px;*/
	/* background : rgba(255,255,255,1); */
	z-index: 500;
	overflow:auto;
	-webkit-transition: left 0.5s;
	transition: left 0.5s;
	
}

.hm_menu_check:checked ~ #menus {/* 開閉アニメーション */
	height: 100%;
	overflow:auto;
	left :0;
	display: block;
}

/* ▽▽メニューボタン▽▽ */
.hm_btn {
	position: fixed;
	top:10px;
	left:calc(10px);
	width: 24px;
	height: 24px;
	cursor: pointer;
	display: block;
	z-index: 501;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.hm_menu_check:checked ~ .hm_btn {/* メニューボタン位置アニメーション */
	left:calc(85% - -10px);
}
/* ▽▽ボタンのアニメーション▽▽ */
.hm_btn::before {
	-webkit-box-shadow: #000 0 10px 0;
	box-shadow: #000 0 10px 0;
}
.hm_btn::after {
	bottom: 0;
}
.hm_btn::before,
.hm_btn::after {
    z-index: 1;
	width: 100%;
	height: 4px;
	background: #000;
	display: block;
	content: '';
	position: absolute;
	-webkit-transition: -webkit-box-shadow 0.2s linear, -webkit-transform 0.2s 0.2s;
	transition: box-shadow 0.2s linear, transform 0.2s 0.2s;
}
.hm_menu_check:checked ~ .hm_btn::before {
	-webkit-box-shadow: transparent 0 0 0;
	box-shadow: transparent 0 0 0;
	-webkit-transform: rotate(45deg) translate3d(6px, 11px, 0);
	transform: rotate(45deg) translate3d(6px, 8px, 0);
}
.hm_menu_check:checked ~ .hm_btn::after {
	-webkit-transform: rotate(-45deg) translate3d(6px, -11px, 0);
	transform: rotate(-45deg) translate3d(6px, -8px, 0);
}
/* △△ボタンのアニメーション△△ */

/* △△メニューボタン△△ */

.hm_menu_wrap {
	width :100%;
	/* background : rgba(255,255,255,0.9); */
}



/* ▽▽メニュー内のリストスタイル▽▽ */
.hm_list {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.hm_list li.inmenu a {
	color: #777;
	display: block;
	overflow: hidden;
	padding: 0.8em 2em;
	position: relative;
	text-decoration: none;
	z-index: 1;
	border-bottom: 1px solid rgba(0,0,0,0.5);
}
.hm_list li.inmenu a::before {/* aタグマウスオーバー時の背景 */
	background: #cce;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 100%;
	left: 0;
	-webkit-transition: bottom 0.4s;
	transition: bottom 0.4s;
	z-index: -1;
}

.hm_list li.inmenu a:hover::before {
	bottom: 0;
}
.hm_list li.inmenu a:hover::after {
	opacity: 0.5;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
/* メニュー内のリストスタイル△△ */

.hm_menu_close {
	width :0%;
	height :100%;
	background: #000;
	opacity :0;
	position: fixed;
	left: 0;
	top: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.hm_menu_close label {
	display :block;
	width :100%;
	height :100%;
	cursor : pointer;
}

.hm_menu_check:checked ~ .hm_menu_close {
	opacity :0.8;
	width :100%;
}

.siro {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.8);
    position: absolute;
    top: -10px;
    left: -10px;
}
.hm_menu_check:checked ~ .siro {
	left:calc(85% - -10px);
}

.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0; /*追記*/
  right: 0; /*追記*/
}
/* △△ハンバーガーメニュー△△
------------------------------------------------------- */