/* --------------------------------
施工実績
-------------------------------- */

#gallery .gallery_list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap:125px;
    column-gap: 15%;
}

#gallery .gallery_item p{
    font-size: 2.5rem;
    margin-top: 35px;
    color: #934C08;
}

#gallery .gallery_item img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 786px) {
    #gallery .gallery_list {
        grid-template-columns: 1fr;
        row-gap: 50px;
    }
  }