@charset "utf-8";
body{
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	line-height:1.5;
	font-size:113%;
}

/*-----------------------------------------------------------------------------------------------設定をオールリセットさせる
　　各タグのマージンと余白の設定をリセットさせる。
　　マージンと余白の必要なタグは削除する。
　　【現在の削除リスト】
　　08-03-01　fieldset
*/
body,div,dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,pre,form,fieldset,
input,textarea,p,blockquote {  
    margin:0; 
    padding:0; 
} 
/*table { 
    border-collapse:collapse; 
    border-spacing:0; 
} */
img {  
    border:0; 
} 
ol,ul {
	　　list-style:none;
	list-style-type: none;
} 
address,caption,cite,code,
dfn,em,strong,th,var { 
    font-style:normal; 
    font-weight:normal; 
}  
caption,th { 
    text-align:left; 
} 
h1,h2,h3,h4,h5,h6 { 
    font-size:100%; 
    font-weight:normal; 
} 
a{
	color: #333;
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}

/*-----------------------------------------------------------------------------------------------class=""でクリアさせる*/
.clear{
	clear:both;
}

/*-----------------------------------------------------------------------------------------------Cleafixハック
　　classで親boxに設定する事で子boxがはみ出る現象を回避
*/
.clearfix:after{
content:".";
display:block;
height:0;
clear:both;
visibility:hidden;
}
.clearfix{display:inline-table;zoom:1;}
/* \*/
* html .clearfix{height:1%;}
.clearfix{display:block;}
/* */

/*---------------------------------------------------------------
　高さ0pxでテキストを隠す-9999pxはスパムの可能性が高いので注意
--------------------------------------------------------------*/
.out{
overflow: hidden;
height: 0;
padding-top: 0px;
display: block;
}
/*---------------------------------------------------------------
　チェックボックスの高さを揃える
--------------------------------------------------------------*/
input { vertical-align: middle; }

