@charset "utf-8";
/* CSS Document */

/*Reset: font-family propaty*/

body{
font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',Osaka,sans-serif;
}

/*Reset: font-size, line-height propaty
モダンブラウザのフォントサイズを12pxに設定*/

body{
font-size: 12px; line-height: 1.4;
}

/*IEでフォントサイズを可変させるために％指定
ブラウザのデフォルトフォントサイズが16pxと前提して*/

body{
font-size: 75%;/* 12px */ 
}/*for IE6*/
*+html body{
font-size: 75%;/* 12px */
}/*for IE7*/ 

/*--css style reset--*/

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, 
fieldset, input, textarea, p, blockquote, th, td{
margin: 0; 
padding: 0;
}
html{
overflow-y: scroll;
}
h1, h2, h3, h4, h5, h6{
font-size: 100%; 
font-weight: normal;
}
ol, ul{
list-style:none;
}
fieldset, img{
border:0;
}
table{
border-collapse: collapse; 
border-spacing:0;
}
caption, th{
text-align: left;
}
address, caption, cite, code, dfn, em, strong, th, var{
font-style: normal; 
font-weight: normal;
}