@charset "utf-8";
/* CSS Document */

/*===============================
	table
================================*/

.pc-table {
  display: table;
}
.sp-table {
  display: none;
}
.tbl-r05 td:first-child {
  background: #fbf5f5;
}

@media screen and (max-width: 768px) {
.pc-table {
  display: none;
}
#content .table-scroll-wrap {
  width: 100% !important;
}
.sp-table {
  display: table;
}
.tbl-r05 {
  width: 100%;
  text-align:left; !important;
}
.tbl-r05 tr {
  width: 100%;
}
.tbl-r05 td:first-child {
  padding: 10px;
  box-sizing: border-box;
  color: #333;
}
.tbl-r05 td:not(:first-child) {
  padding: 10px;
  display: flex;
  box-sizing: border-box;
}
.tbl-r05 td {
  display: block;
  text-align: right;
  width: 100%;
}
.tbl-r05 td:first-child {
  background-color: #9FB8DF;
  color: #333;
  font-weight: bold;
  text-align: center;
}
.tbl-r05 td:before {
  content: attr(data-label);
  float: left;
  font-weight: bold;
  width: 30%;
  text-align: left;
  box-sizing: border-box;
}
}