/* ==================== title ==================== */
.brand_title .content_wrap {
    padding: 32px 0;
}

.brand_title .img_wrap {
    max-width: 796px;
    margin: 0 auto;
    display: flex;
}

/* ==================== why ==================== */
.brand_why .content_wrap {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.brand_why .content_area.content01 {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
}

.brand_why .content_box.graph {
    width: 100%;
    max-width: 396px;
    flex-shrink: 0;
    overflow: hidden;
}

.brand_why .content_box.graph svg {
    width: 100%;
    height: auto;
}

.brand_why .content_box.graph .edk_animate_graph {
    transform: translateY(100%);
    transition: all 0.8s ease;
}

.brand_why .content_box.graph .edk_animate_graph.active {
    transform: translateY(0);
}

.brand_why .content_box.graph .edk_animate_text {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.brand_why .content_box.graph .edk_animate_text.active {
    opacity: 1;
}

.brand_why .content_box.text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.brand_why .content_box.text .text_wrap {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.brand_why .content_box.text .icon_wrap {
    width: 82px;
    aspect-ratio: 1/1;
    display: flex;
}

.brand_why .content_area.content02 {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 138px 0;
    background: url("/static/app_www/base/img/img_brand01.png") center / cover no-repeat;
}

.brand_why .content_area.content02 .text_wrap {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    font-size: 32px;
    color: #fff;
    font-weight: 600;
}

.brand_why .content_area.content02 .highlight_w {
    display: inline-block;
    padding: 2px 11px;
    color: var(--sub-color);
    background-color: #fff;
    border-radius: 4px;
}

/* ==================== and ==================== */
.brand_and .img_wrap {
    width: 100%;
    display: flex;
    margin-bottom: 70px;
}

.brand_and .text_wrap {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
}

/* ==================== how ==================== */
.brand_how .content_wrap {
    padding: 0 25px;
}

.brand_how .img_wrap {
    display: flex;
    width: 100%;
}

/* ==================== apply ==================== */
.brand_apply .content_wrap {
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 928px;
    margin: 0 auto;
    border: 1px solid #E1E1E1;
    border-radius: 20px;
    padding: 50px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.brand_apply .page_title_wrap {
    text-align: center;
}

.brand_apply .input_area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand_apply .select_state {
    width: calc((100% - 16px)/2);
    border: 1px solid #9E9E9E;
    background-color: transparent;
    border-radius: 8px;
    text-align: center;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 500;
    color: #5E5E5E;
}

.brand_apply .select_state.active {
    color: #fff;
    background-color: #222222;
    border-color: #222222;
}

.brand_apply .btn_default {
    padding: 12px 13px;
    font-size: 18px;
    font-weight: 600;
}

.brand_apply .edk_file_wrap .btn_default {
    font-size: 16px;
    font-weight: 500;
}

.brand_apply .input_title .sub_title {
    color: var(--error-color);
    font-size: 13px;
    font-weight: 400;
    margin-top: 6px;
}

.brand_apply textarea {
    min-height: 170px;
}

@media screen and (max-width:1023px) {

    /* ==================== title ==================== */
    .brand_title .content_wrap {
        padding: 10px 0;
    }

    /* ==================== why ==================== */
    .brand_why .content_wrap {
        gap: 30px;
    }

    .brand_why .content_area.content01 {
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }

    .brand_why .content_box.text {
        gap: 8px;
    }

    .brand_why .content_box.text .text_wrap {
        font-size: 20px;
    }

    .brand_why .content_box.text .icon_wrap {
        width: 50px;
    }

    .brand_why .content_area.content02 {
        max-width: 300px;
        padding: 95px 0;
    }

    .brand_why .content_area.content02 .text_wrap {
        font-size: 20px;
        gap: 12px;
    }

    /* ==================== and ==================== */
    .brand_and .img_wrap {
        max-width: 343px;
        margin: 0 auto 30px;
    }

    .brand_and .text_wrap {
        font-size: 20px;
    }

    /* ==================== how ==================== */
    .brand_how .content_wrap {
        padding: 0;
    }

    /* ==================== apply ==================== */
    .brand_apply .content_wrap {
        padding: 32px 14px;
    }
}