/* ===============================
   アンコンシャス・バイアス ページ専用スタイル
   =============================== */

/* 蛍光ペン強調 */
.marker {
  background: linear-gradient(transparent 55%, rgba(255, 220, 30, 0.55) 55%);
  font-weight: bold;
}

/* 影響例ラベルリスト */
.labelList {
  list-style: none;
  padding: 0;
  margin: 0.8em 0 1.6em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.labelList li {
  display: inline-flex;
  align-items: center;
  padding: 0.3em 1em;
  border-radius: 2em;
  font-size: 0.8em;
  font-weight: nomal;
  line-height: 1.5;
}
.labelList--gray li {
  background: #f4f4f4;
  color: #666;
}
.labelList--teal li {
  background: #AFDDDE;
  color: #3C9FA1;
}

.labelList--orange li {
  background: #FCD79D;
  color: #BC8A3B;
}

/* 声の吹き出しリスト */
.voiceList {
  list-style: none;
  padding: 0;
  margin: 1.5em 0;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.voiceList li {
  position: relative;
  background: #f0f7f3;
  border: 1px solid #b8d9c8;
  border-radius: 12px;
  padding: 1.2em 1.4em 1.2em 3.2em;
  line-height: 1.85;
  font-size: 0.93em;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* 引用符デコレーション */
.voiceList li::before {
  content: '\201C';
  position: absolute;
  left: 0.55em;
  top: 0.3em;
  font-size: 2.4em;
  color: #4e9e78;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
}
