/* ----------------------------------------
	single-news
---------------------------------------- */

#single-news {
    margin: 8rem 15%;
}

.news-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
	font-size: 0.9rem;
	color: #666;
	font-family: "Noto Serif JP", serif;
	letter-spacing: 0.12em;
	line-height: 2;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.news-categories {
	display: flex;
	gap: 0.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
}

.news-category {
	white-space: normal;
	background-color: #E1F3E2;
	border-radius: 20px;
	padding: 0 1rem;
}

.taxonomy {
	white-space: nowrap;
	background-color: transparent;
	border-radius: 0;
	padding: 0;
}

.news-content {
	font-size: 1rem;
	line-height: 1.8;
	color: #333;
}

.btn-circle-wrapper {
    margin-top: 8rem;
    text-align: center;
}

.btn-circle-wrapper a {
    font-family: "Noto Serif JP", serif;
}

.btn-circle-wrapper a:first-child {
    margin-right: 1rem;
}

.btn-circle-wrapper a:last-child {
    margin-left: 1rem;
}

/* 画面幅1180px以下：タブレット対応 */
@media screen and (max-width:1180px) {
	#single-news {
		margin: 8rem 6%;
	}
}

/* 画面幅767px以下：スマホ対応 */
@media screen and (max-width:767px) {
	#single-news {
    	margin: 4rem 6%;
	}

	.news-title {
		font-size: 1.3rem;
	}

	.btn-circle-wrapper {
		margin-top: 4rem;
	}
}

/* 画面幅575px以下：スマホ対応 */
@media screen and (max-width:575px) {
	#single-news {
    	margin: 4rem 1rem;
	}

	.news-title {
		font-size: 1.1rem;
	}
}