/* ページ全体に適用するスタイル */
@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,
caption, article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0; /* マージンを0に設定 */
	padding:0; /* パディングを0に設定 */
	border:0; /* ボーダーを0に設定 */
	outline:0; /* アウトラインを0に設定 */
	font-size:100%; /* フォントサイズを100%に設定 */
	vertical-align:baseline; /* ベースラインを垂直方向に揃える */
	background:transparent; /* 背景を透明に設定 */
}

body {
	line-height:1; /* 行の高さを1に設定 */
}

/* 特定の要素に適用するスタイル */
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
	display:block; /* ブロック要素として表示 */
}

nav ul {
	list-style:none; /* リストスタイルをなしに設定 */
}

blockquote, q {
	quotes:none; /* 引用符をなしに設定 */
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:''; /* コンテンツを空に設定 */
	content:none; /* コンテンツを非表示に設定 */
}

a {
	margin:0; /* マージンを0に設定 */
	padding:0; /* パディングを0に設定 */
	border:0; /* ボーダーを0に設定 */
	font-size:100%; /* フォントサイズを100%に設定 */
	vertical-align:baseline; /* ベースラインを垂直方向に揃える */
	background:transparent; /* 背景を透明に設定 */
}

ins {
	background-color:#ff9; /* 背景色を黄色に設定 */
	color:#000; /* テキストカラーを黒に設定 */
	text-decoration:none; /* 下線をなしに設定 */
}

img {
	vertical-align: top; /* 上端に揃える */
}

mark {
	background-color:#ff9; /* 背景色を黄色に設定 */
	color:#000; /* テキストカラーを黒に設定 */
	font-style:italic; /* 斜体に設定 */
	font-weight:bold; /* 太字に設定 */
}

del {
	text-decoration: line-through; /* 打ち消し線を付加する */
}

abbr[title], dfn[title] {
border-bottom:1px dotted #000; /* 下線を点線に設定 /
cursor:help; / カーソルをヘルプに設定 */
}

table {
border-collapse:collapse; /* ボーダーをセルの間でつなげる /
border-spacing:0; / セルの間隔を0に設定 */
}

hr {
display:block; /* ブロック要素として表示 /
height:1px; / 高さを1pxに設定 /
border:0; / ボーダーを0に設定 /
border-top:1px solid #cccccc; / 上部のボーダーをグレーに設定 /
margin:3em 0; / 上下に3emのマージンを設定 /
padding:0; / パディングを0に設定 */
}

input, select {
vertical-align:middle; /* 中央に揃える */
}

ul li,
ol li {
list-style-type: none; /* リストスタイルをなしに設定 */
}
