@charset "utf-8";

/* =======================================================
	reset.css
	*This document validates as CSS level 3
	CSS構成: 基本定義（リセット＆再定義＆汎用クラス）
	-----------------------------------------------------
	■フォントサイズ
	 root(html)には 62.5%(10px) で基準値を設定
	 body には 12px・1.2rem で12pxを設定
	 （※サイズ変更は、各要素に px・rem で指定）

======================================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	background:transparent;
}
/* HTML5 display-role reset for older browsers */
body {
	line-height:1;
	background : #FFF;
	font : 62.5% "メイリオ", meiryo, Osaka, 'Lucida Grande', Helvetica, "ＭＳ Ｐゴシック", sans-serif ;
	color: #333;
	overflow-x: hidden;
	}


	/* for IE7 */
	/**+html body { font-family : "メイリオ", "ＭＳ Ｐゴシック"; }*/
	*+html body { font-family : "ＭＳ Ｐゴシック"; }

	/* for IE6 */
	* html body { font-family : "ＭＳ Ｐゴシック"; }

	/* for safari */
	html:\66irst-child body { font-family : "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", sans-serif; }

h1,h2,h3,h4,h5,h6{
	font-weight:400;
	}

img {
	vertical-align : top;
	border: none;
}


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

ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

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

a {
	margin: 0;
	padding: 0;
	color: #666;
	font-size: 100%;
	vertical-align: baseline;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	}

/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

address, em { font-style : normal ; font-weight:400; }

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

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

/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

input, select {
	vertical-align: middle;
}



/* ////////////////////////////////////////////////////////////////  汎用クラス */
.clear {
	overflow: hidden; /* 回り込み解除指定 */
	zoom: 1; /* 回り込み解除指定 IE6-7 */
}




/* 文字装飾 */
.bold { font-weight: bold; }
.italic { font-style: italic; }
.normal { font-weight: normal; }

/* 左右配置 */
.Left,
.Left_box,
.Left_item { float: left; }
.Right,
.Right_box,
.Right_item { float: right; }


/* clearfix */
.clearfix{
	zoom: 1 ; /*for IE 5.5-7*/
}
.clearfix:after {/*for modern browser*/
	content: "." ;
	display: block ;
	height: 0px ;
	clear: both ;
	visibility: hidden ;
}
* html .clearfix{
	display: inline-table ;
	/*\*/display: block ;/**/
}