/* ==============================
   reset.css - 基本リセット
================================ */

/* すべての要素の余白とパディングをリセット */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTMLとBodyのデフォルト設定 */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

/* リストのデフォルトスタイルを無効化 */
ul, ol {
    list-style: none;
}

/* リンクの下線を削除 */
a {
    text-decoration: none;
    color: inherit;
}

/* 画像のデフォルト設定 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
