/* ---------------------------------------------------
ここからテーブル関係（各サイトデータテーブル用）
更新サイト一覧対策としてtrにクラス割り振って下位のtdをそれぞれ処理する形を取る。
延々と<tr class="X">が続いて無駄なコードが増えるが、
更新サイト一覧が不規則な構造をとっているためセレクタだけでは対応が難しい。
今後の検討課題。
----------------------------------------------------- */
/*--------------------------------------------------------------
 テーブルのボーダーとセルの上ボーダーが被るのを防ぐ。
更新サイト一覧に影響しないようにthead内にsitedataクラスがあるかどうかでチェック 
----------------------------------------------------------------*/
.sitedata td {
		height : 45px ;
		background-color: #fbf8e9;
}

.sitedata td:nth-of-type(1) {
		width : 30% ;
		font-weight : bold ;
}

.sitedata td:nth-of-type(2){
		width : 30% ;
}
		
.sitedata td:nth-of-type(3) {
		width : 45% ;
		font-size: 14px;font-size: 1.4rem;
}

.sitedata .letter {
		text-decoration: none;
		display: table-cell;
		width: 200px;
		height: 40px;
		padding: 10px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
		vertical-align: middle;
		text-align: center;
		color : white ; /* 仮に白 */
		background-color: black ; /* 仮に黒 */
}

.obrdata td { 
		font-size: 14px;font-size: 1.4rem;
}

.obrdata td:nth-of-type(1){
		width : 30%;
		color : #FF9900 ;
		font-weight : bold ;
}

.obrdata td:nth-of-type(2){
		width : 30%;
}

.obrdata td:nth-of-type(3){
		width : 15%;
}

.obrdata td:nth-of-type(4){
		width : 25%;
}
/* ここまでテーブル関係（各サイトデータテーブル用） */


