.sectionGallery{
    position: relative;
}

.sectionGallery .sectionBody{
    height: 100%;
}

.sectionTitleGallery{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    letter-spacing: 1.0rem;
    line-height: 10rem;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
    -webkit-text-stroke: 0.2rem #CFDC28;
}

.gallaeryImgList{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    z-index: -1;
}

.gallaeryImgItem{
    width: 25vw;
    height: 25vh;
}

.gallaeryImg{
    filter: contrast(40%) brightness(80%) saturate(140%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================================================

    SP対応

============================================================ */
@media screen and (max-width: 1279px){
/* @media screen and (max-width: 768px){ */
    .sectionGallery{
        height: 100vh;
    }

    .sectionTitleGallery{
        font-size: 2.5rem;
        letter-spacing: 0.5rem;
        line-height: 5rem;
        -webkit-text-stroke: 0.1rem #CFDC28;
    }

    .gallaeryImgItem{
        width: 50vw;
        height: 12.5vh;
    }
}