/* ========================================
 * reset.css
 * リセットCSS
 * ====================================== */

/* 全要素の余白・ボックスサイズをリセット */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* 画像のはみ出し防止 */
img { display: block; max-width: 100%; height: auto; }

/* リストの黒丸を消す */
ul, ol { list-style: none; }

/* リンクの下線・色を継承 */
a { color: inherit; text-decoration: none; }

/* bodyの余白・行間・背景色 */
body { margin: 0; line-height: 1.6; background-color: var(--colr-1); }