@charset "utf-8";

/*----------------------------------------
	reset
----------------------------------------*/
/* Modern CSS Reset + 追加でレスポンシブ意識 */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    font-family: system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

input,
textarea,
select,
button {
    font: inherit;
    color: inherit;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: #fff;
    color: #111;
}