@charset "utf-8";

.hm_menu_check {
  display: none;
}
.hm_wrap {
	display: inline-block;
	position :fixed;
	top :0;
	right :0;
	width :100%;
	padding :25px;
	padding-top: 15px;
	background :rgba(255,255,255,0.00);
	z-index: 10;
}

/* ▽▽メニューボタン▽▽ */
.hm_btn {
	position: relative;
	width: 30px;
	height: 25px;
	cursor: pointer;
	display: block;
	float: right;
	z-index: 2;
}
.hm_btn::before {
	-webkit-box-shadow: #299850 0 10px 0;
	box-shadow: #299850 0 10px 0;
}
.hm_btn::after {
	bottom: 0;
}
.hm_btn::before,
.hm_btn::after {
	width: 30px;
	height: 4px;
	background: #299850;
	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 :250px;
	height :300px;
	display: block;
	background: rgba(255,255,255,0.00);
	position: absolute;
	right: -1000px;
	top: -1000px;
	opacity: 0;
	margin: auto;
	-webkit-transition: opacity 2s;
    -moz-transition: opacity 2s;
    -o-transition: opacity 2s;
    -ms-transition: opacity 2s;
    transition: opacity 2s;
}
#menu-background {
	width: 250px;
    display: block;
    height: 300px;
    position: fixed;
	right: -1000px;
	top: -1000px;
	opacity: 0;
	border: solid 3px #299850;
	background-color: #fff;
	box-shadow: 2px 2px 3px #333;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    -ms-transition: opacity 1s;
    transition: opacity 1s;
    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(45deg) translate3d(9px, 6px, 0);
	transform: rotate(45deg) translate3d(9px, 6px, 0);
	background: #299850;
	right: 2px;
}
.hm_menu_check:checked ~ .hm_btn::after {
	-webkit-transform: rotate(-45deg) translate3d(9px, 6px, 0);
	transform: rotate(-45deg) translate3d(9px, -6px, 0);
	background: #299850;
	right: 2px;
}
.hm_menu_check:checked ~ .hm_menu_wrap {
	top: 70px;
	right: 20px;
	opacity: 1;
}
.hm_menu_check:checked ~ #menu-background {
	top: 70px;
	right: 20px;
	opacity: 1;
}

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

/* ▽▽メニュー内のリストスタイル▽▽ */
.hm_list {
	list-style-type: none;
	padding: 0;
}
.hm_list li a {
	display: block;
}
.hm_list li a img {
	height: 30px;
	margin-top: 25px;
	margin-left: 25px;
}
/* メニュー内のリストスタイル△△ */

.hm_btn_bg{
	position: fixed;
	background-color: #fff;
	border: solid 1px #000;
	width: 52px;
	height: 50px;
	top: 8px;
	right: 13px;
	z-index: 9;
}
.hm_btn_bg h1{
	width: 100%;
	color: #299850;
	font-size: 11px;
	font-weight: bold;
	font-family: Arial, Helvetica, "sans-serif";
	text-align: center;
	position: absolute;
	bottom: 2px;
}
