
/************************************************/
/*             フォームに関する設定             */
/************************************************/


/* ------ ページ全体 ------ */
body {  
	background-color: #481a1a;  /* 背景色 */
}


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


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

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


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

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

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


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


