/* ===============================
   セクション全体
================================= */
.voice-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.voice-section .section-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
}

/* ===============================
   グリッドレイアウト（2×2）
================================= */
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.voice-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 24px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
}

/* ===============================
   テキストエリア
================================= */
.voice-content {
  flex: 1.5;
}

.voice-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 16px;
}

.voice-box {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.voice-box.before {
  background-color: #ffe5e5;
}

.voice-box.after {
  background-color: #e5f7ff;
}

.voice-box ul {
  margin: 0;
  padding-left: 1em;
}

.voice-box li {
  list-style: none;
  margin: 4px 0;
}

/* ===============================
   サイド（顔＋ロゴ）
================================= */
.voice-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.voice-side .face-photo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

.voice-side .company-logo {
  width: 100px;
  height: auto;
  margin-bottom: 8px;
}

.voice-company .company-name {
  font-weight: bold;
  font-size: 0.95em;
  margin-bottom: 4px;
}

.voice-company .company-info {
  font-size: 0.85em;
  color: #555;
}

/* ===============================
   スマホ対応
================================= */
@media (max-width: 768px) {
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .voice-card {
    flex-direction: column;
  }

  .voice-side {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
  }

  .voice-side .face-photo,
  .voice-side .company-logo {
    width: 80px;
  }

  .voice-company {
    text-align: left;
  }
}
