@charset "UTF-8";
/*================================================
 *  グローバルナビゲーション PC
 ================================================*/
/*
@media print, screen and (min-width:768px) {
*/
@media print, screen and (min-width:1000px) {
	nav {
	z-index: 3;
	float: right;
	margin-top: 28px;
	transition: 0.4s;
	}

	/* 共通 */
	nav ul {
	text-align: right;
	}

	nav ul li {
	position: relative;
	margin: 0;
	list-style: none;
	}

	nav ul li a {
	display: block;
	margin: 0 0 2px 1px;
	padding: 16px 10px;
	background: rgba(0,0,0,0.0);
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	line-height: 1px;
	text-decoration: none;
	border: 1px solid #ccc;
	}

	nav ul li:hover > a {
	color: #000;
	background: rgba(255,255,255,1);
	}

	/* 1段目 */
	nav ul.gnav > li {
		position:relative;
		/*width:17%;*/
		float:left;
		margin:0;
		padding:0;
		text-align:center;
		list-style:none;
	}

	nav ul.gnav > li:first-child {
		/*width:15%;*/
	}
	nav ul.gnav > li:first-child a {
	padding-top: 10px;
	padding-bottom: 9px;
	}

	nav ul.gnav > li.subnav a {
	padding-right: 26px;
	}

	nav ul.gnav > li.subnav > a:after {
	position: absolute;
	font-family: "Font Awesome 5 Free";
	content: '\f107';
	top: 16px;
	width: 0;
	height: 0;
	margin-left: 10px;
	font-weight: 900;
	}

	/* 2段目 */
	nav ul li ul {
		position:absolute;
		z-index:3;
		top:100%;
		left:0;
		width:100%;
		margin:0;
		padding:0;
	}

	nav ul li ul li {
	overflow: hidden;
	width: 230%;
	height: 0;
	color: #fff;
	border-bottom-style: none !important;
	margin-bottom: -8px !important;
	}

	nav ul li ul li a {
		padding:13px 15px;
		text-align:left;
		background-color: rgba(255,255,255,0.8) !important;
		color: rgba(0,0,0,1);
		font-weight:normal;
	}
	nav ul li ul li a:hover {
		background-color: rgba(0,0,0,0.4) !important;
	color: rgba(255,255,255,1);
	}

	nav ul li:hover > ul > li {
	overflow: visible;
	height: 40px;
	}

	nav ul li:hover ul li:last-child {
		border-bottom:none;
	}

	nav ul.gnav > li:last-child > ul {
		left:-50%;
	}

	nav ul li ul li ul:before {
	position: absolute;
	font-family: "Font Awesome 5 Free";
	content: '\f0da';
	top: 13px;
	left: -20px;
	width: 0;
	height: 0;
	border-right-color: #fff;
	font-weight: 900;
	}

	nav ul.gnav > li:last-child ul li ul:before {
		position:absolute;
		font-family: "Font Awesome 5 Free";
		content:"\f0da";
		top:13px;
		left:200%;
		margin-left:-20px;
		border-right-color:#fff;
	}

	/* 3段目 */
	nav ul li ul li ul {
		top:0;
		left:100%;
	}

	nav ul li ul li ul li {
		width:100%;
	}

	nav ul li ul li:hover > ul > li {
	border-bottom: 1px solid #999999;
	}

	nav ul.gnav > li:last-child > ul li ul {
		left:-100%;
	}

	nav ul li ul li ul li a {
		background: rgba(0,0,0,.4);
	}

	nav ul li ul li ul li a:hover {
		background: rgba(0,0,0,.5);
	}

	.gnav {
		display:block !important;
	}

	#spMenu {
		display:none;
	}


/*------------------- スクロール -------------------*/
	.fixed {	}
	.fixed .summary {
		top:-20px;
	}
	.fixed .logo {
	width:180px;
	}
	.fixed ul.gnav {
	}

	.fixed nav {
	margin-top: 10px;
	}

}

@media screen and (max-width:999px) {
	body {
	}
	.cover {
	background-position: center top !important;
	}

	nav {
		background:#fff;
	}
	nav ul {
		margin:0;
		padding:0;
		background-color:rgba(20,90,150,.6);
		}

	nav .naviin > ul {
		z-index:2;
		overflow:auto;
		position:fixed;
		top:53px;
		right:0;
		width:100%;
		height:88%;
		height:-webkit-calc(100% - 53px);
		height:calc(100% - 53px);
	}
	nav li {
	position: relative;
	width: 100%;
	float: none;
	margin: 0;
	text-align: left;
	list-style: none;
	background: #fff;
	}

	nav li:first-child {
		border-top:0;
	}
	nav li:last-child {
		border-bottom:0;
	}

	nav li a {
		display:block;
		padding:10px 30px;
		color:#006699;
		text-decoration:none;
		border-bottom: 1px dotted #CCCCCC;
	}
	nav li a:hover {
		color:#006699;
		background:#ccc;
	}
	nav ul ul {
		display:none;
		position:relative;
	}
	nav li li a {
		box-sizing:border-box;
		width:100%;
		padding:10px 30px 10px 50px;
		text-align:left;
	}

	nav li li li a {
		padding:10px 30px 10px 70px;
		border-bottom: 1px dotted #CCCCCC;
	}

	.subnav > a:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	content: "\f107";
	position: absolute;
	color: #3399cc;
	right: 30px;
	transition: 0.5s;
	font-size: 20px;
	}
	.subnav > a:after {
	}
	.subnav a:hover:after {
	  -webkit-transform:rotate(180deg);
		transform:rotate(180deg);
		
	}

	.active > a:before {
		color: #3399cc;
		-webkit-transform:rotate(180deg);
		transform:rotate(180deg);
	}
	.active > a:after {
		margin-top:5px;
	}

	.gnav {
		display:none;
	}

	#spMenu {
		display:block;
		z-index:2;
		position:fixed;
		top:10px;
		right:10px;
	}
	#spMenu:hover {
		cursor:pointer;
	}

	#navBtn {
		display:inline-block;
		position:relative;
		width:40px;
		height:40px;
		border-radius:5%;
		background:#fff;
	}

	#navBtnIcon {
		display:block;
		position:absolute;
		top:45%;
		left:53%;
		width:30px;
		height:6px;
		margin:-1px 0 0 -16px;
		background:#003366;
		transition:.2s;
	}
	#navBtnIcon:before,
	#navBtnIcon:after {
		display:block;
		content:'';
		position:absolute;
		top:50%;
		left:0;
		width:30px;
		height:6px;
		background:#003366;
		transition:0.3s;
	}
	#navBtnIcon:before {
		margin-top:-12px;
	}
	#navBtnIcon:after {
		margin-top:6px;
	}
	#navBtn .close {
		background:transparent;
	}
	#navBtn .close:before,
	#navBtn .close:after {
		margin-top:0;
	}
	#navBtn .close:before {
		transform:rotate(-45deg);
		-webkit-transform:rotate(-45deg);
	}
	#navBtn .close:after {
		transform:rotate(-135deg);
		-webkit-transform:rotate(-135deg);
	}

/*------------------- スクロール -------------------*/
	.fixed .summary {
		top:-20px;
	}
	.fixed .logo {
	width:150px;
	}
	.fixed nav {
	margin-top: 10px;
	}

}

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

.fixed .summary {
}

header {
	height:60px;
}
header .fixed .inner{
	padding: 0px 10px;
}


}
