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

/* ---------- COMMON ---------- */
article h1{
    display: none;
}

.slide{
    position: relative;
}

.slide div{
    background-size: cover;
    height: 50vw;
}

.slide figure{
    color: #ffffff;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 400;
}

.introduction{
    line-height: 1.75em;
    text-align: center;
}

/* category list */
.category_list{
    display: flex;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    flex-wrap: wrap;
}

.category_list li{
    list-style: none;
    position: relative;
}

.category_list li a{
    color: #ffffff;
    display: block;
    
}

.category_list li a figure{
    overflow:hidden;
}

.category_list li a figure img{
    transition:1s all;
    overflow:hidden;
}

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

.category_list li a span{
    background-color: #000000;
    font-weight: 700;
    display: block;
    /*position:absolute;*/
}

.category_list li a:hover span{
    background-color:#666666;
}

/* ---------- Mobile / Tablet ---------- */
@media(max-width:1022px){}

/* ---------- Mobile ---------- */
@media(max-width:737px) {
/* slide */
    .slide{
        margin-bottom: 20px;
        padding-top: 44px;
    }

    .slide figure{
        width: 50%;
    }

    .introduction{
        margin-bottom: 20px;
        padding-left:16px;
        padding-right: 16px;
    }

/* category list */
    .category_list{
        padding-left: 16px;
        padding-right: 16px;
        justify-content: space-between;
    }

    .category_list li{
        margin-bottom: 16px;
        min-width: 240px;
        width: 49%;
    }

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

    .category_list li a span{
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 5px;
        margin-top: -6px;
        width: 100%;
    }
}

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

/* ---------- Tablet / PC ---------- */
@media (min-width: 738px) {
    .introduction{
        margin-left: auto;
        margin-right: auto;
    }
}

/* ---------- Tablet ---------- */
@media(max-width:1022px) and (min-width: 737px){
/* slide */
    .slide{
        margin-bottom: 30px;
    }

    .slide figure{
        width: 50%;
    }

    .introduction{
        font-size: 1.1em;
        margin-bottom: 30px;
    }

/* category list */
    .category_list{
        max-width: 982px;
        padding-left: 20px;
        padding-right: 20px;
        justify-content: space-between;
    }

    .category_list li{
        margin-bottom: 2%;
        width: 49%;
        overflow: hidden;
    }

    .category_list li a figure{
        display: block;
        width: 100%;
    }

    .category_list li img{
        height: auto;
        display: block;
    }

    .category_list li a span{
        font-size: 1.31em;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
        /*margin-top: -6px;*/
        width: 100%;
    }
}

/* ---------- PC ---------- */
@media(min-width:1023px){
/* slide */
    .slide{
        margin-bottom: 60px;
    }

    .slide figure{
        width: 830px;
    }

    .introduction{
        font-size: 1.625em;
        line-height: 2em;
        margin-bottom: 60px;
        padding-top:10px;
    }

/* category list */
    .category_list{
        line-height: 1em;
        margin-left: auto;
        margin-right: auto;
        max-width: 1920px;
        gap: 30px;
        @media(max-width:1919px){
            padding-left:20px;
            padding-right: 20px;
        }
    }

    .category_list li{
        width: calc((100% - 60px) / 3);
        box-sizing: border-box;
        overflow: hidden;
        @media(min-width: 1921px){}
    }

    .category_list li a figure{
        display: block;
        width: 100%;
        @media(min-width: 1921px){
            height: 309px;
        }
    }

    .category_list li img{
        width: 100%;
        height: auto;
        display: block;
    }

    .category_list li a span{
        display: block;
        padding-left: 20px;
        width: 100%;
        @media(max-width:1920px) and (min-width: 1023px){
            font-size: 1.66vw;
            padding-top: 1.0416vw;
            padding-bottom: 1.0416vw;
        }
        @media(min-width: 1921px){
            font-size: 2em;
            padding-top:20px;
            padding-bottom:20px;
        }
    }
}