@charset "UTF-8";

/*--------------------------------------
目次
	（1）初期設定リセット
	（2）font等の初期設定
	（3）共通クラス
---------------------------------------*/




/*--------------------------------------*/
/*（1）初期設定リセット						*/
/*--------------------------------------*/


html {
	overflow-y: scroll;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td	{
	margin: 0;	padding: 0;
}
address, caption, cite, code, dfn, em, strong, th, var	{
	font-style: normal;
}
table	{
	border-collapse: collapse;	border-spacing: 0;
}
caption, th	{
	text-align: left;
}
q:before ,q:after	{
	content: '';
}
object, embed	{
	vertical-align: top;
}
hr, legend	{
	display: none;
}
h1, h2, h3, h4, h5, h6	{
	font-size: 100%;
}
img, abbr, acronym, fieldset	{
	border: 0;
}
img {
	vertical-align: bottom;
	width: inherit;
    max-width: 100%;
    height: auto;
}
li	{
	list-style-type: none;
}
p, dd, blockquote	{
	text-align: justify;
	text-justify: inter-ideograph;
}





/*--------------------------------------*/
/*（2）font等の初期設定						*/
/*--------------------------------------*/


body {
	font-family: verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	background: #FFF;
	color: #333;
	font-size: 75%;
	line-height: 150%;
	text-align: center;
}


* html body {
	font-family: "ＭＳ Ｐゴシック", sans-serif;
	vertical-align: baseline;
	text-align: center;
} /* for lte ie6 */

*:first-child+html body {
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
} /* for ie7 */

html>/**/body {
	font-size: 12px;
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
} /* for ie8 */

html:not(:target) body {
	font-size: 12px;
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
} /* for modern browser not ie8 */


/* ------------ form Style */
input, select, textarea {
	font-size: 1em;
	font-family: verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	}
* html input, select, textarea {
	font-family: "ＭＳ Ｐゴシック", sans-serif;
} /* for lte ie6 */

*:first-child+html input, select, textarea {
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
} /* for ie7 */

html>/**/input, select, textarea {
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
} /* for ie8 */

html:not(:target) input, select, textarea {
	font-family: verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ", Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
} /* for modern browser not ie8 */







/*--------------------------------------*/
/*（3）共通クラス							*/
/*--------------------------------------*/



/* A Style */
/*--------------------------------------*/
a:link	{
	text-decoration: none;
	color: #333;
}

a:visited	{
	text-decoration: none;
	color: #ff931e;
}

a:hover	{
	text-decoration: underline;
	color: #ff931e;
}

a:active	{
	text-decoration: none;
	color: #ff931e;
}


a.linkopacity img {
	filter:alpha(opacity=100);
	-moz-opacity: 1.0;   
	opacity: 1.0;
	}

a.linkopacity:hover img {
	filter:alpha(opacity=60);
	-moz-opacity: 0.6; 
	opacity: 0.6;
	}
a.linkopacity:hover {
	text-decoration: none;
	}



/* font Class */
/*--------------------------------------*/
.Arial {
		font-family: "Arial Black";
	}
.orenge {
		color: #f08300;
	}
.big {
		font-size: 1.6em;
	}
.alignRight{
	text-align: right;
}
.center {
	text-align: center;
}


/* float Class */
/*--------------------------------------*/
.flow_left {
	float:left;
	}

.flow_right {
	float:right;
	}
.clear_both {
	clear: both;
	}


/* clearfix Class */
/*--------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
}
* html .clearfix {
  height: 1px;
  /*?*//*/
  height: auto;
  overflow: hidden;
  /**/
}








