@charset "utf-8";

/* すべての要素の余白・枠・背景をリセット */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    background: transparent;
}

/* HTML5要素をブロック化（古いブラウザ対策） */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* 基本設定 */
html, body {
    width: 100%;
    height: 100%;
    line-height: 1;
    font-size: 100%;
}

/* 画像まわり */
img {
    max-width: 100%;
    display: block;
}

/* リストのポチを全削除 */
ul, ol {
    list-style: none;
}

/* テーブル初期化 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 引用符削除 */
blockquote, q {
    quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
    content: "";
}

/* リンクの初期化 */
a {
    color: inherit;
    text-decoration: none;
}

/* フォーム初期化 */
input, select, textarea, button {
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
    appearance: none;
}
