@CHARSET "utf-8";
*{
	margin: 0;
	padding: 0;
}
body{
	word-wrap: break-word;
	color: #6a6a6a;
	font-size: 100%;
	font-weight: normal;
	font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",sans-serif;
}
ul{ 
	list-style-type: none; 
}
img{
	border: none;
}


/*  link  ------------------------------*/
a{
	color: #5686ff;
	text-decoration: underline;
	
}
a:hover{
	color: #000;
	text-decoration: none;
}


/*  float  ------------------------------*/
.pull-left{
	float: left !important;
}
.pull-right{
	float: right !important;
}


/*  clearfix  ------------------------------*/
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}


