.table-block {
  position: relative;
  padding: var(--block-padding-y) 0;
  overflow: hidden;
}
.table-block .center {
  position: relative;
  z-index: 1;
}
.table-block .span {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.table-block figure.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-block table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 0 0 20px 0;
}
.table-block th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--c-border);
}
.table-block .textcenter th {
  text-align: center;
}
.table-block tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--c-border);
}
.table-block figcaption {
  font-size: 0.9em;
  font-style: italic;
  margin: 15px 0 15px 0;
}
.table-block figure + p {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .table-block {
    padding: var(--block-padding-y-mobile) 0;
  }
}
