@CHARSET "UTF-8";

/* ------------------------------------------------------------
 位置
 ------------------------------------------------------------ */
/* テキスト：中央寄せ */
.center {
	text-align: center;
	margin: 0 auto;
}

/* テキスト：右寄せ */
.right {
	text-align: right;
}

/* テキスト：左寄せ */
.left {
	text-align: left;
}

/* テキスト：中央寄せ */
.middle {
	vertical-align: middle;
}

/* テキスト：上寄せ */
.top {
	vertical-align: top;
}

/* テキスト：下寄せ */
.bottom {
	vertical-align: bottom;
}

/* テキスト：インデント */
.indent {
	text-indent: 1em;
}

/* フロート：右寄せ */
.floatRight {
	float: right;
}

/* フロート：左寄せ */
.floatLeft {
	float: left;
}

/* フロート：解除 */
.floatClear {
	clear: both;
}

/* ------------------------------------------------------------
 文字
 ------------------------------------------------------------ */
/* 太文字 */
.bold {
	font-weight: bold;
}

/* 小文字 */
.small {
	font-size: 80%;
}

/* 大文字 */
.large {
	font-size: 120%;
}

/* ------------------------------------------------------------
 文字色
 ------------------------------------------------------------ */
/* 赤色 */
.red {
	color: red;
}

/* 青色 */
.blue {
	color: blue;
}

/* 緑色 */
.green {
	color: green;
}

/* 黄色 */
.yellow {
	color: yellow;
}

/* 黒色 */
.black {
	color: black;
}

/* 白色 */
.white {
	color: white;
}
