@charset "utf-8";

/* 基本構造
--------------------------------------------------------*/
body {
    font-family: verdana, arial, helvetica, sans-serif;
    margin: 0 auto;
    width: 900px;
    background-color: #f7f7f7;
}

/* ヘッダ
------------------------------------------- */
#header {
    font-family: 'Alegreya', serif;
    font-size: 60px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #74bc58;
    color: #ffffff;
}

#wrapper{
    clear:both;
    background-color: #005442;
    border: 1px solid #c0c0c0;
    border-top: 2px solid #ffffff;
}

/* メニュー
---------------------------------------*/
#menu {
    width: 100%;
}

#menu ul{
    width: 900px;
    margin: 0 auto; /* センターに配置 */
    padding: 0;
    list-style-type: none;
    text-align: center;
}

#menu li{
    width: 25%;
    float:left;
}

#menu a:link, #menu a:visited{
    display:block;
    font-weight: bold;
    font-size: 15px;
    padding: 6px;
    text-decoration:none;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    background-color: #005442;
    color: #ffffff;
}

#menu a:hover, #menu a:active{
    background-color:#cbd554;
    color: #2e5214;
}

/* 高度なメニュー
-------------------------------------------- */
.dropmenu{
  *zoom: 1;
  list-style-type: none;
  width: 900px;
  margin: 0 auto;
  padding: 0;
}
.dropmenu:before, .dropmenu:after{
  content: "";
  display: table;
}
.dropmenu:after{
  clear: both;
}
.dropmenu li{
  position: relative;
  width: 25%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}
.dropmenu li a{
  display: block;
  margin: 0;
  padding: 11px 0 11px;
  background-color: #005442;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
}
.dropmenu li ul{
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}
.dropmenu li ul li{
  width: 100%;
}
.dropmenu li ul li a{
  padding: 13px 15px;
  border-top: 1px solid #7c8c0e;
  background-color: #005442; /* dark green */
  color: #ffffff;
  text-align: left;
}
.dropmenu li:hover > a{
  background: #d16b6b; /* pink */
}
.dropmenu li a:hover{
  background-color:#cbd554;  /* light green */
  color: #2e5214;
}

#normal li ul{
  display: none;
}
#normal li:hover ul{
  display: block;
}


/* コンテンツ
-------------------------------------------- */
#contents {
    clear:both;
    margin-left: auto;
    margin-right auto;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

#contents dt {
    padding-bottom: 10px;
}

#contents dd {
    padding-bottom: 2px;
}


/* 見出し
-------------------------------------------- */
.headline {
    color:#330033;
    font-size: 140%;
    margin: 20px -30px 20px;
    padding: 10px 0px 5px 20px;
    border-bottom:#554 medium solid;
}

.subline {
    color:#330033;
    font-size: 120%;
    margin: -5px -30px 20px;
    padding: 0px 0px 5px 30px;
    border-bottom:#554 medium solid;
}

.dotline {
    color:#330033;
    font-size:120%;
    margin: 20px 0px 20px;
    padding-left: 20px;
    border-bottom: 2px dotted #330033;
}

.boxline {
    padding: 5px;
    padding-left: 10px;
    margin: 25px -10px 10px;
    font-weight:bold;
    background: #e7cccc;
    border-left: 10px solid #8b0000;
}

.capline {
    padding: 5px;
    padding-left: 10px;
    margin-top: 60px;
    margin-bottom: -20px;
    border-left: 10px solid #554;
    border-bottom: medium solid #554;
}

h2 {
    padding: 5px;
    padding-left: 7px;
    margin: 25px -10px 10px;
    border-left: 10px solid #5f9ea0;
    border-bottom: 1px solid #5f9ea0;
}

.secIndent p {
    margin-bottom: 10px;
    text-indent: 1em;
}

.bold { font-weight: bold; }
.lightgray { color: #6a7988; }
.red { color: #c7152c; }

.center { text-align: center }
.right { text-align: right }
.left { text-align: left }

.bg_color { background-color: #d1dcff; }
.bg_white { background-color: #ffffff; }

/* コンテンツ
--------------------------------- */
img.left{
    float: left;
    margin-top: 15px;
    margin-left: 10px;
}

table{
    border-style: solid;
    border-collapse: collapse;
    border-color: #554;
}

th, td {
    border: solid 1px;
    padding: 3px;
}

th{
    background-color: #F5F5F5;
}

th.fix {
    width: 100px;
    table-layout:fixed;
}

pre {
    font-family: Courier;
}

/* ダウンロードアイコン
--------------------------------- */
.icon {
    padding-left:4px;
    padding-right:4px;
    padding-bottom: 1px;
    color: #ffffff;
    text-decoration:none;
    background: -moz-linear-gradient(top,#0099CC 0%, #006699 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#0099CC), to(#006699));
    background: -ms-linear-gradient(top left, #0099CC 0%, #006699 100%);
    border-top:1px;
    border-left:1px;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
}

.icon:hover {
    background: #006699
}


/* フッター
--------------------------------*/
#footer {
    margin-left: auto;
    margin-right: auto;
    padding: 15px 30px;
    background-color: #d7d7d7;
    color: #484848;
}

#footer a {
    font-weight: bold;
}

#footer address{
    text-align: right;
    font-style: normal;
    font-weight: bold;
    padding-right: 5px;
    padding-top: 40px;
}

#copyright{
    text-align:center;
    font-size: 90%;
    padding-top: 20px;
}


/* ページトップに戻るボタン
--------------------------------*/
#pagetop {
    position: fixed;
    bottom: 130px;
    right: 0px;
}
#pagetop a {
    background: #FFAA00;
    color: #fff;
    padding: 40px 10px;
    text-align: center;
    display: block;
    border-radius: 5px;

}
#pagetop a:hover {
    background: #FFCC00;
}

/* Slider 表示エリア
---------------------------------*/
.slidearea {
  margin: 10px;
  width: 300px;
}
