.qa-container {
    font-family: sans-serif;
    margin: 20px;
}
.question {
    align-items: center;
    /* 縦方向中央揃え */
    font-weight: bold;
    margin-bottom: 10px;
}

/* Qの黒丸デザイン */
.q-mark-q::before {
    content: "Q"; /* 表示したい文字 */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; 
    height: 30px; 
    background-color: #000; 
    color: #fff; 
    border-radius: 50%; 
    font-size: 14px; 
    margin-right: 8px;
    font-family: sans-serif;
  }

  .q-mark-a::before {
    content: "A"; /* 表示したい文字 */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 8px;
    font-family: sans-serif; /* フォント調整 */
  }
  .question div:first-of-type {
    display: inline; /* 一番最初のDIVのみに有効 */
  }
  .question div:not(:first-of-type) {
    padding-left: 2.5rem; /* 一番最初以外のDIVに有効 */
}
@media screen and (max-width:768px) {
    .question div:first-of-type {
        display: inline; /* 一番最初のDIVのみに有効 */
    }
    .question div:not(:first-of-type) {
    padding-left: 0rem; /* 一番最初以外のDIVに有効 */
    }
}