/* ホームページ専用スタイル */

.site-footer {
	justify-content: space-between;
	align-items: center;
}

/* カスタム画像セクション */
.custom-image-section {
	margin: 40px 0;
	padding: 30px 0 0 0;
	border-top: 1px solid #e0e0e0;
}

.custom-image-section h2 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: left;
	color: #fe5126;
}

.custom-image-container {
	text-align: center;
	margin: 20px 0;
}

.custom-image-container img {
	max-width: 90%;
	height: auto;
	/* border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
	transition: transform 0.3s ease;
	margin-bottom: 40px;
}

.custom-image-container img:hover {
	transform: scale(1.02);
}

.custom-image-container p {
	text-align: left;
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
}

/* NEWSセクション */
.news-section {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #e0e0e0;
}

.news-section h2 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: left;
}

/* 最近の投稿スタイル */
.recent-post {
	margin-bottom: 30px;
	padding: 20px;
	border-radius: 8px;
	/* background: #fff; */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}

.recent-post:hover {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.recent-post:last-child {
	border-bottom: none;
}

.recent-post h4 {
	margin-bottom: 10px;
	font-size: 14px;
}

.recent-post h4 a {
	text-decoration: none;
	color: inherit;
}

.recent-post h4 a:hover {
	text-decoration: underline;
}

.post-meta {
	font-size: 10px;
	color: #666;
	margin-bottom: 10px;
}

.post-excerpt {
	font-size: 14px;
	line-height: 1.6;
}

/* アイキャッチ画像スタイル */
.post-thumbnail {
	margin-bottom: 15px;
}

.post-thumbnail img {
	width: 100%;
	height: auto;
	/* border-radius: 8px; */
	display: block;
}

.post-thumbnail a {
	display: block;
	text-decoration: none;
}

.post-thumbnail a:hover {
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

/* カテゴリー別投稿数のスタイル */
.category-post-counts-container {
	width: 100%;
	margin-top: 126px;
	/* padding-left: 60px;
	padding-right: 60px; */
}

.category-post-counts {
	width: 200px;
	margin: 0 auto 20px;
	padding-bottom: 20px;
	/* border-bottom: 1px solid rgba(254, 81, 38, 0.2); */
}

.category-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.category-item {
	width: 100%;
	margin-bottom: 16px;
}

.category-item:last-child {
	margin-bottom: 0;
}

.category-item a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* padding: 12px 0; */
	text-decoration: none;
	color: #fe5126;
	transition: all 0.3s ease;
	width: 100%;
}

.category-item a:hover {
	color: #fe5126;
	border-bottom-color: rgba(254, 81, 38, 0.6);
	padding-left: 10px;
}

.category-name {
	font-size: 14px;
	font-weight: 600;
}

.post-count {
	font-size: 14px;
	color: #fe5126;
	font-weight: 600;
}

/* PCサイズのみ表示（1140px以上） */
@media (max-width: 1139px) {
	.category-post-counts {
		display: none;
	}
}

/* レスポンシブ対応 */
@media (max-width: 1140px) {
	.category-post-counts {
		display: none; /* タブレット以下では非表示 */
	}
}

@media (max-width: 540px) {
	.category-post-counts {
		display: none; /* スマホでは非表示 */
	}
}

/* ホームページ用フッター */
.site-footer.footer-home {
	justify-content: space-between;
}
