@charset "utf-8";
/* CSS Document */

/* =================================================================
		cssセット
================================================================= */

a:link {
	text-decoration: none;
	color: #333;
}

a:visited {
	text-decoration: none;
	color: #333;
}
a:hover {
	text-decoration: underline;
	color: #333;
}


/* ツール
----------------------------------------------- */

.hidden { visibility: hidden;}
.none { display: none;}
.block { display: block;}
.clear { clear: both;}
.clearoverflow {
	overflow: hidden;
}
.clearfix {
  overflow: auto;
  zoom: 1;
}



/* テキスト整列
----------------------------------------------- */

.aline_l {
	text-align: left;
}
.aline_c {
	text-align: center;
}
.aline_r {
	text-align: right;
}



/* フロート関連
----------------------------------------------- */

.float_l {
	float:left;
}
.float_r {
	float:right;
}

