.subcategory_list{
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}
.subcategory_list .box{
    width: calc((100% - 1em * 3) / 4);
}
.subcategory_list .link{
    display: flex;
    gap: 13px;
    background: #edebdd;
    border-radius: 7px;
    padding: 20px 15px;
    height: 100%;
    align-items: center;
    transition: background .4s, color .4s;
}
.subcategory_list .image{
    aspect-ratio: 4/3;
    width: 80px;
}
.subcategory_list .img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.subcategory_list .text{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    font-weight: bold;
    line-height: 1.2;
    flex: 1;
}
.subcategory_list .text::after{
    font-family: "Font Awesome 5 free";
    font-weight: 600;
    content: "\f105";
    font-size: 80%;
    color: #9b9b9b;
    transition: color .4s;
}
.subcategory_list .link:hover{
    text-decoration: none;
    background: #f1ebc5;
    color: #bb501b;
}
.subcategory_list .link:hover .text::after{
    color: #bb501b;
}
@media (max-width: 1060px){
    .subcategory_list .box{
        width: calc((100% - 1em * 2) / 3);
    }
}
@media (max-width: 780px){
    .subcategory_list .box{
        width: calc((100% - 1em) / 2);
    }
}
@media (max-width: 550px){
    .subcategory_list .link{
        font-size: 90%;
    }
}