.center{
  text-align: center;
}
body {
     /* background: linear-gradient(to top, rgba(0,153,255,0.5), #009);
     background-color: black; */
     font-size: 12px;
     font-family: "メイリオ"," Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", "Arial", "Verdana",             "sans-serif";
     margin: 0px auto;
     width:100%;
}

article {
       background-color: white;
       display: block;
       padding-left: 5px;
       padding-right: 5px;
       padding-top:1px ;
       text-align:left;
       /*min-height:800px;*/
       color:darkblue;
       width:90%;
       margin: auto;
  }

header,footer {
     background-color: black;
     color: white;
     height: 40px;
     line-height: 40px;
     text-align: center;
     font-size: 1.2em;
}
header h5 {
     margin: 0px auto;
     text-align: center;
     color: white;
     line-height: 2em;
     height:2em;
}

nav {
     background: lightblue;
     color: white;
     display: block;
     height: 35px;
     line-height: 35px;
     padding: 0px;
     text-decoration: none;
}

nav ul, nav li {
    list-style-type:none;
     margin : 0px auto;
}


ul#Nav001 li{
     background: url(../pic/yajirushi.gif) no-repeat 0px 0px;
     color: #666;
     height: 20px;
     margin-left: 17px;
     padding-left: 22px;
     padding-top: 2px;
     text-decoration: none;
     display: inline-block;
     /* position: relative;
     top:10px; */
}

ul#Nav001 li:hover {
     background: url(../pic/yajirushi.gif) no-repeat 2px 0px;
     color: #F90;
}

/*子階層以降共通*/
ul#Nav001 li li {
  height: 0;
  overflow: hidden;
  transition: .5s;
}
ul#Nav001 li li a {
  border-top: 1px solid #eee;
}
ul#Nav001 li:hover > ul > li {
  height: 2rem;
  overflow: visible;
} 

hr {
        border-top: 3px double #bbb;
        border-color:pink;
     }

hr.short {
  border-top: 1px dotted #8c8b8b;
    border-color:green;
    width:60%;
    margin-left:10px;
}

.blue{
   color:blue;
   }
.tomato{
  color:tomato;
  font-weight: bold;
}
.green{
    color:green;
 }
.darkgreen{
  color:darkgreen;
}
.red{
    color:red;
    }
.orange{
  color:orange;
}
.white{
  color:white;
}
.bgyellow{
  background-color: yellow;
}
.bgblue{
  background-color: blue;
}
.bgred{
  color:white;
  background-color: red;
}

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

.bold{
   font-weight:bold;
  }

.small{
  font-size:x-small;
  text-align: center;
  color:darkgreen;
}
#maegaki{
  margin:0;
  text-align: left;
  font-size: 1.3em;
  line-height: 1.5em;
  padding:12px;
  }
#pic{
  float: left;
  margin-right: 30px ;
  margin-bottom: 30px ;
  position: relative;
  /* top:40px; */

}
abbr{
  cursor: pointer;
}
.container0{
  display: flex;
  margin: 20px 20px;
}


.container1{
  overflow-y: scroll;
  height: 230px;
  width:90%;
  margin: 0 auto;
  font-size: 11px;
  padding-bottom: 20px;
  display: none;
}
.container2{
  overflow-y: scroll;
  height: 230px;
  width:90%;
  margin: 0 auto;
  font-size: 11px;
  padding-bottom: 20px;
  display: none;

}
#chart_area{
  overflow-y: scroll;
  height: 230px;
  width:90%;
  margin: 10px auto;
  font-size: 11px;
  padding-bottom: 20px;

}
#menu {
  background-color: white;
  margin: auto;
  border: none;
  padding-top: 10px;
  }
#menu li{
  display: inline-block;
  list-style: none;
  font-size: 1.1em;
  line-height: 1.3em;
  border: 1px solid darkblue;
  background-color: white;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom:5px;
  cursor: pointer;
  padding: 5px;
 }
