/* ------------------------------
   MEDIAQUERIES[SP]LAYOUT
------------------------------ */
#menuList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 10px;
}

#menuList ul li {
  border-right: 1px solid #ffffff;
}

#menuList ul li:last-child {
  border-right: none;
}

#menuList ul li a {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  padding: 0 20px;
}

#menuList ul li a.current, #menuList ul li a:hover {
  color: #cccccc;
}

@media only screen and (max-width: 991px) {
  #menuList {
    display: none;
  }
  #menuOverlay {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    position: fixed;
    z-index: 9997;
  }
  #switchBtnArea {
    position: fixed;
    width: 100%;
    background: #ffffff;
    z-index: 9998;
  }
  #switchBtnArea #switchBtn {
    top: 20px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: block;
    position: fixed;
    border: 1px solid #ffffff;
  }
  #switchBtnArea #switchBtn span {
    right: 20%;
    width: 60%;
    height: 3px;
    display: block;
    position: absolute;
    background-color: #ffffff;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  #switchBtnArea #switchBtn span:nth-of-type(1) {
    top: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  #switchBtnArea #switchBtn span:nth-of-type(2) {
    top: 17px;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  #switchBtnArea #switchBtn span:nth-of-type(3) {
    bottom: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  #switchBtnArea #switchBtn.btnClose {
    background: transparent;
  }
  #switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {
    top: 17px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #switchBtnArea #switchBtn.btnClose span:nth-of-type(2) {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  #switchBtnArea #switchBtn.btnClose span:nth-of-type(3) {
    bottom: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #rwdMenuWrap {
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100%;
    background: #000000;
    overflow: auto;
    z-index: 9999;
  }
  #rwdMenuWrap ul {
    width: 100%;
  }
  #rwdMenuWrap ul li {
    width: 100%;
  }
  #rwdMenuWrap ul li a {
    position: relative;
    display: block;
    font-size: 12px;
    text-align: left;
    padding: 15px;
    background: #ffffff;
    border-bottom: #cccccc 1px solid;
  }
  #rwdMenuWrap ul li a:after {
    position: absolute;
    top: 50%;
    right: 15px;
    display: block;
    content: "";
    font-size: 1em;
    font-weight: bold;
    color: #333333;
    line-height: 1.2em;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #49a1d9;
    border-right: 2px solid #49a1d9;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #rwdMenuWrap ul li a.current, #rwdMenuWrap ul li a:hover {
    color: #ffffff;
    background: #49a1d9;
  }
  #rwdMenuWrap ul li a.current:after, #rwdMenuWrap ul li a:hover:after {
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }
  #contents {
    width: 100%;
  }
  #contents p {
    padding: 0 20px 2em 20px;
  }
}

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

#menuList > ul:after {
  clear: both;
}

#menuList > ul {
  *zoom: 1;
}
/*# sourceMappingURL=nav.css.map */