@charset "UTF-8";
/* ドロップダウンメニュー・タブレット、PC */


@media(min-width:768px) {

/*メニュー全体のulの設定*/
#dropmenu{
  list-style-type: none;
  width: 100%;
  /*height: 35px;*/
  margin: 30px auto px;
  padding: 0;
  background: #031634;
  
}

/*通常表示用のメニュー*/
#dropmenu li{
  position: relative;/*サブメニューの表示位置の基準として relativeを指定。*/
  width: 20%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
  /*border-left:1px solid #333;*/
}

/*#dropmenu li:last-child{
  border-right:1px solid #333;
}*/

/*通常表示用メニューのリンク*/
#dropmenu li a{
  display: block;
  margin: 0;
  padding: 15px 0 11px;
  color: #fff;
	font-size: 95%;
  font-family: 'Francois One', sans-serif;
  line-height: 1;
  text-decoration: none;
}

/*通常表示用メニューのリンクの色設定（メニュー・サブメニュー共通）*/
#dropmenu li:hover > a{
  background: #04456B;
  color: #fff;
  
}


/* ================================================== *
 *
 *    ドロップダウンメニューのサブメニュー
 *
 * ================================================== */

#dropmenu li ul{
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  z-index:100;
  
}
#dropmenu li:last-child ul{
  left: -100%;
  width: 100%
}
#dropmenu li ul li{
  overflow: hidden;
  width: 240%;
  height: 0;
  color: #fff;
  
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
  
}
#dropmenu li ul li a{
  padding: 13px 15px;
  background: #031634;
  color:#fff;
  text-align: left;
  font-size:70%;
  font-weight: normal;
}
#dropmenu li:hover ul li{
  overflow: visible;
  height: 38px;
  border-top: 1px solid #3A3A3A;
  border-bottom: 1px solid #3A3A3A;
}
#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;
}
}

/*PC時*/
@media(min-width:992px) {
	
/*メニュー全体のulの設定*/
#dropmenu{
  list-style-type: none;
  width: 100%;
  /*height: 35px;*/
  margin: 30px auto px;
  padding: 0;
  background: #031634;
  
  
}

/*通常表示用のメニュー*/
#dropmenu li{
  position: relative;/*サブメニューの表示位置の基準として relativeを指定。*/
  width: 20%;
  float: left;
  margin: 0;
  padding: 0;
   font-size: 100%;
  text-align: center;
  /*border-left:1px solid #333;*/
}

/*#dropmenu li:last-child{
  border-right:1px solid #333;
}*/

/*通常表示用メニューのリンク*/
#dropmenu li a{
  display: block;
  margin: 0;
  padding: 15px 0 11px;
  color: #fff;
 
  font-family: 'Francois One', sans-serif;
  line-height: 1;
  text-decoration: none;
}

/*通常表示用メニューのリンクの色設定（メニュー・サブメニュー共通）*/
#dropmenu li:hover > a{
  background: #04456B;
  color: #fff;
}


/* ================================================== *
 *
 *    ドロップダウンメニューのサブメニュー
 *
 * ================================================== */

#dropmenu li ul{
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  z-index:100;
  
}
#dropmenu li:last-child ul{
  left: -100%;
  width: 100%
}
#dropmenu li ul li{
  overflow: hidden;
  width: 200%;
  height: 0;
  color: #fff;
  font-size:smaller;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
  
}
#dropmenu li ul li a{
  padding: 13px 15px;
  background: #031634;
  color:#fff;
  text-align: left;
  font-size:small;
  font-weight: normal;
}
#dropmenu li:hover ul li{
  overflow: visible;
  height: 38px;
  border-top: 1px solid #3A3A3A;
  border-bottom: 1px solid #3A3A3A;
}
#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;
}
	
}