.con_product_search_tab {
	display: flex;
	flex-wrap: wrap;
	max-width: 1400px;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	.box_left {
		width: 24%;
	}
	.box_right {
		width: 76%;
		.content {
			display: none;
			&.show {
				display: block;
			}
		}
		.box_items {
			display: flex;
			flex-wrap: wrap;
			.items {
				width: 32%;
				margin-left: 2%;
				&:first-child {
					margin-left: 0;
				}
			}
		}
	}
	.title {
		font-size: 50px;
		font-weight: 600;
	}
	.title_s {
		display: block;
		text-align: left;
		font-size: 1.3rem;
		color: #333;
		&::before {
			display: none;
		}
		&::after {
			display: none;
		}
	}
	.tab-area {
		display: block;
		margin-top: 7.2rem;
    	text-align: left;
		.tab {
			margin-top: 2.4rem;
			font-size: 1.5rem;
			cursor: pointer;
			&.active {
				font-weight: 600;
			}
		}
	}
	@media screen and (min-width:768px) and (max-width:1000px) {
		.box_left {
			.title {
				font-size: 3.5rem;
			}
		}
		.box_right {

		}
	}
	@media screen and (max-width:767px) {
		.box_left {
			width: 100%;
			.title {
				line-height: 1;
			}
			.tab-area {
				display: flex;
				flex-wrap: wrap;
				margin-top: 2rem;
				.tab {
					margin-top: 0;
					margin-left: 1em;
					&:first-child {
						margin-left: 0;
					}
				}
			}
		}
		.box_right {
			width: 100%;
			margin-top: 1em;
			.box_items {
				.items {
					width: 100%;
					margin-top: 2em;
					margin-left: 0;
					&:first-child {
						margin-top: 0;
					}
				}
			}
		}
	}
}