@charset "utf-8";

/*------------------------------*/
/* ページ固有設定*/
/*------------------------------*/

/* 上部固定背景 */
.category_frame {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

/*------------------------------*/
/* カテゴリーボタン */
.category_button {
	flex: 1;
	max-width: 200px;
	text-align: center;
	padding: 10px 16px;
	background-color: #b1b1b1;
	color: #ffffff;
	border-radius: 50px;
	font-size: 16px;
	text-decoration: none;
	transition: 0.3s;
}

.category_button:hover {
	background-color: #5bb431;
}

.category_button_on {
	background-color: #5bb431;
	color: #fff;
}
