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

/*PC表示時のサブナビゲーション非表示*/
.navDrawr .sub {
	display: none;
}


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

header {
	background-color: rgba(255, 255, 255, 0.8);
}
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: #fbbd5d;
}

.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;
	height: 80px;
	width: 11.1%;
	position: relative;
}
.navDrawr a {
	display: block;
	color: #000;
	text-decoration: none;
	background: #fbbd5d;
	padding: 10px;
}

/*第一階層のリンクの文字をインデントで飛ばす*/
.navDrawr>ul>li>a {
	height: 100%;
	width: 100%;
	text-indent: -9999px;
	overflow: hidden;
}

/*ナビゲーションの背景画像*/
.navDrawr>ul>li:nth-of-type(1)>a {
	background: url(../images/../images/nav/home.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(2)>a {
	background: url(../images/../images/nav/instagram.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(3)>a {
	background: url(../images/../images/nav/news.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(4)>a {
	background: url(../images/../images/nav/profile.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(5)>a {
	background: url(../images/../images/nav/entry.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(6)>a {
	background: url(../images/../images/nav/support.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(7)>a {
	background: url(../images/../images/nav/message.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(8)>a {
	background: url(../images/../images/nav/class.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(9)>a {
	background: url(../images/../images/nav/recruit.png) no-repeat center center;
}


.navDrawr .sub li:last-child a {
	border: none;
}
.navDrawr>ul>li>a {
	/*border-right: 1px solid #f7931e;*/
	text-align: center;
}
.navDrawr>ul>li:first-child>a {
	/*border-left: 1px solid #f7931e;*/
}

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

/*ナビゲーションの背景画像(ホバー時)*/
.navDrawr>ul>li:nth-of-type(1)>a:hover {
	background: #f7931e url(../images/../images/nav/home_hover.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(2)>a:hover {
	background: #f7931e url(../images/../images/nav/instagram_hover.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(3)>a:hover {
	background: #f7931e url(../images/../images/nav/news_hover.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(4)>a:hover {
	background: #f7931e url(../images/../images/nav/profile_hover.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(5)>a:hover {
	background: #f7931e url(../images/../images/nav/entry_hover.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(6)>a:hover {
	background: #f7931e url(../images/../images/nav/support_hover.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(7)>a:hover {
	background: #f7931e url(../images/../images/nav/message_hover.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(8)>a:hover {
	background: #f7931e url(../images/../images/nav/class_hover.png) no-repeat center center;
}
.navDrawr>ul>li:nth-of-type(9)>a:hover {
	background: #f7931e url(../images/../images/nav/recruit_hover.png) no-repeat center center;
}


/*サブメニューありの→マーク*/
.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: #fae6cd;
	/*border-bottom: 1px solid #1D826E;#0056a8*/
	border-bottom: 1px solid #f7931e;
	padding: 10px 10px 10px 20px;
	z-index: 9999;
}
.navDrawr .sub a:hover {
	/*background: #179079;*/
	background: #f7931e;
}


#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: 10px 0;
	}

	header .siteTitle a{
		margin-left: 0;
		/*line-height: 0;*/

	}

	header .siteTitle img{
		height: 40px;
		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 {
		background-color: rgba(241,217,53,.7);
		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: #333;
		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;
		height: auto;
		width: auto;
	}

	.navDrawr>ul>li>a {
		background: #fbb03b;
		text-align: left;
		text-indent: 0;
		border-right: none;
		border-bottom: 1px solid #f7931e;
	}
	
	
	/*ナビゲーションの背景画像→背景色で上書き*/
    .navDrawr>ul>li:nth-of-type(1)>a {
        background: #fbb03b;
    }
    .navDrawr>ul>li:nth-of-type(2)>a {
        background: #fbb03b;
    }
    .navDrawr>ul>li:nth-of-type(3)>a {
        background: #fbb03b;
    }
    .navDrawr>ul>li:nth-of-type(4)>a {
        background: #fbb03b;
    }
    .navDrawr>ul>li:nth-of-type(5)>a {
        background: #fbb03b;
    }
    .navDrawr>ul>li:nth-of-type(6)>a {
        background: #fbb03b;
    }
    .navDrawr>ul>li:nth-of-type(7)>a {
        background: #fbb03b;
    }
    .navDrawr>ul>li:nth-of-type(8)>a {
        background: #fbb03b;
    }
    .navDrawr>ul>li:nth-of-type(9)>a {
        background: #fbb03b;
    }
	
	/*ナビゲーションの背景画像(ホバー時)上書き*/
	.navDrawr>ul>li>a:hover {
		background: #f7931e;
	}
    .navDrawr>ul>li:nth-of-type(1)>a:hover {
        background: #f7931e;
    }
    .navDrawr>ul>li:nth-of-type(2)>a:hover {
        background: #f7931e;
    }
    .navDrawr>ul>li:nth-of-type(3)>a:hover {
        background: #f7931e;
    }
    .navDrawr>ul>li:nth-of-type(4)>a:hover {
        background: #f7931e;
    }
    .navDrawr>ul>li:nth-of-type(5)>a:hover {
        background: #f7931e;
    }
    .navDrawr>ul>li:nth-of-type(6)>a:hover {
        background: #f7931e;
    }
    .navDrawr>ul>li:nth-of-type(7)>a:hover {
        background: #f7931e;
    }
    .navDrawr>ul>li:nth-of-type(8)>a:hover {
        background: #f7931e;
    }
    .navDrawr>ul>li:nth-of-type(9)>a:hover {
        background: #f7931e;
    }

	.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;
	}
}
