button {
    background: transparent;
    border: none;
}

.layout-faq.layout-con {
    background: #f5f5f5;
    padding: 0;
    margin: 0;
    max-width: none;
    grid-template-rows: 65px 1fr 80px;
}

.layout-faq .layout {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.layout-faq .header {
    visibility: visible;
    background: #fff;
    padding: 0 20px;
    margin-top: 0;
}

.layout-faq .footer {
    display: none;
}

.layout-faq .shopping_cart {
    visibility: hidden;
}

.layout-faq .faq {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.layout-faq .content_wrap {
    position: relative;
    overflow: hidden;
    height: fit-content;
    transition: all 0.5s;
    height: 69px;
}

.layout-faq .question_area {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: fit-content;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 20px;
    transition: all 0.5s;
    position: relative;
    z-index: 11;
}

.layout-faq .arrow_area {
    transition: all 0.5s;
}

.layout-faq .answer {
    width: 100%;
    height: 0;
    align-items: center;
    justify-content: space-between;
    word-break: break-all;
    background: #fff;
    transition: all 0.5s;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.layout-faq .question {
    width: 100%;
}

.layout-faq .question_text,
.layout-faq .answer_text {
    width: 100%;
    min-height: fit-content;
    display: flex;
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 400;
    font-size: 15px;
    color: #1F1F1F;
    background: #fff;
    transition: all 1s;
}

.layout-faq .question_text {
    justify-content: space-between;
}

.layout-faq .answer_text {
    justify-content: flex-start;
}

.layout-faq .question_text span,
.layout-faq .answer_text span {
    font-weight: 700;
    margin-right: 5px;
}

.layout-faq .question_text p,
.layout-faq .answer_text p {
    text-align: left;
}

/* 아코디언 기능 */
.answer.hidden {
    transform: translateY(-100%);
    opacity: 0;
    height: fit-content;
    padding: 0 20px 20px 20px;
}

.answer.visible {
    transform: translateY(0);
    opacity: 1;
    height: fit-content;
    padding: 20px;
}

