
/************************************************/
/*        フォームメール用スタイルシート        */
/************************************************/


/* ------ ページ全体 ------ */

@import url(default.css);
body {
		  
	background-color: #ffffff;  /* 背景色 */
}


/* ------ タイトル ------ */
.title {		
	color : green;             /* 文字色 */
	text-align: left;           /* 配置 */

		font-size : 20px;
}


/* ------ メッセージ ------ */
.msg_head {		
	color : black;             /* 文字色 */
	text-align: left;           /* 配置 */

		font-size : 16px;
}

.msg_foot {		
	color: #000000;             /* 文字色 */
	text-align: center;         /* 配置 */
}


/* ------ テーブル ------ */
table {		
	border-style: none;
	width : 50%;
	margin: 20px 10%;
}

table th {
		                          
	background-color : #b9dcff;  /* 背景色 */
	             /* 文字色 */
	text-align: left;           /* 配置 */
	border-style: none;
	white-space: nowrap;
	padding: 5px;

		font-size : 15px;
}

table td {		
	background-color : #b9dcff;  /* 背景色 */
	             /* 文字色 */
	text-align: left;           /* 配置 */
	border-style: none;
	white-space: nowrap;
	padding: 5px;
}


/* ------ ボタン ------ */
.submit {		
	text-align: center;         /* 配置 */
}


