/*Drop menu CSS for PC.*/
/*Drop menu CSS for PC.*/
#dropmenu_pc{
	list-style-type: none;
	width: 880px;
	height: 30px;
	margin: 5px auto 5px;
	padding: 0;
	background: #FFFFFF;
	border-bottom: 1px solid #DDDDDD;
	border-radius: 3px 3px 0 0;
}
#dropmenu_pc li{
	position: relative;
	font-size: 14px;
	font-weight: bold;
	width: 20%;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
}
#dropmenu_pc li a{
	display: block;
	margin: 0;
	padding: 10px 0 10px;
	color: #666666;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	text-decoration: none;
}
#dropmenu_pc li ul{
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	border-radius: 0 0 3px 3px;
}
#dropmenu_pc li:last-child ul{
	left: -100%;
	width: 100%
}
#dropmenu_pc li ul li{
	overflow: hidden;
	width: 200%;
	height: 0;
	color: #666666;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}
#dropmenu_pc li ul li a{
	padding: 13px 15px;
	background: #FFF;
	text-align: left;
	font-size: 14px;
	font-weight: normal;
}
#dropmenu_pc li:hover > a{
	background: #FFF;
	color: #666666;
}
#dropmenu_pc > li:hover > a{
	border-radius: 3px 3px 0 0;
}
#dropmenu_pc li:hover ul li{
	overflow: visible;
	height: 38px;
	border-top: 1px solid #CCCCCC;
	border-bottom: 1px solid #EEEEEE;
}
#dropmenu_pc li:hover ul li:first-child{
	border-top: 0;
}
#dropmenu_pc li:hover ul li:last-child{
	border-bottom: 0;
}
#dropmenu_pc li:hover ul li:last-child a{
	border-radius: 0 0 3px 3px;
}




/*Drop menu CSS for SP.*/
/*Drop menu CSS for SP.*/
#dropmenu_sp{
	list-style-type: none;
	width: 320px;
	height: 50px;
	margin: 5px auto 5px;
	padding: 0;
	background: #EEEEEE;
	border-bottom: 1px solid #DDDDDD;
	border-radius: 3px 3px 0 0;
}
#dropmenu_sp li{
	position: relative;
	font-size: 14px;
	font-weight: bold;
	width: 20%;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
}
#dropmenu_sp li a{
	display: block;
	margin: 0;
	padding: 10px 0 10px;
	color: #666666;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	text-decoration: none;
}
#dropmenu_sp li ul{
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	border-radius: 0 0 3px 3px;
}
/*The fourth cell setting*/
#dropmenu_sp li:nth-child(4) ul{
	left: -100%;
	width: 100%
}
/*The last cell setting*/
#dropmenu_sp li:last-child ul{
	left: -200%;
	width: 100%
}

/*Setting for something like width.*/
#dropmenu_sp li ul li{
	overflow: hidden;
	width: 300%;
	height: 0;
	color: #666666;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}
#dropmenu_sp li ul li a{
	padding: 13px 15px;
	background: #EEEEEE;
	text-align: left;
	font-size: 14px;
	font-weight: normal;
}
#dropmenu_sp li:hover > a{
	background: #EEEEEE;
	color: #666666;
}
#dropmenu_sp > li:hover > a{
	border-radius: 3px 3px 0 0;
}
#dropmenu_sp li:hover ul li{
	overflow: visible;
	height: 38px;
	border-top: 1px solid #CCCCCC;
	border-bottom: 1px solid #EEEEEE;
}
#dropmenu_sp li:hover ul li:first-child{
	border-top: 0;
}
#dropmenu_sp li:hover ul li:last-child{
	border-bottom: 0;
}
#dropmenu_sp li:hover ul li:last-child a{
	border-radius: 0 0 3px 3px;
}


