@charset "UTF-8";
.top_slide li img{
    width: 100%;
}
.top_slide .slick-slide{
    margin: 0 5px;   
}
/* 商品タイプから探す */
.type_list{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.type_list li{
    width: calc(25% - 9px);
}
.type_list li a{
    width: 100%;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.type_list .inner{
    display: flex;
    align-items: center;
    gap: 10px;
}
.type_list_img{
    width: 36px;
}
.type_list_name{
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}
@media only screen and (max-width: 768px) {
    .type_list li{
        width: calc(33.3% - 8px);
    }
    .type_list li a{
        padding: 10px 0;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
    .type_list_img{
        width: 28px;
    }
    .icon_type_arrow{
        display: none;
    }
    .type_list .inner{
        gap: 8px;
        justify-content: center;
    }
    .type_list_name{
        font-size: 13px;
    }
}
@media only screen and (max-width: 480px) {
    .type_list li{
        width: calc(50% - 6px);
    }
}
