/*
テキストのスタイル
color1 #004080　紺
color2 #408080　グリーン
color3 #ff8000　オレンジ
*/
* {	/* 全データのフォントサイズ、色は紺 */
	font-size: 12px;
	color: #003366;
	line-height: 120%;
}
.hitokoto_head {	/* 12px bold */
	font-size: 12px;
	font-weight: bold;
}
.hitokoto_color3 {	/* 12px bold オレンジ */
	font-size: 12px;
	font-weight: bold;
	color: #ff8000;
}
.page_title_color2 {	/* 16px bold グリーン */
	font-size: 16px;
	font-weight: bold;
	color: #408080;
}
.big_b_color2 {	/* 14px bold グリーン */
	font-size: 14px;
	font-weight: bold;
	color: #408080;
}
.big_b_color3 {	/* 16px bold オレンジ */
	font-size: 16px;
	font-weight: bold;
	color: #ff8000;
}
.big_b_colorw {	/* 16px bold 白 */
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
}
.new_kuido {	/* 12px bold italic */
	font-weight: bold;
	font-style:italic;
	color: #ff0080;
}
.color2 {	/* 12px グリーン */
	color: #408080;
}
.small {	/* 10px */
	font-size: 10px;
}
.small_bold {	/* 10pxbold */
	font-size: 10px;
	font-weight: bold;
}
.small_bold_color3 {	/* 10px bold オレンジ */
	font-size: 10px;
	font-weight: bold;
	color: #ff8000;
}
.small_colorw {	/* 10px 白 */
	font-size: 10px;
	color: #ffffff;
}
.big {	/* 14px */
	font-size: 14px;
}
.r_sitei {	/* Ｒ指定全角で入れること */
	font-size: 10px;
	color: #ff0000;
	font-weight: bold;
}


/*
リンクのスタイル
*/
a:link {
	color: #3333ff;
	text-decoration: none;
}
a:visited {
	color: #006699;
	text-decoration: none;
}
a:active {
	color: #006699;
	text-decoration: none;
}
a:hover {
	color: #99cc00;
	text-decoration: underline;
}

/*
背景色
*/
body {
	background-color: #ffffff;
}
.bgcolor1 {	/* 背景色　背景色と同じ */
	background: #ffffff;
}
.bgcolor2 {	/* 背景色　水色 */
	background: #e1ffff;
}
.bgcolor3 {	/* 背景色　薄灰 */
	background: #fafafa;
}
.bgcolor_text {	/* 背景色 文字色反転 */
	background: #003366;
}
.bgcolor_text2 {	/* 背景色 文字色グリーン反転 */
	background: #408080;
}





/*
インデント
*/
.indent15 {
	padding-left: 15px;
}
.indent30 {
	padding-left: 30px;
}



