@charset "utf-8";
/* CSS Document */
body {
	margin: 0;
}
.navDrawr ul,
.navDrawr li {
	margin:0;
	padding:0;
	list-style-type: none;
}

#wrapper {
	min-height: 100%;
	height: auto !important;
	position: relative;
	overflow: hidden;
}

header {
	background-color: #fff;
	/*position: relative;*//*PC表示test*/
}
header .headerTop{
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 20px;
}
header .siteTitle a {
	text-decoration: none;
}

header .siteTitle span {
	font-size: 18px;
	color: #0056a8;
	font-weight: bold;	
}

.navDrawr {
	width: 100%;
	/*background: #1abc9c;*/
	background: #343a40;
}

.navDrawr>ul {
	max-width: 1200px;
	margin: 0 auto;
}
.navDrawr>ul:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.navDrawr>ul>li {
	float: left;
	width: 20%;
	position: relative;
}
.navDrawr a {
	display: block;
	color: #fff;
	text-decoration: none;
	/*background: #1abc9c;*/
	background: #343a40;
	padding: 10px;
}
.navDrawr .sub li:last-child a {
	border: none;
}
.navDrawr>ul>li>a {
	border-right: 1px solid #999;
	text-align: center;
}
.navDrawr>ul>li:first-child>a {
	border-left: 1px solid #999;
}

.navDrawr>ul>li>a:hover {
	/*background: #1FAF93;*/
	background: #0056a8;
}

/*サブメニューありの→マーク*/
.navDrawr .arrow {
	position: relative;
}
.navDrawr .arrow::after {
	position: absolute;
	top: 30%;
	right: 15px;
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	content:"\f078";
	
}
.navDrawr .sub {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 9999;
}
.navDrawr .sub a {
	/*background: #16a085;*/
	background: #00367c;
	/*border-bottom: 1px solid #1D826E;#0056a8*/
	border-bottom: 1px solid #5987ca;
	padding: 10px 10px 10px 20px;
	z-index: 9999;
}
.navDrawr .sub a:hover {
	/*background: #179079;*/
	background: #5987ca;
}


#contents{
	padding-top:20px;
}



/* transition */
/*.navDrawr {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}*/


/* Fixed */

/*.navDrawr.fixed {
	position: fixed;
	top: 0;
	width: 100%;
}*/




@media only screen and (max-width: 768px) {
	#wrapper{
		overflow:hidden;
	}
		
	.navDrawr {
		background-color: #666;
		position: fixed;
		width: 270px;
		top: 60px;
		bottom: 0;
		right: -270px;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 9999 !important;
	}
	
	body.menuOpen #wrapper{
		/*padding-top:60px;*/
	}
	.overlay {
		display: none;
		background-color: rgba(0,0,0,0.49);
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 999 !important;
	}
	header {
		/*position:relative;*/
		position: fixed;
		width: 100%;
		top: 0;
		height: 60px;
		padding:0;
		z-index: 9999!important;
	}
	body.menuOpen header{
		position: fixed;
		top:0;
		width: 100%;
		
	}
	header .headerTop{
		/*margin: 0;*/
		padding:0;
	}
	header .siteTitle a{
		margin-left: 0;
		line-height: 0;
		
	}
	
	header .siteTitle img{
		height: 35px;
		width: auto;
		margin: 0;
		padding: 0;
	}
	
	header .siteTitle span{
		font-size: 14px;
		margin: 0;
		padding: 0;
	}
	
	header .siteTitle {
		padding-top: 3px;
		padding-left: 10px;
	}

	.navDrawrBtn {
		text-align: right;
	}
	.navDrawrBtn span {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto;
		display: block;
		width: 60px;
		height: 60px;
		cursor: pointer;
	}
	.navDrawrBtn span::before {
		font-family: "Font Awesome 5 Free";
		font-weight: bold;
		content: "\f0c9";
		font-size: 24px;
		color: #0056a8;
		position: absolute;
		left: 0;
		width: 100%;
		text-align: center;
		line-height: 60px;
	}
	body.menuOpen .navDrawrBtn span::before {
		font-family: "Font Awesome 5 Free";
		font-weight: bold;
		content: "\f00d";
	}
	.navDrawr a {
		position: relative;
	}
	.navDrawr a::after,
	.navDrawr .arrow::after {
		position: absolute;
		top: 50%;
		margin-top: -10px;
		right: 15px;
		font-family: "Font Awesome 5 Free";
		font-weight: bold;
		content: "\f054";
	}
	.navDrawr>ul>li {
		float: none;
		width: auto;
	}
	.navDrawr>ul>li>a {
		text-align: left;
		border-right: none;
		/*border-bottom: 1px solid #16a085;#0056a8*/
		border-bottom: 1px solid #5987ca;
	}
	.navDrawr>ul>li:first-child>a {
		border-left: none;
	}
	.navDrawr .sub {
		position: static;
		display: block!important;
		z-index: 9999!important;
	}

	.navDrawr.fixed {
		position: fixed;
		width: 270px;
		top: 60px;
		z-index: 99999 !important;
	}
}


