/* reset.css */

/* 全体のボックスモデルを設定 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* HTMLとボディの基本設定 */
html, body {
    height: 100%;
    line-height: 1.5;
    font-family: Arial, sans-serif; /* フォントはお好みで変更 */
}

/* リストのスタイルリセット */
ul {
    list-style-type: none;
}

/* リンクのデフォルトスタイルリセット */
a {
    text-decoration: none;
    color: inherit; /* 親要素の色を引き継ぐ */
}

/* 画像のスタイルリセット */
img {
    max-width: 100%; /* レスポンシブ対応 */
    height: auto;
}

/* フォーム要素のリセット */
button, input, textarea {
    font-family: inherit; /* 親のフォントを継承 */
}

/* テーブルのスタイルリセット */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 8px;
    text-align: left;
}

/* セクションの間隔を設定 */
section {
    margin: 20px 0;
}
