@charset "utf-8";

/* categoryWrap */
.lowerLayer .tab .tabBox .categoryWrap .category01 {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.lowerLayer .tab .tabBox .categoryWrap .category01 li {
	width: calc((100% - 45px) / 4);
}
.lowerLayer .tab .tabBox .categoryWrap .category01 li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	font-size: 15px;
	font-weight: 600;
	background: var(--whiteColor);
	border-radius: 8px;
	line-height: 1.2;
	padding: 0 10px;
	text-align: center;
}
.lowerLayer .tab .tabBox .categoryWrap .category01 li a[aria-current="page"] {
	border: 2px solid var(--greenColor);
}
.lowerLayer .tab .tabBox .categoryWrap .category02 {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 0;
	margin-top: 30px;
	padding: 0 5px;
}
.lowerLayer .tab .tabBox .categoryWrap .category02 li {
	display: flex;
	align-items: center;
	justify-content: center;
}
.lowerLayer .tab .tabBox .categoryWrap .category02 li + li {
	border-left: 1px solid var(--baseColor);
	padding-left: 18px;
	margin-left: 18px;
}
.lowerLayer .tab .tabBox .categoryWrap .category02 li a {
	font-size: 14px;
	line-height: 1.2;
}
.lowerLayer .tab .tabBox .categoryWrap .category02 li a[aria-current="page"] {
	color: var(--greenColor);
	font-weight: 600;
}
@media (max-width: 768px) {
	.lowerLayer .tab .tabBox .categoryWrap .category01 {
		gap: 10px;
	}
	.lowerLayer .tab .tabBox .categoryWrap .category01 li {
		width: calc((100% - 10px) / 2);
	}
	.lowerLayer .tab .tabBox .categoryWrap .category01 li a {
		min-height: 41px;
		font-size: 12.5px;
		border-radius: 6px;
		padding-bottom: 1px;
	}
	.lowerLayer .tab .tabBox .categoryWrap .category02 {
		margin-top: 18px;
		padding: 0;
	}
	.lowerLayer .tab .tabBox .categoryWrap .category02 li + li {
		border-left: 1px solid var(--baseColor);
		padding-left: 12px;
		margin-left: 12px;
	}
	.lowerLayer .tab .tabBox .categoryWrap .category02 li a {
		font-size: 12px;
		line-height: 1.2;
	}
}
