@charset "UTF-8";
/* CSS Document */

/* ---------- COMMON ---------- */
h1{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.item_list{
    display: flex;
    flex-wrap: wrap;
    line-height: 1em;
}

.item_list li{
    list-style: none;
}

.item_list li img{
    object-fit: contain;
    margin: 0 !important;
}

/* pager */
.pager ol{
    text-align: center;
}

.pager ol li{
    display: inline-block;
    list-style: none;
    margin-left: 0.5em;
    margin-right: 0.5em;
}

.pager ol li a{
    display: block;
    font-weight: 700;
    width: 1em;
    height: 1.4em;
}

.pager ol li a:link,
.pager ol li a:visited{
    color: #323232;
}

.current{
    color: #777777 !important;
    font-weight: 700;
}

.prev a,
.next a{
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: -9999px;
}

.prev a{
    background-image: url(../images/prev_li.svg);
}

.next a{
    background-image: url(../images/next_li.svg);
}

/* ---------- Mobile / Tablet ---------- */
@media(max-width:1022px){
    .item_list{
        justify-content: space-between;
    }

    .item_list li a span{
        display: none;
    }
}

/* ---------- Mobile ---------- */
@media(max-width:737px) {
    article{
        padding-top: 55px;
        padding-left:16px;
        padding-right: 16px;
    }

    h1{
        font-size: 1.14em;
        margin-bottom: 15px;
    }

    .item_list{
        margin-bottom: 30px;
    }

    .item_list li{
        margin-bottom: 10px;
        min-width: 240px;
        width: 49%;
    }

    @media (max-width: 513px) {
        .item_list li{
            margin-left: auto;
            margin-right: auto;
        }
    }
}

/* ---------- Portlate ---------- */
@media(max-width:567px) {}

/* ---------- Tablet / PC ---------- */
@media (min-width: 738px) {}

/* ---------- Tablet ---------- */
@media(max-width:1022px) and (min-width: 737px){
    article{
        padding-top: 90px;
        padding-left:16px;
        padding-right: 16px;
    }

    h1{
        font-size: 1.5em;
        margin-bottom: 30px;
    }

    .item_list{
        margin-bottom: 45px;
        max-width: 982px;
    }

    .item_list li{
        margin-bottom: 10px;
        height: auto;
    }

    .item_list li img{
        overflow: visible;
    }

    .item_list li:not(.fav_item){
        width: 32%;
    }

    .fav_item{
        width: 49%;
    }

}

/* ---------- PC ---------- */
@media(min-width:1023px){
    article{
        margin-left: auto;
        margin-right: auto;
        padding-top:120px;
        max-width: 1920px;
        @media(max-width:1919px){
            padding-left:20px;
            padding-right: 20px;
        }
    }

    h1{
        font-size: 2.25em;
        margin-bottom: 40px;
    }

    .item_list{
        gap: 30px;
        margin-bottom: 65px;
    }

    .item_list li{
        position: relative;
        box-sizing: border-box;
    }

    .item_list li:not(.is-recommend){
        width: calc((100% - 60px) / 3);
    }

    .is-recommend{
        width: calc((100% - 30px) / 2);
    }

    .item_list li a figure{
        overflow:hidden;
    }

    .item_list li a figure img{
        margin-bottom: -7px;
        transition:1s all;
    }

    .item_list li a:hover figure img{
        transform:scale(1.04,1.04);
        transition:1s all;
    }

    .item_list li a span{
        color: #ffffff;
        display: none;
        font-size: 0.83vw;
        height: 100%;
        padding-top: 25%;
        position: absolute;
        text-align: center;
        width: 100%;
        z-index: 100;
    }

    .item_list li a:hover span{
        background: rgba( 0, 0, 0, 0.5);
        display: block;
    }

    .pager{
        margin-bottom: 60px;
    }
}