﻿@charset "UTF-8";

/* reset styles （初期化）*/
html, body, div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address,
ul, ol, li, dl, dt, dd,
table, th, td,
form, fieldset {
	margin:0;
	padding:0;
	color:#373118;
	background:transparent;
	font-family:
		Meiryo;
		font-size: 102%;
	}
body	{ font-size:12px; line-height:1.1; }
table	{ border-collapse:collapse; border-spacing:0;/* <table cellspacing="0">は必要 */ empty-cells:show; }
ul, ol, li, dl, dt, dd { list-style:none; }

/* inline elements (インライン要素) */
em	{ font-weight:bold; font-style:normal; }
del { text-decoration: line-through; }
ins { text-decoration:none; border-bottom:1px solid #cccccc; }
img, object, embed, param, button { border:0; vertical-align:bottom; }

/* Win IE6 & 6以前 */
* html body		{ font-size:75%; }
* html table	{ font-size:100%; }

/* Win IE7 */
*:first-child+html body		{ font-size:75%; }
*:first-child+html table	{ font-size:100%; }
*:first-child+html *		{ letter-spacing:0; zoom:1; /* hasLayout問題の解消(要素を<span></span>などで囲まないと効かない) */}






