@charset "utf-8";

/* **************
works-common PC
************** */
.spBr {
    display: none;
}

@media screen and (max-width: 768px){
    .spBr {
        display: block;
    }
}/* TOP-common sp */


/* **************
works-MV PC
************** */
.works__mainVisual {
    display: flex;
    height: 600px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background-image: url(../images/mainVisual__sliderItem--3.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: darken;
    overflow: hidden;
    position: relative;
}
.mvTitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    color: var(--base_white, #FFF);
    text-shadow: -1.5px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 4.4rem;
    font-weight: 700;
    letter-spacing:  0.1em;
    position: relative;
}
.mvTitle::after {
    position: absolute;
    content: "";
    top: 61%;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #fff;
}
.mvTitle span {
    font-family: "Hiragino Kaku Gothic StdN";
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
}
.mvTxt {
    padding: 5px 20px;
    text-align: center;
    color: #fff;
    text-shadow: -1.5px 1px 3px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px){
    .works__mainVisual {
        height:  280px;
        gap: 30px;
        position: relative;
    }
    .mvTitle {
        font-size: 2.4rem;
    }
    .mvTitle span {
        font-size: 1.6rem;
    }
    .mvTxt {
        font-size: 1.4rem;
    }
}/* works-mv sp */


/* **************
works-category PC
************** */
.works__category {
    display: flex;
    gap: 15px;
    justify-content: center;
    text-align: center;
}
.category__btn {
    display: block;
    width: 15%;
    padding: 10px 0;
    background-color: #1D3760;
    border: 2px solid #1D3760;
    text-align: center;
    font-size: 1.8rem;
    color: #fff;
}
.category__btn--all {
    background-color: #fff;
    border: 2px solid #1D3760;
    color: var(--font_black, #27210C);
}
.works__list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}
.works__item {
    width: 48%;
    margin-bottom: 60px;
}
.works__item:nth-child(odd) {
    margin-right: 4%;
}
.works__item img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.info__date {
    font-weight: 700;
}

@media screen and (max-width: 768px){
    .works__category {
        gap: 5px;
    }
    .category__btn {
        width: 30%;
        padding: 10px 0;
        font-size: 1.2rem;
    }
    .works__list {
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
    }
    .works__item {
        width: 48%;
        margin-bottom: 30px;
    }
    .works__item:nth-child(odd) {
        margin-right: 4%;
    }
}/* works-category sp */






