@charset "utf-8";
/* CSS Document */

.category-list ol{
    padding: 0;
    list-style: none;
    counter-reset: my-counter;
}
.category-list ol li{
    position: relative;
    float: left;
    list-style: none;
}
.category-list ol span,
.category-list ol a{
    float: left;
    padding: 0;
    color: #202226;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
}
.category-list ol li:before{
    display: block;
    float: left;
    margin-right: 5px;
    margin-left: -1em;
    content: counter(my-counter)".";
    counter-increment: my-counter;
    line-height: 1.31;
}
.category-list ol li:after{
    float: left;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    margin-left: 10px;
    content: "/";
    color: rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 1025px){
    .category-list ol a:hover{
        text-decoration: underline;
    }
}
.photo-list .box .img{
    position: relative;
    width: 100%;
    height: 174px;
    text-align: center;
    background-color: #fff;
}

@media only screen and (max-width: 1279px){
    .photo-list .box .img{
        height: 229px;
    }
}

@media only screen and (max-width: 767px){
    .photo-list .box .img{
        height: 150px;
    }
}
.photo-list .box .img img{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}
.category-box{
    width: 174px;
    height: 174px;
    text-align: center;
    background-color: #202226;
}
.category-box .box{
    position: relative;
    top: 50%;
    margin-bottom: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
.category-box .number{
    color: rgba(255, 255, 255, 0.5);
    font-family: Comfortaa;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
}
.category-box .category-name{
    margin: 5px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
