﻿@charset "utf-8";

/*============================================
テーブル
============================================*/
table.profile {
	width:680px;			/*テーブル全体の隙間*/
	border-collapse:collapse;	/*セル同士の間に隙間を空けない*/
}
table.profile th {
	width:150px;
	padding:10px;
	text-align:center;		/*センター揃えにする*/
	white-space:nowrap;		/*セル内の改行を禁止にする*/
	background-color:#ccccee;	/*セルの背景色*/
	border-bottom:dotted #666666 1px;  /*セルのボーダー*/
}
table.profile td {
	padding:10px;	
	background-color:#eeeeff;	/*セルの背景色*/
	border-bottom:dotted #666666 1px; /*セルのボーダー*/
}	

