.section08 {
    width: 100%;
    box-sizing: border-box;
    padding: 100px 240px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 150px;
}

.title-text-box {
    padding: 20px 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.title-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #012554;
    font-size: 70px;
    font-family: Pretendard, sans-serif;
    font-weight: 700;
    line-height: 100px;
    word-break: keep-all;
}

.faq-container {
    width: 880px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.faq-box {
    width: 100%;
    box-sizing: border-box;
    background: white;
    border-bottom: 1px #EEEEEE solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.frequently-box {
    width: 100%;
    min-height: 100px;
    box-sizing: border-box;
    padding: 24px 72px 24px 0;
    position: relative;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
}

.frequently-text {
    width: 100%;
    height: auto;
    position: relative;
    color: #111111;
    font-size: 18.4px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 28px;
    word-break: keep-all;
}

.check-box {
    width: 52px;
    height: 52px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background: rgba(31, 150, 234, 0.10);
    border-radius: 8px;
    pointer-events: none;
    transition: transform 0.4s ease,
        background-color 0.3s ease;
}

.faq-box.active .check-box {
    transform: translateY(-50%) rotate(180deg);
    background: rgba(31, 150, 234, 0.25);
}

.svg-box {
    width: 28px;
    height: 28px;
    left: 12px;
    top: 12px;
    position: absolute;
    overflow: hidden;
}

.answer-box {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows 0.4s ease,
        opacity 0.3s ease;
}

.answer-box>div {
    overflow: hidden;
}

.faq-box.active .answer-box {
    grid-template-rows: 1fr;
    opacity: 1;
}

.answer-text {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 15px 0 30px;
    color: #7E7E7E;
    font-size: 14.9px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    line-height: 25.6px;
    word-break: keep-all;
}


/* =========================================================
   태블릿
   ========================================================= */

@media (max-width: 1200px) {

    .section08 {
        padding: 80px 60px;
        gap: 70px;
    }

    .title-text {
        font-size: 52px;
        line-height: 70px;
    }

    .faq-container {
        width: 100%;
    }

    .frequently-box {
        min-height: 90px;
    }
}


/* =========================================================
   모바일
   ========================================================= */

@media (max-width: 767px) {

    .section08 {
        width: 100%;
        box-sizing: border-box;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 35px;
    }

    .title-text-box {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .title-text {
        font-size: 36px;
        line-height: 48px;
        word-break: keep-all;
    }

    .faq-container {
        width: 100%;
        max-width: none;
    }

    .faq-box {
        width: 100%;
    }

    .frequently-box {
        width: 100%;
        min-height: 76px;
        padding: 18px 64px 18px 0;
    }

    .frequently-text {
        font-size: 16px;
        line-height: 24px;
        word-break: keep-all;
    }

    .check-box {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        border-radius: 7px;
    }

    .svg-box {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
    }

    .answer-text {
        padding: 12px 0 24px;
        font-size: 14px;
        line-height: 23px;
        word-break: keep-all;
    }
}


/* =========================================================
   작은 모바일
   ========================================================= */

@media (max-width: 480px) {

    .section08 {
        padding: 50px 16px;
        gap: 30px;
    }

    .title-text {
        font-size: 32px;
        line-height: 43px;
    }

    .frequently-box {
        min-height: 70px;
        padding: 16px 56px 16px 0;
    }

    .frequently-text {
        font-size: 15px;
        line-height: 23px;
    }

    .check-box {
        width: 40px;
        height: 40px;
    }

    .svg-box {
        width: 22px;
        height: 22px;
        left: 9px;
        top: 9px;
    }

    .answer-text {
        font-size: 13.5px;
        line-height: 22px;
    }
}