/* /var/www/html/web/themes/gavias_batiz/css/star-rating.css */

/* ========================================
   星評価CSS - 最終版
   ======================================== */

/* 星評価本体 */
.star-rating {
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    font-family: Arial, sans-serif;
    --star-fill-width: 0%;
  }
  
  /* 背景の星（空の星） - ほんの少し濃い色 */
  .star-rating::before {
    content: "☆☆☆☆☆";
    color: #ccc; /* #dddから#cccに変更（ほんの少しだけ濃く） */
    display: block;
  }
  
  /* 評価分の星（塗りつぶされた星） */
  .star-rating::after {
    content: "★★★★★";
    position: absolute;
    top: 0;
    left: 0;
    color: #ff69ed;
    overflow: hidden;
    width: var(--star-fill-width, 0%);
    white-space: nowrap;
  }
  
  /* 星評価フィールドを別行にする */
  .views-field-field-field-score-float {
    display: block !important; /* 星を独立した行に */
    width: 100%; /* 幅を100%に */
    margin-bottom: 5px; /* タイトルとの間に少し余白 */
  }
  
  /* タイトルフィールドも別行に */
  .views-field-title {
    display: block !important; /* タイトルを独立した行に */
    width: 100%;
  }