@charset "UTF-8";

.notice-block{
	width: 660px;
	margin: 0 auto 30px;
	line-height: 1.8;
	background-color: #eee;
	border-radius: 5px;
	padding: 20px;
	box-sizing: border-box;
}

.notice-block strong {
	font-weight: bold;
}

.notice-block ul{
	padding: 20px 20px 0;
}

.notice-block ul li {
	list-style: circle;
}

.notice-block ul li + li {
	margin: 5px 0 0;
}

.notice-block ul li a {
	display: inline-block;
	font-weight: bold;
	color: #5A8FC6;
}

.notice-block ul li a:hover {
	text-decoration: none;
}

@media screen and (max-width: 768px){
	.notice-block{
	  width: auto;
	  font-size: 14px;
	}

	.notice-block ul li a{
	  display: block;
	}
}