.rating-distribution {
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px dashed #ccc;
}

.rating-distribution h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.rating-row-graph {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.rating-label {
  width: 50px;
  font-weight: bold;
  flex-shrink: 0;
}

.rating-bar-wrapper {
  flex: 1;
  height: 18px;
  background-color: #eee;
  margin: 0 8px;
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar {
  height: 100%;
  background-color: #E97EA1;
  border-radius: 4px;
  transition: none; /* アニメなし */
}

.rating-count {
  min-width: 40px;
  text-align: right;
}











/* ★ 点数入力ボックス（.cmx-num）を小さく可愛く */
.cmx-num {
  width: 55px;         /* ← 数字枠：小さく */
  height: 36px;        /* ちょい小さめで統一 */
  padding: 0 6px;
  font-size: 16px;

  border: 2px solid #d3e5ff;   /* アオ系 */
  border-radius: 12px;         /* ← 丸み */
  background: #ffffff;
  color: #4b4b69;              /* 文字色は落ち着いた青系 */
  
  text-align: center;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

/* フォーカス時に可愛い光り方 */
.cmx-num:focus {
  border-color: #97bfff;
  box-shadow: 0 0 0 4px rgba(211, 239, 255, 0.6);
}






