@charset "UTF-8";



/****************************************************
 * テーブルデザイン｜基本設定
 ****************************************************/

table {
	text-align: center;
}
table caption {
	font-weight: bold;
}
table th {
	font-weight: bold;
	color: #FFF;
	background-color: #69788A!important;
}
table th,
table td {
	font-size: 0.7em;
	padding: 0.5em;
}
@media print, screen and (min-width: 768px) {
	table th,
	table td {
		font-size: 0.8em;
		padding: 0.8em;
	}
}
table th ol,
table th ul,
table td ol,
table td ul {
	margin-bottom: 0!important;
	text-align: left;
}



/****************************************************
 * テーブルデザイン｜合計枠に使用する用（trに挿入）
 ****************************************************/

.tableResult th {
	color: #535252;
/* 	background: #EAEAEA; */
	background: #FFC000!important;
	font-weight: bold;
}
.tableResult td {
/* 	background: #EFEFEF; */
	background: #FFF2CC!important;
	font-weight: bold;
}



/****************************************************
 * テーブルデザイン｜左寄せ（tableタグに「tableLeft」を挿入）
 ****************************************************/

.tableLeft td,
.tableLeft td ul,
.tableLeft td ol {
	text-align: left!important;
}



/****************************************************
 * テーブルデザイン｜スクロール
 ****************************************************/

.tableScroll {
	overflow-x: auto;
	overflow-y: visible;
	-webkit-overflow-scrolling: touch;
	position: relative;
	max-width: 100%;
}
.tableScroll table {
	width: 100%;
	min-width: 860px; /* コンテンツ幅に合わせ中 */
	border-collapse: collapse;
	table-layout: fixed;
}
.tableScroll th,
.tableScroll td {
	white-space: normal;
	font-size: 70%;
	text-align: center;
}
/* 上部を固定｜fixed-header */
.tableScroll .fixed-header thead th {
	position: sticky;
	top: 0;
	z-index: 2;
}
/* 左列を固定｜fixed-column */
.tableScroll .fixed-column th:first-child,
.tableScroll .fixed-column td:first-child {
	position: sticky;
	left: 0;
	z-index: 1;
}
/* 固定を両方とも取り入れたときのデザイン崩れ防止 */
.tableScroll .fixed-column th:first-child { background: #69788A; }
.tableScroll .fixed-column td:first-child { background: #FAFBFC; }
/* ラベルのデザイン */
.tableScroll-label {
	position: sticky;
	top: 0px;
	left: 0;
	color: #555;
	font-size: 90%;
	font-weight: bold;
	padding: 4px 8px;
	border-radius: 4px;
	white-space: nowrap;
	z-index: 10;
	display: none; /* 初期は非表示 */
	animation: labelSideMove 2s infinite;
}
@media (max-width: 768px) {
	.tableLabel {
		font-size: 12px;
		top: -20px;
	}
}
@keyframes labelSideMove {
	50% { transform:translateX(10px); }
}


