@charset "shift_jis";
/* 一括で全ての要素の余白をゼロに指定 */
* {
    margin: 0;
    padding: 0;
}
/* 全体的なリンク */

a:link, a:visited, a:hover, a:active {
    text-decoration: underline;
    color: #330000;
    font-size: 110%;
}
a:link {
    color: #003399;
    text-decoration: none;
}
a:visited {
    color: #003399;
}
a:hover {
    color: #330000;
}
img {
    border: none;
}
/* -------------------------------------------------------------
   [1] レイアウトに関する指定 */
body {
    font-size: 85%;
    text-align: center;
    font-family: "メイリオ", Meiryo "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Times New Roman";
    color: #333333;
    padding: 0;
    margin: 0;
    background-color: #EBE7E1;
}
#wrapper {
    text-align: left;
    width: 800px;
    margin: 10px auto;
    padding: 0 10px;
    border: 1px solid #cccccc;
    background: #fff;
}
#header {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    position: relative;
    background: url(img/title1.png) no-repeat;
    background-position: 30px 20px;
    background-color: #a0d8ef;
}
#contents {
    float: right;
    width: 600px;
    padding: 0 5px;
    margin-left: 5px;
    margin-bottom: 10px;
    word-break: keep-all;
    line-break: strict;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
#naiyou {
    margin-left: 25px;
    margin-right: 20px;
    margin-top: 1em;
    line-height: 2em;
    margin-bottom: 1em;
    word-wrap: break-word;
}
#pankuzu {
    float: right;
    width: 780px;
    padding: 0 5px;
    padding-bottom: 5px;
    margin-left: 5px;
    margin-bottom: 10px;
    word-wrap: break-word;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #660000;
}
#sidebar {
    float: left;
    padding: 10px;
    width: 160px;
}
#footer {
    clear: both;
    padding: 10px 0 10px 0;
    background-color: #a0d8ef;
    color: #093d86;
    width: 100%;
    margin: auto;
}
/* -------------------------------------------------------------
   [2] ヘッダーブロック内に関する指定 */

/* -- 見出しレベル1 -- */
h1 {
    font-size: 100%;
    font-weight: normal;
    color: #fff;
    position: absolute;
    top: 70px;
    right: 10px;
}
/* -- タイトル -- */
.logo {
    font-size: 140%;
    position: absolute;
    top: 20px;
    left: 10px;
}
.logo a {
    text-decoration: none;
    color: #003399;
}
.logo a:hover {
    text-decoration: none;
    background-color: #ffffff;
    color: #ff0000;
}
/* -- 概要 -- */
.description {
    width: 780px;
    color: #fff;
    position: absolute;
    bottom: 20px;
    left: 10px;
}
/* ナビゲーション */
.header-navi {
    list-style-type: none;
    position: absolute;
    top: 3px;
    right: 0;
}
.header-navi li {
    display: inline;
    background: url(img/listmark.gif) no-repeat 0 50%;
}
.header-navi a {
    text-decoration: none;
    padding: 0 15px;
}
.header-navi a:hover {
    text-decoration: underline;
}
/* -------------------------------------------------------------
   [3] コンテンツブロック内に関する指定 */

