@charset "utf-8";

/* グローバルナビ
----------------------------------------------------------- */
#global_nav {
	height: 50px;
	min-width: 960px;
	background-color: #326eb4;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
}

#global_nav > ul {
	position: relative;
	width: 960px;
	margin: 0 auto;
}

#global_nav > ul > li {
	float: left;
	width: 160px;
}

#global_nav > ul > li > a {
	position: relative;
	display: block;
	line-height: 50px;
	height: 50px;
	border-left: 1px solid #ccc;
	box-sizing: border-box;
	color: #fff;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
}

#global_nav > ul > li:last-child > a {
	border-right: 1px solid #ccc;
}

html:not(.mobile) #global_nav > ul > li > a:hover,
#global_nav > ul > li.gnav_active > a {
	background: #14a2f5;
	color: #fff;
	text-decoration: none;
}

html.mobile #global_nav > ul > li > a:hover {
	text-decoration: none;
}

