@charset "utf-8";

.hm_menu_check {/* チェックボックスを隠す */
  display: none;
}
.hm_wrap {
	display: inline-block;
	position :fixed;
	top :0;
	right :0;
	height: 0;
	width :100%;
	background :rgba(255,255,255,1.00);
	z-index: 999;
}


/* ▽▽メニューボタン▽▽ */
.hm_btn {
	position: relative;
	top: 20px;
	right: 25px;
	width: 25px;
	height: 25px;
	cursor: pointer;
	display: block;
	float: right;
	z-index: 2;
}
.hm_btn::before {
	-webkit-box-shadow: #fff 0 11px 0;
	box-shadow: #fff 0 11px 0;
}
.hm_btn::after {
	bottom: 0;
}
.hm_btn::before,
.hm_btn::after {
	width: 30px;
	height: 3px;
	background: #fff;
	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 :100%;
	height :0px;
	position: absolute;
	overflow: hidden;
	margin: 0;
	top: 45px;
	display: block;
	opacity:0;
	-webkit-transition: opacity 1.0s;
	transition: opacity 1.0s;
}
#menu-background {
	width: 100%;
    display: block;
    height: 0;
    position: fixed;
	background-color: rgba(0,0,0,0.60);
    top: 0;
	opacity: 0;
    -webkit-transition: opacity 1.0s;
	transition: opacity 1.0s;
    z-index: -1;
}
/* ▽▽開閉時のアニメーション▽▽ */
.hm_menu_check:checked ~ .hm_btn::before {
	-webkit-box-shadow: transparent 0 0 0;
	box-shadow: transparent 0 0 0;
	-webkit-transform: rotate(40deg) translate3d(6px, 10px, 0);
	transform: rotate(45deg) translate3d(6px, 10px, 0);
	background: #fff;
}
.hm_menu_check:checked ~ .hm_btn::after {
	-webkit-transform: rotate(-40deg) translate3d(6px, -10px, 0);
	transform: rotate(-45deg) translate3d(6px, -10px, 0);
	background: #fff;
}
.hm_menu_check:checked ~ .hm_menu_wrap {
	height: 430px;
	opacity:1;
	
}
.hm_menu_check:checked ~ #menu-background {
	height: 100%;
	opacity:1;
	
}

/* △△開閉時のアニメーション△△ */

/* ▽▽メニュー内のリストスタイル▽▽ */
.hm_list {
	list-style-type: none;
	display: block;
	width: 100%;
	height: 430px;
	margin: 0 auto;
	padding: 10px 0;
	padding-top: 50px;
}
.hm_list a li  {
	font-size: 20px;
	color: #fff;
	display: block;
	overflow: hidden;
	padding-right: 40px;
	font-weight: bold;
	text-align: right;
	line-height: 50px;
	position: relative;
	text-decoration: none;
	z-index: 1;
}
.hm_list li:last-child a{
	border: none;
}

.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_btn_bg{
	
}


