    /* 統計情報ボックスのスタイル */
    .stats-box {
        display: flex;
        border-radius: 8px;
        margin: 20px 0;
        list-style: none;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .stats-box li {
        flex: 1;
        text-align: center;
        padding: 10px;
        position: relative;
        font-size: 14px;
        color: #333333;
        line-height: 1.8;
        list-style: none !important;
    }

    /* 最後のli以外に区切り線を追加 */
    .stats-box li:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background-color: #e0e0e0;
    }

    .stats-box li br {
        display: block;
        margin: 8px 0;
    }

    /* 数字部分を大きく青色で表示 */
    .stats-box li .stats-number {
        display: block;
        font-size: 24px;
        font-weight: bold;
        color: #6bb5d3;
        line-height: 1.2;
    }


    .compare-sort-wrapper {
        text-align: right;
    }

    /* 評価目安バーのスタイル */
    .evaluation-guide-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        width: 100%;
        height: 60px;
        margin: 30px 0;
        padding: 0 20px;
        background: linear-gradient(to right, #ff9930 0%, #ff2f2f 100%);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .evaluation-guide-bar__left,
    .evaluation-guide-bar__right {
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 2;
    }

    .evaluation-guide-bar__left {
        flex-direction: row;
    }

    .evaluation-guide-bar__right {
        flex-direction: row-reverse;
    }

    .evaluation-guide-bar__label {
        font-size: 16px;
        font-weight: bold;
        color: #ffffff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .evaluation-guide-bar__left .evaluation-guide-bar__label {
        color: #4a90e2;
        background-color: #ffffff;
        padding: 4px 12px;
        border-radius: 4px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    .evaluation-guide-bar__right .evaluation-guide-bar__label {
        color: #e60012;
        background-color: #ffffff;
        padding: 4px 12px;
        border-radius: 4px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    .evaluation-guide-bar__arrow {
        width: 0;
        height: 0;
        border-style: solid;
    }

    .evaluation-guide-bar__arrow--left {
        border-width: 8px 12px 8px 0;
        border-color: transparent #ffffff transparent transparent;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    }

    .evaluation-guide-bar__arrow--right {
        border-width: 8px 0 8px 12px;
        border-color: transparent transparent transparent #ffffff;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    }

    .evaluation-guide-bar__center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
    }

    .evaluation-guide-bar__box {
        background: linear-gradient(to right, #ff9930 0%, #ff2f2f 100%);
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: bold;
        white-space: nowrap;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* レスポンシブ対応 */
    @media (max-width: 768px) {
        .evaluation-guide-bar {
            height: 50px;
            padding: 0 10px;
        }

        .evaluation-guide-bar__label {
            font-size: 14px;
            padding: 3px 8px;
        }

        .evaluation-guide-bar__box {
            font-size: 14px;
            padding: 8px 16px;
        }

        .evaluation-guide-bar__arrow--left,
        .evaluation-guide-bar__arrow--right {
            border-width: 6px 10px 6px 0;
        }

        .evaluation-guide-bar__arrow--right {
            border-width: 6px 0 6px 10px;
        }
    }


/* ========================================
   タブ切り替え用CSS
   ======================================== */

.rank-item__tabs {
    display: flex;
    gap: 0;
    margin: 20px 0;
    border-bottom: none;
}

.rank-tab-btn {
    padding: 12px 24px;
    background: #d9d9d9;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #696969;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    text-align: center;
}

.rank-tab-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.rank-tab-btn:last-child {
    border-radius: 0 8px 8px 0;
}

.rank-tab-btn:hover {
    background: #c0c0c0;
}

.rank-tab-btn.active {
    background: #ff4c29;
    color: #ffffff;
}

.rank-tab-content {
    display: none;
    padding: 20px 0;
    animation: fadeIn 0.3s ease-in;
}

.rank-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .rank-tab-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .rank-tab-btn {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* ========================================
   評価グラフ用CSS
   ======================================== */

.rating-graph-container {
    padding: 20px;
    margin: 20px 0;
    font-family: 'Noto Sans JP', 'M PLUS 1p', sans-serif;
}

/* ヘッダー部分（合計点と星） */
.rating-graph-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffcc80;
}

.rating-graph-total {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.rating-graph-stars {
    display: flex;
    align-items: center;
}

.rating-graph-stars img {
    display: block;
    height: auto;
}

.rating-graph-score {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.rating-graph-score .score-number {
    font-size: 48px;
    font-weight: 900;
    color: #ff6b00;
    line-height: 1;
    font-family: 'M PLUS 1p', sans-serif;
}

.rating-graph-score .score-label {
    font-size: 20px;
    font-weight: bold;
    color: #ff6b00;
}

.rating-graph-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-top: 8px;
    font-weight: bold;
}

/* グラフ本体 */
.rating-graph-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.rating-graph-item {
    display: flex;
    align-items: center;
}

.rating-graph-bar-wrapper {
    flex: 1;
    position: relative;
}

.rating-graph-bar {
    width: 100%;
    height: 32px;
    background: #e3e0e0;
    border-radius: 4px;
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
}

.rating-graph-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #ff2f2f;
    border-radius: 4px;
    transition: width 0.6s ease-out;
    z-index: 1;
}

.rating-graph-bar-label {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.rating-graph-bar-score {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    min-width: 30px;
    text-align: right;
}

/* バーのアニメーション効果 */
.rating-graph-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* フッター部分 */
.rating-graph-footer {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #ffcc80;
}

.rating-graph-note {
    font-size: 12px;
    color: #666;
    margin: 5px 0;
}

/* ランキングページ専用のスタイル調整 */
.rankre-row .rating-graph-container {
    margin: 10px 0;
}

/* rank-item__info のレイアウト調整 */
.rank-item__info {
    display: flex;
    gap: 2%;
    border-bottom: 2px solid lightgray;
    padding-bottom: 1em;
}

/* 左側: 画像 + 評価グラフ */
.rank-item__info-left {
    display: flex;
    gap: 12px;
}

.rank-item__info-left .rating-graph-container {
    margin: 0;
    padding: 12px;
    width: 100%;
}

/* 評価グラフのコンパクト表示 */
.rank-item__info-left .rating-graph-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
}

.rank-item__info-left .rating-graph-total {
    gap: 8px;
    margin-bottom: 6px;
}

.rank-item__info-left .rating-graph-stars img {
    width: 100px;
    height: auto;
}

.rank-item__info-left .rating-graph-score .score-number {
    font-size: 36px;
}

.rank-item__info-left .rating-graph-score .score-label {
    font-size: 16px;
}

.rank-item__info-left .rating-graph-body {
    gap: 6px;
}

.rank-item__info-left .rating-graph-bar {
    height: 28px;
    padding: 0 10px;
}

.rank-item__info-left .rating-graph-bar-label {
    font-size: 12px;
}

.rank-item__info-left .rating-graph-bar-score {
    font-size: 16px;
}

.rank-item__info-left .rating-graph-footer {
    padding-top: 8px;
}

.rank-item__info-left .rating-graph-note {
    font-size: 11px;
}

.rank-item__star {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    padding: 1% 2%;
    border-radius: 0 12px 12px 0;
    border: none;
}

/* 評価グラフのレスポンシブ対応 */
@media screen and (max-width: 768px) {
    .rating-graph-container {
        padding: 15px;
    }

    .rating-graph-score .score-number {
        font-size: 36px;
    }

    .rating-graph-score .score-label {
        font-size: 16px;
    }

    .rating-graph-stars img {
        width: 120px;
        height: auto;
    }

    .rating-graph-subtitle {
        font-size: 12px;
    }

    .rating-graph-bar {
        height: 28px;
        padding: 0 10px;
    }

    .rating-graph-bar-label {
        font-size: 12px;
    }

    .rating-graph-bar-score {
        font-size: 16px;
    }

    /* rank-item__info のレスポンシブ対応 */
    .rank-item__info {
        flex-direction: column;
        gap: 2vw;
    }

    .rank-item__info-left {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .rank-item__infotext {
        border-bottom: 2px solid lightgray;
        padding-bottom: 1em;
    }

    .rank-item__info-left .rating-graph-container {
        padding: 10px;
    }

    .rank-item__info-left .rating-graph-stars img {
        width: 80px;
    }

    .rank-item__info-left .rating-graph-score .score-number {
        font-size: 28px;
    }

    .rank-item__info-left .rating-graph-bar {
        height: 24px;
        padding: 0 8px;
    }

    .rank-item__info-left .rating-graph-bar-label {
        font-size: 11px;
    }

    .rank-item__info-left .rating-graph-bar-score {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .rating-graph-bar {
        height: 26px;
        padding: 0 8px;
    }

    .rating-graph-bar-label {
        font-size: 11px;
    }

    .rating-graph-bar-score {
        font-size: 14px;
    }
}


/* ========================================
   累積成績グラフ用CSS
   ======================================== */

.cumulative-graph-container {
    padding: 20px;
    margin: 20px 0;
    background: #efefef;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Noto Sans JP', 'M PLUS 1p', sans-serif;
}

.cumulative-graph-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

/* 凡例 */
.cumulative-graph-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.legend-profit {
    background-color: #ff2f2f;
}

.legend-bet {
    background-color: #4a90e2;
}

.legend-label {
    font-size: 14px;
    color: #666;
}

/* グラフ本体 */
.cumulative-graph-wrapper {
    position: relative;
    padding: 20px 0;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    display: flex;
    align-items: stretch;
    gap: 10px;
}

/* スクロールバーのスタイル（Webkit系ブラウザ） */
.cumulative-graph-wrapper::-webkit-scrollbar {
    height: 8px;
}

.cumulative-graph-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.cumulative-graph-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.cumulative-graph-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Y軸のメモリ */
.cumulative-graph-y-axis {
    position: sticky;
    left: 0;
    flex-shrink: 0;
    width: 60px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 10px;
    background: #efefef;
    z-index: 10;
}

.y-axis-label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 0;
    position: relative;
}

.y-axis-label span {
    font-size: 11px;
    color: #666;
    white-space: nowrap;
    background: #efefef;
    padding: 2px 4px;
    border-radius: 3px;
}

.y-axis-label::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    width: 5px;
    height: 1px;
    background: #ddd;
}

.cumulative-graph-bars {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: 300px;
    gap: 8px;
    padding: 0 10px;
    border-bottom: 2px solid #ddd;
    border-left: 2px solid #ddd;
    min-width: 100%;
    width: max-content;
    position: relative;
    background-image:
        linear-gradient(to top, transparent 0%, transparent calc(20% - 1px), #f0f0f0 calc(20% - 1px), #f0f0f0 20%),
        linear-gradient(to top, transparent 0%, transparent calc(40% - 1px), #f0f0f0 calc(40% - 1px), #f0f0f0 40%),
        linear-gradient(to top, transparent 0%, transparent calc(60% - 1px), #f0f0f0 calc(60% - 1px), #f0f0f0 60%),
        linear-gradient(to top, transparent 0%, transparent calc(80% - 1px), #f0f0f0 calc(80% - 1px), #f0f0f0 80%),
        linear-gradient(to top, transparent 0%, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px), #f0f0f0 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.cumulative-graph-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-width: 50px;
    width: 50px;
}

.bar-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 100%;
    width: 100%;
}

.bar {
    flex: 1;
    min-height: 5px;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.bar-profit {
    background-color: #ff2f2f;
}

.bar-bet {
    background-color: #4a90e2;
}

/* ホバー効果 */
.bar:hover {
    opacity: 0.8;
}

.bar:hover::after {
    content: attr(data-value);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 5px;
    z-index: 10;
}

/* ラベル */
.bar-label {
    margin-top: 10px;
    font-size: 11px;
    color: #666;
    text-align: center;
    transform: rotate(-45deg);
    transform-origin: center center;
    white-space: nowrap;
    min-height: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

/* スクロールヒント */
.cumulative-graph-wrapper::after {
    content: '← スクロールできます →';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #999;
    white-space: nowrap;
    pointer-events: none;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .cumulative-graph-container {
        padding: 15px;
    }

    .cumulative-graph-title {
        font-size: 18px;
    }

    .cumulative-graph-y-axis {
        width: 55px;
        height: 250px;
    }

    .y-axis-label span {
        font-size: 10px;
    }

    .cumulative-graph-bars {
        height: 250px;
        gap: 6px;
    }

    .cumulative-graph-item {
        min-width: 45px;
        width: 45px;
    }

    .bar-label {
        font-size: 10px;
        min-height: 45px;
    }

    .legend-item {
        gap: 5px;
    }

    .legend-label {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .cumulative-graph-y-axis {
        width: 45px;
        height: 200px;
        padding-right: 5px;
    }

    .y-axis-label span {
        font-size: 9px;
        padding: 1px 2px;
    }

    .cumulative-graph-bars {
        height: 200px;
        gap: 4px;
        padding: 0 5px;
    }

    .cumulative-graph-item {
        min-width: 35px;
        width: 35px;
    }

    .bar-wrapper {
        gap: 2px;
    }

    .bar-label {
        font-size: 9px;
        min-height: 40px;
    }

    .cumulative-graph-legend {
        gap: 15px;
    }

    .legend-color {
        width: 15px;
        height: 15px;
    }
}

/* 評価基準・検証方法のSwiper */
.evaluation-swiper-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.evaluationSwiper {
    width: 100%;
    height: auto;
    padding-bottom: 50px;
}

.evaluation-slide-content {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.evaluation-slide-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.evaluation-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.evaluation-slide-text {
    padding: 30px;
    background: #fff;
    flex: 1;
    overflow-y: auto;
    max-height: 300px;
}

.evaluation-slide-text h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff4c29;
}

.evaluation-slide-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.evaluation-slide-text p:last-child {
    margin-bottom: 0;
}

/* カスタムナビゲーション */
.evaluation-swiper-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.evaluation-swiper-prev,
.evaluation-swiper-next {
    background: rgba(255, 255, 255, 0.9);
    color: #ff4c29;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.evaluation-swiper-prev:hover,
.evaluation-swiper-next:hover {
    background: #ff4c29;
    color: #fff;
    transform: scale(1.1);
}

.evaluation-swiper-prev:active,
.evaluation-swiper-next:active {
    transform: scale(0.95);
}

.evaluation-swiper-prev.swiper-button-disabled,
.evaluation-swiper-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.evaluation-swiper-fraction {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    min-width: 60px;
    text-align: center;
}

.evaluation-swiper-fraction .current-slide {
    color: #ff4c29;
    font-size: 24px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .evaluation-slide-image {
        height: 250px;
    }

    .evaluation-slide-text {
        padding: 20px;
        max-height: 250px;
    }

    .evaluation-slide-text h3 {
        font-size: 20px;
    }

    .evaluation-slide-text p {
        font-size: 14px;
    }

    .evaluation-swiper-navigation {
        gap: 20px;
        margin-top: 20px;
    }

    .evaluation-swiper-prev,
    .evaluation-swiper-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .evaluation-swiper-fraction {
        font-size: 18px;
        min-width: 50px;
    }

    .evaluation-swiper-fraction .current-slide {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .evaluation-swiper-container {
        padding: 0 10px;
    }

    .evaluation-slide-image {
        height: 200px;
    }

    .evaluation-slide-text {
        padding: 15px;
        max-height: 200px;
    }

    .evaluation-slide-text h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .evaluation-slide-text p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .evaluation-swiper-navigation {
        gap: 15px;
        margin-top: 15px;
    }

    .evaluation-swiper-prev,
    .evaluation-swiper-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .evaluation-swiper-fraction {
        font-size: 16px;
        min-width: 45px;
    }

    .evaluation-swiper-fraction .current-slide {
        font-size: 18px;
    }
}
