/* FAQ専用スタイル */
.custom-faq-accordion {
    margin: 0 auto;
    margin-top:2.5rem;
}

.custom-faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
}

.custom-faq-accordion-item {
    background: #fff;
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1);
}

.custom-faq-accordion-item:hover {
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.15);
}

.custom-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
}

.custom-faq-question.active {
    padding-bottom: 0.75rem;
    border-bottom: 0.125rem solid #F5F5F5;
}

.custom-faq-q-label {
    color: #E9528E;
    font-weight: 500;
    margin-right: 0.625rem;
    font-size: 1.125rem;
    min-width: 1.25rem;
}

.custom-faq-question-title {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: #535353;
    line-height: 1.4;
}

.custom-faq-toggle {
    font-size: 1.75rem;
    color: #E9528E;
    margin-left: 1.25rem;
    font-weight: 500;
    min-width: 1.25rem;
    text-align: center;
}

.custom-faq-a-label {
    color: #535353;
    font-weight: 500;
    margin-right: 0.625rem;
    font-size: 1.125rem;
    min-width: 1.25rem;
}

.custom-faq-answer {
    margin-top: 0.75rem;
    display: none;
    font-size: 0.875rem;
    color: #535353;
    line-height: 1.6;
    font-weight: 400;
    padding-top: 0.75rem;
}

.custom-faq-answer.show {
    display: block;
}