@charset "UTF-8";

.u-category-btn {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 10px;
	margin-bottom: 15px;
}
.u-category-btn .c-btn__red.u-btn__red a {
	background:#fff;
	color: #ff0606;
	display: block;
	min-width: auto;
	font-size:1.4rem;
	line-height: 1.4;
	padding: 10px 3px;
	height: auto;
}
.u-category-btn .c-btn__red.u-btn__red a:hover,
.u-category-btn .c-btn__red.u-btn__red a.active {
	background:#ff0606;
	color: #fff;
}
@media screen and (max-width: 960px) {
	.u-category-btn {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 10px;
		margin-bottom: 12px;
	}
}
@media screen and (max-width: 767px) {
	.u-category-btn {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		margin-bottom: 12px;
	}
	.u-category-btn .c-btn__red.u-btn__red a {
		font-size: 1rem;
		min-height: 30px;
		min-width: 100%;
	}
}

.u-category-back{
	display: grid;
	justify-content: right;
	margin-bottom: 12px;
}
