@charset "UTF-8";

/***̑文字の大きさの設定***/

.font95 {
	font-size: 95%;
}
.font90 {
	font-size: 90%;
}
.font80 {
	font-size: 80%;
}
.font70 {
	font-size: 70%;
}
.font60 {
	font-size: 60%;
}
.font50 {
	font-size: 50%;
}
.font10 {
	font-size: 10%;
}
.font110 {
	font-size: 110%;
}
.font125 {
	font-size: 125%;
}
.font130 {
	font-size: 130%;
}
.font140 {
	font-size: 140%;
}
.font150 {
	font-size: 150%;
}
.font170 {
	font-size: 170%;
}
.font175 {
	font-size: 175%;
}
.font200 {
	font-size: 200%;
}

/***̑文字の太さの設定***/

.font_bold {
	font-weight: bold;
}
.font_bolder {
	font-weight: bolder;
}
.font_lighter {
	font-weight: lighter;
}

/***̎文字の装飾の設定***/

.font_italic {
	font-style: italic;
}
.font_oblique {
	font-style: oblique;
}

/***文字のカラー設定***/

.font_red {
	color: red;
}
.font_green {
	color: green;
}
.font_kimidori {
	color: #00FF00;
}
.font_yellow {
	color: yellow;
}
.font_gray {
	color: gray;
}
.font_silver {
	color: silver;
}
.font_white {
	color: white;
}
.font_lime {
	color: lime;
}
.font_aqua {
	color: aqua;
}
.font_fuchsia {
	color: fuchsia;
}
.font_maroon {
	color: maroon;
}
.font_olive {
	color: olive;
}
.font_teal {
	color: teal;
}
.font_navy {
	color: navy;
}
.font_purple {
	color: purple;
}
.font_black {
	color: black;
}
.font_black {
	color: blue;
}
.font_blue {
	color: blue;
}
.font_orange {
	color: #FF9900;
}

/***ボーダーの設定***/

.border_red {
	background-color: red;
}
.border_blue {
	background-color: blue;
}
.border_green {
	background-color: green;
}
.border_yellow {
	background-color: yellow;
}
.border_gray {
	background-color: gray;
}
.border_silver {
	background-color: silver;
}
.border_white {
	background-color: white;
}
.border_lime {
	background-color: lime;
}
.border_aqua {
	background-color: aqua;
}
.border_fuchsia {
	background-color: fuchsia;
}
.border_maroon {
	background-color: maroon;
}
.border_olive {
	background-color: olive;
}
.border_teal {
	background-color: teal;
}
.border_navy {
	background-color: navy;
}
.border_purple {
	background-color: purple;
}
.border_black {
	background-color: black;
}
.border_orange {
	background-color: #ffa500;
}

/***アンダーラインの設定***/

.u_line {
	text-decoration: underline;
}

/***行間の設定***/

.line-height150 {
	line-height: 150%;
}
.line-height175 {
	line-height: 175%;
}
.line-height200 {
	line-height: 200%;
}

/***行揃えの設定***/

.center{
	text-align: center;
}
.left{
	text-align: left;
}
.right{
	text-align: right;
}