/*- dropmenu; --------------------------------*/

.dropmenu{
  *zoom: 1;
  list-style-type: none;
  /*width: 960px;*/
  /*margin: 5px auto 30px;*/
  width:100%;
  padding: 0;
  background-color:#eeeeee;
  float:left;
}

.dropmenu:before, .dropmenu:after{
  content: "";
  display: table;
}

.dropmenu:after{
  clear: both;
}

.dropmenu div{
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.dropmenu div a{
  display: block;
  margin: 0;
  padding: 15px 0 11px;
  background: #eeeeee;
  color: #00f;
  font-size: 16px;
  line-height: 1;
  text-decoration: underline;
}

.dropmenu div ul{
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 100%;
  margin: 0;
  padding: 0;
}

.dropmenu div ul li{
  width: 100%;
}

.dropmenu div ul li a{
  padding: 13px 15px;
  /*border: 1px solid #00f;*/
  background: #eeeeee;
  text-align: left;
    font-size: 70%;
}
.dropmenu div:hover > a{
  background: #dddddd;
}

.dropmenu div a:hover{
  background: #dddddd;
}

/**/


#normal ul{
  /*overflow: hidden;*/
  display : none ;
  width: 0;
  transition: .5s;
}

#normal div:hover ul{
  display : block;
  width: 100%;
}

#normal div:hover ul li a{
  white-space: nowrap;
}

.dropmenu div .nigyoume{
    float: left;
    position: absolute;
    z-index: 9998;
    top: 0px;
    left: 100%;
    margin-left: 100%;
}

/*---------------------------- スマートフォン向けのスタイル ----------------------------*/
@media only screen and (max-width: 679px) {

.dropmenu div{
  position: relative;
  width: 30%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.dropmenu div ul{
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 100%;
  margin: 0;
  padding: 0;
}

.dropmenu div ul li{
  width: 80%;
}

.dropmenu div ul li a{
  padding: 12px 14px;
  /*border: 1px solid #00f;*/
  background: #eeeeee;
  text-align: left;
    font-size: 70%;
    width: 100%;
}

.dropmenu div .nigyoume{
    float: left;
    position: absolute;
    z-index: 9998;
    top: 0px;
    left: 100%;
    margin-left: 100%;
}

#normal div:hover ul{
  display : block;
  width: 100%;
}

}