@charset "utf-8";

/* ============================================================

	Default Style Reset
	FILE NAME: reset.css
		
	[1] common style
	[2] fonts
	[3] Clerfix + other

============================================================ */

/*-----------------------------------------------
	[1] common style
-----------------------------------------------*/
/* 
Reset: margin, padding propaty */
*{
margin: 0;
padding: 0;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote {
margin:0;
padding:0;
}

/* 
Reset: border propaty*/
abbr,acronym,fieldset,img {
border:0;
}
 
/*
Reset: [table] selector */
table {
/*border-collapse:collapse;*/
border-spacing:0;
}
 
table,th,td {
margin:0;
padding:0;
}
 
caption,th,td {
text-align:left;
}
 
/*
Reset: List selector */
ol,ul {
list-style:none;
}

/*
Reset: font propaty */
address,caption,cite,code,dfn,em,strong,th,var {
font-style:normal;
font-weight:normal;
}

/*
Reset: other*/
q:before,q:after {
content:'';
}
 
a{
outline:none;
}

img{
vertical-align:top;
}


/*-----------------------------------------------
	[2] fonts
-----------------------------------------------*/
body {
font-size: 12px; line-height: 1.4; color: #414046;
}

/*IE6*/
body{_font-size: 75%; /* 12px */ }

/*IE7*/
*+html body{font-size: 75%; /* 12px */ }
h1,h2,h3,h4,h5,h6 {
font-size: 1.2em; /* 14px */ line-height: 1.0; }
p {
font-size: 1.0em; /* 12px */ line-height: 1.4; }
table,dl {
font-size: 1.0em; /* 12px */ line-height: 1.4; }

/* 
Reset: font-family propaty*/
body {
font-family: "メイリオ","Meiryo",verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
}

a {
text-decoration:none;
color: #FFFF00;
}

a:link,
a:visited,
a:active {
color: #414046;
}

a:hover {
color: #FFFF00;
}

/*-----------------------------------------------
	[3] Clerfix + other
-----------------------------------------------*/
.clearfix:after, #content:after {
content:".";
display:block;
height:0;
clear:both;
visibility:hidden;
}

.clearfix , #content {
display: inline-table;min-height:1%;
}

/* Hides from IE-mac \*/
* html .clearfix , * html#content {
height: 1%;
}

.clearfix , #content {
display: block;
}
/* End hide from IE-Mac */


