@charset "utf-8";

/* ==========================================================================
【Leaf/AQUAPLUS共通】
 テーブル用デザイン (common/table_design.css)
============================================================================
(C)AQUAPLUS All Rights Reserved.
	http://aquaplus.jp/
	http://leaf.aquaplus.jp/
*/

/* --------------------------------------------------------------------------
 表デザイン */

/* 全罫#aaa直線（ヘッダ薄黄）*/
table.table1 {
	margin : 0 auto 8px;
	border-right	: 1px solid #aaa;
	border-bottom	: 1px solid #aaa;
	width : 100%;
}	
table.table1 th ,
table.table1 td {
	border-top		: 1px solid #aaa;
	border-left		: 1px solid #aaa;
	padding : 2px;
	vertical-align: top;
}
table.table1 th {
	background : #fbfbcc;				/* 薄黄 */
/*	white-space: normal;*/
}



/* --------------------------------------------------------------------------
 テーブルを使ったリスト */

/* 形状定義 */
table.table_list ,
table.table_list2 {
	margin : 0;
	width : 100%;
}

table.table_list th ,
table.table_list td ,
table.table_list2 th ,
table.table_list2 td {
	padding : 2px;
	vertical-align: top;
}

/* ヘッダ行・ボーダー（実線）・背景 */
table.table_list th ,
table.table_list2 th {
	border-bottom : 1px solid #aaa;
	background : #f6f6f6;
	text-align : left;
}

/* データ行ボーダー（粗点線） */
table.table_list td {
	border-bottom : 1px dashed #ccc;
}

/* データ行ボーダー（粗点線） */
.table_list2 .table_listBd {
	border-bottom : 1px dashed #ccc;
}

/* 最下行ボーダー(要クラス指定) */
.table_list .table_listBtm {
	border-bottom : 1px solid #aaa;
}

/* 最下行ボーダー無し(要クラス指定) */
.table_list .table_listBtmNb {
	border-bottom : none;
}

/* [EOF] */