/* セクション全体 */
#lp_voice.section_voice {
  background-color: #f8f8f8;
  padding: 60px 20px;
  font-family: "Helvetica Neue", "Noto Sans JP", sans-serif;
}

/* 見出し */
#lp_voice .main_ttl {
  font-size: 32px;
  text-align: center;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}
#lp_voice .main_ttl::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #007e5e;
  margin: 16px auto 0;
}

/* ボイス項目リスト */
#lp_voice .items {
  list-style: none;
  padding: 0;
  margin: 0;
}
#lp_voice .items li {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}
#lp_voice .items li:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* フレックス調整（スマホで1カラムに） */
#lp_voice .f_wrap {
  display: flex;
  flex-wrap: wrap;
}
#lp_voice .area_a,
#lp_voice .area_b {
  flex: 1 1 100%;
}

/* タイトル */
#lp_voice .ttl {
  font-size: 20px;
  font-weight: bold;
  color: #007e5e;
  margin-bottom: 15px;
}

/* 本文 */
#lp_voice .txt {
  font-size: 16px;
  color: #333;
  line-height: 1.75;
}

/* 氏名・部署 */
#lp_voice .name {
  font-size: 14px;
  color: #777;
  margin-top: 20px;
  text-align: right;
  font-style: italic;
}

/* --- スマホ表示対応 --- */
@media screen and (max-width: 600px) {
  #lp_voice {
    padding: 40px 15px;
  }
  #lp_voice .main_ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }
  #lp_voice .ttl {
    font-size: 18px;
  }
  #lp_voice .txt {
    font-size: 15px;
  }
  #lp_voice .name {
    font-size: 13px;
    text-align: left;
    margin-top: 15px;
  }
}
