@charset "utf-8";
/*-----------------------------------------------------------
===  [ individual-layout CSS ]  ====================================
------------------------------------------------------------*/

/* ***************************************************************************** */
/*

　目次

-------------------------------------------------------------------------------

        00. 共通
        01. 各種タイトル(h2、h3)
        02. ボタン
        03. リンク
        04. 単票テーブル
        05. 一覧テーブル
        06. ページャー

*/
/* ***************************************************************************** */
/** -------------------------------------------------------
 ** 00. 共通
 ** ------------------------------------------------------- */
/* -- link -- */
a:link {
    color: #5B9BD5;
}
a:visited {
    color: #5B9BD5;
}
a:hover {
    color: #5B9BD5;
}
a:active {
    color: #5B9BD5;
}

/** -------------------------------------------------------
 ** 01. 各種タイトル(h2、h3)
 ** ------------------------------------------------------- */
.subtitle {
    background-color: #B1CBE9;
}

/** -------------------------------------------------------
 ** 02. ボタン
 ** ------------------------------------------------------- */
/* 標準ボタン（button01)
 * 検索ポップアップ呼び出し用ボタン（popup_button01）
----------------------------------------------------*/
a.button01 {
    color: #000;
}

/** -------------------------------------------------------
 ** 03. リンク
 ** ------------------------------------------------------- */
.returnLink a {
    color: #333;
}

/** -------------------------------------------------------
 ** 04. 単票テーブル
 ** ------------------------------------------------------- */
.singleTable .tTitle {
    background-color: #B1CBE9;
}
.singleTable th {
    background-color: #DEEBF7;
}

/** -------------------------------------------------------
 ** 05. 一覧テーブル
 ** ------------------------------------------------------- */
.listTable .tTitle {
    background-color: #B1CBE9;
}
.listTable th {
    background-color: #DEEBF7;
}

/** -------------------------------------------------------
 ** 06. ページャー
 ** ------------------------------------------------------- */
.pager01 li:first-child span,
.pager01 li:first-child a,
.pager01 li:last-child span,
.pager01 li:last-child a {
    background: #5B9BD5;
}

/* ***************************************************************************** */
