.news-mainVisual {
	width: 100%;
	aspect-ratio: 1921 / 597;
	background-image: url(../images/news/mainVisual.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	margin-top: 86px;
	display: grid;
	align-content: center;
	row-gap: 18px;
	color: #FFFFFF;
	text-align: center;
	position: relative;
}
.news-mainVisual p:nth-child(1) {
	font-size: 36px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 200;
	letter-spacing: 6.4px;
}
.news-mainVisual p:nth-child(2) {
	font-size: 24px;
	font-family: 'Cormorant Garamond', serif;
	letter-spacing: 4.6px;
}

.news {
	padding-bottom: 4rem;
	position: relative;
}
.news-container {
	width: 100%;
	max-width: 1240px;
	margin: 2rem auto 0;
	padding-inline: 20px;
	position: relative;
}
.news::before {
	content: 'NEWS LIST';
	position: absolute;
	top: 120px;
	left: -20px;
	transform: rotate(90deg);
	color: #3E3A39;
	font-size: 22px;
	font-family: 'Yu Gothic', serif;
	letter-spacing: 6.6px;
}
.news-container ul {
	list-style: none;
	margin-bottom: 6rem;
}
.news-container ul li a {
	display: flex;
	align-items: center;
	column-gap: 12px;
	padding-block: 16px;
	border-bottom: 1px solid #CCCCCC;
	text-decoration: none;
}
.news-item-content {
	display: flex;
	align-items: center;
}
.news-item-date {
	margin-right: 12px;
	color: #3E3A39;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 2.16px;
}
.news-item-category {
	width: 100px;
	padding: 6px 10px;
	margin-right: 30px;
	background-color: #EEEEEE;
	color: #3E3A39;
	font-size: 12px;
	letter-spacing: 1.6px;
	text-align: center;
}
.news-item-title {
	color: #3E3A39;
	font-size: 14px;
	letter-spacing: 2.16px;
}

.news-content { padding-block: 4rem; }
.news-content-date {
	color: #3E3A39;
	font-size: 16px;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 4px;
}
.news-content-title {
	color: #3E3A39;
	font-size: 32px;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 4.8px;
}
.news-content-text {　margin-bottom: 6rem;　}
.news-content p {
	margin-bottom: 32px;
	font-size: 16px;
	line-height: 28.8px;
	letter-spacing: 1px;
	word-break: break-all;
}
.news-content-link {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 100%;
	margin-bottom: 4rem;
}
.news-top-link {
	width: 200px;
	height: 60px;
	margin-inline: auto;
	display: grid;
	place-items: center;
	color: #FFFFFF;
	background-color: #575959;
	font-family: 'Noto Serif JP', serif;
	font-size: 18px;
	letter-spacing: 4px;
	text-decoration: none;
}
.news-prev-link,
.news-next-link {
	display: flex;
	align-items: center;
}
.news-next-link { justify-content: end; }
.news-prev-link a,
.news-next-link a {
	color: #3E3A39;
	font-family: 'Noto Serif JP', serif;
	font-size: 16px;
	letter-spacing: 4px;
	text-decoration: none;
}

@media screen and (max-width: 830px) {
	.news-item-content { flex-wrap: wrap; }
	.news-item-title {
		width: 100%;
		margin-top: 10px;
	}
	
	.news::before { display: none; }
}