@charset "utf-8";

.tab-wrap00 {
	display: flex;
	flex-wrap: wrap;
	margin:20px 0;
}
.tab-wrap00:after {
	content: '';
	width: 100%;
	height: 3px;
	background: #006d3b;
	display: block;
	order: -1;
}
.tab-label00 {
	color: White;
	background: LightGray;
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	padding: 10px .5em;
	order: -1;
	position: relative;
	z-index: 1;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
	flex: 1;
}
.tab-label00:not(:last-of-type) {
	margin-right: 5px;
}
.tab-content00 {
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
}
.tab-switch00:checked+.tab-label00 {
	background: #006d3b;
}
.tab-switch00:checked+.tab-label00+.tab-content00 {
	height: auto;
	overflow: none;
	padding:35px 0 0;
	opacity: 1;
	transition: .5s opacity;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0);
}
.tab-switch00 {
	display: none;
}
}