@charset "utf-8";
/* CSS Document */

@charset "utf-8";
/*************************************************
　使いまわし用スタイル
	最終更新：2010.8.17
*************************************************/
/*常に縦スクロールバーを表示させる*/
html{
	overflow:scroll;
}
/**********************************************************************************************************
	コピーライト記号を他の文字と同等のサイズのフォントにする
	（コピーライト表記用パラグラフ内で&copy;を<span class="mark"></span>で囲んでマークアップすること！）
**********************************************************************************************************/
.copyright span.mark{
	font-family:'Times New Roman', 'Times';
}
/*********************
	文字色
*********************/
/*赤字*/
.red{
	color:red;
}
/*青字*/
.blue{
	color:blue;
}
/*オレンジ*/
.orange{
	color:orange;	
}
/***********************
	文字の太さ
***********************/
/*太字*/
.bold{
	font-weight:bold;
}
/**********************
	表示させない
***********************/
.display_none{
	display:none;
}
.hidden{
	visibility:hidden;
	font-size:1px;
}
/**********************
	文字サイズ
**********************/
.small{
	font-size:small;	
}
.x-small{
	font-size:x-small;
}
/*極小文字*/
.xx-small{
	font-size:xx-small;
}
/***************************************
	文字寄せ
***************************************/
.align_left{
	display:block;
	text-align:left;
}
.align_right{
	display:block;
	text-align:right;
}
.align_center{
	display:block;
	text-align:center;
}
/****************************************
	list-style-type
****************************************/
.list_type_square{
	display:list-item;
	list-style-type:square;
}
.list_style_inside{
	list-style-position:inside;
}
/***********************************************************
	マウスオーバーでアンダーラインが出るリンク
************************************************************/
a.hover_underline:hover{
	text-decoration:underline;	
}
/******************************************************
	画像置き換え
******************************************************/
.image_replacement span{
	font-size:1px;
	position:absolute;
	top:-10000px;
}
/*********************
	clearfix
**********************/
.clearfix:after{
content:" ";
font-size:1px;
height:0px;
clear:both;
display:block;
visibility:hidden;
}
.clearfix{
zoom:1;
}
.clear {
clear:both;
}
.clear hr {
display:none;
}