/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 19 2026 | 07:01:37 */
/* タブ全体 */
.c-tabList {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 24px;
}

/* タブボタン */
.c-tabList__button {
	width: 100%;
	padding: 14px 10px;
	border: 1px solid #dcdcdc;
	border-radius: 12px;
	background: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	color: #333;
	transition: .3s;
	box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

/* ホバー */
.c-tabList__button:hover {
	background: #f5f7fa;
}

/* 選択中 */
.c-tabList__button[aria-selected="true"] {
	background: #0d6efd;
	border-color: #0d6efd;
	color: #fff;
	box-shadow: 0 4px 12px rgba(13,110,253,.25);
}

/* タブ項目 */
.c-tabList__item {
	margin: 0;
}

/* タブの下線を消す */
.c-tabList::after {
	display: none;
}

/* タブパネル */
.c-tabs__content {
	padding-top: 10px;
}

/* タブレット */
@media (max-width: 960px) {
	.c-tabList {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* スマホ */
@media (max-width: 767px) {
	.c-tabList {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.c-tabList__button {
		padding: 12px 8px;
		font-size: 13px;
		border-radius: 10px;
	}
}
