@charset "utf-8";
/* CSS Document */

/* ------------------------------
   #menuList
------------------------------ */
#menuList {
    width: 100%;
	padding:0;
	margin:0px;
}
 
#menuList ul {
	padding:0;
    margin: 0 auto;
    max-width: 100%;
	list-style:none;
    text-align: left;
}
 
#menuList ul li {
	padding:0;
	margin:0;
    width: 20%;
    height: 30px;
    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: 30px;
    line-height: 30px;
    display: block;
    text-align: center;
    transition: all 0.1s linear;
}
 
#menuList ul li:hover > a {
    /*background: #fff;*/
}
 
li.gn01, li.gn02{
	display:none;
}

 
/* ------------------------------
   MEDIAQUERIES LAYOUT
------------------------------ */
@media only screen and (max-width: 768px) {
	#menuList {
		border-bottom:none;
	}

    #menuList ul {
        width: 100%;
    }
 
    #menuList ul li {
	padding:0;
	margin: 0 -1px 0 0;
    width: 33.45%;
    height: 30px;
    float: left;
    border-right: #aaa 1px solid;
	border-bottom: #aaa 1px solid;
	border-left: #aaa 1px solid;
    box-sizing: border-box;

    }
	
	#menuList ul li a {
	margin: 0 0 0 0;
    height: 30px;
    font-weight: bold;
    line-height: 30px;
    display: block;
    text-align: center;
    transition: all 0.2s linear;
	}

}
 
/* ------------------------------
   MEDIAQUERIES[SP]LAYOUT
------------------------------ */
@media only screen and (max-width: 480px) {
    #menuList {
        display: none;
    }
 
    #rwdMenuWrap {
        width: 100%;
        border-bottom: #aaa 1px solid;
    }
 
    #rwdMenuWrap #switchBtnArea {
	width: 100%;
	height: 50px;
	background-color: #004D8C;
	position: relative;
    }
 
    #rwdMenuWrap #switchBtnArea #switchBtn {
        top: 5px;
        right: 5px;
        width: 40px;
        height: 40px;
        display: block;
        background-color: rgba(255,255,255,0.5);
        position: absolute;
        border-radius: 5px;
    }
 
    #rwdMenuWrap #switchBtnArea #switchBtn span {
        left: 20%;
        width: 60%;
        height: 4px;
        display: block;
        position: absolute;
        background-color: #fff;
        border-radius: 5px;
        transition: all 0.2s linear;
    }
    #rwdMenuWrap #switchBtnArea #switchBtn span:nth-of-type(1) {top:10px;transform: rotate(0);}
    #rwdMenuWrap #switchBtnArea #switchBtn span:nth-of-type(2) {top:18px;transform: scale(1);}
    #rwdMenuWrap #switchBtnArea #switchBtn span:nth-of-type(3) {bottom:10px;transform: rotate(0);}
 
    #rwdMenuWrap #switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {top:18px;transform: rotate(-45deg);}
    #rwdMenuWrap #switchBtnArea #switchBtn.btnClose span:nth-of-type(2) {transform: scale(0);}
    #rwdMenuWrap #switchBtnArea #switchBtn.btnClose span:nth-of-type(3) {bottom:18px;transform: rotate(45deg);}
 
    #rwdMenuWrap ul {
        width: 100%;
		list-style:none;
        display: none;
		padding:0;
		margin:0;
    }
 
    #rwdMenuWrap ul li {
        width: 100%;
        border-bottom: #aaa 1px solid;
    }
	
	#rwdMenuWrap ul li:last-child {
        border-bottom: none;
    }
 
    #rwdMenuWrap ul li a {
        padding: 15px 20px;
        text-align: left;
        display: block;
        background: #ebebeb;
        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);
    }
 
	li.gn01, li.gn02{
	display:block;
	}

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

