@charset "utf-8";

/* すべての要素のマージンとパディングを0にリセット */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* ボックスモデルを統一 */
}
/* リストのスタイルをリセット */
ul, ol {
    list-style: none;
}
/* 画像のボーダーをリセット */
img {
    border: 0;
    max-width: 100%; /* 画像の幅を親要素に合わせる */
    height: auto;
}
/* タイトル要素のフォントサイズやマージンをリセット */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: inherit;
}
/* テーブルのボーダーをリセット */
table {
    border-collapse: collapse; /* テーブルのボーダーを重ねない */
}
/* インプット要素のスタイルをリセット */
input, textarea, button, select {
    border: none;
    outline: none;
    background: none;
    font: inherit;
    color: inherit;
}
/* セレクトボックスのスタイルをリセット */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* デフォルトのリンクの色や装飾をリセット */
a {
    text-decoration: none;
    color: inherit; /* 親要素の色を継承 */
}
/* フォーム要素のスタイルをリセット */
button, input[type="button"], input[type="submit"] {
    cursor: pointer;
}
/* 見出しや段落のボックスモデルをリセット */
body {
    line-height: 1.5;
    font-family: sans-serif; /* フォントを統一 */
}