@charset "UTF-8";

/*--------------------------------------------------------------
# よくあるご質問用CSS
--------------------------------------------------------------*/
.category_label {
    padding: 0.5em 2em 0.5em 1em;
    margin: 1em 0 0 0;
    background: var(--main);
    border-radius: 0.4em;
    color: #fff;
    font-size: 120%;
    font-weight: 700;
    position: relative;
    cursor: pointer;
}
.category_label::after {
    content: '';
    width: 0.5em;
    height: 0.5em;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: rotate(-135deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1em;
    margin: auto 0;;
}
.qa_item {
    border-bottom: 1px solid #ccc;
    padding: 1em 0;
}
.qa_item:last-child {
    border-bottom: 0;
}
.qa_item a.q {
    padding-left: 1.5em;
    display: block;
    position: relative;
}
.qa_item a.q::before {
    content: 'Q.';
    color: var(--main);
    font-weight: 700;
    position: absolute;
    top: -1px;
    left: 0.25em;
}
.answer {
    padding: 0 0 0 1.5em;
    margin: 1em 0 0 0;
    position: relative;
}
.answer::before {
    content: 'A.';
    color: var(--ac);
    font-weight: 700;
    position: absolute;
    top: -1px;
    left: 0.25em;
}