/* -- フォームの見出し -------------- */
.FormHeading {
  margin-left: 3px;
  margin-bottom: 5px;
  border-left: 5px #e83e7d solid;
  padding-left: 10px;
}
.FormHeading h2 {
  font-weight: normal;
}

/*-- フォームテーブル ----------------*/
table.FormTable {
  box-sizing: border-box;
  margin: 0 0 15px;
  border: 1px #ccc solid;
  border-collapse: collapse;
  width: 100%;
}

/* -- 必須 -- */
.FormTable th strong{
  float: right;
  display: block;
  border-radius: 5px ;
  padding: 3px 3px;
  width: 38px;
  height: 16px;
  background-color: #ff0000;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  color: #fff;
}

.FormTable td p.Ex {
  color: #999;
}
.FormTable td ul.CheckList {
  margin: 5px;
  padding: 0;
  list-style-type: none;
}
.FormTable td ul.CheckList li{
  float: left;
  margin-right: 20px;
}

/* -- PC -- */
@media screen and (min-width: 768px) {
  .FormTable th{
    border: 1px #ccc solid;
    background-color: #f5f5f5;
    padding: 10px;
    width: 170px;
    text-align: left;
    font-weight: normal;
    line-height: 16px;
  }
  .FormTable td{
    border: 1px #ccc solid;
    padding: 10px;
    width: 374px;
  }
}
/* -- スマホ -- */
@media screen and (max-width: 767px) {
  .FormTable th{
    display: block;
    box-sizing: border-box;
    width: 100%;
    border: 1px #ccc solid;
    padding: 10px;
    background-color: #f5f5f5;
    text-align: left;
    font-weight: bold;
  }
  .FormTable td{
    display: block;
    box-sizing: border-box;
    border: 1px #ccc solid;
    padding: 10px;
    width: 100%;
    background-color: #fff;
  }
}

/* //////////////////////////////////////////// */

/* -- フォーム -- */
fieldset { border: none; }

input,textarea,select {
  box-sizing: border-box;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid gray;
  font-size: 15px;
}
.TextBox {
  margin-top: 2px;
  margin-bottom: 3px;
  width: 90%;
}
.TextBoxM {
  margin-top: 2px;
  margin-bottom: 3px;
  width: 140px;
  font-size: 15px;
}
.TextBoxS {
  margin-top: 2px;
  margin-bottom: 3px;
  width: 80px;
  font-size: 15px;
}
.TextArea {
  width: 90%;
  height: 100px;
}

/* //////////////////////////////////////////// */

/* -- エラーメッセージ -- */
p.TopErrMsg {
  box-sizing: border-box;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 10px 35px;
  width: 100%;
  background: #dd0000 url("/img/preset/ps01/alert.gif") 10px center no-repeat;
  line-height: 1.4em;
  color: #fff;
}
p.ErrMsg {
  display: inline-block;
  margin-top: 3px;
  background: url("/img/preset/ps01/alert.gif") 3px 2px no-repeat;
  text-indent: 25px;
  line-height: 1.4em;
  font-weight: bold;
  color: red;
}

/* -- 保存しましたメッセージ -- */
#notification {
  z-index: 9998;
  display: none;
  position: fixed;
  top: 1px;
  left: calc(50% - 135px);
  width: 270px;
  height: 50px;
}
#notification_shadow{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 250px;
  height: 30px;
  background-color: #ff6600;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  color: #fff;
  box-shadow: 0px 1px 3px 2px #888; /* CSS3 */
}

