@charset "utf-8";
/* Reset CSS */

/*
YUI Reset CSS と font CSSを ベースに作成したものです。

*/

------------------------------------------------------------------- * ピクセル % 文字サイズ相対指定は%で行う。 --------------------------------------------------------------------- 10px 77 % 11px 85 % 12px 93 % 13px 100 % 14px 108 % 15px 116 % 16px 123.1 % 17px 131 % 18px 138.5 % 19px 146.5 % 20px 153.9 % 21px 161.6 % 22px 167 % 23px 174 % 24px 182 % 25px 189 % 26px 197 %

/* --HTML-- 右のボーダーを常に表示させる。 */
html {
/*background:#fff;
color:#333;*/
overflow-y:scroll;
}
/*-----------------------------------------------------------------------
* マージン、パディングのリセット
-------------------------------------------------------------------------*/
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;
}
/*-----------------------------------------------------------------------------
* フォントサイズ統一。文字を入力するタグを100%にする。
-------------------------------------------------------------------------------*/
p, li, dt, dd, td, th, h1, h2, h3, h4, h5, h6 {
font-size:100%;
font-weight:normal;
}
/*------------------------------------------------------------------------------
* フォントサイズを13px相当に統一する。81.25%は 16pxからみた13px
フォントはメイリオを先頭に。"Meiryo UI"を使用するとMSPゴシックに近い。
--------------------------------------------------------------------------------*/
body {
font-family: "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
font-size: 81.25%;
line-height: 1.5em;
}
/* for IE7 */
*+html body {
font-family:'メイリオ', 'MS Pゴシック';
font-size:small;
}
/*ie6標準モード*/
*html body {
font-family:'MS Pゴシック';
font-size:small;
}
/*ie6後方互換モード emなしではie5で line-heightが広がる。*/
*html body {
font:x-small/1.5em;
}
select, input, button, textarea {
font-size:99%;
font-family:"メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic
Pro", sans-serif;
}
/*-----------------------------------------------------------------------
*リストマークの設定
-------------------------------------------------------------------------*/
li {
list-style: none;
}
/*-----------------------------------------------------------------------
* フォームグループ化要素(fieldset)と画像リンク時のボーダーの設定
-------------------------------------------------------------------------*/
fieldset, img {
border:0;
}
img {
vertical-align: bottom;
}/*for ie6 画像の下に隙間が空く対策*/
/*-----------------------------------------------------------------------
* テーブルの設定 
-------------------------------------------------------------------------*/
table {
border-collapse:collapse;/*テーブルのセルやボーダーを重ねて表示する。他にはseparateが存在する。*//*border-spacing:0; separate時の設定*/
}
caption, th {
text-align:left;
}
/*-----------------------------------------------------------------------
* 文字装飾に関する設定
-------------------------------------------------------------------------*/
address, caption, cite, code, dfn, em, strong, th, var {
font-style:normal;
font-weight:normal;
}