@charset "UTF-8";
/* Copyright (c) 2007, Microwave.,Co ltd. */
/* */
/* */
/*	標準化CSS ver.2008/03/13 */
/*	各種マージン、パディング、ボールドなどを初期化します。 */
/*	標準でフォントサイズが10pxになります。 */
/*	ページ作成時にフォントサイズをemで指定します。（可変対応） */
/*	16pxの大きさなら1.6emと指定します。子要素の継承がありますので、 */
/*	子要素などに指定する際は注意してください。 */


*{
	font-style:normal;
	line-height:inherit;
}

html{
	min-height:100%;
	font-size: 100.01%;
	font-style:normal;
	text-align:left;
	line-height:1.4;
	overflow-y:scroll;
}

body{
	min-height:100%;
    font-family: "Hiragino Kaku Gothic ProN",Meiryo,"MS PGothic",sans-serif !important;
	font-size:16px !important;
	font-size:62.5%;
	margin:0;
	padding:0;
}

body *{
	margin:0;
	padding:0;
}

div,dl,dt,dd,ul,ol,li,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	font-size:1em;
}

h1{
	font-size:1.3em;
}
h2{
	font-size:1.2em;
}
h3{
	font-size:1.1em;
}


table {
	font-size:1em;
	border-collapse:collapse;
	border-spacing:0;
}

fieldset,img { 
	font-size:1em;
	border:0;
}

ol,ul {
	font-size:1em;
	list-style:none;
}

caption,th {
	font-size:1em;
	text-align:left;
}

q:before,q:after {
	font-size:1em;
	content:'';
}

abbr,acronym {
	border:0;
	font-size:1em;
}

.small{
font-size:0.8em;
}

.large{
font-size:1.2em;
}

th{
font-weight:100;
}

/* 回り込み解除 */
br.clear{
clear:both;
line-height:0px;
height:0px;
font-size:0px;
margin:0px;
padding:0px;
border:none;
}

/* テキスト飛ばし */
.fir{
text-indent:-1000%;
overflow:hidden;
font-size:0px;
}

/* block右寄せ */
.f_right{
float:right;
}

/* block左寄せ */
.f_left{
float:left;
}

/* inline右寄せ */
.t_right{
text-align:right;
}

/* inline左寄せ */
.t_left{
text-align:left;
}

/* inline中央 */
.t_center{
text-align:center;
}

/* inline均等 */
.t_just{
text-justify:inter-ideograph;
text-align:justify;
}