
/*====================================================
////id |  archive
====================================================*/
.works-item-wrapper {
    display: grid;
        grid-gap: min(3vw, 30px);
}
.works-item .coverImg {
    padding-top: 100%;
}
.works-item-title {
    font-size: min(1.5vw, 1.5rem);
    font-weight: 500;
    line-height: 1.6;
    margin-top: .5em;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 960px) {
    .works-item-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 769px) {
    .works-item-title {
        display: none;
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 960px) {
    .works-item-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (hover: hover) {}

/*====================================================
////id |  single
====================================================*/
.works-img img {
    max-height: min(130vw, 800px);
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
    .works-text {
        display: flex;
            justify-content: center;
    }
}

@media (hover: hover) {}

/*====================================================
////id |  other_works
====================================================*/
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 960px) {
    #other_works .works-item-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
}

@media (hover: hover) {}

/*====================================================
////id |  xxx
====================================================*/

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

@media (hover: hover) {}
