@charset "UTF-8";

/* Layout */
html{
}


header{
float: center;
width:100%;
height:72px;
padding:0px 0px 0 0px;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
-webkit-background-size:100% auto;
background-size:cover;
background-color:#3cbe4f;
position:absolute; 
z-index: 70;
right:0;
top:0;

}


/* ------- nav ------- */


#nav > ul > li {
	list-style: none;
	float:left;
	margin-top:0px;
	width:16.6666%;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	background-color:#FFFFFF;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(1.00, #CAE3BF), color-stop(0.00, #fff));
	background:-webkit-linear-gradient(top, #fff 50%, #CAE3BF 100%);
	background:-moz-linear-gradient(top, #fff 50%, #CAE3BF 100%);
	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffffff', endColorstr='#CAE3BF', GradientType=0 );
	background:linear-gradient(top, #fff 0%, #CAE3BF 100%);
	border:#FFFFFF solid 1px;

}

#nav > ul > li > a {
	list-style: none;
	display:block;
	height:30px;
	padding:40px 0 0 0;
	font-size:14px;
	color:#004E2D;
	font-weight:600;
	text-align:center;
	text-decoration:none;
	background-size:35px 35px;
	-webkit-background-size:40px 40px;


}

/* 子メニュー */
ul.subs {
	list-style:none;
	position: absolute;
	float:right;
	top: 100%;
	width: 20%;
	background-color: rgba( 227,250,190, 0.9);

}

ul.subs li a {
	list-style: none; 
	display: block;
	height:0px;
	font-size: 12px;
	line-height: 0px;
	text-indent: 20px;

	height:22px;
	padding:20px 0 0 0;
	background : none;
	border-top: 1px solid #7c8c0e;

}

/* 孫メニュー */
ul.subs li {
	list-style: none; 
	position: relative;
	width:100%;
}

ul.subs li ul {
	list-style: none; 
	position: absolute;
	top: 0;
	left: 100%;
	width: 182px;
}

ul.subs li ul li a {
	list-style: none; 
	color: #FFF;
}

ul.last li ul {
	list-style: none; 
	left: -182px;
}

/* ------- 色の指定 ------- */

li.color-green {
	border-top: 5px solid #3cbe4f;
}

/* 子メニュー */



li.color-green ul.subs li:hover a {
	background-color: #3cbe4f;
	color:#FFF;
}


ul.subs li:hover a {
	background-color: #24ADE2;
	color:#FFF;
}


/* 孫メニュー */

li.color-green ul.subs ul li a {
	background-color: #46D7C6;
}


li.color-green ul.subs ul li a:hover {
	background-color: #3cbe4f;
}





/* ページトップ */

.page_top {
    position:fixed;
    bottom:10px;
    right:10px;
    padding:0px;
    color:#fff;
    font-size:20px;
    text-decoration:none;
    background:#CCFFFF;
}
.page_top:hover {
    background:#FFFFCC;
}

.copyright{text-align:center; margin-top:0px; background: #252525; padding: 10px 0px;color:#F0F0F0; font-size:10px;}
.copyright a{color:#000000; text-decoration:underline;}

