@charset "utf-8";
/* CSS Document */

#mainSub {
	background: #FFF;
}

#mainSub h2 {
	margin-bottom: 5px;
}

.menuList {
	padding: 15px 0;
	margin-bottom: 25px;
}
.menuList ul {
	padding: 0 10px;
}
.menuList li a {
	display: block;
	font-size: 15px;
	color: #31739A;
	text-decoration: none;
	padding: 10px 10px 10px 25px;
	border-top: 1px solid #DDD;
	position: relative;
}
.menuList li a:hover {
	text-decoration: underline;
}
.menuList li:last-child a {
	border-bottom: 1px solid #DDD;
}
.menuList li a:before {
	content: "";
	box-sizing: border-box;
	width: 4px;
	height: 4px;
	border: 3px solid transparent;
	border-left: 5px solid #333;
	position: absolute;
	top: 15px;
	left: 10px;
}