/* -- 見出し -- */
h2 {
    width: 80%;
    background-image: url(../img/section_icon_ll.gif); /* 画像の指定 */
    background-repeat: no-repeat; /* 画像の並び */
    margin-left: 15px;  /* 左余白 */
    margin-bottom: 15px;  /* 下余白 */
    padding-left: 40px; /* 余白 */
    padding-bottom: 2px; /* 余白 */
    line-height: 130%; /* 行の高さ */
    font-size: 150%; /* フォントサイズ */
    border-bottom: 1px dashed #ccc;
}
h3 {
    background-image: url(../img/section_icon_l.gif); /* 画像の指定 */
    background-repeat: no-repeat; /* 画像の並び */
    margin-left: 15px;  /* 左余白 */
    margin-top: 10px;
    /* 上余白 */	
    margin-bottom: 5px;  /* 下余白 */
    padding-left: 30px;
    /* 余白 */
    line-height: 130%; /* 行の高さ */
    font-size: 120%; /* フォントサイズ */
}
h4 {
    background-image: url(../img/section_icon_s.gif); /* 画像の指定 */
    background-repeat: no-repeat; /* 画像の並び */
    margin-left: 35px;  /* 左余白 */
    margin-top: 15px;
    /* 上余白 */	
    padding-left: 30px; /* 余白 */
    line-height: 100%; /* 行の高さ */
    font-size: 110%; /* フォントサイズ */
}
/* 小見出し */
.details_head {
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 10px;
    margin-bottom: 1em;
    font-size: 13px;
    border-left: 10px solid #bce2e8;
    font-weight: bold;
}
/* -- 文字 -- */
#contents u {
    text-decoration: none;
    border-bottom: 1px solid;
    border-color: #F00;
    padding-bottom: 1px;
}
#contents blockquote, cite {
    margin: 1em 2em;
    color: #330000;
    border-left: 3px solid #330000;
    padding-left: 1em;
    width: 500px;
}
#contents hr {
    border: none;
    border-top: dashed 1px #CCC;
    height: 1px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
    margin-bottom: 1em;
}
#contents ul {
    margin-left: 3em;
    line-height: 1.6em;
    padding-bottom: 1.5em;
}
#contents ol {
    margin-left: 3em;
    line-height: 1.6em;
    padding-bottom: 1.5em;
}
#contents li {
    margin-bottom: 0.5em;
}
#contents p {
    line-height: 1.3em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
}
/*---ページの途中に表示するpagetop--------------*/

.pagetop {
    font-size: small;
    width: 600px;
    float: none;
    margin-top: 5px;
    margin-bottom: 5px;
    clear: both;
}
/*---ページの途中に表示するpagetop　ここまで--*/

/* -------------------------------------------------------------
   [4] 位置情報に関する指定 */

/* --- リストエリア --- */
ol.topicPath {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
}
/* --- リスト項目 --- */
ol.topicPath li {
    display: inline;
}
/* --- リンク --- */
ol.topicPath li a {
    padding-right: 12px; /* リンクエリアの右パディング */
}
ol.topicPath li.home {
    background: none;
}
/* 

/* --- PC用ナビゲーションバー --- */
div.nav {
    width: 140px; /* ナビゲーションの幅 */
    font-size: 80%;
    margin: auto;
}
/* --- メニューエリア --- */
div.nav ul.nl {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: left;
}
/* --- メニュー項目 --- */
div.nav ul.nl li {
    padding: 3px 1px; /* 項目のパディング（上下、左右） */
    background-color: #f9f9f9; /* 項目の背景色 */
    border: 1px #c0c0c0 dotted; /* 最上部の境界線 */
}
/* --- リンク --- */
div.nav ul.nl li a {
    display: block;
    position: relative; /* IE6用 */
    padding: 8px 10px; /* リンクエリアのパディング（上下、左右） */
    border-left: 4px #bce2e8 solid; /* リンクエリアの左境界線 */
    text-decoration: none; /* テキストの下線（なし） */
}
/* --- ポイント時の設定 --- */
div.nav ul.nl li a:hover {
    border-left-color: #89c3eb; /* ポイント時の左境界線色 */
}
 --------------------------------- [5] フッターブロック内に関する指定 */ .center {
text-align: center;
}
.footer {
    margin-left: 90px;
    margin-top: 10px;
}
/*-----各種中央寄せ-----*/

div.center {
    width: 500px;
    margin: 0 auto 0 auto;
}
img.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}
p.center {
    text-align: center;
}
p.right {
    text-align: right;
}
.text-center {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 10px;
}
td.text-center {
    text-align: center;
    letter-spacing: 0.2em;
}
/*-----各種アイコン付与-----*/
a[href$=".pdf"] {
    padding-right: 20px;
    background: url(../img/pdf.gif)no-repeat right;
}
a[href$=".zip"] {
    padding-right: 20px;
    background: url(../img/zip.gif)no-repeat right;
}
a[href$=".doc"], a[href$=".docx"] {
    padding-right: 20px;
    background: url(../img/word.gif)no-repeat right;
}
a[href$=".xls"], a[href$=".xlsx"] {
    padding-right: 20px;
    background: url(../img/excel.gif)no-repeat right;
}
a[href$=".ppt"], a[href$=".pptx"] {
    padding-right: 20px;
    background: url(../img/powerpoint.gif)no-repeat right;
}
a.key {
    padding-right: 20px;
    background: url(../img/key.png)no-repeat right;
}
