/* ------------------------------
   MEDIAQUERIES[SP]LAYOUT
------------------------------ */
#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 {
  background: #ffffff;
  position: relative;
}

#switchBtnArea #switchBtn {
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  display: block;
  background: #faafb4;
  position: absolute;
  border: 2px solid #ffffff;
  border-radius: 5px;
  z-index: 9998;
}

#switchBtnArea #switchBtn span {
  right: 20%;
  width: 60%;
  height: 4px;
  display: block;
  position: absolute;
  background-color: #ffffff;
  border-radius: 5px;
  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: 18px;
  -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: 18px;
  -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 {
  top: 0;
  right: -260px;
  width: 260px;
  height: 100%;
  background: #faafb4;
  overflow: auto;
  position: fixed;
  z-index: 9999;
}

#rwdMenuWrap ul {
  width: 100%;
}

#rwdMenuWrap ul li {
  width: 100%;
  border-bottom: #faafb4 1px dashed;
}

#rwdMenuWrap ul li a {
  font-size: 14px;
  color: #faafb4;
  padding: 15px;
  text-align: left;
  display: block;
  background: #ffffff;
  position: relative;
}

#rwdMenuWrap ul li a span:nth-child(2) {
  display: none;
}

#rwdMenuWrap ul li a span:nth-child(1) {
  font-size: 14px;
  color: #333333;
}

#rwdMenuWrap ul li a span {
  font-size: 12px;
  color: #999999;
}

#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 #faafb4;
  border-right: 2px solid #faafb4;
  -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;
}
