@charset "utf-8";

/*
---------------------------------------------------------------------------- 

  reset用CSS
 
----------------------------------------------------------------------------
*/

/* ------------------------------------- 
 *	style reset
 * ------------------------------------- */
* {
	margin: 0px;
	padding: 0px;
	border: 0;
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,th {
	text-align: left;
}
q:before,q:after {
	content:'';
}
img{
	vertical-align: bottom;
}

/* ------------------------------------- 
 *	font reset
 * ------------------------------------- */
 
/*
* {
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
}
*/
* {
	font: 13px;
	*font-size: small;
	*font: x-small;
	font-family: Verdana, Arial, "Hiragino Kaku Gothic Pro W3", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
	color: #666;
	font-weight: normal;
	font-style: normal;
}
body {
	font-size: 12px; 
	/* font-size: 93%; */ 
	line-height: 1.8;
}
h1 {
	font-size: 131%;
	font-weight: bold;
	margin-bottom: .5em;
}
h2 {
	font-size: 123.1%;
	font-weight: bold;
	margin-bottom: .5em;
}
h3 {
	font-size: 108%;
	font-weight: bold;
	margin-bottom: .5em;
}
.caption {
	font-size: 10px;
	/* font-size: 77%; */
}

/* ------------------------------------- 
 *	clear
 * ------------------------------------- */
.clearfix {
	zoom:1;
}
.clearfix:after {
	content:".";
	display:block;
	height:0px;
	clear:both;
	visibility:hidden;
}

.clear{
	clear: both;
}


