@charset "utf-8";
.triggerOuter {
	position: fixed;
	top: 50px;
	right: 50px;
	z-index: 9999;
}
.trigger {
	position: relative; /*ボタン内側の基点となるためrelativeを指定*/
	background: #EC6015;
	cursor: pointer;
	width: 50px;
	height: 50px;
	border-radius: 5px;
}
/*ボタン内側*/
.trigger .openbtn-area {
	transition: all .6s; /*アニメーションの設定*/
	width: 50px;
	height: 50px;
}
.trigger span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 3px;
	border-radius: 2px;
	background: #fff;
	width: 45%;
}
.trigger span:nth-of-type(1) {
	top: 15px;
}
.trigger span:nth-of-type(2) {
	top: 23px;
}
.trigger span:nth-of-type(3) {
	top: 31px;
}
/*activeクラスが付与されると .openbtn-areaが360度回転し、その中の線が回転して×に*/
.trigger.active .openbtn-area {
	transform: rotate(360deg);
}
.trigger.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}
.trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.trigger.active span:nth-of-type(3) {
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}
/*========= レイアウトのためのCSS ===============*/
a {
	color: #333;
	text-decoration: none;
}
.lead {
	margin: 20px 0 0 0;
}
.btn-block {
	width: 200px;
	padding: 30px;
}

/****************************
Navigation
****************************/
nav {
	width: 30vw;
	height: 100vh;
	height: 100dvh;
	position: fixed;
	top: 0;
	right: -30vw;
	background-color: var(--accentColor);
	z-index: 9000;
	transition: 0.8s right ease 0s;
}
nav.active {
	right: 0vw;
}
nav ul {
	padding: 50px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	font-size: var(--f3);
	color: #fff;
}
nav ul li {
	border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
	nav {
		width: 100vw;
		right: -100vw;
	}
}