@media(min-width: 600px){
    .rank_wrapper{
        padding: 100px 0;
    }
    
    .content_title{
        width: 90%;
        margin: 0 auto;
    }
    
    
    .ranking_flex_wrapper{
        display: flex;
        padding: 50px 0;
        height: 450px;
        overflow: scroll;
        -ms-overflow-style: none;  /* これを追加 */
    
    }
    .ranking_flex_wrapper::-webkit-scrollbar {
        display:none;
    }
    .ranking_item{
        width: 26vw;
        margin: 0 30px;
        min-width: 260px;
        flex-shrink: 0;
    }
    
    .ranking_item div{
        position: relative;
    }
    .ranking_item img{
        position: relative;
        z-index: 100;
        width: 100%;
        height: 19vw;
        min-height: 190px;
        border-radius: 10px;
    }
    .ranking_item_top{
        height: 19vw;
        min-height: 190px;
    }
    
    .ranking_item_text{
        padding-left: 50px;
        display: flex;
        height: 200px;
    }

    
    .ranking_num{
        position: relative;
        font-size: 100px;
        top: -120px;
        left: -30px;
        /* z-index: 200; */
        font-weight: bold;
        -webkit-text-stroke: 5px #e9c964;
        color: rgba(0, 0, 0, 0);
        /* background-color: blue; */
    }
    
    .ranking_item h2{
        margin: 20px 0 10px 0;
    }
    .ranking_item_product{
        font-size: 20px;
        font-weight: bold;
        margin: 0;
    }
}