/* 星評価の見た目（フロント用） */
.rating_box {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: #fff8e1;
  gap: 10px;
}
.rating_label {
  font-weight: 700;
  letter-spacing: 0.02em;
  min-width: 78px;
  font-size: 15px;
}
.stars {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.stars-base,
.stars-fill {
  font-size: 20px;
  letter-spacing: 2px;
  font-family: Arial, Helvetica, sans-serif;
}
.stars-base {
  color: #d0d0d0;
}
.stars-fill {
  color: #f5b300;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  overflow: hidden;
}
.rating_score {
  font-weight: 700;
  font-size: 16px;
  min-width: 3ch;
  display: inline-block;
}

.rating_group {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  .rating_box:nth-child(5) {
    grid-column: auto;
  }
}
