@charset "UTF-8";
.title-img {
    background-image: url(../images/works/works_fv.jpg);
}
/*--------------------------------
	gallery 
--------------------------------*/
.gallery_text-area {
    display: block;
    text-align: center;
    margin-bottom: 55px;
}
.gallery_text-area p {
    font-size: 2.0rem;
}
.selected-works {
    width: 90vw;
    margin: 0 auto 155px;
    display: flex;
    justify-content: space-between;
    column-gap: 2vw;
}
.selected-works a:hover {
    opacity: 1;
}
.imgbox {
    width: 28.6666667vw;
    height: 36.7680556vw;
    overflow: hidden;
    margin-bottom: 4px;
    position: relative;
}
.imgbox img {
    transition-duration: 0.5s;
}
.dark-cover {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    transition-duration: 0.7s;
    z-index: -1;
}
.imgbox img:hover {
    transform: scale(1.04);
    transition-duration: 0.7s;
    opacity: 0.8;
}
.imgbox img:hover + .dark-cover {
    opacity: 1;
}
.works-gallery img {
    flex: 1;
}
.works_caption {
    text-align: center;
}
.work_context {
    font-size: 1.2rem;
}
@media(max-width : 1139px) {
    .imgbox {
        margin-bottom: 8px;
    }
    .work_title {
        line-height: 1.2;
    }
}
@media(max-width : 1099px) {
    .gallery_text-area p {
        font-size: 1.6rem;
    }
    .gallery_text-area small {
        font-size: 1.2rem;
    }
    .work_title {
        line-height: 1.2;
    }
}
@media(max-width : 959px) {
    .gallery_text-area p {
        font-size: 1.5rem;
    }
    .selected-works {
        margin: 0 auto 90px;
    }
    .work_title {
        font-size: 1.4rem;
    }
}
@media(max-width : 767px) {
    .gallery {
        margin: 0 16px;
    }
    .gallery_text-area {
        margin-bottom: 45px;
    }
    .gallery_text-area p {
        line-height: 1.8;
    }
    .selected-works {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 auto 45px;
    }
    .works-gallery {
        width: 335px;
        margin-bottom: 45px;
    }
    .imgbox {
        width: 335px;
        height: 429.67px;
        margin-bottom: 6px;
    }
}
@media(max-width :375px) {
    .works-gallery {
        width: calc(100vw / (375 / 335));
    }
    .imgbox {
        width: calc(100vw / (375 / 335));
        height: calc(100vw / (375 / 429.67));
    }
}

/*--------------------------------
	career
--------------------------------*/
.career {
    width: 920px;
    margin: 0 auto 210px;
}
.career h2 {
    font-size: 3.0rem;
}
.career_table {
    width: 920px;
    margin: 0 auto;
    table-layout: fixed;
    margin-bottom: 50px;
    font-family: 'Noto Serif JP', serif;
}
table th, table td {
    border: solid 1px #D9D9D9 ;
    padding: 0 10px;
}
table th {
    background-color: #5D6A7C;
    color: #fff;
}
.year {
    width: 105px;
}
.place {
    width: 220px;
}
.place_exhibition {
    width: 300px;
}
@media(max-width : 959px) {
    .career {
        width: 708px;
    }
    .career h2 {
        font-size: 2.0rem;
    }
    .career_table {
        width: 708px;
        line-height: 1.4;
    }
    table th, table td {
        padding: 3px 10px;
    }
    .place {
        width: 196px;
    }
    .place_exhibition {
        width: 209px;
    }
}
@media(max-width : 767px) {
    .career {
        width: 89.333vw;
        margin: 0 auto 80px;
    }
    .table-wrap {
        overflow-x: scroll;
        margin-bottom: 38px;
    }
    .career_table {
        width: 708px;
        margin-bottom: 0;
    }

}
/*--------------------------------
	footer
--------------------------------*/
.footer-image {
    background-image: url(../images/works/works_end.jpg);
}