@charset "utf-8";

/* ****************************************************
Title: reset.css
Created: 2007-07-21
Last Modified: 2008-11-08
Editor(s): Hiroto Inukai
Last Editor: tsutsu
***************************************************** */


/* Table Of Contents
----------------------------------------

#01 Reset 'Browser standard style'
#02 Redefine

----------------------------------------*/


/* #01 Reset 'Browser standard style'
---------------------------------------------------------------------------- */

body,
h1,h2,h3,h4,h5,h6,
p,ul,ol,dl,dt,dd,li,table,th,td,
form,address,pre,
strong,em,caption,cite,code,dfn,var,fieldset,button {
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

img { 
	border: 0; 
	background-color: transparent;
	vertical-align: bottom;
}

table { 
	border-collapse: collapse;
	border-spacing: 0;
}

caption, th { text-align:left; }

fieldset { border: 0; }
legend { display: none; }

hr { display: none; }

ol, ul { list-style:none; } 

ul ul,ol ul,ul ol,ol ol,
dl ul,dl ol,dl dl,td td { 
	font-size: 100%;
}

q:before,q:after { content: ''; } 

abbr,acronym { border: 0; } 

button {
	border: 0;
	cursor: pointer;
	outline: 0;
}

select,input,textarea { font-size: 12px; }


/* #02 Redefine
---------------------------------------------------------------------------- */


body {
	font-size: 12px;
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	line-height: 1.5;/* ヘッダフッタのみ統合バージョンはline-height記述をはずしておく */
}

/* legacy IE */
* html body {
	font-size: 75%;
}

/* IE7 */
*:first-child+html body {
	font-size: 75%;
}

html {
	overflow-y: scroll;
}

strong { font-weight: bold; }
em     { color: #F00; font-style: normal; }

p { margin: 0 0 1.5em; }


