@charset "utf-8";
/* レビュー全体のコンテナ */
.sps-review-rating {
    margin: 5px 0 0;
    display: flex;
    align-items: center;
    line-height: 1;
    justify-content: space-between;
}
/* 星評価のベース（灰色の星） */
.sps-stars-outer {
    display: flex;
    position: relative;
    font-size: 16px;
    letter-spacing: 1px;
    color: #bbb;
    line-height: 1.2;
}

/* スコア分の塗りつぶし（黄色の星） */
.sps-stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #f5c518;
    width: 0;
}

/* スコア数値と件数のテキスト */
.sps-stars-num{
    display:flex;
    align-items: baseline;
    margin: 0 0 0 5px;
}
.sps-review-text {
    font-size: 16px;
    color: #666;
    margin: 0 5px 0 0;
    font-weight: bold;
    line-height: 1;
}

.sps-review-count{
    font-size: 12px;
    color: #999;
    font-weight: 500;
    margin: 0;
}

.box-star{
    display:flex;
    align-items:center;
    flex-wrap: wrap;
}
@media screen and (max-width:580px){
 /* レビュー全体のコンテナ */
.sps-review-rating {
    margin: 0;
    display: block;
    align-items: center;
    line-height: 1.4;
    justify-content: space-between;
    text-align: right;
}
/* スコア数値と件数のテキスト */
.sps-stars-num{
    margin: 0;
    width: 100%;
}
.sps-review-text {
    display:none;
 }
.box-star{
    display: flex;
    /* justify-content:space-between; */
}
}