@charset "utf-8";

.staff-info {
    padding-top: 80px;
    padding-bottom: 80px;
}

.staff-cnt {
    display: flex;
    flex-wrap: wrap;
}

.staff-info__item {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 60px;
    width: calc((100% - 120px) / 3);
    /* min-width: 320px; */
    aspect-ratio: 3 / 4;
    display: flex;
    position: relative;
    transition: all 1s;
}

.staff-info__item:hover {
    transition: all .5s;
}

.staff-info__item.--adviser {
    background: url(../img/introduce/staff__01.webp) no-repeat center;
    background-size: contain;
}

.staff-info__item.--adviser:hover {
    background: url(../img/introduce/staff__01-hover.webp) no-repeat center;
    background-size: contain;
}

.staff-info__item.--planner {
    background: url(../img/introduce/staff__02.webp) no-repeat center;
    background-size: contain;
}

.staff-info__item.--planner:hover {
    background: url(../img/introduce/staff__02-hover.webp) no-repeat center;
    background-size: contain;
}

.staff-info__item.--adviser2 {
    background: url(../img/introduce/staff__03.webp) no-repeat center;
    background-size: contain;
}

.staff-info__item.--adviser2:hover {
    background: url(../img/introduce/staff__03-hover.webp) no-repeat center;
    background-size: contain;
}

.staff-info__item.--houseadviser {
    background: url(../img/introduce/staff__04.webp) no-repeat center;
    background-size: contain;
}

.staff-info__item.--houseadviser:hover {
    background: url(../img/introduce/staff__04-hover.webp) no-repeat center;
    background-size: contain;
}

.staff-info__item.--builder {
    background: url(../img/introduce/staff__05.webp) no-repeat center;
    background-size: contain;
}

.staff-info__item.--builder:hover {
    background: url(../img/introduce/staff__05-hover.webp) no-repeat center;
    background-size: contain;
}

.staff-info__item.--carpenter {
    background: url(../img/introduce/staff__06.webp) no-repeat center;
    background-size: contain;
}

.staff-info__item.--carpenter:hover {
    background: url(../img/introduce/staff__06-hover.webp) no-repeat center;
    background-size: contain;
}

.staff-info__item.--carpenter2 {
    background: url(../img/introduce/staff__07.webp) no-repeat center;
    background-size: contain;
}

.staff-info__item.--carpenter2:hover {
    background: url(../img/introduce/staff__07-hover.webp) no-repeat center;
    background-size: contain;
}


.staff-info__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-info__item img {
    width: 100%;
}

@media screen and (max-width: 960px) {
    .staff-info__item {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 60px;
        width: calc((100% - 80px) / 2);
    }
}

@media screen and (max-width: 767px) {
    .staff-info__item {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }

}