/* ---------------------------------------------------
    リセットCSS
--------------------------------------------------- */

/* 全体リセット */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* HTML5 タグの標準化 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* body */
body {
    background-color: #fff;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.5;
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

/* リスト */
ul, ol {
    list-style: none;
}

/* リンク */
a {
    color: inherit;
    text-decoration: none;
}

/* 画像・動画 */
img, picture, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* テーブル */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
