@charset "UTF-8";
.navigation {
	height: 90px;
	top: 0;
	position: fixed;
	width: 100%;
	margin: 0 auto;
	line-height: 1;
	z-index: 999;
	background-color: #ffffff;
	}
.brand {
	position: absolute;
	padding-left: 20px;
	top: 0;
	left: 0;
	float: left;
	height: 90px;
	display: flex;
	align-items: center;
}
.brand a, .brand a:visited {
	color: #333333;
	text-decoration: none;
}
.nav-container {
	width: 100%;
	margin: 0 auto;
}
nav {
	float: right;
}
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
nav ul li {
	width: 142px;
	float: left;
	position: relative;
}
nav ul li a,
nav ul li a:visited {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 45px 20px 0;
	height: 90px;
	color: #333333;
	font-weight: 600;
	font-size: 1.3rem;
	text-decoration: none;
	transition: .2s;
	position: relative;
}
nav ul li a::before,
nav ul li a:visited::before {
	content: "";
	width: 40px;
	height: 40px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	transition: .2s;
}
nav ul li:first-child a::before {
	background-image: url("../img/common/ic_hmenu01.png");
}
nav ul li:nth-child(2) a::before {
	background-image: url("../img/common/ic_hmenu02.png");
}
nav ul li:nth-child(3) a::before {
	background-image: url("../img/common/ic_hmenu03.png");
}
nav ul li:nth-child(4) a::before {
	background-image: url("../img/common/ic_hmenu04.png");
}
nav ul li:nth-child(5) a::before {
	background-image: url("../img/common/ic_hmenu05.png");
}
nav ul li:nth-child(6) a::before {
	background-image: url("../img/common/ic_hmenu06.png");
}
nav ul li:nth-child(7) a::before {
	background-image: url("../img/common/ic_hmenu07.png");
}
nav ul li a:hover,
nav ul li a:hover:visited {
	opacity: .7;
}
/*nav ul li a:hover::before,
nav ul li a:visited:hover::before {
	opacity: .7;
}*/
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
	padding-left: 4px;
	content: " ▾";
}
nav ul li ul li {
	width: 100%;
	min-width: 200px;
	overflow: hidden;
	height: 0;
	transition: .2s;
}
nav ul li ul li a {
	padding: 15px;
	/*line-height: 20px;*/
	border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
nav ul li ul li:last-of-type a {
	border-bottom: none;
}
nav ul li ul li a::before,
nav ul li ul li a:visited::before {
	content: none;;
}
.nav-dropdown {
	position: absolute;
	z-index: 1;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
	top: 100%;
	left: 0;
}
/* Mobile navigation */
.nav-mobile {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(255, 230, 10, 1.0);
	height: 70px;
	width: 70px;
}
@media only screen and (max-width: 1199px) {
	.navigation {
		height: 70px;
	}
	.brand {
		height: 70px;
		padding-left: 10px;
	}
	.nav-mobile {
		display: block;
	}
	nav {
		width: 100%;
		padding: 70px 0 0;
		background-color: #ffffff;
	}
	nav ul {
		display: none;
	}
	nav ul li {
		width: 100%;
		float: none;
		background-color: #fffadc;
	}
	nav ul li a {
		flex-direction: row;
		justify-content: flex-start;
		height: 44px;
		padding: 15px;
		border-top: 1px dashed rgba(0, 0, 0, 0.2);
	}
	nav ul li:last-child a {
		border-bottom: none;
	}
	nav ul li a::before,
	nav ul li a:visited::before {
	content: none;
}
	nav ul li a:not(:only-child):after,
	nav ul li a:visited:not(:only-child):after {
		position: static;
		padding-left: 4px;
	}
	nav ul li ul li a {
		padding-left: 30px;
		border-bottom: none;
	}
	.nav-dropdown {
		position: static;
		box-shadow: 0 3px 12px rgba(0, 0, 0, 0);
	}
	nav ul li.active_sp .nav-dropdown li {
		overflow: visible;
		height: 44px;
	}
}
@media screen and (max-width: 480px) {
	.brand img {
		width: 100%;
		max-width: 250px;
	}
}
@media screen and (min-width: 1200px) {
	.nav-list {
		display: block !important;
	}
	nav ul li:hover .nav-dropdown li {
		overflow: visible;
		min-width: 200px;
		height: 70px;
		background-color: #fffadc;
	}
	nav ul li:hover .nav-dropdown li a {
		height: 70px;
	}
	nav ul li:hover .nav-dropdown li a:hover {
		opacity: .5;
	}
}
#nav-toggle {
	position: absolute;
	left: 18px;
	top: 22px;
	cursor: pointer;
	padding: 10px 35px 16px 0px;
}
#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
	cursor: pointer;
	border-radius: 1px;
	height: 3px;
	width: 35px;
	background: #ffffff;
	position: absolute;
	display: block;
	content: "";
	transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
	top: -10px;
}
#nav-toggle span:after {
	bottom: -10px;
}
#nav-toggle.active span {
	background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
	top: 0;
}
#nav-toggle.active span:before {
	transform: rotate(45deg);
}
#nav-toggle.active span:after {
	transform: rotate(-45deg);
}