#menu li:hover{
  font-weight: bold;
  color:darkgreen;
}
#menu1,#menu2{
  margin-top: 20px ;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.4em;
  color:darkblue;
}

.totop{
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  color:green;
  z-index: 200;
}
.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right:200px;
  z-index: 200;
}
.pagetop a {
  display: block;
  background-color: #93f09a;
  text-align: center;
  color: green;
  font-size: 12px;
  text-decoration: none;
  padding: 5px 10px;
  filter:alpha(opacity=50);
  -moz-opacity: 0.6;
  opacity:0.6;
}
.pagetop a:hover {
  display: block;
  background-color: #b2d1fb;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  padding:5px 10px;
  filter:alpha(opacity=50);
  -moz-opacity: 0.6;
  opacity: 0.6;
}
@keyframes fade-in {
 0% {
   display: none;
   opacity: 0;
 }

 1% {
   display: block;
   opacity: 0;
 }

 100% {
   display: block;
   opacity: 1;
 }
}

@-moz-keyframes fade-in {
 0% {
   display: none;
   opacity: 0;
 }

 1% {
   display: block;
   opacity: 0;
 }

 100% {
   display: block;
   opacity: 1;
 }
}

@-webkit-keyframes fade-in {
 0% {
   display: none;
   opacity: 0;
 }
 1% {
   display: block;
   opacity: 0;
 }
 100% {
   display: block;
   opacity: 1;
 }
}

.sticky_table thead th ,.sticky_table caption {
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* tbody内のセルより手前に表示する */
  z-index: 1;
}


#chart1{
  width:95%;
  height:400px;
}
#chart2,#chart3,#chart4,#chart5,#chart6,#chart7,#chart8,#chart9,#chart10,#chart11{
  width:95%;
  height:600px;
}
#mks_menu,#mks_menu2,#mks_menu3,#mks_menu4{
  display: flex;
}
#mks_menu li,#mks_menu2 li,#mks_menu3 li,#mks_menu4 li{
  list-style: none;
  margin-right: 10px;
  border: solid darkgreen 1px;
  padding: 0 10px;
  border-radius: 5px;
  cursor: pointer;
}
#mks_menu li.on,#mks_menu2 li.on,#mks_menu3 li.on,#mks_menu4 li.on{
  background-color: darkgreen;
  color:white;
}
#mks_menu li.off,#mks_menu2 li.off,#mks_menu3 li off,#mks_menu4 li.off{
  background-color: white;
  color:darkgreen;
}
#setsumei{
  font-size: 1.2em;
  margin-left: 30px;
  margin-right: 30px;
  text-align: left;
  width:40%;
}
.setsumei{
  font-size: 1.1em;
  margin-left: 30px;
  margin-right: 30px;
  /* text-align: left; */
  /* width:40%; */
}

#chart1_1area,#chart2_1area,#chart3_1area,#chart4_1area  {
  width:80%;
  margin: auto;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-template-rows: 300px 280px;
}
#chart1_2,#chart2_2,#chart3_2,#chart4_2{
  height:400px;
}
#chart3_3,#chart4_2{
  width:120%;
}
#tbl_s,#tbl_v{
  display: none;
}
button{
  cursor: pointer;
}
#search{
  border:blueviolet 2px solid;
  border-radius: 3px;
}
#clear{
  display: inline-block;
  border: olive 1px solid;
  background-color: olive;
  border-radius: 5px;
  text-align: center;
  padding: 3px;
  width: 80px;
  cursor: pointer;
  color:white;
}
/* #k1_list{ */
  /* height:3em; */
  /* overflow-y: scroll; */
  /* width:120px; */
/* } */
big{
  font-size:1.5em;
}

#editions,#editions th,#editions td{
  border:1px green solid;
  border-collapse: collapse;
}
#editions caption{
  font-size: 1.2em;
  color:darkcyan;
  font-weight: bold;
  text-align: center;
}
.gray{
  background-color: #bbb;
  font-size: 1.2em;
}