@charset "utf-8";

/* 20200730 ハンドリフト牽引追加分*/
.newProducts_p {
	position: relative;
}
.newProducts {
	position: absolute;
	right: 30px;
	top: 8px;
	padding: 10px 20px;
	background-color: #E00;
	color: #FFF;
	font-size: 110%;
	font-weight: 700;
}
.flexbox {
	display: flex;
}
.handlift > :nth-child(even) {
	flex-basis: 5%;
	text-align: center;
	padding-top: 13px;
}
.handlift > :nth-child(odd) {
	flex-basis: 30%;
}
.handlift > div {
	margin-bottom: 20px;
}
.cornering {
	flex-wrap: wrap;
	align-items: center;
}
.cornering > :nth-child(even) {
	padding-top: 0;
}
.cornering > :nth-child(odd) {
	flex-basis: 45%;
}

@media (max-width: 785px) {
	.newProducts {
		padding: 5px 15px;
		font-size: 100%;
	}
	.flexbox {
		flex-direction: column;
	}
	.handlift {
		text-align: center;
	}
	.handlift :child {
		flex-basis: auto;
	}
	.handlift > :nth-child(even) {
		padding-top: 0;
	}

}