@charset "utf-8";

/**********************************************
スタイルシート属性記述の順番（記述ルール指定のため）

mozillaサイトのCSSを参考に作成したCSS記述順序

/* Suggested order:
 * display
 * list-style
 * position
 * float
 * clear
 * width
 * height
 * margin
 * padding
 * border
 * background
 * color
 * font
 * text-decoration
 * text-align
 * vertical-align
 * white-space
 * other text
 * content

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

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

サイトの基本となるCSS設定

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

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

基本的な項目

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

*{
	margin:0;
	padding:0;
	font-style:normal;
	font-weight:normal;
}

html{
	/*このサイト全体の基本となるフォントサイズを指定*/
	/*ブラウザの文字サイズが16ptのため、60%にして10ptにする*/
	/*このフォントサイズが、サイト全体の基本サイズとなる*/
	font-size:65%;
	line-height:1.51;
	letter-spacing:0.1em;
}

body{
	font-size:120%;
	background:#ffffff;
}


hr{
	display:none;
}

ul,ol{
	list-style:none;
}

img{
	border-style:none;
}

p{
	margin-bottom:10px;
}

i{
	font-style:italic;

}

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

float回避

***********************************************/
.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
.clearfix {
	display: inline-table;
	min-height: 1%;
	zoom:1;
}
.clearfix {
	overflow: hidden;
}
/* Hides from IE-mac ¥*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */

