@charset "utf-8";
/* ------------------------------
   #menuList
------------------------------ */
.nav {
  width: 100%;
  z-index: 999;
}
body.is-fixed .nav--typeA {
  position: fixed;
  top: 0;
  left: 0;
  margin-bottom: 100px !important;

}
body.is-fixed .nav--typeA ::after{
    content: "";
    display: block;
    clear: both;
}

/* ナビゲーション固定時だけ.newsにつけた.nav_fixedにきかせる */
body.is-fixed .nav_fixed{
  margin-top: 145px;
}
body.is-fixed .nav_under{
  margin-top: 100px !important;
}



#menuList {
  margin: 0 0 0 0;
  padding:20px 0 0 0;
  height: 50px;
  list-style-type: none;
  background-image: url(../images/bg_navi.png);
  background-repeat: repeat-x;
  /* background-position: 50% 50%; */
  width: 100%;
}
 
#menuList ul {
  margin: 0 auto 0 auto;
  max-width: 1024px;
  position: relative;
  top: -20px;
  padding: 0;
}

#menuList ul li:nth-child(1){
  border-left: dashed 1px;
}
 
#menuList ul li {
  margin: 0 0 0 0;
  padding:0px 0 0 0;
/*   height: 50px; */
  list-style-type: none;
  background-image: url(../images/bg_navi.png);
  background-repeat: repeat-x;
  background-position: 50% 50%;
  border-right: dashed 1px; 
  float: left;
  width: 16.5%;
  text-align: center;
}
 
 
#menuList ul li a {
    text-decoration: none;
    height: 45px;
    font-weight: bold;
    line-height: 45px;
    display: block;
    text-align: center;
    transition: all 0.2s linear;
}
 
#menuList ul li:hover > a {
    background: #ffa09d;
}
 

/* ------------------------------
   MEDIAQUERIES LAYOUT
------------------------------ */
@media only screen and (max-width: 800px) {
    #menuList ul {
        width: 100%;
    }
 
    #menuList ul li {
        width: 16%;
    }
}
 
/* ------------------------------
   MEDIAQUERIES[SP]LAYOUT
------------------------------ */
@media only screen and (max-width: 768px) {
    #menuList {
        display: none;
    }
 
    #rwdMenuWrap {
        width: 100%;
/*         border-bottom: #aaa 1px solid; */
    }
 
    #rwdMenuWrap #switchBtnArea {
        width: 100%;
        height: 60px;
/*         background: #3c3c3c; */
        position: relative;
    }
 
    #rwdMenuWrap #switchBtnArea #switchBtn {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        display: block;
        background: #ff9797;
        position: absolute;
        border-radius: 5px;
    }
 
    #rwdMenuWrap #switchBtnArea #switchBtn span {
        left: 20%;
        width: 60%;
        height: 4px;
        display: block;
        position: absolute;
        background-color: #fff;
        border-radius: 5px;
        transition: all 0.2s linear;
    }
    #rwdMenuWrap #switchBtnArea #switchBtn span:nth-of-type(1) {top:10px;transform: rotate(0);}
    #rwdMenuWrap #switchBtnArea #switchBtn span:nth-of-type(2) {top:18px;transform: scale(1);}
    #rwdMenuWrap #switchBtnArea #switchBtn span:nth-of-type(3) {bottom:10px;transform: rotate(0);}
 
    #rwdMenuWrap #switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {top:18px;transform: rotate(-45deg);}
    #rwdMenuWrap #switchBtnArea #switchBtn.btnClose span:nth-of-type(2) {transform: scale(0);}
    #rwdMenuWrap #switchBtnArea #switchBtn.btnClose span:nth-of-type(3) {bottom:18px;transform: rotate(45deg);}
 
    #rwdMenuWrap ul {
        padding: 0;
        margin: 0;
/*         width: 100%; */
        display: none;
    }
 
    #rwdMenuWrap ul li {
        width: 100%;
        border-bottom: #333 1px solid;
        list-style-type: none;
    }
 
    #rwdMenuWrap ul li a {
        text-decoration: none;
        padding: 15px 20px;
        text-align: left;
        display: block;
        background: #ff9797;
        position: relative;
        color: #333333;
    }
 
    #rwdMenuWrap ul li a:after {
        content: '';
        margin-top: -4px;
        top: 50%;
        right: 15px;
        width: 8px;
        height: 8px;
        color: #888;
        font-size: 1em;
        font-weight: bold;
        line-height: 1.2em;
        display: block;
        position: absolute;
        border-top: 2px solid #666666;
        border-right: 2px solid #666666;
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
 
    /* PCスクロール固定メニューの影響の修正 */
    body.is-fixed .nav_fixed{
      margin-top: 0;
    } 
    body.is-fixed .top .nav_fixed{
      margin-top: 75px;
    }
    body.is-fixed .nav_under{
      margin-top: 0 !important;
}

}
 
/* ------------------------------
   CLEARFIX ELEMENTS
------------------------------ */
#menuList > ul:before,
#menuList > ul:after {
    content: " ";
    display: table;
}
#menuList > ul:after {clear: both;}
#menuList > ul {*zoom: 1;}