/*通常のフォントの設定*/

p{	font-size: 12px;
	color: white;
	font-family: MS Pゴシック;
	font-weight: normal;
	line-height: 150%;
}

/*ピンク文字*/
p.pink {
	font-size: 12px;
	color: lightpink;
	font-family: MS Pゴシック;
	font-weight: normal;
	line-height: 150%;	
}

/*注目☆文字*/
p.pen {
	color: yellow;
	font-size: 12px;
	font-family: MS Pゴシック;
	font-weight: bold;
	line-height: 150%;
}



/*通常のリンクの設定*/
a:link {
	font-size: 12px;
	color:white;
	font-family: MS Pゴシック;
	font-weight: normal;
	text-decoration:underline;
	line-height: 150%;
}
/*過去に見たことがあるページのリンクの設定*/
a:visited{
	font-size: 12px;
	color:indianred;
	font-family: MS Pゴシック;
	font-weight: normal;
	text-decoration:underline;
	line-height: 150%;
}
/*カーソルが合っている状態のリンクの設定*/
a:hover {
	font-size: 12px;
	background-color: white; 
	color:darkred;
	font-family: MS Pゴシック;
	font-weight: normal;
	text-decoration:none;
	line-height: 150%;
}
/*アクティブ状態のリンクの設定*/
a:active {
	font-size: 12px;
	color:orchid;
	font-family: MS Pゴシック;
	font-weight: normal;
	text-decoration:none;
	line-height: 150%;
}