@charset "UTF-8";
.navigation {
	height: 80px;
	top: 0;
	position: fixed;
	width: 100%;
	margin: 0 auto;
	line-height: 1;
	z-index: 999;
	background-color: rgba(255, 255, 255, 1.0);
}
.brand {
	position: absolute;
	padding-left: 20px;
	top: 0;
	left: 0;
	float: left;
	height: 80px;
	display: flex;
	align-items: center;
}
.brand a, .brand a:visited {
	color: #ffffff;
	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 {
	float: left;
	position: relative;
}
nav ul li a,
nav ul li a:visited {
	display: block;
	padding: 0 13px;
	line-height: 40px;
	color: #333333;
	text-decoration: none;
	font-size: 1.4rem;
	font-family: 'Kosugi Maru', sans-serif;
}
nav ul li a:hover, nav ul li a:visited:hover {
	color: #056FC6;
}
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: 190px;
}
nav ul li ul li a {
	padding: 15px;
	line-height: 20px;
}
.nav-dropdown {
	position: absolute;
	display: none;
	z-index: 1;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}
/* Mobile navigation */
.nav-mobile {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(5,111,198,1.0);
	height: 70px;
	width: 70px;
}
@media only screen and (max-width: 1024px) {
.navigation {
	height: 70px;
}
.brand {
	padding-left: 10px;
	height: 70px;
}
.nav-mobile {
    display: block;
}
nav {
    width: 100%;
    padding: 70px 0 0;
}
nav ul {
    display: none;
}
nav ul.nav-contactlist {
	display: none;
}
nav ul li {
    float: none;
	background-color: rgba(255,255,255,0.9);
	border-bottom: 1px dashed rgba(0,0,0,0.3);
}
nav ul li:first-child {
	border-top: 1px dashed rgba(0,0,0,0.3);
}
nav ul li a {
    padding: 15px;
    line-height: 20px;
}
nav ul li ul li a {
    padding-left: 30px;
}
.nav-dropdown {
    position: static;
}
nav ul.nav-contactlist li {
	display: none;
}
}
@media screen and (min-width: 1025px) {
.nav-list{
    display: block !important;
}
}
#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: 5px;
	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);
}


/*---------付け足し*/
@media only screen and (max-width: 1024px) {
	nav ul.nav-contactlist {
		display: none;
	}
}
@media screen and (min-width: 1025px) {
	nav ul.nav-contactlist {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	nav ul.nav-contactlist li a {
		color: #ffffff;
		font-size: 1.6rem;
		min-width: 180px;
		text-align: center;
		border-radius: 0 0 10px 10px;
	}
	nav ul.nav-contactlist li.h_tel a{
		background-color: #056FC6;
	}
	nav ul.nav-contactlist li.h_mail a{
		background-color: #FEC038;
		margin-left: 5px;
	}
}
