@charset 'UTF-8';
/***************************************************************
    SYSTEM   : studio yap
    TITLE    : スタイルシートの定義
    SHEET    : style.css
    VERSION  : Ver1.0.6
    LANGUAGE : CSS level2
    CODESET  : UTF-8
    EXPLAIN  : 画面共通の色や形状を定義する。
    AUTHOR   : yap
    CREATED  : 2007/12/26 as Ver1.0.1
    UPDATED  : 2008/06/08 as Ver1.0.6
***************************************************************/

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

/* 文字色・フォントの定義 */
body, table, input, button, textarea {
    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;
}

/* テーブルの定義 */
table {
    border: none;
    border-spacing: 0px;
    border-collapse: collapse;
}

/* イメージの定義 */
img {
    border: none;
}

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

/* リストの定義 */
ul, ol {
    margin-top: 0px;
    margin-bottom: 0px;
}

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

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

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

/* メイン部の定義 */
#main {
    float: left;
}

/* ヘッダ部の定義 */
#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;
}

/* コンテンツ部段落の定義 */
#cont p {
    margin: 8px 0px;
}

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

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

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

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

/* 見出しの定義 */
.cap {
    width: 320px;
    padding: 4px;
    font-size: 12pt;
    background-color: #B0B0CC;
}

/* 画像の定義 */
.pix {
    float: right;
    padding-left: 16px;
}

/* 入力枠の定義 */
.form {
    height: 16px;
}

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

/* 中央寄せの定義 */
.center {
    text-align: center;
}

/* 文字寄せ解除の定義 */
.clear {
    clear: both;
}
