.faq-mv {
    width: 90%;
    display: block;
    align-content: center;
}
.faq {
    padding: 0;
}
.faq .text-wrapper h1 {
    margin-bottom: 2.4rem;
}
.faq-wrapper {
    margin-top: 0;
}
.faq-section {
    width: 80%;
    margin: 16rem auto;
    text-align: left;
}
.faq-section:first-child {
    margin: 0 auto;
}

.answer-text {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.faq-mark {
    flex-shrink: 0;
    color: #CCCCCC;
    margin-right: 4rem;
}


.faq-title {
    font-weight: bold;
    margin-bottom: 10px;
}


.faq-description {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.faq-category-title {
    font-weight: bold;
    margin-bottom: 2.4rem;}.faq-item {
    border: 1px solid #000000;
    border-bottom: none;
    overflow: hidden;}

.faq-item:last-child {
    border-bottom: 1px solid #000;
}

.faq-question {
    width: 100%;
    display: flex;
    text-align: left;
    background: #ffffff;
    border: none;
    padding: 2.4rem 4rem;
    font-size: 2rem;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 30px;
    color: #CCCCCC;
}

.faq-item.active .faq-question::after {
    content: '−';
    color: #CCCCCC;
    font-size: 30px
}
.faq-answer {
    height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.5s ease;
    padding: 0 4rem;
}

@media screen and (max-width: 768px) {
.faq-section {
    width: 90%;
    margin: 4rem auto;
}
.faq-question {
    padding: 0.8rem;
    padding-right: 2.4rem;
}
.faq-answer {
    padding: 0 0.8rem;
}
.faq-mark {
    font-size: 2rem;
    margin-right: 1.4rem;
}
.faq-text {
    font-size: 1.4rem;
    color: #000000;
}
.faq-item.active .faq-question::after {
    font-size: 2rem;
    right: 0.8rem;
}
.faq-question::after {
    font-size: 2rem;
    right: 0.8rem;
}
.faq-category-title {
    font-size: 2rem;
}
}