/* CSS Document */

/* 各タグのマージン・パッディングの初期化
--------------------------------------------------*/
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0px;
	padding: 0px;
	font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ3", Osaka, "ＭＳ Ｐゴシック";
}

/* 画像のボーダーをなくす */
img {
	border: none;
}

/* テーブルのセルのボーダーを隣のセルのボーダーとくっつけて1本に初期化 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* フォームをグループ化した時の初期線とイメージのリンク時に出る線の初期化 */
fieldset,img {
	border: 0;
}

/* 斜め文字と太字の初期化 */
address,caption,cite,code,dfn,em,var {
	font-style: normal;
	font-weight: normal;
}

/* リストの初期化 */
ol,ul {
	list-style: none;
}
/* テキスト位置がセンタリングされるのを初期化 */
caption,th {
	text-align: left;
}

/* hタグのサイズと太字を初期化 */
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}

/* 略語指定時のボーダーの初期化 */
abbr,acronym {
	border:0;
}




/* フォントサイズ設定（12px相当） - Font Property  -
--------------------------------------------------*/
/* 基本設定 (基本的に変更しない部分だけ設定)
--------------------------------------------------*/

/* Firefox huck lint minus point */
/* フォントサイズの基本値化 10px=1em */ 
html {
	overflow-y: scroll;
	font-size: 65.5%;
}

body {
	font-size: 1.2em;
	font-family:
	"ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ3", Osaka, "ＭＳ Ｐゴシック";
	text-align: justify;
	text-justify: inter-ideograph;
}

/* Mac safari用hack */
body:first-of-type {
	font-size: 1.2em;
} 

/* 背景ずれ修正 */
*html body {   
padding-left: 1px;
} 

/* クリアフィックス - CLEAR FIX -
-------------------------------------------------*/
.c-fix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}

.c-fix { min-height: 1px; }

* html .c-fix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}

.c-fix { zoom: 100%; }

 
