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


/* ------ ページ全体 ------ */
body {  
	background-color: #ffffff;  /* 背景色 */
	font-size: 12px;
}


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


/* ------ メッセージ ------ */
.msg_head {
	color: #330000;             /* 文字色 */
	text-align: center;           /* 配置 */
}

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


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

table th {                          
	background-color: #99C1A2;  /* 背景色 */
	color: #330000;             /* 文字色 */
	text-align: left;           /* 配置 */
	border-style: none;
	white-space: nowrap;
	padding: 10px;
}

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


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


