@charset "UTF-8";

header {
	position: fixed;
	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 99999;
}
.drawer-menu-box {
	position: relative;
	width: 100%;
	height: 70px;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}
.drawer-menu-box.change-color {
	background-color: #333;
	transition: all 1s ease;
	height: 120px;
}
.site-logo {
	position: absolute;
	top: 40px;
	left: 80px;
	z-index: 99999;
}
.drawer-menu-box-sph {
	margin: 0 auto;
}


/*================================================

メニュー　ベース

=================================================*/
.drawer-nav-wrapper {
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #BBA272;
	background: linear-gradient(180deg, rgba(0,159,217,1) 42%, rgba(0,166,197,1) 49%, rgba(0,173,178,1) 100%);
	opacity: 0;
	transition: all 0.8s;
	z-index: 9999;
}
.drawer-nav-wrapper.open {
	visibility: visible;
	opacity: 1;
}
.drawer-nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0 21.05% 0 0;
}
.drawer-nav ul {
	margin: 100px 0 0;
	padding: 24px 0 24px 60px;
	border-top: 1px solid #FFF;
	border-left: 1px solid #FFF;
}
.drawer-nav ul li {
	margin: 50px 0;
	padding: 0;
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
}
.drawer-nav ul li a {
	display: block;
	color: #FFF;
	opacity: 1;
	transition: all 0.5s ease;
}
.drawer-nav ul li a:hover {
	opacity: 0.4;
}
.drawer-nav-wrapper .copy {
	margin: 0 0 0 60px;
	color: #FFF;
}

/*================================================

ハンバーガー

=================================================*/
.drawer-menu {
	position: absolute;
	top: 60px;
	right: 60px;
	margin: 0 auto;
	z-index: 999999;
}
.drawer-menu .drawer-toggle {
	display: block;
	width: 44px;
	height: 28px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	text-align: center;
	background: none;
	border: none;
	outline: none;
	z-index: 999999;
}
.drawer-hamburger {
	display: block;
	position: relative;
}
.drawer-hamburger::before,
.drawer-hamburger::after {
	content: '';
	position: absolute;
	top: -12px;
	left: 0;
}
.drawer-hamburger::after {
	top: 12px;
}
.drawer-hamburger,
.drawer-hamburger::before,
.drawer-hamburger::after {
	width: 100%;
	height: 3px;
	transition: all .5s cubic-bezier(0.2, 1.000, 0.4, 1.000);
	background-color: #FFF;
}
.drawer-toggle.open .drawer-hamburger {
	background-color: transparent;
}
.drawer-toggle.open .drawer-hamburger::before,
.drawer-toggle.open .drawer-hamburger::after {
	top: 0;
}
.drawer-toggle.open .drawer-hamburger::before {
	transform: rotate(45deg);
}
.drawer-toggle.open .drawer-hamburger::after {
	transform: rotate(-45deg);
}


@media screen and (max-width: 1024px) {

	.site-logo {
		top: 45px;
		left: 64px;
	}
	.site-logo img {
		width: 100px;
		height: auto;
	}

	.drawer-nav {
		margin: 0 auto;
		padding: 0 10.05% 0 0;
	}
	.drawer-nav ul {
		margin: 80px 0 0;
		padding: 18px 0 18px 40px;
	}
	.drawer-nav ul li {
		margin: 32px 0;
		font-size: 1.8rem;
	}

	.drawer-menu {
		top: 48px;
		right: 48px;
	}
	.drawer-menu .drawer-toggle {
		width: 44px;
		height: 28px;
	}

}

@media screen and (max-width: 768px) {
	.site-logo {
		top: 25px;
		left: 30px;
	}
	.site-logo img {
		width: 100px;
	}

	.drawer-menu-box.change-color {
		transition: all 1s ease;
		height: 80px;
	}

	.drawer-menu {
		top: 32px;
		right: 30px;
	}
	.drawer-menu .drawer-toggle {
		width: 36px;
		height: 22px;
	}
	.drawer-hamburger::before,
	.drawer-hamburger::after {
		top: -10px;
		left: 0;
	}
	.drawer-hamburger::after {
		top: 10px;
	}
	.drawer-hamburger,
	.drawer-hamburger::before,
	.drawer-hamburger::after {
		width: 100%;
		height: 1px;
		transition: all .5s cubic-bezier(0.2, 1.000, 0.4, 1.000);
	}


}

