@charset "UTF-8";

@media only screen and (min-width: 769px) {
}
@media only screen and (max-width: 768px) {
}
/*--------------------------------------
  swiper_voice
--------------------------------------*/
.swiper {
	width: 100%;
	background: #ffd5e7;
	padding: 3em;
	margin: 0 auto 3em;
}

.swiper-slide {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	width: 28%;
	min-height: 520px;
	box-sizing: border-box;
	display: block; /* Flex解除：中のwrapperで制御する */
}

.content-wrapper {
	display: flex;
	flex-wrap: wrap; 
	align-items: flex-start; /* 上に揃える */
	gap: 15px;
}

.customer-image {
	width: 100%;
	height: auto;
	flex-shrink: 0;
	border-radius: 5px;
	object-fit: cover;
}

.customer-text {
	flex: 1;
}

.customer-name {
	font-weight: bold;
	margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
	.swiper-slide {
		width: 100%; /* 1件ずつ読みやすいサイズ */
		min-height: 450px;
	}
	.customer-voice {
		font-size: 14px;
	}
}






/*--------------------------------------
  swiper_example
--------------------------------------*/
.swiper_example {
	width: 100%;
	background: #ffd5e7;
	padding: 3em;
	margin: 0 auto 3em;
	overflow: hidden;
}

.swiper_example .swiper-slide {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	width: 28%;
	min-height: auto;
	box-sizing: border-box;
	display: block; /* Flex解除：中のwrapperで制御する */
}

.content_example-wrapper {
	display: flex;
	flex-wrap: wrap; 
	align-items: flex-start; /* 上に揃える */
	gap: 15px;
}

.content_example-wrapper h3 {
	margin: 0 auto;
}

.content_example-wrapper ul {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	gap: 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.content_example-wrapper ul li {
	overflow: hidden;
	border-radius: 5px;
}

/* 真ん中の矢印（三角形） */
.content_example-wrapper ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 15px solid #ff61a5;  /* ▶ の色と大きさ */
}

.content_example-wrapper ul li img {
	width: 100%;
}

.content_example-wrapper p {
	margin: .5em 0;
}


@media only screen and (max-width: 768px) {
	.swiper_example-slide {
		width: 100%; /* 1件ずつ読みやすいサイズ */
		min-height: 450px;
	}
	.swiper_example .swiper-slide {
		width: 100%;
	}
}