    /* 結果アイテムを横に並べるためのスタイル */

    #results_child,
    #results_parents2,
    #results_combined,
    #results_tyrant_tool {
        display: flex;
        margin: auto;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
        /* 中央揃え */
    }

    .result-item_child,
    .result-item_parents2,
    .result-item_combined {
        width: calc(18% - 10px);
        /* 20%幅で、間隔を引く */
        text-align: center;
        /* 中央 */
        border: 1px solid #ccc;
        /* ランク表示のための境界線 */
        padding: 10px;
        /* アイテム内の余白 */
    }

    .rank {
        font-weight: bold;
        /* ランクの文字を太字に */
        color: #007bff;
        /* ランクの文字色を青に */
    }
    
    