@charset "utf-8";

html {
	height: 100%;
}
body {
	min-height: 100%;
	display: flex;
	flex-direction: column;
}
.content {
	flex: 1;
}

.news {
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
.news:first-of-type {
	border-top: 1px dashed rgba(0, 0, 0, 0.2);
}
.news-p a {
	display: inline-block;
	box-sizing: border-box;
	border-bottom: 1px solid #59220d;
	margin-bottom: 10px;
}
.news-title {
	font-family: 'Kaisei Opti', serif;
	font-family: 'Noto Serif JP', serif;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	.news {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-around;
	}
	.news-p {
		width: auto;
		flex-grow: 1;
	}
	.news-img {
		width: 400px;
	}
}
