@charset "utf-8";
#sp_list {
	display: none;
}

@media screen and (max-width: 700px) {
.menu-trigger {
	display: inline-block;
	width: 30px;
	height: 22px;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
	top: 17px;
	right: 12px;
	z-index: 1001;
	transition: all .5s;
}
.menu-trigger span {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #151515;
	transition: all .5s;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 10px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
/* ハンバーガーボタン（クリック時） */
.menu-trigger.active span {
	background-color: #fff;
}
.menu-trigger.active {
	transform: translateX(-200px);
}
.menu-trigger.active span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}
/* 出現する部分のスタイル */
#sp_list {
	display: block;
	width: 200px;
	height: 100%;
	padding: 15px 20px 0px;
	background-color: #151515;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
	transform: translate(200px);
	transition: all .5s;
}
#sp_list.open {
	transform: translateZ(0);
}
#sp_list li {
	text-align: left;
}
#sp_list li a {
	color: #fff;
	padding: 10px 0px 10px 0px;
	display: block;
}
/* クリック時の黒背景 */
.overlay {
	content: "";
	display: block;
	width: 0;
	height: 0;
	background-color: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	opacity: 0;
	transition: opacity .5s;
}
.overlay.open {
	width: 100%;
	height: 100%;
	opacity: 0.85;
}
}
