@charset "utf-8";
/*******【スマホヘッダー】*******/
/*メニューボタン*/
@media print,screen and (min-width: 801px) {
.menuBtn {
	display: none;
}
}
@media screen and (max-width: 800px) {
.menuBtn {
	display: inline-block;
	position: relative;
	width: 60px;
	height: 60px;
	z-index: 4;
	cursor: pointer;
}
/*三本の真ん中のライン*/
.menuBtn .btn {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 2px;
	margin: -1px 0 0 -10px;
	transition: .2s;
}
/*ビフォーとアフターで上下にライン*/
.menuBtn .btn:before,.menuBtn .btn:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 2px;
	transition: .3s;
}
/*上のライン*/
.menuBtn .btn:before {
	margin-top: -8px;
}
/*下のライン*/
.menuBtn .btn:after {
	margin-top: 6px;
}
/*上下のラインを真ん中に重ねる*/
.menuBtn .close:before,.menuBtn .close:after {
	margin-top: 0;
}
/*45度分傾ける*/
.menuBtn .close:before {
	transform: rotate(-45deg);
}
.menuBtn .close:after {
	transform: rotate(-135deg);
}
.menuBtn .btn,.menuBtn .btn:before,.menuBtn .btn:after {
	background-color: #000;
}
/*×にする時に真ん中のラインを透明にする（消す）*/
.menuBtn .close {
	background: transparent;
}
/*メニューボタン・ここまで*/
/*ヘッダー*/
.mainWrap {
	padding-top: 60px;
}
#header {
	position: fixed;
	z-index: 11;
	width: 100%;
	height: 60px;
	background-color: #fff;
}
#head {
	line-height: 60px;
	padding-left: 5%;
}
/***スマホでは文字色を変更***/
#header h1 a,#header .site {
	color: #000;
}
#header h1 span {
 color: #64BED8;
}
.lLine {
	border-left: 1px solid #999;
}
}
/********【スマホ・ヘッダー】ここまで*********/

/*****スマホメニュー*****/
@media screen and (max-width: 800px) {
.sNav02 #nav {
	display: none;
	position: absolute;
	top: 60px;
	width: 100%;
	padding: 5px 0px 0px;
	background-color: #f4f4f4;
	z-index: 3;
	overflow: auto;
}
.sNav02 #nav li a {
	color: #000;
	display: block;
	font-size: 14px;
	line-height: 60px;
	border-bottom: 1px solid #ccc;
	padding-left: 20px;
	position: relative;
}
.sNav02 #nav li.current a {
	background-color: #fff;
}
.sNav02 #nav li.last a {
	border-bottom: none;
}
.sNav02 #nav li a:after {
	color: #999;
}
.sNav02 #nav .navi {
	margin-bottom: 0;
}
.sNav02 #nav .entry {
	margin-top: 0;
	padding: 20px 0;
	background-color: #222;
}
.sNav02 #nav .entry a {
	margin: 0px auto;
	border: 1px solid #fff;
	width: 70%;
	display: block;
	color: #fff;
	background-color: #64BED8;
	text-align: center;
	line-height: 50px;
}
/*カレント以外のaに右向き矢印*/
.sNav02 #nav li:not(.current) > a:after {
	content: "\f105";
	font-family: "FontAwesome";
	display: block;
	position: absolute;
	color: #999;
	font-size: 20px;
	width: 20px;
	height: 20px;
	top: 0;
	right: 5px;
}
/*エントリーの右向き矢印消す*/
.sNav02 #nav li.entry a:after {
	content: "";
	font-family: "FontAwesome";
}
/*HOMEアイコンの大きさ*/
.navi .home i {
	font-size: 24px;
}
}
