@charset "utf-8";




/*============================================
テーブル
============================================*/
table.profile {
	width:800px;	/*テーブル全体の幅*/
	margin: auto;
	border-collapse:collapse;	/*セル同士の間に隙間を空けない*/

}


table.profile th {
	padding:5px;				/*パディング*/
	text-align:center;				/*センター揃えにする*/
	white-space:nowrap;				/*セル内の改行を禁止する*/
	background-color:#95c3e7;		/*セルの背景色*/
	border-bottom:#000000 2px;		/*セルのボーダー*/
}
table.profile td {
	padding:5px;	/*パディング*/
	text-align:center;
	background-color:#ffffff;			/*セルの背景色*/
	border-bottom:#000000 1px;	/*セルのボーダー*/
	
}




