﻿/*□□□□□□□□□□□□□□□□□□□□

	サイト共通スタイル：フォーム

□□□□□□□□□□□□□□□□□□□□*/
/*////////////////////////////////////////
	フォーム
////////////////////////////////////////*/
table.form {
	border-collapse: collapse;
}
table.form caption {
	text-align: left;
}
/*――― タイトルセル ―――*/
table.form th {
	background-color: #E0F0F8;
	border: 1px solid #999;
	padding: 4px 8px;
	font-weight: normal;
	text-align: left;
    min-width:6em;
}
/* 必須タイトル */
table.form th.req {
	background-image: url(../../_Images/ico_req.gif);
	background-repeat: no-repeat;
	/*background-position-x: right 5px;
	background-position-y: center;*/
    background-position:right 5px top 5px;
	padding-right: 30px;
}

/*――― データセル ―――*/
table.form td {
	border: 1px solid #999;
	padding: 3px 5px;
	min-width: 80px;
}
/* 表示用 */
table.form.disp td {
	padding: 3px 8px;
}
/* 入力用 */
table.form.disp td.inp {
	padding: 3px 5px;
}
/* コメント用 */
table.form td.cmt {
	/*white-space: pre-line;*/
    /*word-break:break-all;*/
    word-wrap:break-word;
}

/*――― ボタンセル ―――*/
table.form td.btnArea {
	text-align: right;
	border: none;
	padding-right: 0;
}


/*////////////////////////////////////////
	検索フォーム（左右分割）
////////////////////////////////////////*/
div.search {
	margin: 5px;
}
div.search:after {
	content: " ";
	clear: both;
	display: block;
}
div.search table#LeftArea, div.search table#RightArea {
	float: left;
}
div.search table#LeftArea {
	margin-right: 20px;
}

