/*本文。pタグ的にパラグラフの下を1行開ける。*/
.bst, 
.bst > div {
  margin-bottom: 1.6rem;
}
/*
表。
クラスの方がタグよりも詳細度（優先度）が上なので、bstableクラスの設定とth・tdの設定とで設定がかち合った場合、前者が優先される。
*/
.bstable {
  font-size: 90%;
  border-collapse: collapse;
  border: 3px red solid;
  margin: 0 auto 1.6em;
}
.bstable th, 
.bstable td {
  padding: 0.5rem;
}
.bstable tr th {
  border-bottom: 2px magenta solid;
}
.bstable tr td {
  border-bottom: 1px green solid;
}
.bstable tr th:nth-child(2),
.bstable tr td:nth-child(2) {
  border-left: 2px blue solid;
  border-right: 1px green solid;
}
