@charset "utf-8";

.contents {
	line-height: 2;
}

.contents__title--h1 {
	margin: 0px auto 30px;
	color: #444;
	text-align: center;
	position: relative;
	font-weight: 700;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFF;
	line-height: 1.4;
}

.contents__title--h1::before, .contents__title--h1::after {
	content: "";
	height: 1px;
	background-color: #0073aa;
	flex-grow: 1;
	min-width: 20px;
}
.contents__title--h1::before {
	margin-right: 1em;
}
.contents__title--h1::after {
	margin-left: 1em;
}

.contents__title--h2 {
	color: #444;
	font-weight: 700;
	margin-top: 50px;
	font-size: 18px;
	padding-left: 15px;
	text-indent: -15px;
}

.contents__title--h2::before {
	content: "";
	width: 10px;
	height: 30px;
	background-color: #B4E3FA;
	border-radius: 3px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
.contents__title--h3 {
	font-size: 18px;
	font-weight: 700;
	margin-block: 2em 1em;
	text-indent: -1em;
	padding-left: 1em;
}
.contents__ul--01 {
	margin-block: 1em;
}
.contents__li--01 {
	text-indent: -1em;
	padding-left: 1em;
}
.contents__li--01::before {
	content: "・";
}
@media screen and (min-width: 768px) {
	.contents__title--h1 {
		font-size: 32px;
	}
	.contents__title--h2 {
		font-size: 24px;
	}
	.contents__title--h2::before {
		width: 12px;
		margin-right: 8px;
	}
}


.news__list {
	background: #FFF;
	padding-inline: 20px;
	margin-block: 30px;
}

.news__item {
	display: flex;
	flex-direction: column-reverse;
	width: calc(100% - 20px - 1em);
}

.news__anchor {
	display: flex;
	padding-block: 14px;
	border-bottom: #DDD 1px solid;
	justify-content: space-between;
	align-items: center;
	grid-column-gap: 20px;
}
.news__anchor.eventnone {
	pointer-events: none;
}
.news-title__h2 {
	font-size: 16px;
}

@media screen and (min-width: 768px) {
	.news__list {
		margin-block: 60px;
	}

	.news__anchor:hover {
		text-decoration: none;
	}
	.news__anchor::before {
		content: "";
		width: 20px;
		height: 20px;
		display: block;
		background: url(../../img/arrow__right--lightgray.svg) center center no-repeat;
		background-size: contain;
	}
	.news__item {
		flex-direction: row-reverse;
		justify-content: flex-end;
		align-items: center;
	}
	.news-title__h2 {
		margin-left: 1em;
	}
}