
.hm_wrap {
	display:none;
}


@media screen and (max-width: 767px) {
	
/* ▽▽ハンバーガーメニュー▽▽
------------------------------------------------------- */
.hm_menu_check {/* チェックボックスを隠す */
  display: none;
}

.hm_wrap {
	display: inline-block;
	position :fixed;
	top :0;
	right:0;
	width :100%;
	padding :14px;
	/*background :#000;*/
	z-index:50 !important;
}

.hm_title{
	width: 190px;
	height: auto;
	margin: 2px 0 0 30px;
}



/* ▽▽メニューボタン▽▽ */
.hm_btn {
	position: absolute; /*relative*/
	top:20px;
	right:20px;
	width: 30px; /*30px*/
	height: 30px; /*30px*/
	cursor: pointer;
	display: block;
	float: left;
	z-index: 10;
}

.hm_btn::before {
	-webkit-box-shadow: #777 0 14px 0; /*#000 0 12px 0*/
	box-shadow: #777 0 14px 0; /*#000 0 12px 0*/
}

.hm_btn::after {
	bottom: 0;
}

.hm_btn::before,
.hm_btn::after {
	width: 30px; /*30px*/
	height: 2px; /*6px*/
	background: #777;
	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_wrap {
	width :30%;
	height :10000px;
	background: #000;
	position: absolute;
	right: -100%;
	top: 0;
	-webkit-transition: right 0.4s;
	transition: right 0.4s;
}



/* ▽▽開閉時のアニメーション▽▽ */
.hm_menu_check:checked ~ .hm_title {
	opacity: 1;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.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(8px, 10px, 0); /*rotate(45deg) translate3d(6px, 11px, 0)*/
	transform: rotate(45deg) translate3d(8px, 10px, 0); /*rotate(45deg) translate3d(6px, 11px, 0)*/
}
.hm_menu_check:checked ~ .hm_btn::after {
	-webkit-transform: rotate(-45deg) translate3d(10px, -12px, 0); /*rotate(-45deg) translate3d(6px, -11px, 0)*/
	transform: rotate(-45deg) translate3d(10px, -12px, 0); /*rotate(-45deg) translate3d(6px, -11px, 0)*/
}
.hm_menu_check:checked ~ .hm_menu_wrap {
	left: 70%; /*0*/
}
/* △△開閉時のアニメーション△△ */



/* ▽▽メニュー内のリストスタイル▽▽ */
.hm_list {
	list-style-type: none;
	margin: 80px 0 0;
	padding: 0;
}

.hm_list li a {
	color: #eee;
	display: block;
	overflow: hidden;
	padding: 8px 22px;
	position: relative;
	text-decoration: none;
	z-index: 1;
	font-size: 14px;
	text-align:left;
}

.hm_list li a:hover{
	color:#000;
	}

.hm_list li a::before {/* aタグマウスオーバー時の背景 */
	background: rgba(255,225,0,0.9);
	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 a:hover::before {
	bottom: 0;
}

.hm_list li a:hover::after {
	opacity: 0.5;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
/* メニュー内のリストスタイル△△ */


.hm_menu_close {
	width :0;
	height :0;
	background: #000;
	opacity :0;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.hm_menu_close label {
	display :block;
	width :100%;
	height :100%;
	cursor : pointer;
}

.hm_menu_check:checked ~ .hm_menu_close {
	width :70%;
	height :10000px;
	opacity :0.8;
}


/* △△ハンバーガーメニュー△△
------------------------------------------------------- */
}
