@charset "utf-8";

/* -----------------------------------------------------------
    輸入車 対応メーカー     輸入車／法人ページで使用
-------------------------------------------------------------- */
[data-vehicleitem="imported"] .vehicle-imported-list {
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
}

[data-vehicleitem="imported"] .vehicle-imported-list li {
	border: 1px solid var(--border1);
	flex-grow: 1;
	font-size: 1.7rem;
	padding: 13px 6px;
	text-align: center;
}

[data-vehicleitem="imported"] .vehicle-imported-other .ttl {
	color: var(--sub2);
	font-size: 1.7rem;
	font-weight: 600;
	margin: 15px 0 0;
}

[data-vehicleitem="imported"] .vehicle-imported-other ul {
	border: 1px solid var(--border1);
	border-width: 0 0 1px 1px;
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0 0;
}

[data-vehicleitem="imported"] .vehicle-imported-other li {
	flex-grow: 1;
	border: 1px solid var(--border1);
	border-width: 1px 1px 0 0;
	padding: 13px 5px;
	text-align: center;
	width: 170px;
}

[data-vehicleitem="imported"] .vehicle-imported-other .nodata {
	display: none !important;
}

[data-vehicleitem="imported"] .vehicle-more-plus {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 15px;
}

[data-vehicleitem="imported"] .vehicle-more-plus .plus {
	display: block;
	position: relative;
	width: 9px;
	height: 9px;
}

[data-vehicleitem="imported"] .vehicle-more-plus .plus::before, [data-vehicleitem="imported"] .vehicle-more-plus .plus::after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: var(--gray);
}

[data-vehicleitem="imported"] .vehicle-more-plus .plus::before {
	width: 1px;
	height: 9px;
}

[data-vehicleitem="imported"] .vehicle-more-plus .plus::after {
	width: 9px;
	height: 1px;
}

[data-vehicleitem="imported"] .vehicle-more {
	align-items: center;
	border: 1px solid var(--border1);
	font-size: 1.3rem;
	display: none;
	justify-content: center;
	margin: 15px auto 0;
	width: 100%;
	height: 40px;
	position: relative;
}

@media screen and (max-width: 768px) {
	[data-vehicleitem="imported"] .vehicle-imported-list li {
		font-size: 1.6rem;
	}

	[data-vehicleitem="imported"] .vehicle-imported-other.vehicle-more-open .vehicle-more {
		display: none;
	}

	[data-vehicleitem="imported"] .vehicle-more {
		display: flex;
		font-size: 1.5rem;
		height: 50px;
		margin: 20px auto 0;
	}

	[data-vehicleitem="imported"] .vehicle-imported-other.vehicle-more-open ul li:nth-child(n+7) {
		display: block;
	}

	[data-vehicleitem="imported"] .vehicle-imported-other .ttl {
		font-size: 1.5rem;
		line-height: 1.5;
	}

	[data-vehicleitem="imported"] .vehicle-imported-other ul {
		border: none;
		gap: 20px 15px;
		margin: 15px 0 0;
	}

	[data-vehicleitem="imported"] .vehicle-imported-other li {
		border: none;
		padding: 0 0 0 12px;
		width: calc((100% - 15px) / 2);
		text-align: left;
		position: relative;
	}

	[data-vehicleitem="imported"] .vehicle-imported-other li::before {
		content: "";
		border-radius: 50%;
		background: var(--sub);
		width: 5px;
		height: 5px;
		left: 0;
		position: absolute;
		top: 6px;
	}

	/*[data-vehicleitem="imported"] .vehicle-imported-other li:nth-child(n+7) {
		display: none;
	}*/
}