@charset "utf-8";
/* CSS Document */

/*--Default Table, top page --*/

table.table_TOP {
	width:96%;				/*テーブル全体の幅*/
	border-collapse:collapse;		/*セル同士の間に隙間を空けない*/
	margin: 3px 3px 3px 3px ;
}

table.table_TOP th {
	width:22%;				/*見出しセルの幅*/
	padding:5px;				/*パディング*/
	vertical-align: top;        /*縦　上揃いにする */
	text-align:center;				/*横　センター揃えにする*/
	white-space:nowrap;				/*セル内の改行を禁止する*/
	background-color:#ffffff;				/*セルの背景色*/
	border-bottom:dotted #666666 1px;				/*セルのボーダー*/
	font-size:92%;  			/*--フォント調整--*/
}
table.table_TOP td {
	width:74%;
	padding:5px;				            /*パディング*/
	background-color:#ffffff;				/*セルの背景色*/
	border-bottom:dotted #666666 1px;				/*セルのボーダー*/
}

table.table_TOP p {
	width:auto;		/*幅の指定*/
	margin:5px;		/*マージン*/
	text-indent:0em;		/*インデント幅*/
	font-size: 92%;   /*--フォント調整--*/
}
	
table.table_TOP img {
	width:96px;		/*幅の指定*/
	height: 88px;
	object-fit: cover; /*画像の短辺合わせでリサイズとトリミング*/
}	

