@charset "UTF-8";
/**
 * 一覧系画面CSS
 */
.dataTbl {
  width: 100%;
}
.dataTbl td, .dataTbl th {
  padding: 3px 5px;
  line-height: 1.1rem;
}
.dataTbl .td_l {
  text-align: left;
}
.dataTbl .td_c {
  text-align: center;
}
.dataTbl .td_r {
  text-align: right;
}
.dataTbl th {
  border: 1px solid #B9B9B9;
}
.dataTbl td {
  border: 1px solid #B9B9B9;
}
.dataTbl th {
  background-color: #D3DCF5;
  height: 24px;
  vertical-align: middle;
}
.dataTbl th a {
  color: rgba(26, 13, 171, 0.949);
}
.dataTbl tr:nth-child(even), .dataTbl .even {
  background-color: #EEEEEE;
}
.dataTbl tr:nth-child(even) td, .dataTbl .even td {
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.dataTbl tr:nth-child(odd), .dataTbl .odd {
  background-color: #ffffff;
}
.dataTbl tr:nth-child(odd) td, .dataTbl .odd td {
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.dataTbl :first-child th, .dataTbl :first-child td {
  border-top-color: transparent;
}
.dataTbl :last-child th, .dataTbl :last-child td {
  border-bottom-color: transparent;
}
.dataTbl tr th, .dataTbl tr td {
  overflow-wrap: break-word;
}
.dataTbl tr th:first-child, .dataTbl tr td:first-child {
  border-left-color: transparent;
}
.dataTbl tr th:last-child, .dataTbl tr td:last-child {
  border-right-color: transparent;
}
.dataTbl button, .dataTbl [type=button], .dataTbl [type=submit] {
  min-width: 64px;
  height: 18px;
  margin: -1px 5px;
}
.dataTbl .thBtn, .dataTbl .thBtn_on {
  margin: 0;
  min-width: 0;
  width: 100%;
  height: 100%;
}
.dataTbl .thBtn:hover, .dataTbl .thBtn_on:hover {
  background: inherit;
}
.dataTbl .thBtn, .dataTbl .thBtn_on {
  border: none; /* リセット */
  background: none; /* リセット */
  height: 100%;
  width: 100%;
  background-color: #D3DCF5;
}
.dataTbl td.send_NG {
  background: url("../../res/img/common/icon_error.png") no-repeat center;
  background-position: 12px;
  color: red;
}
.dataTbl td.send_NG a {
  color: red;
}
.dataTbl .btnM {
  min-width: 150px;
}
.dataTbl .trend {
  display: inline-block;
  width: 12px;
  margin-left: 5px;
}
.dataTbl .unit {
  display: inline-block;
  width: 24px;
  margin-left: 5px;
  text-align: left;
}
.dataTbl.tblBorder :first-child th {
  border-top: 1px solid #B9B9B9;
}
.dataTbl.tblBorder :first-child td {
  border-top: 1px solid #B9B9B9;
}
.dataTbl.tblBorder :last-child th {
  border-bottom: 1px solid #B9B9B9;
}
.dataTbl.tblBorder :last-child td {
  border-bottom: 1px solid #B9B9B9;
}

/*=========================
	時系列表
  =========================*/
.timelineTbl thead tr.highCol th, .timelineTbl thead tr.highCol td {
  line-height: 1.5em;
}
.timelineTbl td {
  text-align: right;
}
.timelineTbl [type=text] {
  width: 100%;
  margin: 2px auto;
  padding: 1px 2px;
  height: 20px;
  text-align: right;
}

/*=========================
	中身がスクロールする表
  =========================*/
.scrollTbl {
  width: 100%;
}
.scrollTbl thead, .scrollTbl tbody {
  display: block;
}
.scrollTbl thead th, .scrollTbl thead td, .scrollTbl tbody th, .scrollTbl tbody td {
  table-layout: fixed;
}
.scrollTbl tbody {
  overflow-x: hidden;
  overflow-y: scroll;
  margin-top: -1px;
  height: 300px;
}

.shortText {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 0;
}