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


/* ------ ページ全体 ------ */
body {  
	background-color: #ffffff;  /* 背景色 */
	text-align:center;

}


/* ------ タイトル ------ */
.title {
	color: #8c945a;             /* 文字色 */
	text-align: center;           /* 配置 */
	font-size:1em;           /* 文字大 */

}


/* ------ メッセージ ------ */
.msg_head {
	color: #696969;             /* 文字色 */
	font-size:1em;           /* 文字大 */

}

.msg_foot {
	color: #696969;             /* 文字色 */
	font-size:1em;           /* 文字大 */

}


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

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

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


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


