@charset "utf-8";

/*/////////////////////////////////////////////////////////
file name: recet.css
description: リセット用CSS

///////////////////////////////////////////////////////// */

/* Firefox3のスクロールを常に表示 */
html {
overflow: scroll;
overflow: -moz-scrollbars-vertical;
overflow-x:scroll;
}

/* よく登場する要素のリセット */
h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd, img, form {
margin: 0;
padding: 0;
border: none;
font-style: normal;
font-weight: normal;
font-size: 100%;
text-align: left;
list-style-type: none;
}

body {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 75%;
	color: #333333;
	margin: 0;
	padding: 0;
}


/* テキストエリア内文字サイズのブラウザ間での差異をなくす */
textarea { font-size: 100%; }

/* 画像の下にできる隙間をなくす */
img { vertical-align: bottom; }

/*　リンクの設定 */
a {
	text-decoration: none;
	color: #06F;
}

/* hr 要素は不可視で使う */
hr { 
	display: none;
	width: 100%;
}


/* ===========  フロートのクリア  =========== */

.clearfloat {
	clear: both;
}

.clearleft {
	clear: left;
}

.clearright {
	clear: right;
}

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}

.no_border {
	border: none;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

