/* tab-type01 */
.tab-type01 {
	border: 1px solid #efefef;
	border-radius: 15px;
	background: #fff;
}
.tab-type01 .tab-menu {
	display: flex;
	border-bottom: 1px solid #efefef;
}
.tab-type01 .tab-menu > li {
	position: relative;
	width: 25%;
	padding: 17px 0;
	text-align: center;
}
.tab-type01 .tab-menu .active:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: #01baef;
}
.tab-type01 .tab-menu .active > a {
	color: #01baef;
	font-weight: 600;
}
.tab-type01 .tab-menu > li > a {
	font-size: 24px;
	font-weight: 500;
	color: #9f9f9f;
}
.tab-cont > li {
	display: none;
	padding: 70px 100px;
}

/* tab-type02 */
.tab-type02 .tab-menu {
	display: flex;
	border: 1px solid #d7d7d7;
}
.tab-type02 .tab-menu > li {
	width: 20%;
	border: solid #d7d7d7;
	border-width: 0 0 0 1px;
}
.tab-type02 .tab-menu > li:first-child {
	border-left: 0;
}
.tab-type02 .tab-anchor {
	display: block;
	width: 100%;
	padding: 30px 0;
	font-size: 20px;
	font-weight: 700;
	color: #01baef;
	background: #fff;
	text-align: center;
}
.tab-type02 .active .tab-anchor {
	background: #01baef;
	color: #fff;
}

/* tab-type in jumbotron-type01 */
.tab-type01 .jumbotron-type01 {
	padding: 0;
}

@media screen and (max-width: 1350px) {
	.tab-type02 .tab-menu {
		flex-direction: column;
	}
	.tab-type02 .tab-menu > li {
		width: 100%;
		border-width: 1px 0 0 0;
	}
	.tab-type02 .tab-menu > li:first-child {
		border-top: 0;
	}
}

@media screen and (max-width: 720px) {
	.tab-type01 .tab-menu > li > a {
		font-size: 14px;
	}
	.tab-cont > li {
		padding: 20px 16px 18px;
	}
}