@charset "UTF-8";

/* ---------------------------------------------------------
	CSS Document voice
--------------------------------------------------------- */

.voice h2 {
	margin-bottom: 60px;
	font-size: 44px;
	font-weight: 700;
	line-height: 1;
	color: #3FA7D1;
}

.voice h2 .en {
	display: block;
	font-family: "Jost", serif;
	font-weight: 500;
}

.voice h2 .ja {
	display: block;
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
	margin-top: 10px;
}

.voice .flex {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 24px;
	margin-bottom: 100px;
	text-align: left;
}

.voice.ladies .flex {
	grid-template-columns: repeat(2, 1fr);
	gap: 50px 36px;
}

/* =========================
   レビューカード
========================= */

.voice_item {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 40px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(0,0,0,0.06);
	transition: all .25s ease;
	position: relative;
}

@media (hover: hover) {
	.voice_item:hover {
		transform: translateY(-4px);
		box-shadow: 0 12px 28px rgba(0,0,0,0.10);
	}
}

.voice_badge {
	padding: 2px 15px;
	border-radius: 999px;
	background: #3FA7D1;
	font-size: 13px;
	color: #fff;
	transform: translateX(-50%);
	position: absolute;
	top: -12px;
	left: 50%;
}

/* =========================
   ヘッダー
============h============= */

.voice_header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-bottom: 14px;
}

.voice_title {
	font-size: 16px;
	font-weight: 600;
	color: #457B9D;
}

.voice_author {
	font-size: 13px;
	color: #6b7280;
}

/* =========================
   本文
========================= */

.voice_content {
	flex: 1;
}

.voice_content p {
	font-size: 14px;
	line-height: 1.8;
}

/* =========================
   Googleクチコミ
========================= */

.voice_google {
	padding: 40px;
	background: #ECF6FA;
	border: 1px solid #A3D8DC;
	border-radius: 12px;
	text-align: center;
}

.voice_google_lead {
	margin-bottom: 16px;
	font-size: 16px;
	color: #457B9D;
	font-weight: 600;
}

.voice_google_list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.voice_google_list a {
	display: inline-block;
	padding: 8px 14px;
	background: #3FA7D1;
	color: #fff;
	border-radius: 6px;
	text-decoration: none;
	font-size: 14px;
	transition: opacity transform .15s ease, box-shadow .15s ease;
}

.voice_google_list a:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0,0,0,.08);
}