/* QA */
.voice-contents {
  margin: 30px 50px 20px 50px;
  border-top: 2px solid #fea82e;
}

.voice-box {
  padding-top: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #fea82e;
}

/* UA既定マーカーを消して、押しやすい行に */
.voice-box__q {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 1em 2.5em 1em calc(1em + 3em + 0.6em);
  font-weight: 600;
}
.voice-box__q::-webkit-details-marker {
  display: none;
}
.voice-box__q::marker {
  content: "";
}

.voice-box__q::before {
  content: "Q";
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 3em; /* 直径 */
  height: 3em;
  border-radius: 999px;
  background: #000066; /* Qの背景色 */
  color: #fff;
  font-weight: 700;
  font-size: 0.9em; /* バッジ内の文字サイズ */
  display: inline-grid;
  place-items: center;
}

.voice-box__a {
  position: relative;
  margin: 0;
  padding: 0.3em calc(1em + 3em + 0.6em) 1.25em;
}

.voice-box__a::before {
  content: "A";
  position: absolute;
  left: 1em;
  top: 0.9em; /* 段落上端とのバランスで微調整 */
  width: 3em;
  height: 3em;
  border-radius: 999px;
  background: #fea82e; /* Aの背景色 */
  color: #fff;
  font-weight: 700;
  font-size: 0.9em;
  display: inline-grid;
  place-items: center;
}

.message {
  padding: 0 50px;
}

@media (max-width: 768px) {
  .voice-title {
    font-size: 20px;
  }
  .message {
    padding: 0 10px;
  }

  .voice-contents {
    margin: 10px 0;
  }

  .voice-box__a {
    position: relative;
    padding: 0;
  }

  .voice-box__q {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding: 1em 1em 1em 3.5em;
    font-weight: 600;
  }
  .voice-box__q::-webkit-details-marker {
    display: none;
  }
  .voice-box__q::marker {
    content: "";
  }

  .voice-box__q::before {
    content: "Q";
    position: absolute;
    left: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5em; /* 直径 */
    height: 2.5em; /* 直径 */
    font-weight: 700;
    font-size: 0.9em; /* バッジ内の文字サイズ */
    display: inline-grid;
    place-items: center;
  }

  .voice-box__a {
    position: relative;
    margin: 0;
    padding: 1em 1em 1em 3.5em;
  }

  .voice-box__a::before {
    left: 0.5em;
    top: 0.9em; /* 段落上端とのバランスで微調整 */
    width: 2.5em; /* 直径 */
    height: 2.5em; /* 直径 */
    font-weight: 700;
    border-radius: 999px;
    background: #fea82e; /* Aの背景色 */
    color: #fff;
    font-weight: 700;
    font-size: 0.9em;
    display: inline-grid;
    place-items: center;
  }
}
