@charset "utf-8";

/* --------------------------------
	Default Style Sheet {
	2011/06/02 nz
--------------------------------*/

/* ==========================================================================================================

	 Structure
 
============================================================================================================*/
/* v2.0 | 20110126
  http://meyerweb.com/eric/tools/css/reset/ 
  License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

html {
	overflow-y		: scroll; /* for FireFox scrollbar */
	height			: 100%;
}
body {
	background-color: #FFFFFF;
	height			: 100%;
	font-size		: 12px;
	font-family		: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "ＭＳ Ｐゴシック", sans-serif;
	/*font-family		: "ＭＳ Ｐゴシック", sans-serif;*/
	/*font-family		:"メイリオ", Meiryo,  "ヒラギノ角ゴ Pro W3", Arial, Helvetica, "ＭＳ Ｐゴシック", sans-serif;*/
	color			: #999;
	letter-spacing	: -0.03em;
	line-height		: 1.4;
}
/* ==========================================================================================================

	List

============================================================================================================*/
ul {
	list-style	: none;
}
dt {
	display	: block;
	width	: auto;
}
/* ==========================================================================================================

	Table

============================================================================================================*/
table {
	border			: none;
	border-collapse	: collapse;
	border-spacing	: 0;
	font-size		: 100%;
}
td, 
th { /* セルの規定値をmiddleからtopに変更 */
	vertical-align	: top;
}
th {
	font-weight		: normal ;
	text-align		: left ;
}
caption {
	text-align		: left;
}

/* ==========================================================================================================

	Image

============================================================================================================*/
img { 
	background-color	: transparent;
	vertical-align		: top;
}
a img {
	border	: none;
}

/* ==========================================================================================================

	Text

============================================================================================================*/
em {
	font-style: normal;
}
hr {
	height			: 1px;
}
/* ==========================================================================================================

	Form

============================================================================================================*/

input, 
textarea, 
select, 
option, 
optgroup {
	vertical-align		: middle;
	font-family		: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "ＭＳ Ｐゴシック", sans-serif;
	letter-spacing: 0em;
}

/* ie6 hack IEでinputの大きさを超えるline-heightを入れるとfocus時にずれる問題*/
* html input {
	line-height: 1.0;
	height: 1.6em;
}

/* ie7 hack */
*:first-child+html input {
	line-height: 1.0;
}

/* IE7でinput（置換要素）がズームされない問題を解決 */
input {
	zoom: 1;
}
/* ie7 hack IE7でlabelがズームされない問題 */
*:first-child+html label {
	zoom: 1;
}

select {
	min-width		: 2em;
}

option, 
optgroup {
	padding-right	: 0.4em;
}
/*  input & label & option mousePointer
-----------------------------------*/
label[for], 
input[type="checkbox"], 
input[type="radio"], 
input[type="button"], 
input[type="image"], 
input[type="reset"], 
input[type="submit"], 
select, 
option {
	cursor	: pointer;
}

optgroup {
	cursor	: default;
}
