@charset "UTF-8";
/* CSS Document */

.tabs {
	padding-bottom: 40px;
	/* background-color: #fafafa; */
/*  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
	width: 100%;
/*	max-width: 800px;*/
	margin: 10px auto 0px;
	
	position: sticky;
	/*top: 40px;*/
	top: 0px;
	z-index: 100;
}

.tab_item {
	width: calc(100%/2);
	height: 50px;
/*  border-bottom: 3px solid #999999;*/
	background-color: #444444;
	color: #ff0000;
	line-height: 50px;
	margin-bottom: 14px;
	font-size: 14px;
	text-align: center;
	display: block;
	float: left;
	font-weight: bold;
	transition: all 0.2s ease;
}
.tab_item:hover {
	background-color: #cccccc;
}

.tabs-ul .is_active {
	background-color: #e0e0e0;
	color: #00aaff;
}
.tab-content {
  display: none;
}
.tab-content.is_show {
  display: block;
}
.tabs-ul a {
	display: block;
	text-decoration: none;
	
}



/**************
  Media Query
**************/

/* Tablet View */

@media (min-width: 768px){
	.tabs {
		top: 0px;		
	}
	.tab_item {
		font-size: 16px;
	}

}

