@charset "utf-8";
/* CSS Document */
#first ul li:nth-child(odd) a:hover {
	background-color: #F9F2B3;
	background-image: url(../img/nav_bg3.gif);
	background-repeat: repeat;
}
#first ul li:nth-child(even) a:hover {
	background-color: #CAE9FF;
	background-image: url(../img/nav_bg2.gif);
	background-repeat: repeat;
}
#first ul li:nth-child(3n+1) a:hover {
	
	background-color: #F4BBBB;
	background-image: url(../img/nav_bg1.gif) ;
	background-repeat: repeat;
}
#first .cate_title {
	position: relative;
}
#first .cate_title::before {
	content: "";
	width: 100%;
	height: 3px;
	background-color: #fc6c05;
	position: absolute;
	bottom: -10px;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){
	
}


/* ---------- スマートフォン ---------- */
@media screen and (max-width: 667px){
	
}






/* ----------- IE ------ ---------- */
@media all and (-ms-high-contrast:none) {
	#first ul li a {
		padding: 22px 10px 15px;
	}
}