.rwd-table {
  margin:auto;
  min-width:300px;
  width:100%;
  overflow:hidden;
  --white:#eee;
  --grey:#bbb;
}

.rwd-table tr:first-child {
  background:var(--bgc);
  color:#FFF;
}

.rwd-table tr {
  border-top:1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
  background-color: #fff;
}

.rwd-table tr:nth-child(odd):not(:first-child) {
  background-color: #efefef;
}


.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:first-child {
  margin-top: .5em;
}

.rwd-table td:last-child {
  margin-bottom: .5em;
}

.rwd-table td:before {
  content:attr(data-th) "：";
  color:#798930;
  width:55px;
  display:inline-block;
}

/*.rwd-table th,*/
.rwd-table td {
  text-align:left;
}

.rwd-table tr {
  border-color: #bfbfbf;
}

.rwd-table th,
.rwd-table td {
	padding:10px 5px;
	border-bottom:1px dotted var(--grey);
}
.rwd-table td:nth-last-child(1) { border:none; }


@media screen and (min-width: 1000px) {
	/*
  .rwd-table tr:hover:not(:first-child) {
	  color:#FFF;
      background-color:#704a4a;
  }*/
  .rwd-table tr { border-right:1px solid var(--grey); }
  .rwd-table th { border:1px solid var(--white); }
	
  .rwd-table td:before {
    display: none;
  }
  .rwd-table th,
  .rwd-table td {
    display: table-cell;
    padding: 0.5vw;
  }

  .rwd-table td { border:1px solid var(--grey); vertical-align:middle; }
  
  .rwd-table tr:nth-child(odd):not(:first-child) { background-color:#FFF; }
}
