@charset "UTF-8"; /*
assets/css/reset.css
リセット用CSS
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    font-size: 100%;
    overflow-y: scroll;
}

body {
    -webkit-text-size-adjust: 100%;
}

footer {
    display: block;
}

img {
    display: block;
    border: 0;
    max-width: 100%;
    height: auto;
}

ul, li, dl, dt, dd {
    list-style: none;
}

a {
    text-decoration: none;
}

h2, h3 {
    font-size: inherit;
    font-weight: inherit;
}

small {
    font-size: smaller;
}
