.rwd-table {
  margin:auto;
  min-width:300px;
  width:100%;
  overflow:hidden;
  --white:#eee;
  --grey:#bbb;
}

.rwd-table tr:first-child {
  background:#2e6f7f;
  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: #e1f1f0;
}

.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:var(--blue);
  width:93px;
  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 { 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.6vw;
  }

  .rwd-table td { border:1px solid var(--grey); vertical-align:middle; }
}
