@charset "UTF-8";

/* ブラウザのデフォルトスタイルを打ち消す記述 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box; /* 枠線を含めたサイズ計算にする */
}

body {
    line-height: 1.6;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ul, ol {
    list-style: none; /* リストの・を消す */
}

a {
    text-decoration: none; /* リンクの下線を消す */
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7; /* マウスを乗せた時に少し薄くする */
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* フォーム部品のスタイルリセット */
input, button, textarea, select {
    font-family: inherit;
    font-size: 100%;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
}