.activity-container {
	max-width: 1000px; /* 幅を広めに確保 */
	margin: 0 auto;
	padding: 0 20px;
}

/* 記事ブロック */
.activity-entry {
	background: #fff;
	padding: 60px; /* 余白をたっぷりとる */
	margin-bottom: 60px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* うっすら影をつける */
	/* アンカー位置調整（ヘッダー追従対策） */
	scroll-margin-top: 120px; 
}

/* ヘッダー周り */
.entry-header {
	margin-bottom: 40px;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}
.entry-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}
.entry-date {
	color: #666;
	font-weight: bold;
	font-family: sans-serif;
}
.entry-cat {
	background-color: #999;
	color: #fff;
	font-size: 12px;
	padding: 4px 12px;
	border-radius: 20px;
}
.entry-title {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.4;
	color: #333;
	margin: 0;
}

/* 画像エリア */
.entry-thumb {
	margin-bottom: 40px;
	text-align: center;
	background-color: #f5f5f5;
}
.entry-thumb img {
	max-width: 100%;
	height: auto;
	max-height: 600px; /* 画像が縦長になりすぎないよう制限 */
	object-fit: contain; /* 比率を保って収める */
	display: block;
	margin: 0 auto;
}

/* 本文エリア */
.entry-content {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}
.entry-content p {
	margin-bottom: 1.5em;
}
/* 本文内の画像もはみ出さないように */
.entry-content img {
	max-width: 100%;
	height: auto;
}

/* ページネーション */
.pagination {
	text-align: center;
	margin: 80px 0;
	display: flex;
	justify-content: center;
	gap: 10px;
}
.pagination a, 
.pagination span {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 40px;
	height: 40px;
	border: 1px solid #ddd;
	background: #fff;
	text-decoration: none;
	color: #333;
	border-radius: 4px;
	transition: all 0.3s;
	padding: 0 10px;
}
.pagination span.current {
	background-color: #006837;
	color: #fff;
	border-color: #006837;
}
.pagination a:hover {
	background-color: #eee;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
	.activity-entry {
		padding: 30px 20px;
	}
	.entry-title {
		font-size: 22px;
	}
	.entry-thumb {
		margin: 0 -20px 30px -20px; /* 画像を画面幅いっぱいに */
	}
	.entry-thumb img {
		width: 100%;
	}
}