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


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

div  {
    text-align : center;
    width : 700px;
    background-color : #ffffcc;
    padding-top : 10px;
    padding-bottom : 10px;
}


/* ------ タイトル ------ */
.title {
    font-size : 16pt;
	color: #ff0000;             /* 文字色 */
	text-align: center;           /* 配置 */
}


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

.msg_foot {
    font-size : 12pt;
	color: #696969;             /* 文字色 */
	text-align: center;         /* 配置 */
}


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

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

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


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


