/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 14 2026 | 02:55:16 */
/* 導入実績一覧 */
.cases-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cases-item {
	margin: 0;
	padding: 0;
}

.cases-item > a {
	display: block;
	text-decoration: none;
	color: inherit;
}


/* ページネーション */
.pagination__container {
	margin-top: 40px;
	text-align: center;
}

.pagination__container .page-numbers {
	display: inline-block;
	margin: 0 5px;
}


/* スマホ */
@media screen and (max-width: 767px) {

	.cases-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

}

