@charset "UTF-8";

/* 20260804 施工事例について */
.scn-reform-case-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
.scn-reform-case-item{
    width: calc(50% - 25px);
}
.scn-reform-case-item-title{
    text-align: center;
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.scn-reform-case-photos{
    display: flex;
    gap: 20px;
}
.scn-reform-case-photo{
    width: calc(50% - 10px);
}
.scn-reform-case-photo-img{
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.scn-reform-case-photo-img.portrait{
    aspect-ratio: 3 / 4;
}
.scn-reform-case-photo-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.scn-reform-case-photo-label{
    text-align: center;
    font-size: 1.3rem;
    margin-top: 10px;
}
@media screen and (max-width: 768px){
    .scn-reform-case-list{
        gap: 40px;
    }
    .scn-reform-case-item{
        width: 100%;
    }
}