@charset "utf-8";
/* CSS Document */
#info h2{
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin: 70px 0 50px;
}

.newsTxt{
	font-weight: bold;
	display: inline-block;
	text-align: left;
	margin-bottom: 30px;
}

.newsList{
	display: inline-block;
	text-align: left;
	margin: 0 20px 0 30px;
}
.newsList li{
	margin-bottom: 35px;
}

	.newsList li ul{
		background: #f3f3f3;
		list-style: disc;
		border: 1px solid #999;
		border-radius: 10px;
		padding: 15px 15px 0px 25px;
	}
	.newsList li ul a{	text-decoration: underline;}

.newsList a{	text-decoration: none;}


/* ページの高さが足りないので、フッターの位置調整 */
body#info{
	display: flex;
	flex-flow: column;
	min-height: 100vh;
}
#info #wrapper{	flex: 1;}

a.requestBtn{
	background: #000;
	color: #fff;
	text-decoration: none;
	display: block;
	max-width: 300px;
	padding: 20px;
	margin: 0 auto 25px;
	position: relative;
}
a.requestBtn:after{
	content: ">";
	font-weight: bold;
	position: absolute;
	right: 20px;
}
a.requestBtn:hover{	opacity: .8;}


