@charset 'UTF-8';
/* ----------------------------------------------
　PC設定
------------------------------------------------*/
.p-gallery
{
    max-width: 1120px;
    margin: 0 auto var(--m90);
}
.p-gallery__title
{
    font-size: var(--fs22_32);
    font-weight: 600;

    position: relative;

    margin-bottom: var(--m65);
    padding-bottom: .75em;

    text-align: center;

    color: var(--black);
    border-bottom: 1px solid var(--black);
}
.p-gallery__title::after
{
    position: absolute;
    bottom: 5px;
    left: 0;

    display: inline-block;

    width: 100%;
    height: 3px;

    content: '';

    background-color: var(--black);
}
.p-gallery__list
{
    display: flex;

    flex-wrap: wrap;
    grid-gap: var(--fs38_90) 7%;
}
.p-gallery__box
{
    overflow: hidden;

    width: 28.66%;

    aspect-ratio: 1/1;
}
.p-gallery__box img
{
    height: 100%;

    transition: all .5s;

    -o-object-fit: cover;

       object-fit: cover;
}

@media all and (max-width: 768px)
{
    .p-gallery__box
    {
        width: 46.5%;
    }
}
