<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*******************************************************************************
 *
 * タグ共通
 *
 ******************************************************************************/
html{
    height:100%;
}

body{
    height:100%;
    margin:0;
    padding:0;
    font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
    background-color: #000066;
    background-image: url(../image/foot_bg_03.jpg);
    text-align: center;
    padding:0 auto 0 auto;
}

a {
    color: #0000FF;
    text-decoration: none;
}
a:link {
    color: #0000FF;
    text-decoration: none;
}
a:visited {
    color: #0000FF;
    text-decoration: none;
}
a:hover {
    color: #0000FF;
    text-decoration: underline;
}
a:active {
    color: #0000FF;
    text-decoration: underline;
}

input[type="text"].ime_disabled {
     ime-mode: disabled;
}

span.require {
    color: #FF0000;
}


/*******************************************************************************
 *
 * コンテナ共通
 *
 ******************************************************************************/
/* ボディー以下を囲ったラッパ */
#contents_wrapper {
    width: 760px;
    text-align: center;
    background-color: #FFFFFF;
    margin: 0 auto;
}

/* ヘッダー領域 */
#header {
    top: 0px;
    height:120px;
    background-color: white;
    background-image: url(../image/header_image.jpg);
    background-repeat: no-repeat;
    color:#003200;
}

/* ヘッダー領域：ロゴ */
#header_logo {
    float: left;
    margin: 20px auto 20px 20px;
}

/* コンテナ領域 */
#container {
    margin: 20px;
}

/* フッター領域 */
#footer {
    clear: both;
    text-align: center;
}

/* フッター領域：ベリサイン表示 */
#footer_verisign {
    float: left;
    padding: 5px;
}

/* フッター領域：INFINIロゴ表示 */
#footer_infiini_logo {
    float: right;
    padding: 5px;
}

/* フッター領域：コピーライト表示 */
#footer_copyright {
    clear: both;
    font-size: smaller;
}

/* エラー項目用 */
input[type="text"].error_item, input[type="password"].error_item, input[type="file"].error_item, select.error_item, textarea.error_item {
    background-color: #FFCCCC;
}

/***************************************
 * エラー表示エリア
 **************************************/
ul.errors {
    color: #FF0000;
    padding: 5px;
    list-style-position: inside;
    margin: 0 auto;
    width: 400px;
    text-align: left;
}

/*******************************************************************************
 *
 * 文字色
 *
 ******************************************************************************/

/* 文字色：黒 */
.color_black {
    color: black;
}

/* 文字色：青 */
.color_blue {
    color: blue;
}

/* 文字色：赤 */
.color_red {
    color: red;
}

/* 文字色：黄 */
.color_yellow {
    color: yellow;
}

/* 文字色：オレンジ */
.color_orange {
    color: orange;
}

</pre></body></html>