@charset "UTF-8";

/*
/////////////////////////////////////////////////////////
--------------------------------------------------------
　基本CSS
--------------------------------------------------------

　作成日：2010/07/21
　更新日：

--------------------------------------------------------

　注意
　　●フォントサイズは%指定で行う。以下参考値
	77% == 10px
	85% == 11px
	92% == 12px  ←★標準
	100% == 13px
	107% == 14px
	114% == 15px
	122% == 16px
	129% == 17px
	136% == 18px
	144% == 19px
	152% == 20px
	159% == 21px
	167% == 22px

	●行間指定には単位を付けない事。
	●フォントサイズは継承がややこしいので、
	　なるべく親要素では指定しない事。


/////////////////////////////////////////////////////////
*/

/* ●フォント初期化
-----------------------------------------------*/
body {
	font-family:sans-serif;
	font-size: 13px;
}
table {
  font-size: 100%;
}
select, input, textarea {
  font-size: 99%;
}
body  {line-height:1.22;}


/* ●要素初期化
-----------------------------------------------*/
body,div,dl,dt,dd,ul,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,legend,textarea,p,blockquote,th,td{ 
	margin:0;padding:0;
}
table{
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img{ 
	border:0;
}
address,caption,cite,code,dfn,em,th,var{
	font-style:normal;
	font-weight:normal;
}
ul{
	list-style:none;
}
caption,th{
	text-align:left;
}
h1,h2,h3,h4,h5,h6{
	font-size:100%;
	font-weight:normal;
}
q:before,q:after{
	content:'';
}


/* ●共通モジュール
-----------------------------------------------*/
/* clearfix */
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix { display: inline-block; }
/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */

/* ●hr 不可視
-----------------------------------------------*/
hr.noCSS{
	display:none;
	}
	
	


/* ********************************************************************************
 * RESET
 * ******************************************************************************** */

/* Margin Reset
------------------------------------------------------------*/
.mgnTop0 {	margin-top: 0 !important;}
.mgnRit0 {	margin-right: 0 !important;}
.mgnBtm0 {	margin-bottom: 0 !important;}
.mgnLft0 {	margin-left: 0 !important;}


/* Padding Reset
------------------------------------------------------------*/
.pdgTop0 {	padding-top: 0 !important;}
.pdgRit0 {	padding-right: 0 !important;}
.pdgBtm0 {	padding-bottom: 0 !important;}
.pdgLft0 {	padding-left: 0 !important;}
.pdgLft10 {	padding-left: 10px !important;}


