/* https://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/* すべての要素の余白リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* ← これ重要！ */
}

/* HTML5要素のデフォルトブロック化 */
article,
aside,
footer,
header,
nav,
section,
main {
    display: block;
}

/* 画像やメディアのリセット */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* リストのスタイルを消す */
ul,
ol {
    list-style: none;
}

/* 見出し・段落の余白調整 */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

/* ボタンやフォームのリセット */
button,
input,
select,
textarea {
    font: inherit;
    border: none;
    background: none;
    color: inherit;
}

/* aタグのリセット */
a {
    text-decoration: none;
    color: inherit;
}