@charset "utf-8";
/* CSS Document */

/*ハンバーガー*/

@media screen and (min-width: 769px) {
	.openbtn {
		display:none;
	}
	#nav-list {
		display:none;
	}
}

@media screen and (max-width: 768px) {

.openbtn {
	margin: 10px 20px 10px 5px;
	display: inline-block;
	position: fixed;
	background: #690505;
	border-radius: 5px;
	width: 50px;
	height: 50px;
	top: 10px;
	left:10px;
	z-index: 9999;
}
.openbtn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 10px;
	height: 3px;
	border-radius: 5px;
	background: #fff;
	width: 60%;
}
.openbtn span:nth-of-type(1) {
	top: 10px;
}
.openbtn span:nth-of-type(2) {
	top: 17px;
}
.openbtn span:nth-of-type(3) {
	top: 24px;
}
.openbtn span:nth-of-type(3)::after {
	content: "MENU";
	position: absolute;
	top: 6px;
	left: 0;
	color: #fff;
	font-size: 10px;
	text-transform: uppercase;
}
/* navi list */
.nav-list.panelactive #nav-list {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 50vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#nav-list {
	position: fixed;
	z-index: 999;
	top: -120%;
	left: 0;
	width: 100%;
	height: 50vh;
	background: #690505;
	transition: all 0.6s;
}
#nav-list.panelactive {
	top: 0;
}
#nav-list ul {
	width:190px;
	position: absolute;
	z-index: 999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}
#nav-list ul li {
	margin-bottom: 20px;
}
#nav-list ul li a {
	color: #fff;
	font-family: "ヒラギノ明朝", serif;
	font-size:1.2rem;
	font-weight:700;
}
/*close*/
.openbtn.active span:nth-of-type(1) {
	top: 13px;
	left: 13px;
	transform: translateY(6px) rotate(-45deg);
	width: 50%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
	top: 25px;
	left: 13px;
	transform: translateY(-6px) rotate(45deg);
	width: 50%;
}
.openbtn.active span:nth-of-type(3)::after {
	content: "CLOSE";
	transform: translateY(0) rotate(-45deg);
	top: 6px;
	left: 10px;
}
}
