@charset "UTF-8";
/* CSS Document */


.hm_title {
	display:none;
}
.hm_menu_check {/* チェックボックスを隠す */
  display: none;
}
.head_nav { display:none;}



@media only screen and (max-width: 414px) {
/* ▽▽ハンバーガーメニュー▽▽
------------------------------------------------------- */
.hm_menu_wrap .logo { display: none; }
.head_nav { display: block;}

.hm_wrap {
	display: inline-block;
	position :fixed;
	top :0;
	right :0;
	width :100%;
	padding :8px 10px;
	z-index:1001;
}
.hm_title {/* ハンバーガーメニューオープン時の見出し */
	position: relative;
	color: #ddd;
	font-size:16px;
	font-weight:100;
	display: inline-block;
	float: right;
	line-height: 30px;
	margin: 0 15px 0 15px;
	opacity: 0;
	-webkit-transform: translate3d(0, -15px, 0);
	transform: translate3d(0, -15px, 0);
	-webkit-transition: -webkit-transform 0.6s, opacity 0.5s;
	transition: transform 0.6s, opacity 0.5s;
	z-index: 1002;
}

/* ▽▽メニューボタン▽▽ */
.hm_btn {
	position: relative;
	width: 25px;
	height: 25px;
	cursor: pointer;
	display: block;
	float: right;
	z-index: 1002;
}
.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: 25px;
	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 :50%;
	height :100vh;
	background: #555;
	background: rgba(160,160,160,0.8);
	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(4px, 12px, 0);
	transform: rotate(45deg) translate3d(4px, 12px, 0);
}
.hm_menu_check:checked ~ .hm_btn::after {
	-webkit-transform: rotate(-45deg) translate3d(4px, -12px, 0);
	transform: rotate(-45deg) translate3d(4px, -12px, 0);
}
.hm_menu_check:checked ~ .hm_menu_wrap {
	right: 0;
}

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

/* ▽▽メニュー内のリストスタイル▽▽ */
.hm_list {
	list-style-type: none;
	margin: 50px 0 0;
	padding: 0;
	width:100%;
}
.hm_list li {
	margin-top:15px;
}
.hm_list li a {
	color: #eee;
	display: block;
	overflow: hidden;
	padding: 8px 18px;
	position: relative;
	text-decoration: none;
	z-index: 1;
}
/* メニュー内のリストスタイル△△ */

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

}