@charset "UTF-8";
/* CSS Document */

@import url("base.css");
@import url("navi.css");
@import url("print.css");


/* お知らせ */
/* - - - - - - - - - - - - - - - - - - - - - - */
.news {
	width:100%;
	margin-bottom: 100px; 
	box-sizing: border-box;
}
.news:last-child{
	margin-bottom: 0;
}
.news dl {
	width:100%;
	margin:15px 0;
	padding: 10px;
	line-height:1.3em;
	border-bottom:#DA471D dotted 1px;
	box-sizing: border-box;
}
.news dt {
	display: inline-block;
	width:20%;
	white-space:nowrap;
	vertical-align: top;
}
.news dd {
	display: inline-block;
	width:75%;
}
.news dd a:hover{
	color: #DA471D;
}

@media screen and (max-width: 767px){
	.news {
		margin-top: 20px
	}
	.news dl {
		width: auto;
		margin: 0 10px 0 10px;
	}
	.news dt, .news dd {
		width:100%;
	}
}


/* お知らせ　記事 */
/* - - - - - - - - - - - - - - - - - - - - - - */
.article {
	margin: 20px;
}
.day{
	text-align: right;
	font-size: 90%;
}
.pict {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.pict .inline_block {
	width: 45%;
	text-align: center;
	margin-bottom: 20px;
}
.inline_block:nth-child(odd) {
	margin-right: 18px;
}
.article a{
	color: #DA471D;
}
.article a:hover{
	color: #DA471D;
	border-bottom: solid 1px #DA471D;
}


@media screen and (max-width: 767px) {
	.pict .inline_block {
		width: 90%;
		margin-right: 0;
	}
}

