@charset "utf-8";

/* ---------------------------------------------------------
■ デフォルトリセット
--------------------------------------------------------- */
table, th, td {
	margin: 0;
	padding: 0;
	font-weight: normal;
	font-style: normal;
	font-size: 100%;
	line-height: 1;
	border: none;
	list-style-type: none;
}

body {
	margin: 0;
	padding: 0;
	font: 85% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
}

/* ---------------------------------------------------------
■ テーブル
--------------------------------------------------------- */
table {
	width: 520px;
	border-collapse: collapse;
	margin: 0 0 20px 0;
	border: 1px solid #cccccc;
}

/* キャプション（テーブルタイトル） */
table caption {
	text-align: left;
	font-weight: bold;
	padding-bottom: 5px;
	margin-top: 10px;
	line-height: 1.8;
}

/* キャプションに単位を入れるとき */
table caption span {
	display: block;
	text-align: right;
	font-weight: normal;
	font-size: 90%;
	padding-top: 4px;
}

/* thが左列にある時 */
table th {
	padding: 5px 10px;
	text-align: left;
	line-height: 1.8;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	background-color: #d3f0ff;
/*	font-weight: bold;*/
}

/* thが一行目にある時 */
table th.thHead {
	background-color: #d3f0ff;
	text-align: center;
}

/* td 通常 */
table td {
	padding: 5px 10px;
	line-height: 1.8;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
}


/* ---------------------------------------------------------
 汎用パーツ 
--------------------------------------------------------- */

/* テーブル汎用
----------------------------------------- */
/* セルの行揃え */
td.tdCenter { text-align: center; }
td.tdRight  { text-align: right; }
td.tdLeft   { text-align: left; }


/* 幅指定 */
th.w-10,td.w-10 { width: 10%; }
th.w-10,td.w-15 { width: 15%; }
th.w-20,td.w-20 { width: 20%; }
th.w-25,td.w-25 { width: 25%; }
th.w-30,td.w-30 { width: 30%; }
th.w-40,td.w-40 { width: 40%; }
th.w-50,td.w-50 { width: 50%; }
th.w-60,td.w-60 { width: 60%; }
th.w-70,td.w-70 { width: 70%; }

