/*オンマウスズーム*/
.imgWrap01 img {
    transition: transform .6s ease;
}

.imgWrap01:hover img {
    transform: scale(1.1);
}