@charset "UTF-8";

/**
 * オリジナルcss
 */

.header_hm_button_wrap {
	display: none;
}

.hm_button {
	position: relative;
	top: 0;
	right: 0;
	z-index: 200;
	width: 58px;
	height: 58px;
	padding: 4px;
	cursor: pointer;
}

.hm_button1 {
	display: block;
	position: absolute;
	top: 16px;
	right: 14px;
	width: 30px;
	height: 3px;
	background: var(--c1);
	transition: .3s;
}

.hm_button2 {
	display: block;
	position: absolute;
	top: 27px;
	left: 14px;
	width: 30px;
	height: 3px;
	background:var(--c1);
	transition: .3s;
}

.hm_button3 {
	display: block;
	position: absolute;
	top: 40px;
	left: 14px;
	width: 30px;
	height: 3px;
	background: var(--c1);
	transition: .3s;
}

.hm_button_active .hm_button1 {
	transform:rotate(-45deg);
	top: 28px;
	width: 40px;
	right: 10px;
	background: var(--c1);
}

.hm_button_active .hm_button2, 
.hm_button_active .hm_button3 {
	transform:rotate(45deg);
	width: 40px;
	top: 28px;
	left: 9px;
	background: var(--c1);
}

.hm_main {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 100;
	visibility: hidden;
	background: rgba(0, 0, 0, .7);
	transition: .6s;
	opacity: 0;
}

.hm_main_active {
	visibility: visible;
	opacity: 1;
}

.hm_main_inner {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	right: -100%;
	transition: .6s;
}

.hm_main_active .hm_main_inner {
	right: 0;
}

.hm_blank {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.hm_body {
	background: #fff;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	overflow-y: auto;
	padding: 40px 40px 10px 40px;
}

.hm_main_active .hm_body {
	right: 0;
}

.hm_logo {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 30px;
	img {
		width: auto;
		height: 53px;
	}
}

.hm_list {
	margin-left: 12px;
	border-top: 1px solid #000;
}

.hm_menu_link a {
	text-decoration: none;
	display: block;
	padding: 12px;
	border-bottom: 1px solid #000;
}

.hm_menu_link a:hover {
	background: rgba(0, 0, 0, .1);
}

@media screen and (max-width: 1110px) {
}
@media screen and (max-width:900px){
	.hm_blank {
		display: none;
	}
	
	.hm_body {
		width: 100%;
		padding: 40px 20px 10px 20px;
	}
}
@media screen and (max-width:740px){
	.header_hm_button_wrap {
		display: block;
	}
}
@media screen and (max-width:639px){
	.hm_button {
		width: 48px;
		height: 48px;
	}
	.hm_button1 {
		top: 12px;
		right: 9px;
	}
	.hm_button2 {
		top: 23px;
		left: 9px;
	}
	.hm_button3 {
		top: 35px;
		left: 9px;
	}
	.hm_button_active .hm_button1 {
		top: 23px;
		right: 4px;
	}
	.hm_button_active .hm_button2, 
	.hm_button_active .hm_button3 {
		top: 23px;
		left: 4px;
	}
}
@media screen and (max-width:500px){
}

