@charset "utf-8";
/* Common */
/* 便利ツール */
/* layout処理 */
.left				{ *display: inline; float: left; }
.right				{ *display: inline; float: right; }
.layout-center		{ margin-left:auto; margin-right:auto; position:relative; }
img.layout-center	{ display: block; }
/* テキスト処理 */
.text-center		{ text-align: center; }
.text-right			{ text-align: right; }
.text-left			{ text-align: left; }
.strikeout			{ text-decoration: line-through; }
.underline			{ text-decoration: underline; }
.bold				{ font-weight: bold; }
.normal				{ font-weight: normal; }
/* display と visibility　*/
.hide				{ display: none!important; }
.show,
.isBlock			{ display: block; }
.isInline			{ display: inline; }
.isInline-block		{ display: inline-block; *display: inline; zoom: 1; }
.isInvisible		{ visibility: hidden; }
/* ulに対して追加 */
.list-disc 			{ list-style: disc; padding-left: 15px; }
.list-square		{ list-style: square; padding-left: 15px; }
.list-decimal		{ list-style: decimal; padding-left: 15px; }
/* position */
.pos-rel { position: relative; }
.pos-abs { position: absolute; }
/* テキスト飛ばし */
.replace { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }
/* リンク hoverで透明度を下げる */
/* form */
/* ベースフォント設定 */
body,select,input,textarea {
	color: #404040;
	font-size: 12px;
	font-family: "MS PGothic","Osaka","Lucida Grande",Tahoma,Verdana,Arial,sans-serif;
	line-height: 1.4;
}
h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6 { font-weight: bold; }
/* font-size */
h1, .h1 { font-size: 22px; }
h2, .h2 { font-size: 20px; }
h3, .h3 { font-size: 18px; }
h4, .h4 { font-size: 16px; }
h5, .h5 { font-size: 14px; }
h6, .h6 { font-size: 12px; }
small, .small { font-size: 11px; }
big, .big { font-size: 24px; }
.huge { font-size: 36px; }
.cap, .caption {
	font-size: 12px;
	line-height: 1.2;
}
a:link {color: #0044CC;}
a:visited {color: #660066; text-decoration: underline;}
a:hover {color: #0066CC; text-decoration: none;}
