@charset "utf-8";

/*===== CONTENTS =====

	Title:component.css
	Last-updated: 2010/12/16
	Auther:b.mode
	Outline:よく使うCSSのコンポーネント

====================*/

/* 画像のリンクボーダーデザイン */
a img.linkBorder,
a:link img.linkBorder,
a:visited img.linkBorder { border: 1px solid #BBBBBB; }
a:hover img.linkBorder,
a:active img.linkBorder {	border: 1px solid #3399CC; }


.floatLeft{
	float: left;
	margin-right: 10px;
}
.floatRight{
	float: right;
	margin-left: 10px;
}
.clear { clear: both; }


.txtCenter{ text-align: center; }
.txtRight{ text-align: right; }

form input.border {
	padding: 2px;
	margin-right: 2px;
	margin-bottom: 2px;
	border: 1px solid #DDD;
}


/*スタイルの解除*/
#mainArea .noneStyle,
#mainArea .noneStyle * {
	font-weight: normal;
	text-decoration: none;
	background: url(none);
	margin: 0px;
	padding: 0px;
	border-style: none;
	list-style: none;
	height: auto;
}


/* 関連リンク */
#contents #mainArea .rel {
	font-weight: bold;
	text-align: right;
}
#contents #mainArea .rel a {}


/* 大文字・小文字のデザイン */
#mainArea .pointL {}
#mainArea .pointS {}


/* ----------------------------------------------------
 clearfix
----------------------------------------------------*/
/*ul:after,
div:after,
.clrfix:after {
	content: " "; 
	display: block; 
	height: 0; 
	clear: both;
	height: 0.1px; 
	font-size: 0.1em; 
	visibility: hidden;
	line-height: 0;
}

ul,div,
.clrfix {
	display: inline-block;
	display: block;
	min-height:1%;
	}

* html ul,
* html div,
* html .clrfix {	height: 1%;}*/


/*ul,div,
.clrfix {width:100%;}

ul:after,
div:after,
.clrfix:after{
    content: ""; 
    display: block; 
    clear: both;}*/


.clearfix {width:100%;}
.clearfix:after{
    content: ""; 
    display: block; 
    clear: both;}