﻿/*---------------------------------
Reset CSS
ver 0.01 | 20140924
---------------------------------*/

@charset "utf-8";

/*---------------------------------
要素のリセット
---------------------------------*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
abbr,
address,
del,
dfn,
em,
img,
ins,
kbd,
q,
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,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    vertical-align: bottom;
    background: transparent;
}
/*---------------------------------
行の高さをフォントサイズと同じに
---------------------------------*/

body {
    line-height: 1;
}
/*---------------------------------
HTML5の要素をブロック要素に
---------------------------------*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
/*---------------------------------
セルの間隔を0にしてテーブルを良い感じに
---------------------------------*/

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*---------------------------------
リストのマーカーを非表示
---------------------------------*/

ol,
ul {
    list-style: none;
}
/*---------------------------------
リンクのリセット
---------------------------------*/

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
/*---------------------------------
画像を縦に並べた時に余白がでないように
---------------------------------*/

img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
}
/*---------------------------------
clearfix（フロートを解除）
---------------------------------*/

.clearfix {
    display: inline-block;
}
.clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0.1px;
    font-size: 0.1em;
    line-height: 0;
    clear: both;
}