.page-featured-header {
	width: 100%;
	height: 280px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
	color: #fff;
	overflow: hidden;
}

.page-featured-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	z-index: 0;
}

.page-featured-title {
	position: relative;
	z-index: 1;
	font-size: 2rem;
	margin: 0 0 85px 0;
}

@media (max-width: 768px) {
	.page-featured-title {
		margin: 0 0 100px 0;
	}
}

/* --- 以下ニュースアーカイブのCSS --- */

.news-archive {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px;
}

.news-posts.grid-layout {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 30px;
}
.news-item {
	background: #fff;
	border: 1px solid #ddd;
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}
.news-item:hover {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.news-item a {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}
.news-thumb img {
	width: 100%;
	height: auto;
	display: block;
}
.news-content {
	padding: 12px 16px;
}
.news-content h3 {
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 5px;
}
.news-content time {
	font-size: 0.85rem;
	color: #888;
	margin-bottom: 6px;
	display: block;
}
.news-posts.list-layout .news-item a {
	flex-direction: row;
	gap: 20px;
}
.news-posts.list-layout .news-thumb {
	width: 200px;
	flex-shrink: 0;
}
.news-posts.list-layout .news-thumb img {
	width: 100%;
	height: auto;
}
.news-posts.list-layout .news-content {
	flex-grow: 1;
	padding: 8px 0;
}

.page-featured-header {
	width: 100%;
	height: 280px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
	color: #fff;
	overflow: hidden;
}

.page-featured-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	z-index: 0;
}

.page-featured-title {
	position: relative;
	z-index: 1;
	font-size: 2rem;
	margin: 0 0 85px 0;
}

@media (max-width: 768px) {
	.page-featured-title {
		margin: 0 0 100px 0;
	}
}

.news-archive {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px;
}
.layout-toggle {
	text-align: right;
	margin-bottom: 20px;
}
.layout-toggle button {
	background: #eee;
	border: none;
	padding: 6px 12px;
	margin-left: 8px;
	cursor: pointer;
}
.layout-toggle button.active {
	background: #007acc;
	color: #fff;
}
.news-posts.grid-layout {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 30px;
}
.news-item {
	background: #fff;
	border: 1px solid #ddd;
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}
.news-item:hover {
	box-shadow: 0 0 8px rgba(0,0,0,0.2);
}
.news-item a {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}
.news-thumb img {
	width: 100%;
	height: auto;
	display: block;
}
.news-content {
	padding: 12px 16px;
}
.news-content h3 {
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 5px;
}
.news-content time {
	font-size: 0.85rem;
	color: #888;
	margin-bottom: 6px;
	display: block;
}
.news-posts.list-layout {
	display: block;
}
.news-posts.list-layout .news-item a {
	flex-direction: row;
	gap: 20px;
}
.news-posts.list-layout .news-thumb {
	width: 200px;
	flex-shrink: 0;
}
.news-posts.list-layout .news-content {
	flex-grow: 1;
	padding: 8px 0;
}

/* アーカイブ & カテゴリーページの幅調整 */
.news-archive {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

/* グリッド */
.news-posts.grid-layout {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 30px;
}
