.article {
	margin: 7.5rem 0 0;
	overflow-wrap: break-word;
}
.article__date {
	display: inline-block;
	font-weight: normal;
	font-size: 1.4rem;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
}
.article__title {
	margin-top: 2rem;
	padding-left: 1rem;
	font-weight: bold;
	font-size: 3rem;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	overflow-wrap: break-word;
	border-left: 1rem solid var(--color-blue);
}

.article__eyecatch {
	margin-top: 2.8rem;
}

.article__lead {
	margin-top: 1.8rem;
}

.article__content {
	margin: 3.2rem 0 6rem;
}

.article__nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	justify-content: space-between;
	margin: 4rem 0 17.4rem;
}

.article__nav .button {
	width: 21rem;
}
.article__sns {
	display: grid;
	grid-template-areas: 'text text text' 'x fb line';
	gap: 1rem 2rem;
	align-items: center;
	justify-content: center;
}

.sns__text {
	grid-area: text;
	font-weight: bold;
	line-height: 1;
	letter-spacing: normal;
}

.sns__btn {
	width: 4rem;
}

@media (830px <= width < 989px) {

	.article__nav {
		gap: 2rem;
	}

	.article__nav .button {
		width: 100%;
		padding: 0 0 0 2rem;
	}

	.article__nav .button::before,
	.article__nav .button::after {
		right: 2rem;
	}

	.article__nav .button:hover::before {
		right: -2rem;
	}
}

@media (width <= 829px) {
	.article__nav {
		grid-template-areas:
			'sns sns'
			'prev next';
		grid-template-columns: repeat(2, 1fr);
		gap: 6rem 2.4rem;
		justify-items: center;
		margin: 6.4rem 0 7.7rem;
	}

	.article__nav .button {
		width: 16.5rem;
	}

	.article__prev {
		grid-area: prev;
	}

	.article__next {
		grid-area: next;
	}

	.article__sns {
		grid-area: sns;
		gap: 1.4rem 2rem;
	}
}

@media (width <= 767px) {
	.article {
		margin: 3.6rem 0 0;
	}

	.article__title {
		font-size: 2rem;
	}

	.article__keywords {
		margin: 1.8rem 0 0 1.4rem;
		padding-top: 1.8rem;
		line-height: 1.3;
	}

	.keyword__link {
		margin-right: 1rem;
	}

	.article__eyecatch {
		width: 100vw;
		margin: 2rem calc(50% - 50vw);
	}
}

/* customer-voice
====================================================*/
.customer-voice__customer-info {
	display: inline-block;
	margin: 3.2rem 0 0;
	padding: min(2rem, 2vw);
	border-bottom: 1px solid var(--color-blue);
	background: #fff;
}

@media (width <=767px) {
	.customer-voice__customer-info {
		display: block;
		font-size: 14px;
	}
}

.customer-voice__customer-company {
	font-weight: bold;
	font-size: 1.2em;
}

.customer-voice__customer-company-desc {
	font-size: .875em;
}

.customer-voice__customer-name {
	margin-top: 0.5em;
	font-weight: bold;
	font-size: 1em;
}

.customer-voice__archive-link {
	display: flex;
	justify-content: center;
	margin: 6rem 0 0;
	padding-bottom: 6rem;
}

.customer-voice-cta {
	width: min(100%, var(--containerPC));
	margin-inline: auto;
	font-size: clamp(9px, 2vw, 16px);
}

.customer-voice-cta__inner {
	filter: drop-shadow(0 min(.3448275862vw, 4px) min(.3448275862vw, 4px) rgba(0, 0, 0, .25));
}

.customer-voice-cta__header {
	border-radius: 16px 16px 0 0;
	padding: 1vmin;
	background: #d5ebf6;
	font-size: 2em;
	font-weight: 700;
	text-align: center;
}

.customer-voice-cta__header>span {
	color: #052c81;
}

.customer-voice-cta__body {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2em;
	width: 100%;
	padding: min(3vw, 40px) 3vmin;
	background: #1e7cbc;
	background: linear-gradient(90deg, #1e7cbc 0, #052b80 100%);
}

.customer-voice-cta__lead {
	color: #fff;
	font-size: 1.3em;
	font-weight: 700;
	text-align: center;
}

.customer-voice-cta__footer {
	display: flex;
	align-items: center;
	gap: min(2em, 2vw);
	border-top: 1px solid #fff;
	padding: 2vmin 0;
	color: #fff;
}

.customer-voice-cta__note {
	font-size: 1.125em;
	font-weight: 700;
}

.customer-voice-cta__tel {
	display: flex;
	align-items: baseline;
	gap: .1em;
	color: #ddf2ff;
	font-size: 2.5em;
	font-weight: 700;
}

.customer-voice-cta__tel-icon {
	transform: rotate(15deg);
	width: .8em;
	height: auto;
}

.customer-voice-cta__tel>a {
	color: currentColor;
}

.customer-voice-cta__btns {
	display: flex;
	flex-direction: column;
	gap: 1em;
	width: min(100%, 780px);
}

@media (width > 767px) {
	.customer-voice-cta__btns {
		flex-direction: row;
		gap: 2em;
	}
}

.customer-voice-cta__btn {
	display: grid;
	place-items: center;
	width: min(100%, 400px);
	margin: 0 auto;
	padding: .5em 1em;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	background: #00c1cd;
	border-radius: 1000px;
}

.customer-voice-cta__btn:hover{
	opacity: .7;
	color: #fff;
}

.customer-voice-cta__btn.customer-voice-cta__btn--secondary {
	background: #ff7133;
}

@media (width <= 767px) {
	.customer-voice-cta__btn {
		font-size: 20px;
	}
}


/* customer-voice-list
====================================================*/
.customer-voice__list {
	--col: 1;
	display: grid;
	grid-template-columns: repeat(var(--col), minmax(0, 1fr));
	gap: 1.5em;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (width > 768px) {
	.customer-voice__list {
		--col: 2;
	}
}

@media (width > 1023px) {
	.customer-voice__list {
		--col: 3;
	}
}


/* customer-voice-card
====================================================*/
.customer-voice-card__frame {
	position: relative;
	aspect-ratio: 327 / 184;
	overflow: hidden;
}

.customer-voice-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.customer-voice-card__content {
	display: flex;
	flex-direction: column;
	gap: 0.5em;
	margin-top: 0.5em;
}

.customer-voice-card__title {
	font-size: 1.2em;
}

.customer-voice-card__meta {
	font-size: .875em;
}
