@charset "UTF-8";
/* CSS Document */
/*------------------------------
共通
------------------------------*/
* {
	box-sizing: border-box
}
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;
  order:0;
  outline:0;
  vertical-align:baseline;
  background:transparent;
}
img {
	vertical-align:bottom;
    max-width: 100%;
	height: auto;
}
blockquote,q {
	quotes: none;
}
ul li{
	list-style-type: none;
}
ol li{
	list-style-type: none;
}
i {
    font-style: normal;
}
a {
	color: #333;
	text-decoration: none;
}

/*------------------------------
float
------------------------------*/
.floL { 
	float:left;
}
.floR {
	float:right;
}
.clear {
	clear:both;
	margin:0;
	padding:0;
	height:0;
	line-height:0;
	font-size:0;
}
/* float解除 */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.clearfix {
	display: inline-block;
}
* html .clearfix {
	height: 1%;
}


/*------------------------------
フォント
------------------------------*/
.bold { font-weight:bold; }


/*------------------------------
text-align
------------------------------*/
.al { text-align: left; }
.ar { text-align: right; }
.ac { text-align: center; }

