@charset "UTF-8";
/*===============================================*/
/*  humbergermenu.css */
/*===============================================*/
@media screen and (max-width: 1024px) {
	#humberger {
		-moz-box-sizing: initial;
		-webkit-box-sizing: initial;
		box-sizing: initial;
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 3;
		width: 26px;
		padding: 11px 10px 6px;
		cursor: pointer;
		z-index: 20003;
	}

	.icon-bar {
		-moz-box-sizing: initial;
		-webkit-box-sizing: initial;
		box-sizing: initial;
		height: 2px;
		background: #000;
		display: block;
		margin-bottom: 6px;
		-webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
		-moz-transition: all 400ms cubic-bezier(1, 0, 0, 1);
		-o-transition: all 400ms cubic-bezier(1, 0, 0, 1);
		transition: all 400ms cubic-bezier(1, 0, 0, 1);
		/* easeInOutExpo */
		-webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
		-moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
		-o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
		transition-timing-function: cubic-bezier(1, 0, 0, 1);
		/* easeInOutExpo */
	}

	/**
	* ドロワー開放時のスタイル
	**/
	body.drawer-opened #page {
		right: -240px;
		box-shadow: 1px 0 2px #000;
		-webkit-box-shadow: 1px 0 2px #000;
	}

	body.drawer-opened .fixed-content {
		right: -240px;
	}

	body.drawer-opened #drawernav {
		left: 0;
	}

	body.drawer-opened #humberger .icon-bar {
		background: #000;
	}

	body.drawer-opened #humberger :nth-child(1) {
		transform: translate(0, 8px) rotate(225deg);
		-webkit-transform: translate(0, 8px) rotate(225deg);
	}

	body.drawer-opened #humberger :nth-child(2) {
		//transform: translate(-20px, 0);
		//-webkit-transform: translate(-20px, 0);
		opacity: 0;
	}

	body.drawer-opened #humberger :nth-child(3) {
		transform: translate(0, -8px) rotate(-225deg);
		-webkit-transform: translate(0, -8px) rotate(-225deg);
	}

	body.drawer-opened #overlay {
		z-index: 20001;
		opacity: 0.8;
		right: -240px;
	}
}
/**/
#drawernav {
	display: block !important;
	position: fixed;
	top: 0;
	left: -80%;
	width: 80%;
	height: 100%;
	padding: 50px 5%;
	background: #fff;
	color: #000;
	z-index: 20002;
	-webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
	-moz-transition: all 400ms cubic-bezier(1, 0, 0, 1);
	-o-transition: all 400ms cubic-bezier(1, 0, 0, 1);
	transition: all 400ms cubic-bezier(1, 0, 0, 1);
	/* easeInOutExpo */
	-webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
	-moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
	-o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
	transition-timing-function: cubic-bezier(1, 0, 0, 1);
	/* easeInOutExpo */
	overflow-y: auto;
}

.fixed-content {
	right: inherit;
	width: 100%;
	z-index: 2;
	-webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
	-moz-transition: all 400ms cubic-bezier(1, 0, 0, 1);
	-o-transition: all 400ms cubic-bezier(1, 0, 0, 1);
	transition: all 400ms cubic-bezier(1, 0, 0, 1);
	/* easeInOutExpo */
	-webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
	-moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
	-o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
	transition-timing-function: cubic-bezier(1, 0, 0, 1);
	/* easeInOutExpo */
}

#overlay {
	z-index: -1;
	opacity: 0;
	background: #000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	-webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
	-moz-transition: all 400ms cubic-bezier(1, 0, 0, 1);
	-o-transition: all 400ms cubic-bezier(1, 0, 0, 1);
	transition: all 400ms cubic-bezier(1, 0, 0, 1);
	/* easeInOutExpo */
	-webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
	-moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
	-o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
	transition-timing-function: cubic-bezier(1, 0, 0, 1);
	/* easeInOutExpo */
}
