.hgd-testimonials {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 10px 0px;
}

.hgd-testimonials__reason {
	background: #f5f5f5;
	border-radius: 12px;
	padding: 40px;
	margin-bottom: 30px;
	position: relative;
}

.hgd-testimonials__reason-number {
	font-size: 45px;
	font-weight: 700;
	color: #ea9800;
	margin-bottom: 10px;
	line-height: 1;
}

.hgd-testimonials__reason-subtitle {
	font-size: 14px;
	color: #666;
	margin-bottom: 8px;
}

.hgd-testimonials__reason-title {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	margin-bottom: 30px;
}

.hgd-testimonials__quotes {
	display: flex;
	gap: 30px;
	margin-bottom: 30px;
}

.hgd-testimonials__quote {
	flex: 1;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.hgd-testimonials__avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
}

.hgd-testimonials__avatar--male {
	background: #d5e6ff;
}

.hgd-testimonials__avatar--female {
	background: #ffdcd5;
}

.hgd-testimonials__avatar::after {
	content: "";
	width: 30px;
	height: 30px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z'/%3E%3C/svg%3E");
	background-size: cover;
}

.hgd-testimonials__quote-text {
	flex: 1;
	font-size: 16px;
	color: #555;
	line-height: 1.7;
	background: white;
	padding: 20px;
	border-radius: 8px;
	position: relative;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hgd-testimonials__quote-text::before {
	content: '';
	position: absolute;
	left: -10px;
	top: 20px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 10px solid white;
}

.hgd-testimonials__description {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
	.hgd-testimonials__reason {
		padding: 30px 20px;
	}

	.hgd-testimonials__reason-number {
		font-size: 45px;
	}

	.hgd-testimonials__reason-title {
		font-size: 20px;
	}

	.hgd-testimonials__quotes {
		flex-direction: column;
		gap: 20px;
	}

	.hgd-testimonials__quote {
		gap: 12px;
	}

	.hgd-testimonials__avatar {
		width: 50px;
		height: 50px;
	}

	.hgd-testimonials__quote-text {
		font-size: 15px;
		padding: 15px;
	}
}

@media (max-width: 480px) {
	.hgd-testimonials__reason {
		padding: 25px 15px;
	}

	.hgd-testimonials__reason-number {
		font-size: 35px;
	}

	.hgd-testimonials__reason-title {
		font-size: 18px;
	}

	.hgd-testimonials__quote-text {
		font-size: 14px;
		padding: 12px;
	}

	.hgd-testimonials__description {
		font-size: 15px;
	}
}