/* =========================================================
   VOICE
   お客様の声
========================================================= */


/* =========================================================
   Lower Hero
========================================================= */

.lowerHero--voice .lowerHero__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 90%;
}


/* =========================================================
   Voice Archive
========================================================= */

.voiceArchive {
	padding: 100px 0 160px;
	background: #fff;
}

.voiceArchive__inner {
	width: min(calc(100% - 80px), 1160px);
	margin: 0 auto;
}


/* =========================================================
   Voice List
========================================================= */

.voiceList {
	display: flex;
	flex-direction: column;
	gap: 18px;
}


/* =========================================================
   Voice Card
========================================================= */

.voiceCard {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 36px;

	min-height: 150px;

	padding: 30px 38px;

	background: #fff;
	border: 1px solid #b8b3aa;

	box-sizing: border-box;
}


/* =========================================================
   Voice Card - Meta
========================================================= */

.voiceCard__meta {
	padding-right: 20px;
}


/* VOICE 01 */

.voiceCard__number {
	position: relative;
	display: inline-block;
	margin: 0 0 18px;
	padding-bottom: 8px;
	color: #333;

	font-family: "LINE Seed JP", sans-serif;
	font-size: clamp(18px, 1.25vw, 22px);
	font-weight:400;
	line-height: 1;
	letter-spacing: .08em;
}

.voiceCard__number span {
	font-size: inherit;
}


/* 下のオレンジライン */

.voiceCard__number::after {
	content: "";

	position: absolute;
	left: 0;
	bottom: 0;

	width: 72px;
	height: 2px;

	background: #d89a44;
}


/* 地域・お名前 */

.voiceCard__customer {
	margin: 0;

	color: #333;

	font-size: clamp(11px, .75vw, 13px);
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: .04em;
}


/* =========================================================
   Voice Card - Body
========================================================= */

.voiceCard__body {
	min-width: 0;
}


/* タイトル */

.voiceCard__title {
	margin: 0 0 15px;

	color: #222;

	font-size: clamp(14px, .9vw, 16px);
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: .035em;
}


/* 本文 */

.voiceCard__text {
	color: #333;

	font-size: clamp(11px, .72vw, 13px);
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: .025em;
}

.voiceCard__text p {
	margin: 0;
}

.voiceCard__text p + p {
	margin-top: 8px;
}


/* =========================================================
   Pagination
========================================================= */

.voiceArchive .pagination {
	margin-top: 105px;
}

.voiceArchive .pagination__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;

	margin: 0;
	padding: 0;

	list-style: none;
}

.voiceArchive .pagination__item {
	margin: 0;
	padding: 0;
}


/* ページ番号 */

.voiceArchive .pagination__link {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 36px;
	height: 36px;

	border: 1px solid #d89a44;
	border-radius: 50%;

	background: #fff;

	color: #333;

	font-family: "Noto Serif JP", serif;
	font-size: 14px;
	font-weight: 500;

	text-decoration: none;

	box-sizing: border-box;

	transition:
		background-color .25s ease,
		color .25s ease,
		border-color .25s ease;
}


/* hover */

.voiceArchive a.pagination__link:hover {
	background: #d89a44;
	color: #fff;
}


/* 現在ページ */

.voiceArchive .pagination__link.is-current {
	background: #8a3e0d;
	border-color: #8a3e0d;
	color: #fff;

	pointer-events: none;
}


/* =========================================================
   Tablet
========================================================= */

@media screen and (max-width: 1024px) {

	.voiceArchive {
		padding: 80px 0 130px;
	}

	.voiceArchive__inner {
		width: calc(100% - 60px);
	}

	.voiceCard {
		grid-template-columns: 155px 1fr;
		gap: 28px;

		padding: 28px 30px;
	}

	.voiceCard__meta {
		padding-right: 10px;
	}

}


/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 767px) {

	/* -----------------------------------------
	   Archive
	----------------------------------------- */

	.voiceArchive {
		padding: 60px 0 90px;
	}

	.voiceArchive__inner {
		width: calc(100% - 36px);
	}


	/* -----------------------------------------
	   List
	----------------------------------------- */

	.voiceList {
		gap: 14px;
	}


	/* -----------------------------------------
	   Card
	----------------------------------------- */

	.voiceCard {
		display: block;

		min-height: 0;

		padding: 24px 20px 26px;
	}


	/* -----------------------------------------
	   Meta
	----------------------------------------- */

	.voiceCard__meta {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 20px;

		margin-bottom: 20px;
		padding: 0;
	}


	.voiceCard__number {
		margin: 0;

		padding-bottom: 8px;

		font-size: 16px;
	}


	.voiceCard__number::after {
		width: 62px;
	}


	.voiceCard__customer {
		flex-shrink: 0;

		font-size: 11px;
		line-height: 1.6;

		text-align: right;
	}


	/* -----------------------------------------
	   Body
	----------------------------------------- */

	.voiceCard__title {
		margin-bottom: 12px;

		font-size: 14px;
		line-height: 1.75;
	}


	.voiceCard__text {
		font-size: 12px;
		line-height: 1.9;
	}


	.voiceCard__text p + p {
		margin-top: 7px;
	}


	/* -----------------------------------------
	   Pagination
	----------------------------------------- */

	.voiceArchive .pagination {
		margin-top: 65px;
	}


	.voiceArchive .pagination__list {
		gap: 16px;
	}


	.voiceArchive .pagination__link {
		width: 34px;
		height: 34px;

		font-size: 13px;
	}

}


/* =========================================================
   Small Smartphone
========================================================= */

@media screen and (max-width: 480px) {

	.voiceArchive__inner {
		width: calc(100% - 30px);
	}

	.voiceCard {
		padding: 22px 18px 24px;
	}

	.voiceCard__meta {
		gap: 15px;
	}

}