@charset "UTF-8";

/* ========================================
	style
======================================== */

/* --------- 個別記事ページ --------- */

.page-header.second {
	margin-bottom: 3em;
}

.article-detail {
	border-radius: 5px;
	background-color: #fff;
	padding: 8vw 6vw;
}

/* テキストリンク */
.article-detail a.txt-link,
.article-detail .txt-link a {
	color: var(--text-base-color);
	text-decoration: underline;
	transition: color 0.3s ease;
}
.article-detail a.txt-link:hover,
.article-detail .txt-link a:hover {
	color: var(--nawa-green);
}

/* 記事導入部 */
.news__header {
	margin-bottom: 2rem;
}

.article_title {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.8;
	margin-bottom: 3em;
}

.content p {
	margin-bottom: 3rem;
}

/* 見出し */
.content h3 {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--black);
	background-color: var(--gray-100);
	border-left: 3px solid var(--nawa-green);
	padding: 1rem 0 1rem 2rem;
	margin-bottom: 2rem;
}

.content h4 {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--black);
	border-bottom: 1px solid var(--line-gray);
	padding: 0 0 1rem 0.5rem;
	margin-bottom: 2rem;
}

/* キャプション */
.content figure {
	text-align: center;
	margin-bottom: 3rem;
}

.content figcaption {
	font-size: 1.2rem;
	text-align: left;
	margin: 0;
}

/* アンカーリンク */
.content a {
	color: var(--black);
	text-decoration: underline;
	transition: color ease .3s;
}
.content a:hover {
	color: var(--nawa-green);
	text-decoration: underline;
}

/* 引用 */
.quotation {
	font-size: 1.4rem;
	border: 1px solid var(--dark-beige);
	border-radius: 8px;
	padding: 5rem 3rem;
	margin-bottom: 3rem;
	position: relative;
}
.quotation::before,
.quotation::after {
	content: "";
	position: absolute;
	display: inline-block;
	inline-size: 20px;
	block-size: 15px;
	background: url("/assets/common/images/quotation-marks.svg") no-repeat center / cover;
}

.quotation::before {
	top: 2rem;
	left: 3rem;
}
.quotation::after {
	bottom: 2rem;
	right: 3rem;
	transform: rotate(180deg);
}

/* ========================================
	1180px未満専用スタイル（TAB&SP）
======================================== */
@media screen and (width < 1180px) {
}

/* ========================================
	768px以上（PC&TAB）
======================================== */
@media screen and (768px <= width) {
}

/* ========================================
	768px以上1180px未満専用スタイル（TAB）
======================================== */
@media screen and (768px <= width < 1180px) {
}

/* ========================================
	1180px以上専用スタイル（PC）
======================================== */
@media print, screen and (1180px <= width) {
	/* --------- 個別記事ページ --------- */

	.page-header.second {
		margin-bottom: 1rem;
	}

	.article-detail {
		padding: 80px 100px;
	}

	.article_title {
		font-size: 2rem;
		line-height: 1.8;
	}

	/* 見出し */
	.content h3 {
		font-size: 1.8rem;
		padding: 1.5rem 0 1.5rem 2rem;
		margin-bottom: 3rem;
	}

	.content h4 {
		font-size: 1.8rem;
		margin-bottom: 3rem;
	}
}
