@charset "utf-8";

/* 一番上がタイトルのテーブル */
.normalTable table {
  width: 100%;
  margin: 1em auto 0;
}
.normalTable table th,
.normalTable table td {
  padding: 0.8em 1.5em;
}
.normalTable table thead th {
  background: #ccc;
  border: 1px solid #ccc;
  color: #333;
}
.normalTable table thead th:not(:last-child) {
  border-right: 1px solid #fefefe;
}
.normalTable table tbody td,
.normalTable table tbody th {
  border: 1px solid #ccc;
}

/* 一番左がタイトルのテーブル */
.leftTable table {
  width: 100%;
  margin: 1em auto 0;
}
.leftTable table th,
.leftTable table td {
  padding: 0.8em 1.5em;
  border: 1px solid #ccc;
}
.leftTable table th {
  background: #ccc;
  color: #333;
}
.leftTable table tr:not(:last-child) th {
  border-bottom: 1px solid #fefefe;
}