@charset "UTF-8";

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

.swiper-slide {
  background: #daebff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 40%;
  min-height: 500px;
  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件ずつ読みやすいサイズ */
	}
}