/*=================================
文字色指定。
===============
====================================================*/

.text-color-red{color:#e80000;}
.text-color-tomato{color:tomato;}
.text-color-mediumvioletred{color:mediumvioletred;}
.text-color-pink{color:#fd50a3;}
.text-color-darkpink{color:#C70549;}
.text-color-green{color:rgb(0, 97, 73);}
.text-color-green a{color:rgb(64,138,97);}
.text-color-green a:visited{color:rgb(64,138,97);}
.text-color-olive{color:olive;}
.text-color-olivedrab{color:olivedrab;}
.text-color-orange{color:#f7c924;}
.text-color-blue{color:#0D72AE;}
.text-color-skyblue{color:skyblue;}

/*=================================
文字列の下線指定。
===============
====================================================*/

.underline{
text-decoration:underline;
}
.underline-skyblue{
background:linear-gradient(transparent 62%,#b7e3fd 62%);
font-weight:bold;
}
.underline-green{
background:linear-gradient(transparent 62%,rgb(156,233,190) 62%);
font-weight:bold;
}
.underline-tomato{
background:linear-gradient(transparent 62%,#ff715c 62%);
font-weight:bold;
}
.underline-yellow{
background:linear-gradient(transparent 72%,#ffe881 50%);
font-weight:bold;
}
.underline-orange{
background:linear-gradient(transparent 62%,#FFBF00 62%);
font-weight:bold;
}
.underline-red{
background:linear-gradient(transparent 62%,#fd4545 62%);
font-weight:bold;
}
.underline-pink{
background:linear-gradient(transparent 62%,#FEA0CD 62%);
font-weight:bold;
}

/*=================================
太い文字指定。
===============
====================================================*/

.bold{
	font-weight:bold;
}