/* ============================================
   お客様の声ページ（testimonials-page）専用 CSS
============================================ */

/* 全体レイアウト */
.testimonials-page #contents2 {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* 説明文 */
.results-intro {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 40px;
  color: #333;
}

/* 各声ブロック */
.testimonials-page .results {
  margin-top: 20px;
}

.testimonials-page .result-item {
  background: #fafafa;
  border: 1px solid #ddd;
  padding: 20px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.testimonials-page .result-item h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1e90ff;
}

.testimonials-page .result-item p {
  font-size: 0.98rem;
  line-height: 1.8;
}

/* リンク */
.testimonials-page .result-item a {
  color: #1e90ff;
  font-weight: bold;
  text-decoration: none;
}

.testimonials-page .result-item a:hover {
  text-decoration: underline;
}
/* ▼ 製品リンクボタン（業種紹介ページと統一） */
.related-btn-group {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-btn {
  display: inline-block;
  padding: 8px 16px;
  color: #00a0e9;              /* 水色の文字 */
  border: 1px solid #00a0e9;   /* 水色の枠線 */
  background-color: transparent; /* 背景なし */
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.related-btn:hover {
  background-color: #00a0e9; /* ホバー時：水色背景 */
  color: #fff;               /* 白文字 */
}
/* ============================================
   スマホ対応
============================================ */

@media screen and (max-width: 768px) {

  .testimonials-page #contents2 {
    padding: 0 25px;
  }

  .testimonials-page .result-item {
    padding: 20px;
  }

  .testimonials-page .result-item h2 {
    font-size: 20px;
  }

  .testimonials-page .result-item p {
    line-height: 1.9;
  }
}
