@charset "utf-8";
/***************************************
 *  入力画面用CSS
 **************************************/

/* エラーメッセージ
--------------------------------- */
.mform #errorMsgBase {
  width:100%;
  background:#FFF;
  border:2px solid #f00;
  padding:10px;
  margin: 10px auto;
  color: #f00;
  box-sizing: border-box;
}
  .mform #errorMsgBase .title {
    font-weight: bold;
    margin: 0 0 5px;
  }
  .mform #errorMsgBase ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
    .mform #errorMsgBase ul li{
      margin-bottom: 5px;
      font-size: 0.9em;
    }
      .mform #errorMsgBase ul li a{
        color: #f00;
      }


/* 画面別表示/非表示
--------------------------------- */
.mform.input .show_confirm,
.mform.confirm .show_input {
  display: none !important;
}
