@charset "utf-8";

/* ---------------------------------------------------------
	DrillSpin（CSSハック）
	URL: http://www.drillspin.com/
	Copyright T.C.FACTORY All Rights Reserved. 
	
	1-1.CSSハック
	1-2.clearfix
	1-3.IE向けフォントサイズ指定
------------------------------------------------------------ */
	
/* ---------------------------------------------------------
 1-1.CSSハック
------------------------------------------------------------ */

/*IE向け*/
* html body {
	word-break: break-all; /*IE向け改行設定*/
}

/* スクロールバーの有無によるズレ対策 */
html {
	overflow-y: scroll;
}

/* ---------------------------------------------------------
 1-2.clearfix
------------------------------------------------------------ */

/*モダンブラウザ向けclearfix(IEを除く)*/
.clearfix:after{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clear {
	clear: both;
	background: transparent;
	height: 1px;
	font-size: 1px;
}

.cl{
	clear: both;
}

/* ---------------------------------------------------------
 1-3.IE向けフォントサイズ指定
------------------------------------------------------------ */

/*IE8向けフォントサイズ指定*/
html>/**/body {
	font-size:100%\9
}

html>/**/body {
	font-size:76%\9 /*12px*/
}