@charset "utf-8";

#pageTitle:before {
	background: url("../../images/top/topMv_01.jpg") 50% 50% no-repeat;
	background-size: cover;
}

section#news {
	padding: 100px 0;
}
section#news .newsArchiveList {
	max-width: 900px;
	margin: 0 auto;
}
section#news .newsArchiveList li {
	display: flex;
	gap: 30px;
	padding: 40px 0;
	border-bottom: 1px solid #DDD;
}
section#news .newsArchiveList li:first-child {
	padding-top: 0;
}
section#news .newsArchiveDate {
	font-family: "Libre Baskerville", serif;
	color: #999;
	margin-bottom: 10px;
}
section#news .newsArchiveTitle {
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 15px;
}
section#news .newsArchiveTitle a {
	color: inherit;
	text-decoration: none;
}
section#news .newsArchiveExcerpt {
	line-height: 1.8;
}
section#news .newsArchiveMore {
	text-align: right;
	margin-top: 10px;
}
section#news .newsArchiveMore a {
	color: #999;
	/* font-weight: bold; */
	text-decoration: none;
	font-size: 0.8rem;
}
section#news .newsArchiveImage {
	flex-shrink: 0;
	width: 160px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
section#news .newsArchiveImage a {
	display: block;
	width: 100%;
	height: 100%;
}
section#news .newsArchiveImage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
}
section#news .newsArchiveText {
	flex: 1;
	min-width: 0;
}

/* 詳細ページ
--------------------------------------------------------------- */
section#newsDetail {
	padding: 0;
}
section#newsDetail .sectionInner {
	max-width: 900px;
	margin: 0 auto;
}
section#newsDetail .newsDetailTitle {
	font-size: 1.75rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 40px;
}
section#newsDetail .newsDetailImage {
	margin-bottom: 40px;
}
section#newsDetail .newsDetailImage img {
	width: 100%;
	height: auto;
	display: block;
}
section#newsDetail .newsDetailBody {
	line-height: 1.8;
	margin-bottom: 60px;
}
section#newsDetail .newsDetailBody p {
	margin-bottom: 1.5em;
}
section#newsDetail .newsDetailBody img {
	max-width: 100%;
	height: auto;
}
section#newsDetail .newsDetailNav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
section#newsDetail .newsDetailNavPrev,
section#newsDetail .newsDetailNavNext {
	flex: 1;
	min-width: 0;
}
section#newsDetail .newsDetailNavNext {
	text-align: right;
}
section#newsDetail .newsDetailNavPrev a,
section#newsDetail .newsDetailNavNext a {
	color: var(--color-primary);
	font-weight: bold;
	text-decoration: none;
}
section#newsDetail .newsBackBtn {
	flex-shrink: 0;
}
section#newsDetail .newsBackBtn a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color-primary);
	color: #fff;
	font-weight: bold;
	padding: 12px 30px;
	text-decoration: none;
}

/* ページネーション
--------------------------------------------------------------- */
section#news .pager {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 60px;
}
section#news .pager li a,
section#news .pager li span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--color-primary);
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}
section#news .pager li span {
	opacity: 0.4;
}
section#news .pager li:not(.pagerPrev):not(.pagerNext):not(.isCurrent) a {
	background-color: #8fb3d9;
}
section#news .pager li.isCurrent a {
	background-color: var(--color-primary);
}

/* スマホ
--------------------------------------------------------------- */
@media (max-width: 768px) {
	section#news .newsArchiveImage {
		display: none;
	}
	section#news {
		padding-top: 0;
	}
	section#news .pager li.pagerHideSp {
		display: none;
	}
}
