@charset "utf-8";
/* CSS Document */

/* Information ============================================
File name: default.css
Description: Reset CSS
Editor: T.Jinriki
Date: 2016/08/05
Update01: 2016/12/26
======================================================== */

/* clearfix */
.clearfix:after {
	content:" ";
	display:block;
	clear:both;
}

/* ブロックレベル要素のmarginやpaddingをリセット */
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;
}

/* リスト形式の行頭記号を消去 */
dl, dt, dd, ol, ul, li {
	display: block;
}

/* navセレクタのリンクをデコレーション無しに */
nav a {
	text-decoration: none;
}

/* 行の高さを揃える */
body {
	line-height: 1;
}

/* borderとpaddingの幅を要素の幅と高さに含める */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
