/* ==========================================================================
   reset.css - 最低限のブラウザデフォルトリセット
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p,
ul, ol, li, dl, dt, dd, figure, figcaption, blockquote,
a, img, table, tr, th, td, form, fieldset, legend, button, input, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

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

body {
    /* line-height はデザイントークン(common.css の --lh-body)で指定する */
    -webkit-font-smoothing: antialiased;
}

ul, ol {
    list-style: none;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    background: none;
    cursor: pointer;
    font-family: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
