@charset 'UTF-8';
/***************************************************************
    SYSTEM   : studio yap
    TITLE    : スタイルシートの定義
    SHEET    : style.css
    VERSION  : Ver2.1.5
    LANGUAGE : CSS level2
    CODESET  : UTF-8
    EXPLAIN  : 画面共通の色や形状を定義する。
    AUTHOR   : yap
    CREATED  : 2008/04/01  //as Ver2.0.1
    UPDATED  : 2011/02/13  //as Ver2.1.5
***************************************************************/

/***************************************************************
    ページ全体の定義
***************************************************************/

/* 文字色・フォントの定義 */
body, table, input, button, textarea, select {
    color: #000000;
    font-size: 9pt;
    font-weight: normal;
    font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'MS P Gothic', 'Osaka', Verdana, Arial, Helvetica, sans-serif;
    text-decoration: none;
    line-height: 1.5em;
}

/* 背景色の定義 */
body {
    margin: 0px;
    padding: 0px;
    background-color: #CCCCCC;
}

/* フォームの定義 */
form {
    margin: 0px;
    padding: 0px;
}

/* リンクデザイン */
a {
    text-decoration: none;
    outline: none;
}
a:link    {color: #0000FF;}
a:visited {color: #990099;}
a:hover   {color: #FF0000;}
a:active  {color: #FF00FF;}

/***************************************************************
    ヘッダ部の定義
***************************************************************/

/* ページ部の定義 */
#page {
    width: 641px;
    margin: 16px auto;
}

/* ヘッダ部の定義 */
#head {
    float: left;
}

/* ロゴ部の定義 */
#logo {
    float: left;
    padding-bottom: 4px;
    width: 480px;
}

/* サブタイトル部の定義 */
#sub {
    float: right;
    padding-bottom: 4px;
    width: 160px;
    text-align: right;
}

/***************************************************************
    ボディ部の定義
***************************************************************/

/* ボディ部の定義 */
#body {
    float: left;
    background-color: #FFFFFF;
    border-right: solid 1px #000000;
    border-bottom: solid 1px #000000;
}

/* ナビ部の定義 */
#navi {
    float: left;
    width: 16px;
}

/* コンテンツ部の定義 */
#cont {
    float: left;
    width: 608px;
}

/* 説明部の定義 */
#expl {
    float: left;
    margin: 0px 10px 12px 0px;
    width: 300px;
}

/* トピックスの定義 */
#topix {
    float: right;
    margin: 0px 0px 12px;
    background-color: #E0E0E0;
    border-top: solid 1px #000000;
    border-left: solid 1px #000000;
}

/* 新着情報の定義 */
#news {
    padding: 0px 8px 8px;
    width: 280px;
    height: 400px;
    overflow: auto;
}

/* 新着情報ラインの定義 */
#news hr {
    height: 1px; /* IE用必須 */
    border-width: 1px 0px 0px;
    border-style: solid;
    border-color: #666666;
}

/* 新着情報タイトルの定義 */
#news strong {
    font-style: normal;
    font-weight: bold;
}

/* テール部の定義 */
#tail {
    float: right;
    width: 16px;
}

/***************************************************************
    フッタ部の定義
***************************************************************/

/* フッタ部の定義 */
#foot {
    clear: both;
    padding: 8px;
    width: 624px;
    text-align: center;
    font-size: 7.5pt;
}

/***************************************************************
    クラスの定義
***************************************************************/

/* タイトルの定義 */
.title {
    margin: 8px;
    padding: 8px;
    font-size: 12pt;
    font-weight: bold;
    text-align: center;
}

/* 見出しの定義 */
.cap {
    padding: 4px;
    text-align: center;
    color: #CCCCCC;
    background-color: #333333;
    border: 1px solid #666666;
}

/* ボタン部の定義 */
span.button {
    vertical-align: top;
}

/* ボタンの定義 */
input.button, button.button {
    height: 24px;
    cursor: pointer;
}
