
/************************************************/
/*        フォームメール用スタイルシート        */
/************************************************/


/* ------ ページ全体 ------ */
body.formmail {  
	background-color: #ffffff;  /* 背景色 */
}


/* ------ タイトル ------ */
.title_fm {
	color: #00196C;             /* 文字色 */
	text-align: center;         /* 配置 */
}


/* ------ メッセージ ------ */
.msg_head {
	color: #00196C;             /* 文字色 */
	text-align: left;           /* 配置 */
	padding: 5px;
}

.msg_foot {
	color: #00196C;             /* 文字色 */
	text-align: center;         /* 配置 */
}


/* ------ テーブル ------ */
table.formmail {
	border-style: none;
	width: 100%;
	margin: 0px 0%;
}

table th.formmail {                          
	background-color: #ffffff;  /* 背景色 */
	color: #00196C;             /* 文字色 */
	text-align: left;           /* 配置 */
	border-style: none;
	white-space: nowrap;
	padding: 5px;
	font-weight: normal;
}

table td.formmail {
	background-color: #ffffff;  /* 背景色 */
	color: #00196C;             /* 文字色 */
	text-align: left;           /* 配置 */
	border-style: none;
	white-space: nowrap;
	padding: 5px;
}


/* ------ ボタン ------ */
.submit {
	text-align: center;         /* 配置 */
}


