@media only screen and (max-width: 767px){
    img{
        width: 100%;
        height: auto;
    }
}
/* pc　768px以上 */
@media only screen and (min-width: 768px), print {
    img{
        width: 500px;
        height: auto;
    }
}


