@charset "utf-8";
/* CSS Document */


/* headbar */
#headbar {
	/* ▼上端に固定するCSS */
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;

	/* ▼バーの装飾 */
	background-color: #f1f1f1;  /* 背景色 */
	color: white;             /* 文字色 */
	box-shadow: 1px 1px 1px rgba(0,0,0,0.5); /* 影 */
}

#dropmenu {
	list-style-type: none;
	width: 100%;
	height: 40px;
	margin: 0 auto;
	padding: 0;
	background-color: #999999; /* メニューバー背景色 */
}
#dropmenu li {
	position: relative;
	width: 19.9%;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
	border-right: 1px solid #e7f4ff;　/* メニューバーの横の境界線 */
}

#dropmenu > li:last-child {
	position: relative;
	width: 19.9%;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
	border-right: none;
}

#dropmenu li a {
	display: block;
	margin: 0;
	padding: 15px 0 11px;
	color: #FFF; /* 文字色 */
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
}

#dropmenu li:hover > a {
	background-color: #009AB8; /* オンマウス時背景色 */
	color: #fff;
　/* オンマウス時文字色 */
}

#dropmenu li ul {
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
}

#dropmenu li ul {
	width: 100%
}

#dropmenu li ul li {
	overflow: hidden;
	width: 100%;
	height: 0;
	color: #fff;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}

#dropmenu li ul li a {
	padding: 13px 15px;
	background-color: #21ADC8; /* メニュー展開部分の背景色 */
	text-align: left;
	font-size: 12px;
	font-weight: 400;
}

#dropmenu li:hover ul li {
	overflow: visible;
	height: 38px;
	border-top: 1px solid #e7f4ff; /* メニュー展開部分の境目の色 */
}

#dropmenu li:hover ul li:first-child {
	border-top: 0;
}

#dropmenu li:hover ul li:last-child {
	border-bottom: 0;
}

#dropmenu li:hover ul li:last-child a {
	border-radius: 0 0 3px 3px;
}