/* =========================================================

WAVE LIFE PRODUCT

========================================================= */
#life_productlist a{
	text-decoration: none;
}

.sp_hero {
	background: linear-gradient(90deg, #bab6b5 50%, #c5c4c2 51%);
}
.pl_section {
	max-width: 1240px;
	margin: 0 auto;
	padding: 158px 20px 200px;
}

.pl_section + .pl_section {
	padding-top: 100px;
}

.pl_section:last-of-type {
	padding-bottom: 140px;
}

.pl_section_title {
	font-size: 3.6rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	margin: 0 0 60px;
	color: #000;
	width: 47%;
}

.pl_title_me {
	display: flex;
	align-items: flex-end;
	gap: 14px;
	margin: 0 0 62px;
	width: 47%;
}
@media (max-width: 768px) {
	.pl_title_me,
	.pl_section_title {
		width: 100%;
	}
}

/* grid */
.pl_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 16px;
}

.pl_card {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 0;
}
.pl_card a{
	opacity: 1;
	transition: opacity 0.4s ease;
}
.pl_card a:hover{
	opacity: 0.6;
}
@media (max-width: 768px) {
	.pl_card a{
		opacity: 1;
		transition: initial;
	}
	.pl_card a:hover{
		opacity: 1;
	}
}

.pl_card_img {
	display: block;
	width: 100%;
	background: #f0f0f0;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.pl_card_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1);
	transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.9s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform, filter;
	-webkit-user-drag: none;
	user-select: none;
	pointer-events: none;
	aspect-ratio: 5 / 6;
	object-fit: cover
}

/* .pl_card_img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.12) 100%);
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
	z-index: 1;
}

.pl_card_img:hover::after {
	opacity: 1;
} */

/* --- Slider --- */
.pl_slides {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pl_slide {
	opacity: 0;
	transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	margin-bottom: 0;
}

.pl_slide:not(:first-child) {
	position: absolute;
	inset: 0;
}

.pl_slide.is_active {
	opacity: 1;
}

.pl_slide a,
.pl_slide img {
	display: block;
	width: 100%;
	height: 100%;
}

.pl_arrow {
	position: absolute;
	bottom: 8px;
	width: 26px;
	height: 26px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	color: #000;
	font-size: 1.1rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
	transition: background 0.3s ease;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.pl_arrow_prev { right: 40px; }
.pl_arrow_next { right: 8px; }

.pl_arrow:hover {
	background: rgba(255, 255, 255, 0.85);
}

.pl_arrow[hidden] {
	display: none;
}

@media (max-width: 768px) {
	.pl_arrow {
		width: 24px;
		height: 24px;
		font-size: 1rem;
	}
	.pl_arrow_prev { right: 34px; }
	.pl_arrow_next { right: 6px; }
}

.pl_card_name {
	font-family: "Zalando Sans Expanded", sans-serif;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-top: 70px;
	color: #000;
	text-align: center;
}

@media (max-width: 768px) {
	.pl_section {
		padding: 60px 6.25% 20px;
	}

	.pl_section + .pl_section {
		padding-top: 50px;
	}

	.pl_section:last-of-type {
		padding-bottom: 80px;
	}

	.pl_section_title {
		font-size: 2.4rem;
		margin: 0 0 30px;
	}

	.pl_title_me {
		margin: 0 0 30px;
		gap: 10px;
	}

	.pl_title_me .wm_wave {
		font-size: 1.6rem;
		padding-bottom: 4px;
	}

	.pl_title_me .wm_me {
		font-size: 3.2rem;
	}

	.pl_grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 16px;
	}

	.pl_card_name {
		font-size: 1.3rem;
		margin: 18px 0 22px;
	}

	.pl_card_btn {
		height: 40px;
		font-size: 1.1rem;
		padding: 0 18px;
	}
}