/* -----------------------------------------------------------
    rental-list-area
-------------------------------------------------------------- */
.niwork-relation-area{
	margin: 100px 0 ;
}

.rental-list-area {
	margin: 30px auto 0;
	padding: 0 0;
}

.rental-list-area .niwork-list {
	display: flex;
	gap: 10px;
	width: 1200px;
}

.rental-list-area .niwork-list__link {
	border: 1px solid var(--border1);
	background: #fff;
	display: block;
	padding: 45px 50px 60px;
	position: relative;
}

.rental-list-area .niwork-list__link::before {
	bottom: 20px;
	content: "\f178";
	font: 900 1.7rem/1 var(--webicon);
	transition: .5s;
	position: absolute;
	right: 50px;
}

.card {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 40px auto 0;
}
.card__item {
  position: relative;
  width: calc((100% / 3) - 20px);
  height: 100%;
  background: #fff;
}
.card__item > a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px 10px 20px;
	background: #F5F5F5;
	color: #333;
	border-radius: 15px;
}
.card__item > a:hover{
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.card__item > a .image{
	background: #fff;
	margin: 0 0 10px;
}
.card__item > a img{
	width: 80%;
	margin: 0 auto;
    display: block;
	min-height: 180px;
	height: 180px;
    object-fit: contain;
}
.card__item > a .maker{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #999;
}
.card__item > a .name{
	font-size: 2.3rem;
	font-weight: bold;
	line-height: 1.2;
	padding: 0 0 5px;
}
.card__item > a .price{
	font-size: 1.2rem;
	display: block;
	line-height: 1.4;
	padding: 0 0 5px;
	color: var(--main);
}
.card__item > a .point-list{
	display: flex;
	margin: 0 0 5px;
	flex-wrap: wrap;
}
.card__item > a .point-list .point{
	margin: 0 3px 3px 0;
	line-height: 1;
	padding: 5px;
	font-size: 1.2rem;
    border: solid 1px #333;
	
}
.card__item > a .txt{
	font-size: 1.4rem;
	line-height: 1.5;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-height: 100px;
	display: none;
}
.card__item:before {
  content: "";
  display: block;
}
.card__item:nth-child(4n+1) {
  margin-left: 0;
}

.card__item > a .new-icon{
	position: absolute;
	background: #333;
	width: 40px;
	height: 40px;
	border-radius: 100px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -5px;
	left: -5px;
	font-size: 1.2rem;
}


@media screen and (min-width: 769px) {
	.rental-list-area .niwork-list__link:hover {
		border-color: var(--link);
	}

	.rental-list-area .niwork-list__link:hover::before {
		right: 40px;
	}
}

.rental-list-area .niwork-list__ttl {
	color: var(--cmnblack);
	font-weight: bold;
	font-size: 2.5rem;
	line-height: 1.5;
	letter-spacing: .05em;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

@media screen and (max-width: 768px) {
	.niwork-relation-area{
		margin: 50px 0;
	}
	.rental-list-area .list-area {
		margin: 30px auto 0;
		padding: 30px 0;
	}

	.rental-list-area .niwork-list {
		gap: 30px;
		padding: 0 20px 0;
		width: 100%;
		display: block;
	}

	.rental-list-area .niwork-list__link {
		padding: 20px 20px 40px;
	}

	.rental-list-area .niwork-list__link::before {
		font-size: 1.6rem;
		bottom: 15px;
		right: 15px;
	}

	.rental-list-area .niwork-list__ttl {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		font-size: 2rem;
		line-height: 1.5;
		-webkit-line-clamp: 2;
		max-height: 65px;
		white-space: unset;
	}
	.card__item{
		margin: 0 0 10px;
		width: 100%;
	}
	.card__item > a{
		border-radius: 5px;
		display: flex;
		padding: 10px;
	}
	.card__item > a .image{
		margin: 0 10px 0 0;
		width: 80px;
		height: 80px;
	}
	.card__item > a img{
		min-height: 80px;
		width: 80%;
		margin: 0 auto;
		height: auto;
	}
	.card__item > a .txt-box{
		grid-area: 1 / 2 / 2 / 3;
	}
	.card__item > a .txt{
		display: none;
	}
	.card__item > a p{
	}
	.card__item > a p.maker{
		font-size: 1.2rem;
		display: block;
	}
	.card__item > a .name{
		display: block;
		font-size: 1.8rem;
		padding: 0 0 3px;
	}
	.card__item > a .price{
		font-size: 1.2rem;
		display: block;
		line-height: 1.4;
		padding: 0 0 0;
	}
	.card__item > a .point-list{
		margin: 0;
	}
	.card__item > a .point-list .point{
		font-size: 1rem;
		padding: 3px;
	}
	.card__item > a .new-icon{
		font-size: 1.1rem;
		width: 32px;
		height: 32px;
		top: -5px;
		left: -10px;
	}
}
