/* ===== 利用者の声ページ ===== */

/* ファーストビュー背景画像 */
.p-page-fv--voice {
	background-image: url(../../img/voice_header.webp);
	background-size: cover;
	background-position: center;
	min-height: 250px;
}

/* ページタイトルセクション */
.p-page-title {
	padding: 50px 0 16px;
	clip-path: ellipse(90% 100% at 50% 100%);
	background-color: #FFF9F1;
	margin-top: -22px;
}

.p-page-title__inner {
	max-width: 780px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.p-page-title__label {
	letter-spacing: -0.04em;
}

.p-page-title__ja {
	font-size: 2.8rem;
	line-height: 1.6;
}

.l-breadcrumb-wrapper {
	padding-bottom: 18px;
	background-color: #FFF9F1;
}

/* コンテンツセクション */
.p-voice {
	padding: 52px 0 55px;
	background-color: #FFF9F1;
	position: relative;
}
.p-voice::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: 390/334;
	clip-path: ellipse(250% 100% at 50% 100%);
	background-color: #F2F6E9;
}
.p-voice--otona {
	padding-top: 35px;
	padding-bottom: 92px;
	background-color: #F2F6E9;
}
.p-voice--otona::after {
	background-color: #FDF2ED;
}
.p-voice__inner {
	max-width: 780px;
	margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}


.p-voice__category-title {
	color: #ADC965;
	font-family: "Source Han Sans JP", "源ノ角ゴシック JP", sans-serif;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.45;
	letter-spacing: 0;
	margin: 0 0 30px 0;
	text-align: center;
	position: relative;
}
.p-voice__category-title--otona {
	color: #FF8357;
}

.p-voice__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 22px;
}
.p-voice__item {
	overflow: hidden;
}
/* 利用者の声アイテム */
.p-voice__article {
	display: flex;
	align-items: flex-end;
	gap: 22px;
}

/* アイコン */
.p-voice__icon {
	flex-shrink: 0;
	max-width: 86px;
    width: 100%;
    height: auto;
    aspect-ratio: 86 / 100;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
        transform: translate(0px, -43px);
}
.p-voice__icon--2 {
	max-width: 95px;
	aspect-ratio: 95/91;
}
.p-voice__icon--3 {
	max-width: 95px;
	aspect-ratio: 95/92;
}
.p-voice__icon--4 {
	max-width: 95px;
	aspect-ratio: 95/95;
}
.p-voice__icon--5 {
	max-width: 95px;
	aspect-ratio: 95/81;
}
.p-voice__icon--6 {
	max-width: 95px;
	aspect-ratio: 95/95;
}
.p-voice__icon--7 {
	max-width: 95px;
	aspect-ratio: 95/106;
}

.p-voice__icon-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* コンテンツ */
.p-voice__content {
	flex: 1;
}
.p-voice__content--left {
	padding-left: 22px;
}
.p-voice__content--right {
	padding-right: 21px;
}
.p-voice__speech-bubble {
	background-color: #FFF;
	border-radius: 10px;
	margin: 0;
	padding: 14px;
	position: relative;
	filter: drop-shadow(0 0 10px rgba(208, 94, 125, 0.15));
}
.p-voice__speech-bubble::before {
    content: "";
    position: absolute;
    bottom: 19px;
    right: -18px;
    max-width: 25px;
    width: 100%;
    height: initial;
    aspect-ratio: 10 / 10;
    background-color: #FFF;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.p-voice__content--right .p-voice__speech-bubble::before {
	right: auto;
	left: -18px;
	clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.p-voice__text {
	color: #141429;
	font-family: "Source Han Sans JP", "源ノ角ゴシック JP", sans-serif;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.57;
	letter-spacing: 0;
	margin: 0 0 26px;
}
.p-voice__text:last-child {
	margin-bottom: 0;
}

.p-voice__name {
	color: #ADC965;
	font-family: "Source Han Sans JP", "源ノ角ゴシック JP", sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.4;
	letter-spacing: 0;
	margin: 0;
	padding: 9px 0;
}
.p-voice__content--left .p-voice__name {
	text-align: right;
}
.p-voice__content--right .p-voice__name {
	text-align: left;
}
.p-voice--otona .p-voice__name {
	color: #FF8357;
}

/* ===== レスポンシブ ===== */

/* タブレット以上（769px以上） */
@media (min-width: 769px) {
	.p-page-fv--voice {
		aspect-ratio: 1366 / 615;
	}
	.p-page-title {
		padding: 71px 0 16px;
		clip-path: ellipse(53% 100% at 50% 108%);
		background-color: #FFF9F1;
		margin-top: -152px;
	}
	.l-breadcrumb-wrapper {
		padding: 0;
	}
	.breadcrumb {
		max-width: 820px;
		margin: 0 auto;
    }
	.breadcrumb-list {
		padding: 51px 19px 32px;
	}
	.p-voice {
		padding: 0;
	}
	.p-voice--otona {
		background-color: #FFF9F1;
	}
	.p-voice::after {
		display: none;
	}
	.p-voice .p-voice__inner {
		background-color: #FFF9F1;
	}
	.p-voice--otona .p-voice__inner {
		background-color: #F2F6E9;
	}
	.p-voice__inner::after {
		content: "";
		position: absolute;
		top: 0px;
		left: 0;
		width: 100%;
		height: 100%;
		aspect-ratio: 390 / 334;
		clip-path: ellipse(140% 100% at 50% 100%);
		background-color: #F2F6E9;
	}
	.p-voice--otona .p-voice__inner::after {
		background-color: #FCF1EC;
	}
	.p-voice__category {
		position: relative;
		z-index: 1;
		padding: 86px 11px;
	}
	.p-voice--otona .p-voice__category {
		padding: 37px 11px 211px;
	}
	.p-voice__category-title {
		font-size: 2.4rem;
		margin-bottom: 70px;
	}
	.p-voice__list {
		gap: 16px;
	}
	.p-voice__article {
		gap: 33px;
	}
	.p-voice__content {
		padding: 0;
	}
	.p-voice__speech-bubble {
		padding: 24px 19px;
	}
	.p-voice__text {
		font-size: 1.6rem;
	}
	.p-voice__icon {
		transform: translate(0px, -55px);
	}
	.p-voice__icon--2 {
		transform: translate(-5px, -63px);
	}
	.p-voice__name {
		padding: 16px 0;
	}
}