@charset "utf-8";

/*====================index====================*/
/* 空白の初期化                                */
/* list-styleの初期化                          */ 
/* border関連の初期化                          */ 
/* form関連の初期化                            */ 
/* alignの初期化                               */
/* cursorの初期化                              */
/* FirefoxやOperaでスクロールバーを強制表示する*/
/* .clearfix                                   */
/*====================index====================*/

/*==============================
 空白の初期化
==============================*/
body,
div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,
p,blockquote,
table,thead,tbody,tfoot,caption,th,td {
	margin: 0;
	padding: 0;
	/*border: 0;
	outline: 0;*/
	/*vertical-align: baseline;*/
	/*background: transparent;*/
	background-color: transparent;
}

form,fieldset,input,textarea,select {
	margin: 0;
	padding: 0;
	}
	

	
/*==============================
 list-styleの初期化
==============================*/
ol,ul {
	list-style: none;
}
	
/*==============================
 border関連の初期化
==============================*/
table {
	border-collapse: collapse;
	border: none;
	border-spacing: 0;
}
caption {
	text-align: left;
}
th {
	vertical-align: top;
	font-weight: normal;
	text-align: left;
}
td {
	vertical-align: top;
}
fieldset,
img{
	border: 0 none;
}
abbr,acronym {
	border-bottom:none;
}
	
/*==============================
 form関連の初期化
==============================*/
fieldset {
	border: 0;
}
input {
	_margin: -1px 0;
}

/*==============================
 alignの初期化
==============================*/
caption,
th {
	text-align: left;
	}
img,
input {
	vertical-align: middle;
	}

/*==============================
 cursorの初期化
==============================*/
a {
	cursor: pointer;
	}


	

/*============================================
 FirefoxやOperaでスクロールバーを強制表示する
============================================*/
/*html {
	height: 100%;
	margin-bottom: 1px;
}*/


/*==============================
 .clearfix
==============================*/

/* floatさせたボックスが親ボックスの外にはみ出す現象を回避 */
.clearfix:after{
	content:".";
	display:block;
	height:0px;
	clear:both;
	line-height: 0;   
	visibility:hidden;
	}

.clearfix{
	/*display:inline-table;*/
	min-height:1%;
	}

/* Win版IE5および6対策 */
/* Hides from IE-mac \*/
* html .clearfix { height:1px; }
.clearfix { display:block; }
/* End hide from IE-mac */
/* floatさせたボックスが親ボックスの外にはみ出す現象を回避（ここまで） */
