/* すべての要素のマージンとパディングをリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* リストのデフォルトのマーカーを削除 */
ul, ol {
    list-style: none;
}

/* 画像の最大幅を100%にして親要素に収まるように */
img {
    max-width: 100%;
    height: auto;
}

/* ボタンのデフォルトスタイルをリセット */
button, input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ボタンのクリック時の青枠を削除 */
button:focus, input:focus, textarea:focus {
    outline: none;
}

/* HTMLとボディの高さを100%に */
html, body {
    height: 100%;
}

/* ブラウザ間でフォントの統一 */
body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

/* 見出しタグのリセット */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

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