@charset "UTF-8";

/************************************************************************
*	CSS information
*	file name  : data.css
*	style info : ページ別スタイルの設定
************************************************************************/

table {
	border-collapse: collapse;
}

th,td {
	display: block;
	padding: 1px;
	text-align: center;
	vertical-align: middle;
}

th {
	background-color: #d4e8f0;
	font-weight: normal;
}

td {
	padding: 2px 1px;
}

@media screen and (min-width: 768px) { /* デスクトップ用 */

	.sec_ttl {
		background-image: url(../img/data/pc/data_ttl.png);
	}
}

@media print,screen and (min-width: 768px) { /* デスクトップ用 */

	table {
		border-bottom: 1px dotted #d4e8f0;
	}

	th,td {
		display: table-cell;
		border: 1px solid #333;
		min-width: 10%;
	}

	th {
		background-color: #edf4f7;
		vertical-align: top
	}

	td {
	}

}