@charset "UTF-8";
/* Base Class
---------------------------------------------------------*/ 

/*** 通常のクリア ***/
.clear {
	display: block;
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 0;
}
/*** 親要素でクリア ***/
.clearfix:before,
.clearfix:after{
  content:"";
  display: table;
}
.clearfix:after{
  clear:both;
}
.clearfix{
	/*IE6,7対策 （haslayout対策）*/
	*zoom:1;
}


/*** フロート ***/
.fl-r{
	float: right;
}
.fl-l{
	float: left;
}


/* Base tag
---------------------------------------------------------*/ 
html{
	/* font-size: 62.5%; */
	/* =font-size: 10px 以降remで指定 */
}
html, body{
	/* height: 100%; */
}

#main a:hover{
	opacity:0.7;
	filter: alpha(opacity=70);        /* ie lt 8 */
	-ms-filter: "alpha(opacity=70)";  /* ie 8 */
	-moz-opacity:0.7;                 /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.7;              /* Safari 1.x */
	zoom:1;
}
#main a{
	outline: none;
}