.cs_sec_wrap.ttl_wrap {
    padding-top: 50px;
}

.ttl_1 {
    margin-bottom: 10px;
}

.faq_wrap {
    padding-top: 60px;
}

.faq_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq_item {
    width: 1000px;
}

.faq_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 30px;
}

.faq_item {
    width: 100%;
}

.faq_question {
    background-color: #EAEAEA;
    padding: 18px 0 22px 40px;
    position: relative;
}
.faq_question:hover {
    cursor: pointer;
}
.faq_question::before {
    content: "";
    position: absolute;
    top: 47%;
    right: 31px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #414A62;
    border-left: 2px solid #414A62;
    transform: translateY(-50%) rotate(225deg);
    transition: 0.3s ease-in-out;
}

.is-show .faq_question::before {
    transform: translateY(-0%) rotate(45deg);
}

.faq_question_text {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    display: flex;
    align-items: center;
}


.q {
    font-family: 'Playfair Display', serif;
    display: inline-block;
    margin-bottom: 3px;
    margin-right: 5px;
}

.faq_answer {
    background-color: #FCFCFC;
    opacity: 0;
    /* transform: translateY(-60px); */
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 60px;
    padding-right: 60px;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out, height 0.3s ease-in-out;
    position: relative;
    height: 0;
    z-index: -1;
}

.is-show .faq_answer {
    opacity: 1;
    /* transform: translateY(0); */
    padding-top: 40px;
    padding-bottom: 40px;
    height: auto;
}

.faq_answer_text {
    font-size: 15px;
    font-weight: 400;
    line-height: 25.5px;
    letter-spacing: 0.05em;
}

.faq_answer_text .faq_answer_text_item {
    margin: 0;
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.faq_answer_text .faq_answer_text_item + .faq_answer_text_item {
    margin-top: 1em;
}

.faq_answer_text .faq_answer_text_item:empty {
    min-height: 0.4em;
}

@media screen and (max-width: 1100px) {
    .faq_item {
        width: 900px;
    }
}

@media screen and (max-width: 999px) {
    .cs_sec_wrap.ttl_wrap {
        padding-top: 20px;
    }
    
    .ttl_1 {
        margin-bottom: 20px;
    }
    
    .faq_wrap {
        padding-top: 30px;
    }
    
    .faq_list {
        gap: 10px;
        padding: 0 25;
    }
    
    .faq_item {
        width: 100%;
    }
    
    .faq_title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }
    
    .faq_item {
        width: 100%;
    }
    
    .faq_question {
        padding: 21px 27px 23px 33px;
        position: relative;
        cursor: pointer;
    }
    .faq_question::before {
        content: "";
        position: absolute;
        top: 31px;
        right: 12px;
        width: 9px;
        height: 9px;
    }
    
    .is-show .faq_question::before {
    }
    
    .faq_question_text {
        font-size: 16px;
        line-height: 24px;
        display: flex;
        align-items: center;
        position: relative;
    }
    
    
    .q {
        margin-bottom: 0;
        margin-right: 0;
        position: absolute;
        top: -2px;
        left: -20px;
    }
    
    .faq_answer {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 27px;
        padding-right: 27px;
    }
    
    .is-show .faq_answer {
        adding-top: 30px;
        padding-bottom: 35px;
    }
    
    .faq_answer_text {
        line-height: 30px;
        letter-spacing: 0;
    }

    .faq_answer_text .faq_answer_text_item + .faq_answer_text_item {
        margin-top: 0.6em;
    }
}