/* ------------------------------
   MEDIAQUERIES[SP]LAYOUT
------------------------------ */
.nav-box #menuList {
  display: block;
  height: 100%;
  margin: 60px 0 120px;
}

.nav-box #menuList ul {
  width: 100%;
  height: 100%;
  border-top: 1px solid #999999;
}

.nav-box #menuList ul li {
  border-bottom: 1px solid #999999;
}

.nav-box #menuList ul li a {
  display: block;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
  padding: 10px;
}

.nav-box #menuList ul li a span {
  display: block;
  padding: 10px 10px 10px 8px;
  border-left: 4px solid #b49531;
}

.nav-box #menuList ul li a.current,
.nav-box #menuList ul li a:hover {
  color: #ffffff;
  background: #000;
}

.cont-nav-box #menuList {
  display: block;
  height: 100%;
  margin: 30px 0 0;
}

.cont-nav-box #menuList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cont-nav-box #menuList ul li {
  width: calc(100% / 7);
}

.cont-nav-box #menuList ul li a {
  display: block;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0;
  width: 100%;
  padding: 10px 0;
  border-right: 1px solid #cccccc;
}

.cont-nav-box #menuList ul li a.current,
.cont-nav-box #menuList ul li a:hover {
  color: #ffffff;
  background: #56403e;
}

.cont-nav-box #menuList ul li:first-child a {
  border-left: 1px solid #cccccc;
}

@media only screen and (max-width: 992px) {
  .nav-box #menuList {
    display: none;
  }
  .cont-nav-box #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: 18px;
    right: 15px;
    width: 40px;
    height: 40px;
    display: block;
    background: #56403e;
    position: absolute;
    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: #56403e;
    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;
    color: #333333;
    text-align: left;
    padding: 15px;
    background: #ffffff;
    border-bottom: #cccccc 1px solid;
  }
  #rwdMenuWrap ul li a:hover {
    background: #f5f5f5;
  }
  #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 #56403e;
    border-right: 2px solid #56403e;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #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 */