@charset "UTF-8";
/*==============
    gallery
===============*/
h3{
    font-family: var(--en);
    font-size: clamp(3.2rem, 7.6vw, 5.6rem);
    letter-spacing: 0.05em;
    border-bottom: none;
    line-height: 1;
    color: var(--black);
    font-weight: initial;
}
#gallery ul li{
    position: relative;
    margin-bottom: 40px;
}
#gallery ul li .inner{
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 1;
}
#gallery ul li img{
    min-height: 250px;
    object-fit: cover;
}
@media screen and (max-width: 768px){
    h3 {
        margin-bottom: 0;
    }
}