@charset "UTF-8";
/* tabs.css */

#tabs {
    position: relative;
	width: 100%;
    background: #f0f0f1;
}

#tabs .tabmenu { padding: 0; text-align: left; }
#tabs .tabmenu .tabmenuInner { width: 100%; height: 50px; margin: 0; overflow: hidden; }
#tabs .tabmenu .tabmenuInner ul {
	position: relative;
	width: calc(100% + 7px);
	margin-right: -7px;
    margin-bottom: -1px;
    background-color:#2D3857; 
}


#tabs .tabmenu li {
	display: inline-block;
    width: calc(50% - 6px);
    margin-right: 6px;
    font-size:  20px;
    text-align: center;
}

#tabs .tabmenu li a {
	display: block;
    box-sizing: border-box;
    width: 100%;
	height: 50px;
    padding-right: 1em;
	line-height: 50px;
    color: #000;
    background-color: #d7d7d8;
    text-decoration: none;
    letter-spacing: 0.2em;
    font-weight: 400;
}
#tabs .tabmenu li a::before {
    content: "▼";
    display: inline-block;
    margin-right: 2em;
    margin-top: -5px;
    font-size: 13px;
    line-height: 40px;
    vertical-align: middle;
}

#tabs .tabmenu .tabmenuInner ul a.btn-genre { 
	width: 100%;
}

#tabs .tabmenu .tabmenuInner ul a.btn-week {
	width: 100%;
    letter-spacing: 0.4em;
}

#tabs .tabmenu li a:hover {
    cursor: pointer !important;
    background-color: #cdcdcd;
}



#tabs .tabmenu .tabmenuInner ul a.active,
#tabs .tabmenu .tabmenuInner ul a.active:hover { background-color: #f0f0f1 !important; }


#tabs_container {
	width: 100%;
    box-sizing: border-box;
	margin: 0;
    padding: 42px 20px 50px; 
	position: relative;
	background-color: #f0f0f1;
}



