@charset "utf-8";

/*------------------------------*/
/* ページ固有設定*/
/*------------------------------*/

/*------------------------------*/
/* テーブルメニュー */
.table_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
/* タブレット */
@media only screen and (max-width:1024px) {
	.table_list {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* スマホ */
@media only screen and (max-width:599px) {
	.table_list {
		grid-template-columns: 1fr;
	}
}

/* STRONG */
strong {
	color: #ff0000;
	font-weight: 700;
}

/* 絵文字 */
.check {
	font-size:20px;
	line-height: 14px;
}