/* ===== Google口コミ紹介セクション ===== */
.google-review-section {
  padding: 100px 200px;
  background-color: white;
  box-sizing: border-box;
}

@media (max-width: 786px) {
  .google-review-section {
    padding: 100px 20px;
  }
}

.google-review-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* 見出し */
.google-review-section h2 {
  font-size: 48px;
  color: #e32b91;
  display: block;
  text-align: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 850px) {
  .google-review-section h2 {
    font-size: 36px;
  }
}

.google-review-section h2 span {
  font-size: 14px;
  color: #666;
}

/* 本文 */
.google-review-text {
  text-align: left;
  font-size: 1rem;
  margin-top: 24px;
  margin-bottom: 24px;
  color: #666;
  line-height: 1.8;
}

/* スコアエリア */
.google-review-card {
  margin-top: 48px;
  padding: 32px 24px;
  border-radius: 12px;
  background-color: #fff;
  text-align: center;
}
@media(max-width: 425px){
	.google-review-card {
		padding: 0px;
	}
}

.google-review-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.google-review-logo svg {
  width: 36px;
  height: 36px;
}

.google-review-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  letter-spacing: .05em;
  color: #444;
}

.google-review-score {
  font-family: 'Oswald', sans-serif;
  font-size: 64px;
  font-weight: 600;
  color: #e32b91;
  line-height: 1;
  margin: 8px 0 16px;
}

@media (max-width: 425px) {
  .google-review-score {
    font-size: 42px;
  }
}

.google-review-stars {
  position: relative;
  display: inline-block;
  font-size: 36px;
  line-height: 1;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.stars-base {
  color: #e0e0e0;
}

.stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  color: #fbbc04;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: width 1.6s ease-out;
}

@media (max-width: 425px) {
  .google-review-stars {
    font-size: 28px;
  }
}

.google-review-count {
  margin: 8px 0 24px;
  color: #222;
  font-weight: 700;
}

.google-review-count .count-number {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  color: #e32b91;
  letter-spacing: .03em;
  margin-right: 4px;
}

.google-review-count .count-unit {
  font-size: 18px;
  color: #333;
}

@media (max-width: 425px) {
  .google-review-count .count-number {
    font-size: 30px;
  }

  .google-review-count .count-unit {
    font-size: 14px;
  }
}

.google-review-link {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  background-color: #e32b91;
  color: #fff;
  font-size: 14px;
  letter-spacing: .05em;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.google-review-link:hover {
  opacity: .85;
  transform: translateY(-2px);
}

/* ===== 口コミスライドショー ===== */
.review-slider {
  position: relative;
  margin-top: 48px;
  padding: 0 56px;
}

.review-slider-viewport {
  overflow: hidden;
}

.review-slider-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.25, .8, .25, 1);
  will-change: transform;
}

.review-card-item {
  flex: 0 0 calc((100% - 48px) / 3);
  box-sizing: border-box;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #ececec;
  background-color: #fff;
  text-align: left;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-name {
  display: block;
  font-weight: 700;
  color: #222;
  font-size: 15px;
  line-height: 1.3;
}

.review-date {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.review-google-mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.review-card-stars {
  color: #fbbc04;
  font-size: 18px;
  letter-spacing: .15em;
  margin-bottom: 12px;
}

.review-card-stars .star-empty {
  color: #e0e0e0;
}

.review-card-body {
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  flex: 1;
}

.review-card-body .review-text {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card-body.is-open .review-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.review-toggle {
  display: inline-block;
  margin-top: 8px;
  background: none;
  border: none;
  padding: 0;
  color: #222;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.review-toggle:hover {
  text-decoration: underline;
}

/* ナビボタン */
.review-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}

.review-slider-btn:hover {
  background-color: #e32b91;
  color: #fff;
  border-color: #e32b91;
}

.review-slider-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.review-slider-prev {
  left: 0;
}

.review-slider-next {
  right: 0;
}

@media (max-width: 786px) {
  .review-slider {
    padding: 0 40px;
  }

  .review-card-item {
    flex: 0 0 100%;
  }

  .review-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
