@charset "utf-8";

header {
	width: 100%;
	position: relative;
	z-index: 10000;
}

header .header-inner {
	margin: 0 auto;
}

header .logo {
	display: inline-block;
}

header #nav-content ul {
	justify-content: space-between;
}

header #nav-content ul li a {
	font-weight: bold;
}

header #nav-content.pc ul li a.current {
	display: flex;
	align-items: center;
	flex-direction: column;
	position: relative;
	transition: none;
}

header #nav-content.pc ul li a.current:after {
	content: "";
	display: inline-block;
	background: #58ebd1;
	border-radius: 3px;
	width: 100%;
	position: relative;
}

@media screen and (max-width: 768px) {
	
	header {
		margin-top: 20px;
	}

	header .header-inner {
		max-width: 1280px;
		padding: 0 20px;
	}
	
	header .logo {
		width: 57.6vw;
	}
	
	header #nav-content {
		width: 100%;
		max-width: 564px;
		margin-top: 40px;
	}

	header #nav-content ul li a {
		font-size: 1.7rem;
		line-height: 2.824;
		letter-spacing: 0.125em;
	}
	
	/* drawer */
	.drawer-hamburger {
		background: #c55adf;
		width: 50px;
		height: 50px;
		padding: 0;
	}
	
	.drawer-hamburger:hover {
		background: #c55adf;
	}
	
	.drawer-hamburger-icon,
	.drawer-hamburger-icon:after,
	.drawer-hamburger-icon:before {
		background: url(../images/common/hamburger_icon.png) no-repeat center top;
		background-size: 25px 3px;
		width: 25px;
		height: 3px;
		margin: 0 auto;
		-webkit-transition: all .6s cubic-bezier(.19,1,.22,1);
		transition: all .6s cubic-bezier(.19,1,.22,1);
	}
	
	.drawer-open .drawer-hamburger-icon {
		background: none;
	}
	
	.drawer--top .drawer-nav {
		height: 100vh;
	}
	
	.drawer-nav {
		background: #c55adf;
		width: 16.25rem;
		height: 100%;
		padding-top: 24.267vw;
	}
	
	.drawer-menu li a {
		display: block;
		font-family: "Kozuka Gothic Pr6N", sans-serif;
		font-size: 2.2rem;
		letter-spacing: 0.0125em;
		line-height: 2.5;
		color: #fff;
		text-align: center;
	}
}

@media screen and (min-width: 769px) {
	
	header {
		margin-top: 82px;
	}

	header .header-inner {
		max-width: 1280px;
		padding: 0 calc( 70 / 1280 * 100vw);
	}

	header #nav-content {
		width: 100%;
		max-width: 564px;
		margin-top: 40px;
	}

	header #nav-content ul li a {
		font-size: 1.7rem;
		line-height: 2.824;
		letter-spacing: 0.125em;
	}

	header #nav-content ul li a.current {
		height: 51px;
	}
	
	header #nav-content ul li a.current:after {
		height: 5px;
		bottom: 7px;
	}
}

