.mm-menu{
	color: #555;
	background:rgba(247, 247, 247, 1);
	border-color:rgba(80, 80, 80, 0.3);
}
.mm-menu .mm-navbar a,
.mm-menu .mm-navbar>* {
	color: #555;
}
.mm-menu .mm-btn::after,
.mm-menu .mm-btn::before {
	border-color:rgba(80, 80, 80, 0.3);
}
.mm-menu .mm-listview {
	border-color:rgba(80, 80, 80, 0.3);
}
.mm-menu .mm-listview>li .mm-arrow::after,
.mm-menu .mm-listview>li .mm-next::after {
	border-color:rgba(80, 80, 80, 0.3);
}

/*fullpage回避用*/
html.mm-opening {
	overflow: hidden!important;
}
#spMenu {
	font-size: 0;
}
html.mm-opening #spMenu {
	font-size: 1.4rem;
}

/* add menu-btn */
.hamburger:hover {
	opacity:1;
}

.hamburger {
	display: block;
	width: 60px;
	height: 60px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10000;
	background: #ccc;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: transparent;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	transition: 0.35s;
}
@media screen and (min-width: 1001px) {
	.hamburger {
		display: none;
	}
}

.hamburger__icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto auto;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
	display: block;
	width: 42px;
	height: 4px;
	background-color: #ffffff;

	-moz-transition-property: background-color, -moz-transform;
	-o-transition-property: background-color, -o-transform;
	-webkit-transition-property: background-color, -webkit-transform;
	transition-property: background-color, transform;

	-moz-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;

	-webkit-border-radius: 10px;
	border-radius: 10px;
}
.hamburger__icon:before, .hamburger__icon:after {
	position: absolute;
	content: "";
}
.hamburger__icon:before {
	top: -14px;
}
.hamburger__icon:after {
	top: 14px;
}