@charset "UTF-8";

.Tabs .searchList{
	display: flex;
	background: #F2F2F2;
	width: 100%;
	height: 100px;
	align-items: center;
	padding: 0 55px;
}

.Tabs .searchList li{
	list-style: none;
	font-size: 16px;
	margin-right: 2em;
}

.Tabs .searchList li.active a{
	border-bottom: solid 1px;
	font-family: 'AudiTypeBold','DFHSBold';
	font-weight: 400;
}

.Tabs .list{
	margin-top: 65px;
	display: grid;
	grid-template-columns:1fr 1fr 1fr;
	gap:65px 10px;
	font-family: 'AudiTypeBold','DFHSBold';
	font-weight: 400;
}

.Tabs .note{
	font-size: 16px;
	margin-top: 10px;
}
.active {
	font-weight: bold;
}

@media all and (max-width: 750px) {
	.Tabs .list{
		margin-top: 40px;
		grid-template-columns:1fr 1fr;
		gap:30px 5px;
	}
	.Tabs .searchList{
		flex-wrap: wrap;
		justify-content: space-between;
		background: none;
		width: 100%;
		height:auto;
		padding: 0;
	}

	.Tabs .searchList li{
		text-align: center;
		width: 49.8%;
		margin-right: 0;
		padding: 10px;
		box-sizing: border-box;
		background: #F2F2F2;
		margin-bottom: 2px;
	}
}

@media all and (max-width: 500px) {
	.Tabs .searchList li a{

	}

	.Tabs .list{
		margin-top: 40px;
		grid-template-columns:1fr;
		gap:30px 5px;
	}

	.Tabs note{
		font-size: 14px;
	}

}