﻿/* CSS レイアウト */
body{
	background-color:black;
	background: -moz-linear-gradient(top, black 700px,gray);
	background: -webkit-linear-gradient(top, black 700px,gray);
	background: linear-gradient(black 700px,gray);
}

#h6{
	line-height: 1.5em;
	font-family: メイリオ, "ヒラギノ角ゴ ProN W3";
	letter-spacing: -1px ;
	font-weight:normal;
}
#toggle{
	display:none;
}

#dropmenu{
  list-style-type: none;
  width:100%;
  max-width: 1000px; /*もとはwidth*/ 
  min-height: 40px;
  margin: 10px;
  padding: 0;
  background: #000;
  border-bottom: 1px solid #051b8b;
  border-radius: 3px 3px 0 0;
}

#dropmenu li{
  position: relative;
  width: 16%;
  display:inline-block;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}
#dropmenu li a{
	font-family:メイリオ, "ヒラギノ角ゴ ProN W3";
	letter-spacing:1px;
	display: block;
	margin: 0;
	padding: 15px 0 11px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	text-decoration: none;
	
}
#dropmenu li:hover > a{
  background: #94a5fb;
  color: #fff;
}
#dropmenu > li:hover > a{
  border-radius: 3px 3px 0 0;
  background: #051b8b;
}
#dropmenu li ul{
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  border-radius: 0 0 3px 3px;
}

#dropmenu li ul li{
  overflow: hidden;
  max-width: 160px;
  width:200%;
  height: 0;
  color: #000;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}
#dropmenu li ul li a{
  color: #eff7b1;
  padding: 13px 15px;
  background: #051b8b;
  text-align: left;
  font-size: 12px;
  font-weight: normal;
}
#dropmenu li:hover ul li{
  background: #94a5fbb;
  font-weight: normal;
  overflow: visible;
  height: 38px;
  border-top: 1px solid #94a5fb;
}

/*#dropmenu li:hover ul li:first-child{
  border-top: 0;
} */
#dropmenu li:hover ul li:last-child{
  border-bottom: 0;
}
#dropmenu li:hover ul li:last-child a{
  border-radius: 0 0 3px 3px;
}

/*表のマウスオーバー指定*/
table.auto-style16 tbody tr:hover {
background-color: #94A5FB; /* 行の背景色 */
}
table.auto-style50 tbody tr:hover {
background-color: #94A5FB; /* 行の背景色 */
}
table.auto-style31 tbody tr:hover {
background-color: #94A5FB; /* 行の背景色 */
}

@media only screen and (max-width: 1000px) {
}