/*----------------------------------------------------------------------------*/
/* フラッシュメッセージ */
/*----------------------------------------------------------------------------*/

/* 外枠 */
#flash_box {
}

/* メッセージの領域 */
#flash_box div {
  border: solid 1px;
  margin: 20px 2em;
  padding: 9px;
  font-size: 133%;
  font-weight: bold;
  text-align: left;
}

/* メッセージ毎の色 */
#flash_box div.flash_notice {
  color: #2B99D5; /* green */
}
#flash_box div.flash_error {
  color: #ee0000; /* firebrick1 */
}
#flash_box div.flash_message {
  color: orange;
}
#flash_box div.flash_warning {
  color: orangered;
}
#flash_box div.flash_debug {
  color: darkgreen;
}
