@charset "UTF-8";
/* CSS Document */
.overview__table {
  width: 100%;
  margin-top: 30px;
  font-size: 1.6rem;
}

.overview__table th {
  text-align: center;
  width: 270px;
  font-weight: 700;
  border-top: 2px solid #666;
  padding: 40px 30px;
  vertical-align: top;
}

.overview__table td {
  text-align: left;
  padding: 40px 30px;
  vertical-align: top;
  color: #444;
  border-top: 2px solid #ccc;
  padding-left: 40px;
}

.overview__table tr:last-child th {
  border-bottom: 2px solid #666;
}

.overview__table tr:last-child td {
  border-bottom: 2px solid #ccc;
}

.overview__table td span {
  font-size: 70%;
  margin-right: 5px;
}

@media(max-width:900px) {

  .overview__table th {
    width: 85px;
    padding: 20px 5px 20px 0;
  }

  .overview__table td {
    padding: 20px 0 20px 10px;
  }

}