
/************************************************/
/*        フォームメール用スタイルシート        */
/************************************************/


/* ------ ページ全体 ------ */
body {  
	background-color: #ffffff;  /* 背景色 */
}


/* ------ タイトル ------ */
.title {
	color: #339900;             /* 文字色 */
	text-align: left;           /* 配置 */
	font-size: 120%;
}


/* ------ メッセージ ------ */
.msg_head {
	color: #333333;             /* 文字色 */
	text-align: left;           /* 配置 */
	font-size: 100%;
	line-height: 140%;
}

.msg_head p {
	color: #333333;             /* 文字色 */
	text-align: left;           /* 配置 */
	font-size: 100%;
}


.msg_foot {
	color: #cc6600;             /* 文字色 */
	text-align: center;         /* 配置 */
	font-size: 90%;
	font-weight: bold;
}


/* ------ テーブル ------ */
table {
	width: 60%;
	margin: 20px 10%;
	border: 1px solid #339900;
}

table th {
	background-color: #FFFFCC;  /* 背景色 */
	color: #333333;             /* 文字色 */
	text-align: left;
	white-space: nowrap;
	padding: 5px;
	border: 1px solid #339900;
}

table td {
	background-color: #FFFFCC;  /* 背景色 */
	color: #333333;             /* 文字色 */
	text-align: left;
	white-space: nowrap;
	padding: 5px;
	border: 1px solid #339900;
}


/* ------ ボタン ------ */
.submit {
	text-align: center;         /* 配置 */
}



