/* 참가신청 약관동의 전용 */
.terms_page .terms_sec {
    margin-bottom: 40px;
}

.terms_page .sec_label {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    padding-left: 12px;
    border-left: 4px solid #008148;
    /* 이미지의 초록색 포인트 */
    margin-bottom: 20px;
}

.terms_box {
    border: 1px solid #e5e5e5;
    padding: 25px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    background: #fff;
}

.terms_box.gray_box {
    background: #fcfcfc;
}

.terms_box.scroll_box {
    height: 160px;
    overflow-y: scroll;
}

.num_list li {
    margin-bottom: 8px;
}

.all_agree_area {
    background: #f8f8f8;
    padding: 20px;
    text-align: left;
    margin-top: 50px;
    border-top: 1px solid #eee;
}

.all_agree_area label {
    font-size: 15px;
    color: #444;
    cursor: pointer;
}

.all_agree_area input[type="checkbox"] {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 10px;
}

.btn_apply_group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    margin-bottom: 40px;
}

.btn_apply {
    width: 180px;
    line-height: 55px;
    background: #008148;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.btn_apply.outline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border: 2px solid #008148;
    color: #008148;
    background-color: #fff;
}

.btn_apply:hover {
    background: #006b3c;
}

.btn_apply.outline:hover {
    color: #fff;
    background-color: #008148;
}

.apply_close_text {
    font-size: 18px;
    font-weight: 700;
    color: #dc2626;
}

.btn_apply_status p {
    font-size: 16px;
    color: #d10808;
    font-weight: 500;
}

/* 스크롤바 커스텀 */
.scroll_box::-webkit-scrollbar {
    width: 8px;
}

.scroll_box::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scroll_box::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* 모바일 대응 */
@media screen and (max-width: 768px) {
    .terms_box {
        padding: 15px;
        font-size: 13px;
    }

    .terms_box.scroll_box {
        height: 120px;
    }
}