/* メインメニュー　PC用
----------------------------------------------------------------------------------------------------------*/
div.panel{
	display:block;
	margin-top: 30px;
}
a#menu{
	display:none;
}
#mainNav ul,
#mainNav li,
#mainNav span,
#mainNav a {
	margin: 0;
	padding: 0;
	position: relative;
}
.mainNav-box {
	display: block;
	z-index: 300;
	width: 100%;
	text-align: center;
	padding: 0;
	background: #fff;
	transition: all 0.5s;
}
#mainNav:after,
#mainNav ul:after {
  	content: '';
	display: block;
	clear: both;
}
#mainNav ul {
	list-style: none;
}
#mainNav ul li a {
	display: block;
	line-height: 35px;
    padding: 0 20px;
    transition: 0.5s;
}
#mainNav ul li {
	font-size: 15px;
	text-align: center;
	transition: all 0.5s;
}
#mainNav ul li:hover a {
	color: #fff;
}
#mainNav ul li:hover:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 50%;
	bottom: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	margin-left: -5px;
	top:60px;
}
#mainNav ul li ul li:hover:after {
	border-left: none;
	border-right: none;
	border-bottom: none;
}
#mainNav ul li.active:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 50%;
	bottom: 0;
}
#mainNav .has-sub {
	z-index: 1000;
}
#mainNav .has-sub:hover ul {
	display: block;
}
#mainNav .has-sub ul {
	display: none;
	position: absolute;
	top: 100%;
	left: -1px;
	border-right: none;
}
#mainNav .has-sub ul li {
    border-top: none;
    border-left: none;
}
#mainNav .has-sub ul li:last-child {
	border-right: none;
}
#mainNav .has-sub ul li a{
	filter: none;
	display: block;
	width: 170px;
	color: #fff;
    font-size: 14px;
    line-height: 120%;
	text-align: left;
	margin-left: 1px;
	padding: 11px 4px 10px 10px;
    border-left: none;
    border-bottom: 1px dotted rgba(255,255,255,0.30);
    background: blue;
	transition: all 0.5s;
    *z-index: 10;
}
#mainNav .has-sub ul li:last-child a{
	border-bottom: none;
}
#mainNav .has-sub ul li a:hover {
	background: #f90;
	border-top: none;
}
#mainNav .has-sub ul li :last-child a {
	border-right: none;
}
#mainNav .has-sub .has-sub:hover > ul {
	display: block;
}
#mainNav .has-sub .has-sub ul {
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
}
#mainNav .has-sub .sub-menu .sub-menu a:hover {
	background: red;
}
#mainNav .has-sub .has-sub:before {
	font-family: "FontAwesome";
	content: "\f054";
	color: #475f00;
	position: absolute;
	margin-top: 8px;
	right: 10px;
	z-index: 10;
}