@charset "utf-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

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;/* 透明 */
}

html{
	font-size:62.5%;
	font-family: meiryo;
	}
body {
    line-height:1;/* 行の高さ　フォントサイズ  */
	font-size:1.6em;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;/* ブロックレベル表示となって前後が改行されて表示  */
}

nav ul {
    list-style:none;/* リストマーカー　なし  */
}

blockquote, q {
    quotes:none;/* contentプロパティで引用符の挿入を指定しても、引用符を表示しない  */
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';/* 要素の直前または直後に、文字列や画像などのコンテンツを挿入する  */
    content:none;/* content要素をリセット  */
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;/* 適用した要素のベースラインを親要素のベースラインに揃える（初期値）  */
    background:transparent;
}

/* change colours to suit your needs */
ins {			/* 追加された部分であることを示す  */
    background-color:#ff9;
    color:#000;
    text-decoration:none;/* テキストに線は付かず、点滅もしない。初期値 */
}

/* change colours to suit your needs */
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;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}