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


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

/* ------ タイトル ------ */
.title {
	color: #000000;             /* 文字色 */
	text-align: left;           /* 配置 */
}


/* ------ メッセージ ------ */
.msg_head {
	color: #000055;             /* 文字色 */
	text-align: left;           /* 配置 */
        font:  12pt;

}

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


/* ------ テーブル ------ */
table {
	border-style: none;
	width: 80%;
	margin: 10px;
}

table th {                          
	background-color: #fec05a;  /* 背景色 */
	color: #000000;             /* 文字色 */
	text-align: left;           /* 配置 */
        font:  11pt;
	border-style: none;
	white-space: nowrap;
	padding: 5px;
}

table td {
	background-color: #ffffcc;  /* 背景色 */
	color: #000000;             /* 文字色 */
	text-align: left;           /* 配置 */
        font:  10pt;
	border-style: none;
	white-space: nowrap;
	padding: 5px;
}


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



