/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size:inherit;
	width:100%;
	font-size:92.4%;
}

th,td {
text-align:left;
vertical-align:top;
border:none;
}

caption {
text-align:left;
}

input,select,textarea {
font-size:100%;
font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

ul,dl,ol {
text-indent:0;
}

li {
list-style:none;
}

address,caption,cite,code,dfn,em,th,var {
font-style:normal;
}

sup {
vertical-align:text-top;
}

sub {
vertical-align:text-bottom;
}

input,textarea,select {
font-family:inherit;
font-size:inherit;
font-weight:inherit;
}

* html input,
* html textarea,
* html select {
font-size:100%;
}

*:first-child+html+input,
*:first-child html+textarea,
*:first-child+html select {
font-size:100%;
}

/*--フォントサイズメモ

10px = 77%
12px = 92.4%
14px = 107.8%
16px = 123.1%
18px = 138.5%
20px = 153%
22px = 166%
24px = 182%
26px = 197%
28px = 212%
30px = 228%

※要素内で重ね掛けされないように注意
例）「table」に「font-size:92.4%;」
を指定し、「table」内部に「table」が入る場合などは
以下のようにする

table table {
font-size:92.4%;
}

table table {
font-size:inherit;
}

▼以下はline-heightをpx指定したい場合の数値
※あんまり使う事がない

「10px」
12px = 1.2
14px = 1.401
16px = 1.6
18px = 1.801

「12px」
14px = 1.167
16px = 1.335
18px = 1.5
20px = 1.666

「14px」
16px = 1.143
18px = 1.286
20px = 1.429

「16px」
18px = 1.124
20px = 1.244
--*/
