@charset "utf-8"; 

/* ---------------
reset.css
要素の再定義をしています。
--------------- */

/* ---------------
■■目次
■マージン・余白のリセット
■要素の再定義
--------------- */

/* ---------------
マージン・余白のリセット
--------------- */
body, div,
h1, h2, h3, h4, h5, h6,
pre, form, fieldset, textarea, p, blockquote {
	margin: 0;
	padding: 0;
}

/* ---------------
要素の再定義
--------------- */
body  {
	background-color: #FFFFFF;
	font-family: Meiryo,'メイリオ','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W6','ＭＳ Ｐゴシック','MS PGothic',Verdana,sans-serif;
	font-size: 12px; /* モダンブラウザ向け */
	_text-align: center;
}

table {
	font-size: 12px; /* Dreamweaver cs4 デザインビュー向け bodyのフォントサイズに合わせる。 */
}
/* ie6 only */
* html body {
	font-size: 75%;
	letter-spacing:0.1em;
}
/* ie7 only */
*+html body  {
	font-size: 75%;
	letter-spacing: 0.1em;
}
h1, h2, h3, h4, h5, h6 {
	font-family: Meiryo,'メイリオ','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W6','ＭＳ Ｐゴシック','MS PGothic',Verdana,sans-serif;
	font-size: 1em;
}
textarea {
	font-family: Meiryo,'メイリオ','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W6','ＭＳ Ｐゴシック','MS PGothic',Verdana,sans-serif;
	font-size: 1em;
}
textarea {
	padding: 2px 4px;
}
blockquote {
	margin: 1em;
	padding: 0.5em 0 1em 1em;
	border: #CCCCCC 1px solid;
	background-color: #FDFDFD;
	color: #888888;
}
img {
	border: none;
}
address {
	font-style: normal;
}

/* リンクの設定 */
a {
	outline : 0;
}
a:link,a:visited,a:active {
	border: none;
	text-decoration: none;
}
a:hover {
	border: none;
	text-decoration: underline;
}

/* ブロックごとの再設定 */
p,
#main li ,
#main dt ,
#main dd ,
blockquote {
	line-height: 1.7;
}



/* normalize.cssより */

/* =============================================================================
   Lists
   ========================================================================== */

ul,
ol {
    margin: 1em 0;
    padding: 0 0 0 40px;
}

dd {
    margin: 0 0 0 40px;
}

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}

