/* メイン */
main {
    width: 100%;
    height: 100%;
}
#wMax{
    position: relative;
    max-width: 70%;
    height: 70vh;
}
.sample {
    position:absolute;
    width: auto;
    height: 150px;
    margin: 0 auto;
}
.sample img {
    position: absolute;
    width: auto;
    height: 100%;
}
.sample img:hover{
    transition: 0.5s;
    transform:scale(1.2,1.2);
    z-index: 99;
}
/* レスポンシブ */
@media (max-width: 767px) {
    /* メイン */
    main {
        width: 100%;
        height: 100%;
    }
    #wMax{
        position: relative;
        max-width: 46%;
        height: 65vh;
    }
    .sample {
        position:absolute;
        width: auto;
        height: 100px;
        margin: 0 auto;
    }
    .sample img {
        position: absolute;
        width: auto;
        height: 100%;
    }
    .sample img:hover{
        transition: 0.5s;
        transform:scale(1.2,1.2);
    }
}