@charset "utf-8";

/* リセット用CSS */

/* GLOBAL RESET SETTING
========================================================*/
*{
	margin:0;
	padding:0;
}
table{ 
	border-collapse:collapse; 
	border-spacing:0; 
}
fieldset,img{  
	border:0; 
}
ol,ul{ 
	list-style:none; 
}
li{
	list-style:none;
}
caption,th{ 
	text-align:left; 
}
q:before,q:after{ 
	content:''; 
}
abbr,acronym{
	border:0; 
}
ul,ol,dl{
	list-style-position:outside;
}
img{
	vertical-align:bottom;
}
hr{
	display:none;
}


/* GLOBAL FONT SETTING
========================================================*/

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

	Font-size Adjustment
	
	77% = 10px	|	122% = 16px	|	167% = 22px	
	85% = 11px	|	129% = 17px	|	174% = 23px
	92% = 12px	|	136% = 18px	|	182% = 24px
	100% = 13px	|	144% = 19px	|	189% = 25px
	107% = 14px	|	152% = 20px	|	197% = 26px
	114% = 15px	|	159% = 21px	|

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

body{
	font-size:13px;
	*font-size:small;
	*font:x-small;
	font-family:"ＭＳ Ｐゴシック", "MS PGothic", Osaka, Arial, Helvetica, sans-serif;
	color:#333;
	line-height:130%;
}

table{
	font-size:inherit;
	font:100%;
}
address,caption,cite,code,dfn,th,var{ 
	font-style:normal; 
	font-weight:normal; 
}
h1,h2,h3,h4,h5,h6{ 
	font-size:100%; 
	font-weight:normal; 
}
select,input,textarea{
	font-size:99%;
}
*{
	font-size:100%;
}


/* FORM SETTING
========================================================*/
form{
	margin:0;
	padding:0;
}

input,
textarea{
	font-family:"ＭＳ Ｐゴシック", "MS PGothic", Osaka, Arial, Helvetica, sans-serif;
}

input{
	line-height:120%;
}

textarea{
	padding:0.4em 10px;
}


/* Clear Fix
=========================================================================*/
br.clear{
	content: ".";  
	display: block;  
	visibility: hidden;  
	height: 0.1px;  
	font-size: 0.1em;  
	line-height: 0;  
	clear: both; 
}
.clear:after{
	display:block;
	clear:both;
	height:0;
	visibility:hidden;
	content:".";
	line-height:0;
}
.clear{
	display:inline-table;
	min-height:1%;
}
/* FOR MAC IE \*/
* html .clear{
	height:1%;
}
.clear{
	display: block;
}
/* END OF FOR MAC IE */

