@charset "UTF-8";
/* reset.css - 基本のリセットCSS */

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

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

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

/* 見出しタグのフォントの太さを通常化 */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

/* フォーム要素のリセット */
button, input, textarea, select {
    font: inherit;
    border: none;
    background: none;
    outline: none;
}

/* ボタンのカーソル設定 */
button {
    cursor: pointer;
}

/* 画像の最大幅を設定 */
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* HTMLとbodyのデフォルト設定 */
html, body {
    width: 100%;
    height: 100%;
    font-size: 16px;
    line-height: 1.5;
    font-family: sans-serif;
}

/* テーブルのデフォルト設定 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
