.faq-list {
    max-width: 800px;
    margin: 2em auto;
}

.faq-item {
    border: 1px solid var(--color_border, #ddd);
    border-radius: 8px;
    margin-bottom: 1.2em;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1em 1.2em;
    font-size: 1.05rem;
    font-weight: bold;
    background: var(--color_bg_card, #f9f9f9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-icon {
    font-size: 1.3rem;
    margin-left: 10px;
    transition: transform 0.2s ease;
    color: var(--color_main, #ff7a00);
}

.faq-question.open .faq-icon {
    transform: rotate(45deg);
    /* ＋を×っぽく */
}

.faq-answer {
    display: none;
    background: #fff;
}

.faq-answer-inner {
    padding: 1em 1.2em;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Q/A ラベル */
.faq-label {
    display: inline-block;
    font-weight: bold;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    margin-right: 0.6em;
    flex-shrink: 0;
}

.faq-label.-q {
    background: var(--color_main, #ff7a00);
    color: #fff;
}

.faq-label.-a {
    background: #4caf50;
    color: #fff;
}

/* 質問部分 */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1em 1.2em;
    font-size: 1.05rem;
    font-weight: bold;
    background: var(--color_bg_card, #f9f9f9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-q-text {
    flex: 1;
}

/* 回答部分 */
.faq-answer-inner {
    padding: 1em 1.2em;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
}

.faq-a-text {
    flex: 1;
}