@charset "UTF-8";
/*===============================================*/
/*  humbergermenu.css */
/*===============================================*/
@media screen and (max-width: 768px) {
	#humberger {
		-moz-box-sizing: initial;
		-webkit-box-sizing: initial;
		box-sizing: initial;
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 3;
		width: 26px;
		padding: 23px 17px 16px;
		background: #142d89;
		cursor: pointer;
		z-index: 50000;
	}

	.icon-bar {
		-moz-box-sizing: initial;
		-webkit-box-sizing: initial;
		box-sizing: initial;
		height: 2px;
		background: #FFF;
		display: block;
		margin-bottom: 5px;
		-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 #humberger :nth-child(1) {
		transform: translate(0, 7px) rotate(225deg);
		-webkit-transform: translate(0, 7px) 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, -7px) rotate(-225deg);
		-webkit-transform: translate(0, -7px) rotate(-225deg);
	}

	body.drawer-opened #overlay {
		z-index: 20001;
		opacity: 0.8;
		right: -240px;
	}

	body.drawer-opened .header__title {
		display: none;
	}
}
/**/
#drawernav {
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 18% 0 15%;
	background: #0B318F;
	color: #000;
	z-index: 20002;
	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 */
}