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

/*----------------
タブ
----------------*/

#tabs ul.handle_ul {
	display: flex;
}

#tabs ul.handle_ul li {
	text-align: center;
}

#tabs.tab2 ul.handle_ul li {
	flex-basis: 50%;
	max-width: 50%;
}

#tabs.tab3 ul.handle_ul li {
	flex-basis: 33.33%;
	max-width: 33.33%;
}

#tabs.tab4 ul.handle_ul li {
	flex-basis: 25%;
	max-width: 25%;
}

#tabs.tab5 ul.handle_ul li {
	flex-basis: 20%;
	max-width: 20%;
}

#tabs ul.handle_ul li a {
	display: block;
	padding: 10px 0 10px;
	border-radius: 15px 15px 0 0;
	background: #ddd;
	color: #585858;
	font-weight: bold;
	text-decoration: none;
	transition: 0.3s;
}

#tabs ul.handle_ul li a:hover {
	opacity: 0.75;
	transition: 0.3s;
}

#tabs ul.handle_ul li a.active {
	background: #009ade;
	color: #fff;
}

#tabs .panel {
  display: none;
}


@media screen and (min-width: 600px) {

	#tabs ul.handle_ul li a {
		font-size: 16px;
	}
}

