/* セクションタイトル */
.works-section-title {
    position: relative;
    font-size: 30px;
    line-height: normal;
    text-align: center;
    margin-bottom: 80px;
}

.works-section-title::after {
    position: absolute;
    z-index: -1;
    top: calc(100% - 15px);
    left: 50%;
    transform: translate(-50%, -50%);
    content: url(../../img/works/works-h3-bg.png);
}

@media screen and (max-width:570px) {
    .works-section-title{
        margin-bottom: 60px;
    }
}

/* セクションごとの余白 */
.works-section-space {
    margin-bottom: 120px;
}


/* カードアイテム共通 */
.works-item {
    text-align: center;
}

.works-item-img {
    position: relative;
    margin-bottom: 10px;
}

.works-item-img::before {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    content: "くわしく見る";
    color: #fff;
    font-size: 20px;
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.works-item-img::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background: rgba(232, 68, 68, 0.40);
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.works-item a:hover .works-item-img::before {
    opacity: 1;
}

.works-item a:hover .works-item-img::after {
    opacity: 1;
}

.works-Web-item-title {
    margin-top: 10px;
}


/* セクション Web */
.web-works-section-title {
    font-family: Raleway;
    font-size: 30px;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
}

.web-works-item-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 4.03%;
    row-gap: 40px;
    justify-items: center
}

.web-works-item {
    max-width: 380px;
}

@media screen and (max-width:950px) {
    .web-works-item-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width:570px) {
    .web-works-item-wrap {
        grid-template-columns: 1fr;
    }
}


/* セクション バナー */
.banner-works-item-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 4.03%;
    row-gap: 40px;
            justify-items: center
}

.banner-works-item {
    max-width: 280px;
}

@media screen and (max-width:950px) {
    .banner-works-item-wrap {
            grid-template-columns: 1fr 1fr 1fr;
        }
}

@media screen and (max-width:768px) {
    .banner-works-item-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width:570px) {
    .banner-works-item-wrap {
        grid-template-columns: 1fr;
    }
}

/* セクション グラフィック */
.graphic-works-item-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5.65%;
    row-gap: 40px;
            justify-items: center
}

.graphic-works-item {
    max-width: 365px;
}

@media screen and (max-width:950px) {
    .graphic-works-item-wrap{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width:570px) {
    .graphic-works-item-wrap {
        grid-template-columns:  1fr;
    }
}