﻿/* === DE-STYLE BASE CSS RESET === */
/* Forked and simplified from destyle.css by Tatsuya Nakagawa */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

html, body {
    height: 100%;
    line-height: 1.5;
/*    font-family: inherit;*/
    font-size: 100%;
    background: transparent;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

article, aside, footer, header, nav, section,
main, figure, figcaption, details, summary {
    display: block;
}

ul, ol {
    list-style: none;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
    background: none;
    border: none;
    color: inherit;
    outline: none;
}

button,
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
    appearance: none;
}

    button:focus,
    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
    }

img,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

strong,
b {
    font-weight: bold;
}

em,
i {
    font-style: italic;
}
