@charset "utf-8";
/*------------------------

カテゴリー一覧

------------------------*/

.category-list .col-4{
    margin-bottom: 25px;
}

@media only screen and (max-width: 1023px){
    .row.gutters.category-list{
        display: flex;
        flex-direction: row;

        flex-wrap: wrap;
    }
    .row.gutters.category-list > .col-4{
        width: 50%;
    }
}

@media only screen and (max-width: 767px){
    .row.gutters.category-list > .col-4{
        width: 100%;
    }
}
.category-list a{
    display: block;
    color: #202226;
    font-size: 14px;
    font-weight: 700;
}
.category-list .box{
    position: relative;
    background-color: #d1d5da;
}

@media only screen and (min-width: 1025px){
    .category-list a:hover .box{
        background-color: #babec3;
    }
}
.category-list .number{
    position: absolute;
    top: -20px;
    left: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-family: Comfortaa;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}
.category-list .text{
    display: table;
    float: left;
    width: 50%;
    height: 156px;
    text-align: center;
}

@media only screen and (max-width: 1279px){
    .category-list .text{
        height: 131px;
    }
}
.category-list .name{
    display: table-cell;
    vertical-align: middle;
}
.category-list .img{
    float: right;
    width: 50%;
    text-align: right;
}
.category-list ul{
    margin: 0;
}
.category-list ul li{
    float: left;
    list-style: none;
}
.category-list ul span,
.category-list ul a{
    display: inline-block;
    padding: 0;
    color: #202226;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
}

@media only screen and (min-width: 1025px){
    .category-list ul a:hover{
        text-decoration: underline;
    }
}
.category-list ul li:after{
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
    content: "/";
    color: rgba(0, 0, 0, 0.3);
}
.category-list ul li:last-child:after{
    display: none;
}
