@charset 'utf-8';

.faq-content summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.faq-content summary::before,
.faq-content div::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.faq-content summary::before {
    color: #5ebc80;
    content: "Q";
}

.faq-content summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.faq-content[open] summary::after {
    transform: rotate(225deg);
}

.faq-content div {
    position: relative;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.faq-content div::before {
    color: #ffcc00;
    line-height: 1.2;
    content: "A";
}