/*서브탭메뉴*/
.tabwrap {
    display: none;	
	transform: rotate(-0.03deg);
    width: 90%;
    margin: 0 auto;
    margin-bottom: 35px;
    z-index: 9;
    position: relative;
    padding-top: 25px;
}
.tabwrap ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin: 0 auto;
	justify-content: center;

}

.tabwrap li {
	text-align: center;
	margin-top: 1vw;
	margin-left: 1vw;
	width: 100%;
    display: block;
    font-size: 3vw;
    line-height: 8vw;
    transform: rotate(-0.03deg);
	border:1px solid #ADADAD;
}
.tabwrap li:first-child{
	margin-left: 0vw;
}


.tabwrap ul a {
    display: block;
    background: #fff;
    color: #636363;
    font-weight: 400;
    width: 100%;
    height: 100%;
    
}
.tabwrap ul li:first-child a {
    border-left: none;
}


.tabwrap a:hover {
    background: #095093 !important;
    color: #fff !important;
}

.tab_on {
    background: #095093 !important;
    color: #fff !important;
}

