/* 比較表ラッパーとテーブル基本 */
figure.wp-block-table.is-comparison-table {
  width: 100%;
  margin: 0 0 1.5em;
  overflow-x: auto;
}
figure.wp-block-table.is-comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
figure.wp-block-table.is-comparison-table th,
figure.wp-block-table.is-comparison-table td {
  padding: 0.75em;
  border: 1px solid #ddd;
  text-align: center;
  vertical-align: middle;
  background-color: #fff;
}
figure.wp-block-table.is-comparison-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #f7f7f7;
}
figure.wp-block-table.is-comparison-table tbody tr:nth-child(even) td {
  background-color: #fafafa;
}
@media (max-width: 768px) {
  figure.wp-block-table.is-comparison-table table {
    min-width: 480px;
    font-size: 0.9rem;
  }
}
/* 星評価用 */
.ctb-rating-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  line-height: 1.4;
  color: #222;
}
.ctb-rating-value {
  font-size: 1.6em;
  font-weight: 700;
  color: #ff6600;
}
.ctb-rating-denominator {
  font-size: 0.5em;
  vertical-align: super;
}
.ctb-rating-stars {
  display: inline-flex;
  gap: 2px;
  justify-content: center;
  align-items: center;
  margin: 0.3em 0;
}
.ctb-rating-stars img {
  width: 1.3em;
  height: auto;
}
.ctb-rating-top {
  font-size: 0.85em;
  color: #555;
  margin-bottom: 0.2em;
}
.ctb-rating-bottom {
  font-size: 0.9em;
  color: #444;
}
