/* すべての要素のマージンとパディングをリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* ボックスモデルを一貫させる */
}

/* HTML5要素のデフォルトスタイルをリセット */
article, aside, details, figcaption, figure, footer, header, main, nav, section, summary {
    display: block;
}

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

/* テーブル要素のリセット */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* フォーム要素のリセット */
button, input, textarea, select {
    font: inherit; /* 親要素のフォントを継承 */
    color: inherit; /* 親要素の色を継承 */
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

/* 画像の最大幅を設定（親要素の幅を超えないように） */
img {
    max-width: 100%;
    height: auto;
}

/* リンクのデフォルトスタイルをリセット */
a {
    text-decoration: none;
    color: inherit;
}

/* フォーカス時のアウトラインをデフォルトスタイルに戻す */
:focus {
    outline: none;
}
