/* +++++++++news+++++++++ */
.news {
	padding-top: 116px;
	padding-bottom: 113px;
}
.news .news-wrap {
	max-width: 960px;
	margin: 0 auto;
}
.news li {
	border-top: 1px solid var(--color08);
	padding: 21px 0;
}
.news li:last-child {
	border-bottom: 1px solid var(--color08);
}
.news li a {
	display: flex;
	align-items: center;
	column-gap: 25px;
}
.news li a:hover {
	opacity: .5;
}
.news .date {
	flex: none;
	color: var(--color01);
	font-size: 1.2rem;
	letter-spacing: .08em;
	line-height: 1;
}
.news .date span {
	display: block;
	font-size: 4.2rem;
	letter-spacing: .08em;
}
.news .comment {
	flex: 1;
	font-size: 1.6rem;
	line-height: 1.8;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news .pager {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
	margin-top: 40px;
}
.news .here,
.news .next {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	color: var(--color01);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	border: 1px solid var(--color01);
	border-radius: 50%;
	transition: .25s;
}
.news .next:hover {
	color: #fff;
	background-color: var(--color01);
}
.news .here.current,
.news .next.current {
	opacity: 1;
	color: #fff;
	background-color: var(--color01);
}
.news .pager-arrow_prev,
.news .pager-arrow_next {
	width: 44px;
	height: 30px;
	margin: 0 20px;
}
.news .pager-arrow_prev::after,
.news .pager-arrow_next::after {
	content: "";
	display: block;
	width: inherit;
	height: inherit;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: .25s;
}
.news .pager-arrow_prev::after {
	background-image: url(../images/sub/circle01-01.svg);
}
.news .pager-arrow_next::after {
	background-image: url(../images/sub/circle01.svg);
}
.news .pager-arrow_prev:hover::after,
.news .pager-arrow_next:hover::after {
	opacity: .5;
}



@media only screen and (min-width: 769px) {
	.news li {
		padding: 25px 0;
	}
	.news li a {
		column-gap: 30px;
	}
	.news .comment {
		font-size: 1.8rem;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.news .pager {
		margin-top: 60px;
	}
	.news .pager span,
	.news .next {
		width: 50px;
		height: 50px;
		font-size: 2.2rem;
	}
}
