@charset "utf-8";
#menuList {
    display: none;
}
#menuOverlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: none;
    position: fixed;
    z-index: 9997;
}
#switchBtnArea {
    float: right;
    width: 60px;
    height: 60px;
    position: relative;
}
#switchBtnArea #switchBtn {
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    display: block;
    background: #17194c;
    position: absolute;
    border-radius: 3px;
    z-index: 9998;
}
#switchBtnArea #switchBtn span {
    left: 20%;
    width: 60%;
    height: 4px;
    display: block;
    position: absolute;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.2s linear;
}
#switchBtnArea #switchBtn span:nth-of-type(1) {top:10px;transform: rotate(0);}
#switchBtnArea #switchBtn span:nth-of-type(2) {top:18px;transform: scale(1);}
#switchBtnArea #switchBtn span:nth-of-type(3) {bottom:10px;transform: rotate(0);}

#switchBtnArea #switchBtn.btnClose {background: transparent;}
#switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {top:18px;transform: rotate(-45deg);}
#switchBtnArea #switchBtn.btnClose span:nth-of-type(2) {transform: scale(0);}
#switchBtnArea #switchBtn.btnClose span:nth-of-type(3) {bottom:18px;transform: rotate(45deg);}

#rwdMenuWrap {
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #17184b;
    overflow: auto;
    position: fixed;
    z-index: 9999;
}
#rwdMenuWrap ul {
    width: 90%;
    padding: 5%;
    padding-top: 17%;
}
#rwdMenuWrap ul li {
    width: 100%;
    border-bottom: #484871 1px solid;
}
#rwdMenuWrap ul li:first-child {
    border-top: #484871 1px solid;
}
#rwdMenuWrap ul li a {
    padding: 15px 20px;
    text-align: left;
    display: block;
    position: relative;
    color: #fff;
}
#rwdMenuWrap ul li a:hover {
    color: #ccc;
}
#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 #b0b0b0;
    border-right: 2px solid #b0b0b0;
    -moz-transform: rotate(45deg);
    -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;}

