 /* ----
  * よくある質問ページ - CSS 
  * ----
  */
#qa_contents ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qa_items {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f9f9f9;
}

.flex_left {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.flex_between {
    gap: 32px;
    display: flex;
    justify-content: space-between;
}

.question_back p,
.answer_back p {
    font-size: 1.3rem;
    font-weight: bold;
}

.question_back {
    width: 30px;
    height: 30px;
    color: #1a73e8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.question_text {
    font-size: 1.3rem;
    font-weight: bold;
}

.answer_back {
    width: 30px;
    height: 30px;
    color: #dc4d5a;
    display: flex;
    justify-content: center;
    align-items: center;
}

