/* ------------------------------
   #menuList
------------------------------ */
/*#menuList {
    width: 100%;
    height: 45px;
    border-top: #aaa 1px solid;
    border-bottom: #aaa 1px solid;
    position: relative;
    z-index: 10;
    background: #ebebeb;
}
 
#menuList ul {
    margin: 0 auto;
    width: 800px;
    height: 45px;
    text-align: left;
}
 
#menuList ul li {
    width: 160px;
    height: 45px;
    float: left;
    border-left: #aaa 1px solid;
    box-sizing: border-box;
}
 
#menuList ul li:last-child {
    border-right: #aaa 1px solid;
}
 
#menuList ul li a {
    height: 45px;
    font-weight: bold;
    line-height: 45px;
    display: block;
    text-align: center;
    transition: all 0.2s linear;
}
 
#menuList ul li:hover > a {
    background: #fff;
}
 
#contents {
    margin: 0 auto;
    padding: 40px 0;
    width: 800px;
    text-align: left;
}
 
#contents p {
    padding-bottom: 2em;
    font-size: 1em;
    line-height: 2em;
}
 */
/* ------------------------------
   MEDIAQUERIES LAYOUT
------------------------------ */
/*@media only screen and (max-width: 800px) {
    #menuList ul {
        width: 100%;
    }
 
    #menuList ul li {
        width: 20%;
    }
}*/
 
/* ------------------------------
   MEDIAQUERIES[SP]LAYOUT
------------------------------ */
@media only screen and (max-width: 992px) {
    #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 {
        width: 60px;
        height: 60px;
        /*background: #fff;
        border-bottom: #aaa 1px solid;*/
        position: absolute;
		z-index: 15000;
    }
 
    #switchBtnArea #switchBtn {
        top: 15px;
        left: 10px;
        width: 40px;
        height: 40px;
        display: block;
        /*background: #fff;*/
        position: fixed;
        /*border-radius: 5px;*/
        z-index: 9998;
    }
 
    #switchBtnArea #switchBtn span {
        left: 10%;
        width: 80%;
        height: 3px;
        display: block;
        position: absolute;
        background-color: #000;
        /*border-radius: 5px;*/
        transition: all 0.2s linear;
		-webkit-transition:all 0.2s linear;
  		-moz-transition: all 0.2s linear;
    	-o-transition: all 0.2s linear;
    	-ms-transition: all 0.2s linear;
    }
    #switchBtnArea #switchBtn span:nth-of-type(1) {top:10px;transform: rotate(0); -webkit-transform: rotate(0); -moz-transform: rotate(0);}
    #switchBtnArea #switchBtn span:nth-of-type(2) {top:18px;transform: scale(1); -webkit-transform:scale(1); -moz-transform: scale(1);}
    #switchBtnArea #switchBtn span:nth-of-type(3) {bottom:10px;transform: rotate(0); -webkit-transform: rotate(0); -moz-transform: rotate(0);}
 
    #switchBtnArea #switchBtn.btnClose {background: transparent;}
    #switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {top:18px ;transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg);}
    #switchBtnArea #switchBtn.btnClose span:nth-of-type(2) {transform: scale(0); -webkit-transform:scale(0); -moz-transform: scale(0);}
    #switchBtnArea #switchBtn.btnClose span:nth-of-type(3) {bottom:18px;transform: rotate(45deg); -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg);}
 
 	 #switchBtnArea #switchBtn.btnClose span {background-color: #fff; }
 
	#rwdMenuWrap {
        top: 70px;
        left: -100%;
        width: 100%;
		height: 90%;
       /* height: 100%;*/
        background: #000;
        overflow: auto;
        position: fixed;
        z-index: 9999;
    }
 
    #rwdMenuWrap ul {
        width: 100%;
    }
 
    #rwdMenuWrap ul li {
        /*width: 100%;
        border-bottom: #aaa 1px solid;*/
    }
 
    /*#rwdMenuWrap ul li a {
        padding: 15px 20px;
        text-align: left;
        display: block;
        background: #000;
        position: relative;
    }
 
    #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;}