.case-title {
	display: flex;
	align-items: center;
	color: #4c4948;
	font-family: 'Plus Jakarta Sans';
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	padding: 114px 12px 20px;
}

.case-container {
	display: flex;
	max-width: 1243px;
	margin: 0 auto;
	padding: 50px 0;
}

/* 左カラム（カテゴリフィルター） */
.case-sidebar {
	width: 20%;
	padding: 20px;
	background-color: #fff;
	border-radius: 10px;
}

.case-sidebar h2 {
	font-size: 18px;
	font-weight: bold;
	color: #af9448;
	margin-bottom: 20px;
}

/* カテゴリボタン */
.category-filter {
	list-style: none;
	padding: 0;
	margin: 0;
}

.category-filter li {
	margin-bottom: 15px;
}

.category-filter button {
	display: block;
	width: auto;
	padding: 8px 20px;
	font-size: 16px;
	font-weight: bold;
	color: #828282;
	background-color: transparent;
	border: 1px solid #828282;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3sease-in-out;
	text-align: center;
	white-space: nowrap;
}
/* 右カラム（事例一覧） */
.case-title2 {
	display: flex;
	align-items: center;
	color: #000;
	font-family: 'Plus Jakarta Sans';
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.pickup-title {
	text-align: left;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
	text-decoration: none;
}
.pickup-title a {
	color: #000;
	text-decoration: none;
}
.pickup-title a:hover {
	color: #af9448;
	text-decoration: none;
}

.case-content {
	/* width: 80%; */
	width: 1283px;
}

.pickup-hr {
	width: 100%;
	max-width: 681px;
	height: 1px;
	border: 1px solid #e0e0e0;
	margin: 20px 0;
}

.pickup-logo {
	width: 200px;
}

.case-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.case-item {
	width: 300px;
	/* width: 340px; */
	/* height: 580px; */
	/* height: 380px; */
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
	/* ホバーエフェクトのためのトランジション追加 */
	transition: all 0.3s ease;
	cursor: pointer;
}
.case-item a {
	color: #666; /* テキストカラー変更 */
	text-decoration: none;
}
/* ホバー時のスタイル追加 */
.case-item:hover {
	transform: translateY(-10px); /* 上に10px移動 */
	background-color: #D8CFC2; /* 背景色変更 */
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 影を少し強くして浮いている感じを強調 */
}

.case-item img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.case-item h3 {
	font-family: 'Noto Sans JP';
	font-size: 16px;
	font-weight: bold;
	margin: 15px 0;
	text-align: left;
}

.case-item p {
	font-size: 14px;
	color: #666;
}
.case-hr {
	width: 100%;
	max-width: 340px;
	height: 1px;
	border: 1px solid #e0e0e0;
	margin: 16px 0;
}
.case-meta {
	/* コンテンツ左寄せ */
	text-align: left;
}
/* レスポンシブ対応 */
@media (max-width: 1024px) {
	.case-container {
		flex-direction: column;
		margin: 20px;
	}
	.case-sidebar {
		width: 100%;
	}
	.case-content {
		width: 100%;
	}
	.case-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.case-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.case-item {
		width: 100%;
		height: auto;
	}
}

.pickup-content {
	width: 100%;
	margin-bottom: 86px;
}

.pickup-item {
	display: flex;
	gap: 30px;
	align-items: center;
	background: #fff;
	border-radius: 10px;
	padding: 34px 0;
	width: 100%;
}

.pickup-image img {
	width: 681px; /* 画像幅を固定 */
	height: auto;
	border-radius: 10px;
}

.pickup-details {
	flex: 1;
}

.pickup-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}

.pickup-date,
.pickup-location {
	font-size: 16px;
	color: #666;
	margin: 5px 0;
}

.pickup-tags .tag {
	display: inline-block;
	background: #fff;
	color: #333;
	padding: 5px 10px;
	margin-top: 8px;
	margin-right: 5px;
	border-radius: 20px;
	border: 1px solid var(--Gray-3, #828282);
	background: #fff;
	font-size: 14px;
}

.pickup-link {
	display: inline-block;
	margin-top: 47px;
	border-radius: 50px;
	border: 1px solid var(--Kima_green, #af9448);
	background: #fff;
	color: #af9448;
	padding: 10px 20px;
	text-decoration: none;
}
.pickup-link:hover {
	text-decoration: none;
	background: #af9448;
	color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
	.pickup-item {
		flex-direction: column;
	}
	.pickup-image img {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.case-title {
		margin: 30px 0 10px;
		padding: 0;
	}
	.pickup-title {
		font-size: 20px;
	}
	.pickup-date,
	.pickup-location {
		font-size: 14px;
	}
	.pickup-tags .tag {
		font-size: 12px;
	}
	.pickup-link {
		font-size: 16px;
		padding: 8px 16px;
	}
}
