/* reset.css */

/* マージン、パディングを0に設定 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* タブ、改行、スペースを除去 */
body {
    line-height: 1;
}

/* リストスタイルを除去 */
ol, ul {
    list-style: none;
}

/* テキスト装飾を除去 */
a {
    text-decoration: none;
    color: inherit;
}

/* インライン要素の表示方法を設定 */
sup {
    vertical-align: super;
}
sub {
    vertical-align: sub;
}

/* テキスト選択時のハイライトを無効化 */
::selection {
    background-color: transparent;
    color: inherit;
}

/* ボタン、インプットのスタイルをリセット */
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 100%;
    line-height: 1;
}
