/* CSS Document */

@media only screen and (max-width: 767px) {
    .hp {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .hp {
        display: block;
    }
}