html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: visible;
}
body {
    display: block;
    width: 100%;
}
.int_s01 u {
    text-decoration: none;
    color: #00ac97;
    border-bottom: solid 1px #00ac97;
    padding: 0 1px;
    transition: all 0.2s ease;
}
.int_s02 u {
    text-decoration: none;
    color: #ff894c;
    border-bottom: solid 1px #ff894c;
    padding: 0 1px;
    transition: all 0.2s ease;
}
@media screen and (min-width: 700px) {
.int_s01 u:hover {
    color: #009683;
    border-bottom: solid 1px #009683;
}
.int_s02 u:hover {
    color: #ff6b2e;
    border-bottom: solid 1px #ff6b2e;
}
}