/* fixedColumnsプラグインを使用する場合、デフォルトのcssだとdatatable.cssと不整合が起きるのでFTC用にカスタマイズ */
/* ※「https://cdn.datatables.net/fixedcolumns/4.1.0/css/fixedColumns.dataTables.min.css」より後ろに入れること */

/* テーブル ヘッダ */
table.dataTable thead tr>.dtfc-fixed-left, table.dataTable thead tr>.dtfc-fixed-right {
	background-color: var(--ftc-color);
}

/* テーブル ボディ */
table.dataTable tbody tr>.dtfc-fixed-left, table.dataTable tbody tr>.dtfc-fixed-right {
	background-color: #ebcad5;
}

/* テーブル ブロッカー(スクロールバーの上部) */
div.dtfc-left-top-blocker, div.dtfc-right-top-blocker {
	background-color: inherit;
}