@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;
}

h3, h4, h5, h6, p,
ul, ol, li, dl, dt, dd {
       line-height: 1.5;
}

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: #333333;
}

a:hover {
       color: #76a316;
}

/* hr 要素は不可視で使う */
hr { 
	display: none;
	width: 100%;
}
	
