@charset "UTF-8";
/* Share CSS (layout.css) */

/* --------------------------------------------------------------------------------
clearfix
フロートした子要素しかもたない親ブロック要素の高さを確立する
-------------------------------------------------------------------------------- */
/*親ブロック要素のclassにclrfixを追加*/

/* -- clear float -- */ 
.clear {
	display: inline-table;
	min-height: 0;
}
.clear:after {
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
	content: ".";
}

/* MacIE5のみ除外 */
/* \*/ 
* html .clear {
	height: 0;
}
.clear {
	display: block;
}

/* */ 
/* -- end clear float -- */


/* Font-color */
body {color:#ffffff;}


/* Link Setting */
a:link {color:#b73c3c; text-decoration:underline;}
a:visited {color:#b73c3c; text-decoration:underline;}
a:hover {color:#b73c3c; text-decoration:none;}
a:active {color:#b73c3c; text-decoration:none;}