@charset "UTF-8";

/*============================
	works 共通パーツ
============================*/
.page__mv img{
    height: 500px;
}

@media screen and (max-width:1024px) {}

@media screen and (max-width:768px) {
    .page__mv img{
        height: 300px;
    }
}

@media screen and (max-width:599px) {
    .page__mv img{
        height: 160px;
    }
}

/*============================
	works contents
============================*/
.contents {
    padding: 120px 0 60px;
}
.contents__item{
    width: 32%;
    margin-bottom: 70px;
}
.contents__item:last-child{
    margin: 0 auto 0 2%;
}
.contents__img{
    margin-bottom: 20px;
    transition: .5s;
}
.contents__img a:hover{
    opacity: 1;
}
.contents__img:hover{
    filter: brightness(0.6);
}
.contents__ttl{
    font-size: 1.5rem;
    letter-spacing: .075em;
}

@media screen and (max-width:768px) {}

@media screen and (max-width:599px) {
    .contents{
        padding: 60px 0;
    }
    .contents__flex{
        display: flex
    }
    .contents__item{
        width: 48%;
        margin-bottom: 35px;
    }
    .contents__img{
        margin-bottom: 10px;
    }
    .contents__ttl{
        font-size: 1.4rem;
        line-height: 1.6;
    }
}

/*============================
	works-detailページ contents-detail
============================*/
.contents-detail {
    padding: 120px 0 230px;
}
.detail__img{
    margin-bottom: 30px;
}
.detail__txt{
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: .075em;
    margin-bottom: 70px;
}
@media screen and (max-width:768px) {}

@media screen and (max-width:599px) {
    .contents-detail{
        padding: 60px 0;
    }
    .detail__img{
        margin-bottom: 15px;
    }
    .detail__txt{
        font-size: 1.4rem;
        margin-bottom: 35px;
    }
}