@charset "UTF-8";
/* CSS Document */

/*----------------------------------------*/
/*初期化                                  */
/*----------------------------------------*/
body {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	background-color: transparent;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p,
	blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd,
	q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr,
	th, td, article, aside, canvas, details, figcaption, figure, footer,
	header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0px;
	padding: 0px;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

html {
	overflow-x: hidden;
/* 	overflow-y: scroll; */
}

article, aside, details, figcaption, figure, footer, header, main,
	hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
	list-style-type: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

fieldset, img {
	border: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption, th {
	text-align: left;
}

address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
}

img {
	vertical-align: bottom;
}

input, select {
	vertical-align: middle;
}

button, input, textarea {
	font-family: inherit;
}

/*==============================
  boxsizing
  ==============================*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/*==============================
  Fonts
  ==============================*/
/*Firefox,Safari,Opera,Chrome,IE8*/
html> /**/ body {
	/*font-size: 14px;*/

}
/*IE7*/
*:first-child+html body {
	/*font-size:75%;*/

}
/*IE4-6*/
* html body {
	/*font-size:75%;*/

}

/*------------------------------
  float
  ------------------------------*/
.fl {
	float: left;
}

.fr {
	float: right;
}

.cl {
	clear: left;
}

.cr {
	clear: right;
}

.cb {
	clear: both;
}

/*------------------------------
  clearfix
  ------------------------------*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	font-size: 0;
}

.clearfix {
	display: inline-block;
}
/*Hides from IE-Mac*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}
/*End hide from IE-Mac*/