/* CDEC-MN-01 메인페이지&공통 */

/* ===== 히어로 섹션 ===== */
.hero_section {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 20px 80px;
}

.hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero_gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0b4838 0%, #15785d 40%, #1a9b77 100%);
}

.hero_pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    background-image: 
        radial-gradient(circle at 25% 25%, #fff 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #fff 2px, transparent 2px);
    background-size: 60px 60px;
}

.hero_content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.badge_icon {
    font-size: 18px;
}

.badge_text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.hero_title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero_highlight {
    background: linear-gradient(135deg, #ffd700 0%, #f48120 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero_description {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero_features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.feature_item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.feature_item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature_icon {
    font-size: 16px;
}

.feature_text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.hero_scroll_indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll_text {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll_arrow {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* 히어로 반응형 */
@media screen and (max-width: 768px) {
    .hero_section {
        min-height: 350px;
        padding: 50px 20px 70px;
    }
    
    .hero_title {
        font-size: 32px;
    }
    
    .hero_description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero_features {
        gap: 12px;
    }
    
    .feature_item {
        padding: 8px 14px;
    }
    
    .feature_text {
        font-size: 13px;
    }
}

@media screen and (max-width: 462px) {
    .hero_section {
        min-height: 300px;
        padding: 40px 15px 60px;
    }
    
    .hero_badge {
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .badge_text {
        font-size: 12px;
    }
    
    .hero_title {
        font-size: 26px;
    }
    
    .hero_description {
        font-size: 14px;
    }
    
    .hero_features {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature_item {
        justify-content: center;
    }
    
    .hero_scroll_indicator {
        display: none;
    }
}

/* ===== 메인 섹션 ===== */
.main_section {
    position: relative;
    z-index: 10;
    padding-top: 30px;
}

/* 섹션 */
section{
    width: 100%;
    padding: 15px;
}
.section_wrap{
    max-width: 1300px;
    margin: 0 auto;
}

/* 소속지역 */
.area_wrap{
    border: none;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    padding: 0;
    position: relative;
    height: auto;
    min-height: 670px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.area_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        #15785d 0%, 
        #1a9b77 50%, 
        #f48120 100%);
    z-index: 1;
    pointer-events: none;
}
.area_wrap:hover {
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 12px 30px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
}

/* 소속지역 카드 */
.area_card {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 소속지역 제목*/
.area_title_wrap{
    background: linear-gradient(135deg, #0b4838 0%, #15785d 50%, #1a9b77 100%);
    padding: 28px 25px;
    border-bottom: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
    flex-shrink: 0;
}
.area_title_wrap::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.area_title_wrap::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.area_title{
    color: #fff;
    font-weight: 800;
    font-size: 26px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 5;
}
.title_icon {
    font-size: 30px;
    animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}
/* 소속지역 선택*/
.area_body{
    height: auto;
    min-height: 560px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: none;
    border-radius: 0;
    padding: 30px 40px 40px;
    position: relative;
    flex: 1;
}
/* 소속지역 선택 텍스트*/
.area_txt{
    font-size: 21px;
    letter-spacing: -1px;
    font-weight: 900;
    color: #333333;
    margin-bottom: 25px;
}
.area_txt .area_icon{
    width: 24px;
    margin-right: 8px;
    margin-top: 2px;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}
.area_txt .highlight_text{
    color: #15785d;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(21, 120, 93, 0.2);
}
/* 소속지역 박스*/
.area_box{
    margin-bottom: 10px;
}
.area_box>div{
    height: 60px;
    padding: 0 5px;
}
.area_box>div:last-of-type{
    margin: 0;
}
.area_box>div button,
.area_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 58px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 2px solid rgba(224, 224, 224, 0.6);
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.04),
        0 2px 6px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    gap: 8px;
}
.area_btn .btn_text {
    position: relative;
    z-index: 2;
    flex: 1;
    transition: all 0.3s ease;
}
.area_box>div button::before,
.area_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}
/* 리플 효과를 위한 after 요소 */
.area_box>div button::after,
.area_btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
}
.area_box>div button:active::after,
.area_btn:active::after {
    width: 300px;
    height: 300px;
}
.area_box>div button:hover,
.area_btn:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(21, 120, 93, 0.25),
        0 4px 12px rgba(21, 120, 93, 0.15),
        0 0 0 3px rgba(21, 120, 93, 0.1);
}
.area_box>div button:hover::before,
.area_btn:hover::before {
    opacity: 1;
}
.area_box>div button:focus,
.area_btn:focus {
    outline: none;
    box-shadow: 
        0 8px 25px rgba(21, 120, 93, 0.25),
        0 0 0 3px rgba(21, 120, 93, 0.3);
}
.area_box>div button,
.area_btn {
    position: relative;
    z-index: 1;
}
.area_box>div button *,
.area_btn * {
    position: relative;
    z-index: 2;
}

.area_box>div button:disabled,
.area_btn:disabled,
.area_btn.disabled {
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    color: #999;
    cursor: not-allowed;
    border-color: #ccc;
    opacity: 0.6;
    position: relative;
}
.area_box>div button:disabled::before,
.area_btn:disabled::before,
.area_btn.disabled::before {
    display: none;
}
.area_box>div button:disabled:hover,
.area_btn:disabled:hover,
.area_btn.disabled:hover {
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    color: #999;
}
.area_btn.disabled .btn_text {
    text-decoration: line-through;
}
/* 소속지역 박스 필요없는 영역*/
.last_box{
    opacity: 0;
}

/* ===== 안내사항 카드 ===== */
.issues_wrap{
    border-radius: 20px;
    padding: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
    transition: all 0.3s ease;
}
.issues_wrap:hover {
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}
/* 안내사항 제목*/
.issues_title_wrap{
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 18px 25px;
    height: auto;
}
.issues_title{
    height: auto;
    font-size: 18px;
    font-weight: 800;
    color: #333;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 10px;
}
.issues_icon {
    font-size: 22px;
}
/* 안내사항 내용*/
.issues_body{
    padding: 20px 25px;
}
.issues_text{
    padding: 0;
    margin: 0;
}
.issues_text li{
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    color: #555;
    letter-spacing: -0.3px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.issues_text li:last-child {
    border-bottom: none;
}
.issue_bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    border-radius: 50%;
    margin-top: 8px;
}
.issues_text li::before{
    display: none;
}

/* ===== 주요질문사항 카드 ===== */
.question_wrap{
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-top: 15px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
    transition: all 0.3s ease;
}
.question_wrap:hover {
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}
/* 주요질문사항 제목*/
.question_title_wrap{
    background: linear-gradient(135deg, #fff8f3 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(244, 129, 32, 0.1);
    padding: 18px 25px;
    height: auto;
}
.question_title{
    height: auto;
    font-size: 18px;
    font-weight: 800;
    color: #333;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 10px;
}
.question_icon {
    font-size: 22px;
}
.best_badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #f48120 0%, #ff9a4d 100%);
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 주요질문사항 그리드 */
.question_body{
    padding: 20px;
}
.question_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.question_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 10px;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.question_item:hover {
    background: linear-gradient(135deg, #fff8f3 0%, #fff5ee 100%);
    border-color: rgba(244, 129, 32, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(244, 129, 32, 0.15);
}
.q_icon_wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff8f3 0%, #ffefe5 100%);
    border-radius: 16px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.question_item:hover .q_icon_wrap {
    background: linear-gradient(135deg, #f48120 0%, #ff9a4d 100%);
    transform: scale(1.08);
}
.q_emoji {
    font-size: 26px;
    transition: all 0.3s ease;
}
.question_item:hover .q_emoji {
    transform: scale(1.1);
}
.q_label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

/* ===== 액션 버튼 ===== */
.action_buttons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}
.action_btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.action_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.action_btn:hover::before {
    opacity: 1;
}
.action_btn_primary {
    background: linear-gradient(135deg, #f48120 0%, #e66a00 100%);
    box-shadow: 0 4px 15px rgba(244, 129, 32, 0.3);
}
.action_btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 129, 32, 0.4);
}
.action_btn_secondary {
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    box-shadow: 0 4px 15px rgba(21, 120, 93, 0.3);
}
.action_btn_secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 120, 93, 0.4);
}
.action_icon {
    font-size: 18px;
}
.action_text {
    flex: 1;
    text-align: left;
}
.action_arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}
.action_btn:hover .action_arrow {
    transform: translateX(4px);
}

/* 기존 or_btn은 히든 처리 */
.or_btn {
    display: none;
}

@media screen and (max-width:1085px){
    /* 안내사항 내용*/
    .issues_text li{
        font-size: 14px;
    }
    /* 질문 그리드 */
    .question_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:992px){
    .section_wrap{
        max-width: 720px;
    }
    /* 소속지역 */
    .area_wrap{
        margin-bottom: 15px;
    }
    /* 소속지역 박스*/
    .area_box>div{
        height: 58px;
    }
    .area_box>div a{
        font-size: 20px;
        height: 58px;
        line-height: 58px;
    }
    /* 오른쪽 영역*/
    .right_wrap{
        padding: 0;
    }
    /* 안내사항 */
    .issues_wrap, .question_wrap {
        margin-bottom: 15px;
    }
    /* 질문 그리드 */
    .question_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    /* 액션 버튼 */
    .action_buttons {
        flex-direction: column;
    }
    .action_btn {
        width: 100%;
    }
}
@media screen and (max-width:768px){
    /* 모바일 전용 모던 디자인 */
    section {
        padding: 10px;
    }
    .main_section {
        padding-top: 15px;
    }
    
    .section_wrap {
        margin: 0;
    }
    
    /* 사이드바 카드 모바일 */
    .right_wrap {
        margin-top: 0;
    }
    .issues_wrap, .question_wrap {
        border-radius: 16px;
    }
    .issues_title_wrap, .question_title_wrap {
        padding: 15px 18px;
    }
    .issues_title, .question_title {
        font-size: 16px;
    }
    .issues_icon, .question_icon {
        font-size: 18px;
    }
    .issues_body {
        padding: 15px 18px;
    }
    .issues_text li {
        font-size: 14px;
        padding: 8px 0;
    }
    .issue_bullet {
        width: 5px;
        height: 5px;
        min-width: 5px;
        margin-top: 7px;
    }
    
    /* 질문 그리드 모바일 */
    .question_body {
        padding: 15px;
    }
    .question_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .question_item {
        padding: 14px 8px;
        border-radius: 14px;
    }
    .q_icon_wrap {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        margin-bottom: 8px;
    }
    .q_emoji {
        font-size: 22px;
    }
    .q_label {
        font-size: 12px;
    }
    
    /* 액션 버튼 모바일 */
    .action_buttons {
        margin-top: 12px;
        gap: 10px;
    }
    .action_btn {
        padding: 14px 18px;
        font-size: 14px;
        border-radius: 12px;
    }
    .action_icon {
        font-size: 16px;
    }
    
    /* 소속지역 카드 - 모던한 디자인 */
    .area_wrap{
        padding: 0;
        border-radius: 24px;
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.1),
            0 2px 8px rgba(0, 0, 0, 0.05);
        height: auto;
        min-height: 500px;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        overflow: visible;
        position: relative;
    }
    
    .area_wrap::before {
        display: none; /* 모바일에서는 상단 장식 숨김 */
    }
    
    .area_card {
        border-radius: 20px;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }
    
    /* 소속지역 제목 - 모던한 헤더 */
    .area_title_wrap{
        padding: 20px 15px;
        background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
        border-radius: 24px 24px 0 0;
        position: relative;
        z-index: 10;
    }
    
    .area_title{
        font-size: 22px;
        font-weight: 800;
        color: #fff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        letter-spacing: -0.5px;
    }
    
    .title_icon {
        font-size: 26px;
    }
    
    /* 소속지역 선택 - 모던한 바디 */
    .area_body{
        height: auto;
        min-height: 400px;
        padding: 25px 15px;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 0;
        position: relative;
    }
    
    .area_body::before {
        display: none; /* 모바일에서는 장식선 숨김 */
    }
    
    /* 소속지역 선택 텍스트 */
    .area_txt{
        font-size: 18px;
        margin-bottom: 25px;
        font-weight: 700;
    }
    
    .area_txt .area_icon{
        width: 22px;
        margin-right: 8px;
    }
    
    .highlight_text {
        color: #15785d;
        font-weight: 900;
    }
    
    /* 소속지역 박스 - 모바일 최적화 그리드 */
    /* areaCont를 그리드로 만들어 모든 버튼을 균등하게 2열 배치 */
    /* 소속지역 박스 - 모바일 최적화 4열 그리드 */
    #areaCont {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    /* area_box (row)를 display: contents로 만들어 그리드 구조 평탄화 */
    .area_box,
    .area_box.row-cols-3 {
        display: contents !important;
        margin: 0;
    }
    
    .area_box > .col,
    .area_box.row-cols-3 > .col {
        width: 100%;
        max-width: 100%;
        flex: none;
        padding: 0;
    }
    
    .area_box>div{
        height: auto;
        min-height: 44px;
        padding: 0;
    }
    
    .area_box>div button,
    .area_btn{
        height: 44px;
        font-size: 13px;
        font-weight: 700;
        border-radius: 10px;
        padding: 8px 6px;
        box-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.06),
            0 1px 3px rgba(0, 0, 0, 0.04);
        border: 1.5px solid rgba(224, 224, 224, 0.5);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
        position: relative;
        overflow: hidden;
    }
    
    .area_box>div button::after,
    .area_btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(21, 120, 93, 0.1);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .area_box>div button:active::after,
    .area_btn:active::after {
        width: 300px;
        height: 300px;
    }
    
    .area_box>div button:hover,
    .area_btn:hover {
        transform: translateY(-3px);
        box-shadow: 
            0 8px 24px rgba(21, 120, 93, 0.2),
            0 4px 8px rgba(21, 120, 93, 0.15);
        border-color: rgba(21, 120, 93, 0.3);
    }
    
    .area_box>div button:active,
    .area_btn:active {
        transform: translateY(-1px);
    }
    
    .area_btn .btn_text {
        font-size: 13px;
        line-height: 1.3;
    }
}
@media screen and (max-width:462px){
    /* 작은 모바일 화면 최적화 */
    section {
        padding: 8px;
    }
    
    .area_wrap{
        border-radius: 16px;
        min-height: 450px;
    }
    
    .area_card {
        border-radius: 16px;
    }
    
    /* 소속지역 제목 */
    .area_title_wrap{
        padding: 18px 12px;
        border-radius: 16px 16px 0 0;
    }
    
    .area_title{
        font-size: 20px;
        letter-spacing: -0.3px;
    }
    
    .title_icon {
        font-size: 22px;
    }
    
    /* 소속지역 선택 */
    .area_body{
        min-height: 380px;
        padding: 20px 12px;
    }
    
    /* 소속지역 선택 텍스트 */
    .area_txt{
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .area_txt .area_icon{
        width: 20px;
        margin-right: 6px;
    }
    
    /* 소속지역 박스 - 작은 화면에서는 3열 */
    #areaCont {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .area_box>div{
        min-height: 40px;
    }
    
    .area_box>div button,
    .area_btn{
        height: 40px;
        font-size: 12px;
        border-radius: 8px;
        padding: 6px 4px;
    }
    
    .area_btn .btn_text {
        font-size: 12px;
    }
    
    /* 사이드바 카드 작은 모바일 */
    .issues_wrap, .question_wrap {
        border-radius: 14px;
    }
    .issues_title_wrap, .question_title_wrap {
        padding: 14px 15px;
    }
    .issues_title, .question_title {
        font-size: 15px;
    }
    .issues_icon, .question_icon {
        font-size: 16px;
    }
    .issues_body {
        padding: 12px 15px;
    }
    .issues_text li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    /* 질문 그리드 작은 모바일 */
    .question_body {
        padding: 12px;
    }
    .question_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .question_item {
        padding: 12px 6px;
        border-radius: 12px;
    }
    .q_icon_wrap {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        margin-bottom: 6px;
    }
    .q_emoji {
        font-size: 20px;
    }
    .q_label {
        font-size: 11px;
    }
    
    /* 액션 버튼 작은 모바일 */
    .action_buttons {
        gap: 8px;
    }
    .action_btn {
        padding: 12px 15px;
        font-size: 13px;
        border-radius: 10px;
    }
}

@media screen and (max-width:322px){
    /* 매우 작은 화면 최적화 - 2열 */
    #areaCont {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    .area_title{
        font-size: 17px;
    }
    .title_icon {
        font-size: 18px;
    }
    .area_txt{
        font-size: 14px;
    }
    .area_box>div{
        min-height: 38px;
    }
    .area_btn, .area_box>div button {
        font-size: 11px;
        height: 38px;
        padding: 5px 4px;
        border-radius: 8px;
    }
    .area_btn .btn_text {
        font-size: 11px;
    }
    
    /* 사이드바 카드 매우 작은 화면 */
    .issues_wrap, .question_wrap {
        border-radius: 12px;
    }
    .issues_title_wrap, .question_title_wrap {
        padding: 12px;
    }
    .issues_title, .question_title {
        font-size: 14px;
    }
    .issues_icon, .question_icon {
        font-size: 14px;
    }
    .issues_body {
        padding: 10px 12px;
    }
    .issues_text li {
        font-size: 12px;
        padding: 5px 0;
    }
    .issue_bullet {
        width: 4px;
        height: 4px;
        min-width: 4px;
        margin-top: 6px;
    }
    
    /* 질문 그리드 매우 작은 화면 */
    .question_body {
        padding: 10px;
    }
    .question_grid {
        gap: 6px;
    }
    .question_item {
        padding: 10px 4px;
        border-radius: 10px;
    }
    .q_icon_wrap {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .q_emoji {
        font-size: 18px;
    }
    .q_label {
        font-size: 10px;
    }
    
    /* 액션 버튼 매우 작은 화면 */
    .action_btn {
        padding: 10px 12px;
        font-size: 12px;
    }
    .action_icon {
        font-size: 14px;
    }

}




/* CDEC-3DEP-01 소속지역(시군구) 선택*/

/* 뒤로가기버튼 */
.back{
    position: fixed;
    bottom: calc(env(safe-area-inset-bottom) + 24px);
    left: 30px;
    display: none;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #555;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border: 2px solid rgba(224, 224, 224, 0.6);
    border-radius: 30px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 98;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    min-width: 120px;
}
.back[style*="display: block"],
.back[style*="display:flex"] {
    display: flex !important;
}
.back:hover{
    color: #fff;
    background: linear-gradient(135deg, #f48120 0%, #e66a00 100%);
    border-color: #f48120;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(244, 129, 32, 0.35),
        0 4px 12px rgba(244, 129, 32, 0.25);
}
.back:active {
    transform: translateY(0);
}
.back_icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}
.back:hover .back_icon {
    transform: translateX(-3px);
}
.back_text {
    position: relative;
    z-index: 1;
}
/* 로딩 스피너 */
.loading_spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
}
.loading_spinner .spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #e0e0e0;
    border-top: 5px solid #15785d;
    border-right: 5px solid #0b4838;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(21, 120, 93, 0.2);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loading_spinner p {
    color: #15785d;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
/* 퇴실 버튼 반짝임 (모바일 상단): 색상·그림자만 변화, 크기는 유지 */
@keyframes shimmer {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(244, 129, 32, 0.35);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 6px 24px rgba(244, 129, 32, 0.55);
        filter: brightness(1.18);
    }
}

/* 페이지 전환 로딩 오버레이 */
.page_loading_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 120, 93, 0.95) 0%, rgba(11, 72, 56, 0.98) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.page_loading_overlay.active {
    opacity: 1;
}
.page_loading_content {
    text-align: center;
}
.page_loading_spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}
.page_loading_text {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 1.5s ease-in-out infinite;
}

@media screen and (max-width: 768px) {
    .page_loading_spinner {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }
    .page_loading_text {
        font-size: 16px;
    }
}

@media screen and (max-width:768px){
    .area_wrap{
        padding-bottom: 60px;
        position: relative;
    }
    
    /* 뒤로가기 버튼 - 모던한 플로팅 버튼 */
    .back{
        bottom: calc(env(safe-area-inset-bottom) + 24px);
        left: 30px;
        transform: none;
        padding: 12px 24px;
        font-size: 15px;
        font-weight: 700;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
        border: 2px solid rgba(224, 224, 224, 0.6);
        border-radius: 30px;
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.12),
            0 2px 8px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 120px;
        justify-content: center;
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: fixed;
        overflow: hidden;
    }
    
    .back::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #f48120 0%, #e66a00 100%);
        transition: left 0.3s ease;
        z-index: 0;
    }
    
    .back:hover::before,
    .back:focus::before {
        left: 0;
    }
    
    .back:hover,
    .back:focus {
        border-color: #f48120;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 
            0 8px 24px rgba(244, 129, 32, 0.35),
            0 4px 12px rgba(244, 129, 32, 0.25);
    }
    
    .back:active {
        transform: translateY(0);
    }
    
    .back * {
        position: relative;
        z-index: 1;
    }
    
    .back_icon {
        font-size: 18px;
        transition: transform 0.3s ease;
    }
    
    .back:hover .back_icon {
        transform: translateX(-3px);
    }
    
    .back_text {
        font-weight: 700;
    }
}
@media screen and (max-width:462px){
    .area_wrap{
        padding-bottom: 55px;
    }
    
    .back{
        font-size: 14px;
        bottom: calc(env(safe-area-inset-bottom) + 20px);
        left: 20px;
        padding: 10px 18px;
        min-width: 100px;
    }
    
    .back_icon {
        font-size: 16px;
    }
    
    .loading_spinner {
        padding: 60px 20px;
        min-height: 300px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 16px;
        backdrop-filter: blur(10px);
    }
    
    .loading_spinner .spinner {
        width: 56px;
        height: 56px;
        border-width: 5px;
        border-top-color: #15785d;
        border-right-color: #0b4838;
        box-shadow: 0 4px 12px rgba(21, 120, 93, 0.2);
    }
    
    .loading_spinner p {
        font-size: 16px;
        font-weight: 700;
        color: #15785d;
        margin-top: 20px;
    }
    
    /* 에러 메시지 모바일 최적화 */
    .error_message {
        padding: 40px 20px;
        border-radius: 20px;
        background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
        border: 2px solid #ff6b6b;
        box-shadow: 
            0 8px 24px rgba(255, 107, 107, 0.15),
            0 2px 8px rgba(255, 107, 107, 0.1);
    }
    
    .error_icon {
        font-size: 48px;
        margin-bottom: 20px;
    }
    
    .error_text {
        font-size: 17px;
        font-weight: 700;
        color: #c92a2a;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .error_retry_btn {
        padding: 14px 32px;
        font-size: 16px;
        border-radius: 25px;
        box-shadow: 
            0 4px 12px rgba(255, 107, 107, 0.3),
            0 2px 4px rgba(255, 107, 107, 0.2);
        transition: all 0.3s ease;
    }
    
    .error_retry_btn:active {
        transform: scale(0.97);
    }
    
    /* 성공 메시지 모바일 최적화 */
    .success_message {
        top: 10px;
        right: 10px;
        left: 10px;
        font-size: 14px;
        padding: 12px 18px;
        border-radius: 20px;
    }
}




/*  CDEC-5DEP-01 로그인 페이지*/

/* 로그인 제목*/
.login_title{
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.login_title span{
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 22px;
}
.login_body{
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border: none;
    border-radius: 0 0 20px 20px;
    padding: 30px 35px 40px;
}
.login_wrap {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}
.login_box{
    margin-bottom: 20px;
}
.cert_box{
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.cert_box div{
    margin: 0px 5px;
}
.cert_input_wrap{
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.cert_input_wrap input {
    flex: 1;
    min-width: 200px;
    height: 56px;
    border: 2px solid rgba(21, 120, 93, 0.2);
    border-radius: 12px;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 700;
    outline: none;
    text-align: center;
    letter-spacing: 4px;
    background: #fff;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}
.cert_input_wrap input::placeholder {
    color: #ababab;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0;
}
.cert_input_wrap input:focus {
    border-color: #15785d;
    box-shadow: 0 0 0 4px rgba(21, 120, 93, 0.15);
    transform: translateY(-2px);
}
.cert_input_wrap input:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    border-color: #ddd;
}
.cert_input_wrap .cert_conf_btn {
    height: 56px;
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 0 24px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(21, 120, 93, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: auto;
    min-width: 150px;
    max-width: 200px;
    box-sizing: border-box;
}
.cert_input_wrap .cert_conf_btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #1a9b77 0%, #15785d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 120, 93, 0.4);
}
.cert_input_wrap .cert_conf_btn:active:not(:disabled) {
    transform: translateY(0);
}
.cert_input_wrap .cert_conf_btn:disabled {
    background: linear-gradient(135deg, #ccc 0%, #b0b0b0 100%);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}
@media screen and (max-width: 768px) {
    .pw_cert_body {
        padding: 30px 20px;
        min-height: auto;
    }
    .pw_cert_body .pw_cert_cont {
        gap: 0;
        min-height: auto;
        justify-content: flex-start;
    }
    .pw_cert_body .top {
        gap: 20px;
        padding-top: 0;
        padding-bottom: 0;
    }
    .pw_cert_body .bot {
        padding-top: 0;
        padding-bottom: 0;
        min-height: 140px;
    }
    .pw_cert_body .bot .cert_wrap {
        margin-top: 0;
    }
    .pw_cert_txt {
        font-size: 18px;
        padding: 0 15px;
    }
    .pw_cert_body button {
        width: 200px;
        height: 48px;
        font-size: 16px;
    }
    .cert_input_wrap {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }
    .cert_input_wrap input {
        width: 100%;
        min-width: auto;
        height: 52px;
        font-size: 18px;
        padding: 0 16px;
    }
    .cert_input_wrap .cert_conf_btn {
        width: 100%;
        height: 52px;
        padding: 0 20px;
        font-size: 16px;
    }
}
@media screen and (max-width: 462px) {
    .pw_cert_body {
        padding: 25px 15px;
    }
    .pw_cert_body .pw_cert_cont {
        gap: 0;
    }
    .pw_cert_body .top {
        gap: 18px;
        padding-bottom: 0;
    }
    .pw_cert_body .bot {
        min-height: 130px;
        padding-top: 0;
    }
    .cert_input_wrap input {
        height: 50px;
        font-size: 30px;
        padding: 0 16px;
    }
    .cert_input_wrap .cert_conf_btn {
        height: 50px;
        font-size: 15px;
        padding: 0 18px;
    }
}
.cert_box .cert_conf_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0066ff;
    color: #ffff;
    width: 100%;
}
.cert_box div h5 {
    margin: 0px;
}
/* 로그인 타이틀 */
.login_box h4{
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.login_box h4::before {
    content: '';
    width: 4px;
    height: 16px;
    background: linear-gradient(180deg, #15785d 0%, #1a9b77 100%);
    border-radius: 2px;
}
.login_box input{
    height: 52px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    width: 100%;
    outline: none;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    background: #fafafa;
    transition: all 0.2s ease;
}
.login_box input:focus {
    border-color: #15785d;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(21, 120, 93, 0.1);
}
.login_box input::placeholder{
    color: #aaa;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.3px;
}
.cert_body{
    background-color: #eeeeee;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
}
/* 전자통지 확인 버튼 */
.elec_btn{
    background: linear-gradient(135deg, #43d6af 0%, #1fa17f 100%);
    color: #fff;
    border: 0;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    height: 56px;
    border-radius: 14px;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(21, 120, 93, 0.3);
    letter-spacing: -0.3px;
}
.elec_btn:hover{
    background: linear-gradient(135deg, #1a9b77 0%, #15785d 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(21, 120, 93, 0.4);
}
.elec_btn:active {
    transform: translateY(-1px);
}
/* 비활성화 버튼 */
.elec_btn:disabled,
.elec_btn.disabled {
    background: linear-gradient(135deg, #ccc 0%, #b0b0b0 100%);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}
.elec_btn:disabled:hover,
.elec_btn.disabled:hover {
    transform: none;
    box-shadow: none;
    background: linear-gradient(135deg, #ccc 0%, #b0b0b0 100%);
}

/* 사전동의 */
.consent {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}
/* 카드 내부 통합 동의 영역 */
.consent.consent_integrated {
    background: linear-gradient(180deg, #f8faf9 0%, #f0f5f3 100%);
    border: 1px solid #e0ebe7;
    margin-top: 24px;
    padding: 0;
    overflow: hidden;
}
/* 전체 동의 래퍼 */
.all_agree_wrap {
    background: linear-gradient(135deg, #15785d 0%, #1a9b77 100%);
    padding: 16px 20px;
    border-bottom: none;
}
.all_agree_wrap .checkbox_color.all_agree label {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
.all_agree_wrap .checkbox_color.all_agree label::before {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
    width: 24px;
    height: 24px;
}
.all_agree_wrap .checkbox_color.all_agree input[type="checkbox"]:checked + label::before {
    background: #fff;
    border: 2px solid #fff;
}
/* 전체 동의 체크 표시 (V) */
.all_agree_wrap .checkbox_color.all_agree input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 50%;
    width: 7px;
    height: 14px;
    border: solid #15785d;
    border-width: 0 3px 3px 0;
    transform: translateY(-60%) rotate(45deg);
}
.consent.consent_integrated ul {
    padding: 16px 20px;
    margin: 0;
    list-style: none;
}
.consent.consent_integrated li {
    padding: 12px 0;
    border-bottom: 1px dashed #d5e0dc;
}
.consent.consent_integrated li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.consent.consent_integrated li:first-child {
    padding-top: 0;
}
.consent ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.consent li{
    display: flex;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}
.consent li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.consent li:first-child {
    padding-top: 0;
}
/* 필수 */
.consent li b{
    color: #15785d;
    font-weight: 800;
    margin-right: 4px;
}
/* 체크박스 스타일 바꾸기 */
.checkbox_color {
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 0;
}
.checkbox_color input[type="checkbox"]{
    display: none;
}
.checkbox_color label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.checkbox_color label::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #c0c0c0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* 체크박스 체크된 상태 */
.checkbox_color input[type="checkbox"]:checked + label::before {
    background: linear-gradient(135deg, #15785d 0%, #1a9b77 100%);
    border: 2px solid #15785d;
    box-shadow: 0 2px 8px rgba(21, 120, 93, 0.3);
}
/* 체크 표시 (V) - CSS로 직접 생성 */
.checkbox_color input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: translateY(-60%) rotate(45deg);
}

/* 전문보기 버튼 */
.consent li button{
    color: #fff;
    background: linear-gradient(135deg, #4872a9 0%, #3a5f8a 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 11px;
    padding: 6px 12px;
    height: auto;
    line-height: 1;
    margin-left: auto;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 0;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(72, 114, 169, 0.25);
}
.consent li button:hover{
    background: linear-gradient(135deg, #5a8ac4 0%, #4872a9 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(72, 114, 169, 0.35);
}

/* 3년차 이상 사이버교육 이동 */
.cyber{
    background: linear-gradient(135deg, #e8f4fd 0%, #d6ecfa 100%);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(50, 119, 172, 0.15);
    margin-top: 16px;
    box-shadow: 0 4px 20px rgba(50, 119, 172, 0.08);
}
.cyber p{
    font-size: 14px;
    text-align: center;
    color: #333;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
}
.cyber p span{
    color: #e53935;
    font-weight: 800;
}
/* 3년차 이상 사이버교육 이동버튼 */
.cyber button{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 14px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #bbd9f0 0%, #8bc0f4 100%);
    border: 0;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(50, 119, 172, 0.3);
}
.cyber button:hover{
    background: linear-gradient(135deg, #4a8fc4 0%, #3277ac 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 119, 172, 0.4);
}
@media screen and (max-width:1295px){
    .area_wrap.m_login_wrap{
        height: auto;
        min-height: auto;
    }
}
@media screen and (max-width:992px){
    .area_wrap.m_login_wrap{
        height: auto;
        min-height: auto;
    }
}
@media screen and (max-width:768px){
    /* 로그인 화면 모바일버전 크기 */
    .area_wrap.m_login_wrap{
        height: auto;
        min-height: auto;
    }
    .login_body{
        padding: 20px 15px 30px;
    }
    .login_wrap {
        padding: 20px;
    }
    /* 로그인 제목*/
    .login_title{
        font-size: 20px;
    }
    .login_title span {
        font-size: 18px;
        padding: 3px 10px;
    }
    /* 로그인 타이틀 */
    .login_box h4{
        font-size: 14px;
    }
    .login_box h4::before {
        height: 14px;
        width: 3px;
    }
    .login_box input {
        height: 48px;
        font-size: 14px;
    }
    .login_box input::placeholder{
        font-size: 13px;
    }
    /* 사전동의 */
    .consent {
        padding: 16px 18px;
    }
    .consent.consent_integrated {
        margin-top: 20px;
    }
    .all_agree_wrap {
        padding: 14px 16px;
    }
    .all_agree_wrap .checkbox_color.all_agree label {
        font-size: 15px;
    }
    .consent.consent_integrated ul {
        padding: 14px 16px;
    }
    .consent.consent_integrated li {
        padding: 10px 0;
    }
    .consent li {
        padding: 8px 0;
    }
    .checkbox_color label {
        font-size: 13px;
        padding-left: 28px;
    }
    .checkbox_color label::before {
        width: 20px;
        height: 20px;
    }
    .checkbox_color input[type="checkbox"]:checked + label::after {
        left: 7px;
        width: 5px;
        height: 11px;
        border-width: 0 2.5px 2.5px 0;
    }
    .all_agree_wrap .checkbox_color.all_agree label::before {
        width: 22px;
        height: 22px;
    }
    .all_agree_wrap .checkbox_color.all_agree input[type="checkbox"]:checked + label::after {
        left: 8px;
        width: 6px;
        height: 12px;
    }
    .consent li button {
        font-size: 10px;
        padding: 5px 10px;
    }
    /* 3년차 사이버교육 */
    .cyber {
        margin-top: 30px;
        padding: 16px;
    }
    .cyber p {
        font-size: 13px;
    }
    .cyber button {
        padding: 12px 24px;
        font-size: 14px;
    }
}
@media screen and (max-width:632px){
    .area_wrap.m_login_wrap{
        height: auto;
        min-height: auto;
    }
}
@media screen and (max-width:462px){
    /* 로그인 화면 모바일버전 크기 */
    .area_wrap.m_login_wrap{
        height: auto;
        min-height: auto;
    }
    .login_body {
        padding: 16px 12px 24px;
    }
    .login_wrap {
        padding: 16px;
    }
    .login_box {
        margin-bottom: 14px;
    }
    /* 로그인 제목*/
    .login_title{
        font-size: 17px;
        letter-spacing: -0.5px;
    }
    .login_title span {
        font-size: 15px;
        padding: 3px 8px;
    }
    /* 로그인 타이틀 */
    .login_box h4{
        font-size: 13px;
        margin-bottom: 6px;
    }
    .login_box h4::before {
        height: 12px;
    }
    .login_box input{
        height: 44px;
        border-radius: 10px;
    }
    .login_box input::placeholder{
        font-size: 12px;
    }
    .address_input_wrap input{
        margin-bottom: 5px;
    }
    .elec_btn{
        margin-top: 16px;
        height: 48px;
        max-width: 100%;
        font-size: 15px;
        border-radius: 12px;
    }
    /* 사전동의 */
    .consent {
        padding: 14px 14px;
        margin-top: 12px;
    }
    .consent.consent_integrated {
        margin-top: 16px;
    }
    .all_agree_wrap {
        padding: 12px 14px;
    }
    .all_agree_wrap .checkbox_color.all_agree label {
        font-size: 14px;
    }
    .consent.consent_integrated ul {
        padding: 12px 14px;
    }
    .consent.consent_integrated li {
        padding: 8px 0;
    }
    .consent li {
        padding: 6px 0;
    }
    .checkbox_color label {
        font-size: 12px;
        padding-left: 26px;
    }
    .checkbox_color label::before {
        width: 18px;
        height: 18px;
        border-radius: 5px;
    }
    .checkbox_color input[type="checkbox"]:checked + label::after {
        left: 6px;
        width: 5px;
        height: 10px;
        border-width: 0 2px 2px 0;
    }
    .all_agree_wrap .checkbox_color.all_agree label::before {
        width: 20px;
        height: 20px;
    }
    .all_agree_wrap .checkbox_color.all_agree input[type="checkbox"]:checked + label::after {
        left: 7px;
        width: 5px;
        height: 11px;
        border-width: 0 2.5px 2.5px 0;
    }
    .consent li b {
        font-size: 12px;
    }
    .consent li button{
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 4px;
    }
    /* 3년차 사이버교육 */
    .cyber {
        padding: 14px;
        margin-top: 12px;
    }
    .cyber p{
        font-size: 12px;
        letter-spacing: -0.5px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .cyber button {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 10px;
    }
}





/* CDEC-5DEP-02 민방위 집합교육 현장등록 */
.area_wrap.m_in_wrap{
    height: auto;
    min-height: 920px;
}
/* 입력부분 */
.lo_box{
    display: flex;
}
.lo_box > div{
    width: 50%;
    margin-right: 10px;
}
.lo_box > div:last-child{
    margin-right: 0;
}
/* 주소입력 */
.login_box5{
    margin-bottom: 0;
}
/* 우편번호 입력 */
.code_mail{
    display: flex;
    margin-bottom: 10px;
}
.code_mail input{
    margin-right: 10px;
}
/* 우편번호 버튼 */
.code_mail_btn{
    width: 150px;
    background-color: #053560;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    border: 0;
    border-radius: 5px;
    padding: 0px 10px;
    transition: all 0.1s;
    letter-spacing: -1px;
}
.code_mail_btn:hover{
    background-color: #0d4c84;
}
.address_input_wrap input{
    margin-bottom: 10px;
}
.address_input_wrap p{
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 800;
    color: #969696;
}
/* 개별등록 버튼 */
/* 비밀번호 설정 버튼 영역 */
.pwd_btn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    width: 100%;
}
.pwd_help_btn {
    background: linear-gradient(135deg, #4872a9 0%, #3a5f8a 100%);
    color: #fff;
    border: 0;
    padding: 0;
    width: 180px;
    height: 40px;
    line-height: 1;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 114, 169, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}
.pwd_help_btn:hover {
    background: linear-gradient(135deg, #5a8ac4 0%, #4872a9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 114, 169, 0.4);
}
.pwd_help_btn:active {
    transform: translateY(0);
}
.in_btn{
    background: linear-gradient(135deg, #43d6af 0%, #1fa17f 100%);
    color: #fff;
    border: 0;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 40px;
    line-height: 1;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(21, 120, 93, 0.3);
    text-align: center;
    vertical-align: middle;
}
.in_btn:hover:not(:disabled){
    background: linear-gradient(135deg, #1a9b77 0%, #15785d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 120, 93, 0.4);
}
.in_btn:active:not(:disabled) {
    transform: translateY(0);
}
/* 비활성화 버튼 */
.in_btn:disabled,
.in_btn.disabled {
    background: linear-gradient(135deg, #ccc 0%, #b0b0b0 100%);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}
.in_btn:disabled:hover,
.in_btn.disabled:hover {
    transform: none;
    box-shadow: none;
    background: linear-gradient(135deg, #ccc 0%, #b0b0b0 100%);
}
@media screen and (max-width:992px){
    .area_wrap.m_in_wrap{
        height: auto;
        min-height: 1090px;
    }
    /* 입력부분 */
    .lo_box{
        display: block;
    }
    .lo_box > div{
        width: 100%;
        margin-right: 0px;
    }
}
@media screen and (max-width: 768px){
    /* 집합교육 현장교육 페이지 */
    .area_wrap.m_in_wrap{
        height: auto;
        min-height: 1035px;
    }
}
@media screen and (max-width: 462px){
    .area_wrap.m_in_wrap{
        height: auto;
        min-height: 850px;
    }
    .code_mail input{
        margin-right: 5px;
    }
    .code_mail_btn{
        height: 30px;
        font-size: 13px;
    }
    .address_input_wrap p{
        font-size: 13px;
    }
    /* 개별등록 버튼 */
    .pwd_btn_wrap {
        margin-top: 25px;
        gap: 12px;
    }
    .pwd_help_btn {
        width: 150px;
        height: 38px;
        line-height: 1;
        font-size: 14px;
    }
    .in_btn{
        height: 38px;
        width: 150px;
        line-height: 1;
        font-size: 15px;
    }
}
@media screen and (max-width: 366px){
    .area_wrap.m_in_wrap{
        height: auto;
        min-height: 870px;
    }
}




/* CDEC-5DEP-03 민방위 전자통지서 본인인증 페이지*/
.c_cell_body{
    background-color: #eeeeee;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    padding: 20px 30px 130px;
}
/* 민방위 전자통지서 본인인증 제목 */
.cert_title{
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    color: #000;
    margin-top: 50px;
    margin-bottom: 50px;
}
.cert_title::before{
    content: "";
    display: inline-block;
    background-image: url(/img/mark.png);
    background-repeat: no-repeat;
    background-size: 35px;
    width: 35px;
    height: 35px;
    vertical-align: middle;
    margin-right: 5px;
}
/* 민방위 전자통지서 본인인증 내용 */
.cert_sub_title{
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -1px;
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
}
/* 민방위 전자통지서 본인인증 버튼 */
.cert_btn{
    display: block;
    margin: 0 auto;
    width: 300px;
    height: 60px;
    line-height: 40px;
    border-radius: 5px;
    border: 0;
    background-color: #0d588e;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    transition: all 0.1s;
    margin-bottom: 50px;
}
.cert_btn:hover{
    background-color: #2777b0;
}
/* 본인 인증 실패 */
.fa{
    margin-top: 20px;
    border-radius: 5px;
    background-color: rgb(255, 240, 240);
    padding: 20px;
    border: 1px solid rgb(222, 222, 222);
}
/* 본인 인증 실패 제목*/
.fa h4{
    font-size: 20px;
    font-weight: 800;
    color: #333;
    margin-bottom: 13px;
}
.fa h4 a{
    color: #ff0000;
    border-bottom: 2px solid red;
    cursor: pointer;
}
/* 본인 인증 실패 내용*/
.fa ul{
    margin: 0;
    padding-left: 18px;
}
.fa ul li{
    font-size: 16px;
    color: #444;
    font-weight: 600;
    margin-bottom: 5px;
}
.fa ul li::before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 3px;
    height: 3px;
    background-color: #e16a6a;
    margin-right: 5px;
}
.fa ul li:last-child{
    margin-bottom: 0;
}
@media screen and (max-width: 1277px){
    .c_cell_body{
        padding: 20px 30px 100px;
    }
}
@media screen and (max-width: 1211px){
    .c_cell_body{
        padding: 20px 30px 80px;
    }
}
@media screen and (max-width: 1034px){
    .c_cell_body{
        padding: 20px 30px 50px;
    }
}
@media screen and (max-width: 992px){
    .area_wrap.cert_wrap{
        height: 545px;
    }
    .c_cell_body{
        padding: 20px 30px 20px;
    }
    .fa{
        margin-top: 10px;
    }
}
@media screen and (max-width: 768px){
    .area_wrap.cert_wrap{
        height: 440px;
    }
    .cert_title{
        font-size: 25px;
        margin: 25px 0px;
    }
    .cert_title::before{
        width: 30px;
        height: 30px;
        background-size: 30px;
        margin-right: 3px;
    }
    .cert_btn{
        width: 200px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 25px;
    }
    /* 본인 인증 실패*/
    .fa{
        margin-top: 15px;
    }
    /* 본인 인증 실패 제목*/
    .fa h4{
        font-size: 18px;
    }
    /* 본인 인증 실패 내용*/
    .fa ul li{
        font-size: 14px;
    }
}
@media screen and (max-width: 562px){
    .area_wrap.cert_wrap{
        height: 460px;
    }
}
@media screen and (max-width: 533px){
    .area_wrap.cert_wrap{
        height: 480px;
    }
}
@media screen and (max-width: 480px){
    /* 민방위 전자통지서 본인인증*/
    .area_wrap.cert_wrap{
        height: 375px;
    }
    /* 민방위 전자통지서 본인인증 제목 */
    .cert_title{
        font-size: 17px;
        margin: 15px;
        letter-spacing: -1px;
    }
    .cert_title::before{
        background-size: 20px;
        width: 20px;
        height: 20px;
    }
    /* 민방위 전자통지서 본인인증 내용 */
    .cert_sub_title{
        font-size: 14px;
    }
    /* 민방위 전자통지서 본인인증 버튼 */
    .cert_btn{
        width: 180px;
        height: 35px;
        line-height: 35px;
        margin-bottom: 15px;
        font-size: 15px;
    }
    /* 인증실패 */
    .fa{
        padding: 10px;
    }
    .fa h4{
        font-size: 16px;
        margin-bottom: 5px;
        letter-spacing: -1px;
    }
    .fa ul{
        padding-left: 7px;
    }
    .fa ul li{
        font-size: 13px;
    }
}
@media screen and (max-width: 473px){
    .area_wrap.cert_wrap{
        height: 395px;
    }
}
@media screen and (max-width: 462px){
    .area_wrap.cert_wrap{
        height: 380px;
    }
}
@media screen and (max-width: 358px){
    .area_wrap.cert_wrap{
        height: 400px;
    }
}
@media screen and (max-width: 345px){
    .area_wrap.cert_wrap{
        height: 420px;
    }
}
@media screen and (max-width: 332px){
    .area_wrap.cert_wrap{
        height: 410px;
    }
    .cert_sub_title{
        font-size: 13px;
    }
    .fa h4{
        font-size: 14px;
    }
    .fa ul li{
        font-size: 12px;
    }
}


/* CDEC-5DEP-04 비밀번호 설정 페이지 & CDEC-5DEP-07 비밀번호 재설정 페이지 */

/* 비밀번호 설정 */
.pw_login_body{
    padding: 20px 50px 180px;
}
/* 로그인 비밀번호 설정 내용 */
.pw_login_txt{
    text-align: center;
    font-size: 22px;
    color: #333;
    font-weight: 800;
    letter-spacing: -1px;
}
.pw_login_txt span{
    color: #15785d;
}
.pw_login_body .login_wrap{
    margin-top: 80px;
}
.pw_login_body .cert_wrap{
    margin-top: 110px;
}
/* 인증번호 발송 및 확인 */
.pw_cert_body{
    width: 100%;
    min-height: auto;
    padding: 35px 30px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
}
.pw_cert_body button {
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    border: 0;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 50px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 15px rgba(21, 120, 93, 0.3);
    cursor: pointer;
}
.pw_cert_body button:hover:not(:disabled) {
    background: linear-gradient(135deg, #1a9b77 0%, #15785d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 120, 93, 0.4);
}
.pw_cert_body button:active:not(:disabled) {
    transform: translateY(0);
}
.pw_cert_body button:disabled {
    background: linear-gradient(135deg, #ccc 0%, #b0b0b0 100%);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}
.pw_cert_body .pw_cert_cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    min-height: auto;
}
.pw_cert_body .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
}
.pw_cert_body .bot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding-top: 0;
    min-height: 150px;
}
.pw_cert_body .bot .cert_wrap{
    display: none;
    width: 100%;
    max-width: 500px;
    margin-top: 0;
}
.pw_cert_txt{
    text-align: center;
    font-size: 20px;
    color: #333;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.6;
    margin: 0;
    padding: 0 20px;
}

/* CDEC-5DEP-07 비밀번호 재설정 페이지 */
@media screen and (max-width:1213px){
    .pw_login_body{
        padding: 20px 50px 150px;
    }
}
@media screen and (max-width:992px){
    /* 비밀번호 설정 */
    .area_wrap.m_pw_login_wrap{
        height: 495px;
    }
    .pw_login_body{
        padding: 20px 50px 70px;
    }
    .pw_login_body .login_wrap{
        margin-top: 20px;
    }
}
@media screen and (max-width: 768px){
    /* 비밀번호 설정 */
    .area_wrap.m_pw_login_wrap{
        height: 475px;
    }
    .pw_login_body{
        padding: 20px 30px 70px;
    }
    /* 로그인 비밀번호 설정 내용 */
    .pw_login_txt{
        text-align: center;
        font-size: 18px;
        color: #000;
        font-weight: 800;
    }
}
@media screen and (max-width: 466px){
    /* 비밀번호 설정 */
    .area_wrap.m_pw_login_wrap{
        height: 415px;
    }
    .pw_login_txt{
        font-size: 15px;
    }
}
@media screen and (max-width: 397px){
    .area_wrap.m_pw_login_wrap{
        height: 435px;
    }
}



/* CDEC-5DEP-05 비밀번호 입력 */

/* 비밀번호 입력 */
.pw_input_body{
    padding-bottom: 235px;
}
.pw_input_body .login_wrap{
    margin-top: 158px;
}
@media screen and (max-width: 768px){
    .area_wrap.dep5_wrap{
        height: 365px;
    }
    .pw_input_body .login_wrap{
        margin-top: 50px;
    }
    /* 비밀번호 입력 */
    .pw_input_body{
        padding-bottom: 50px;
    }
}
@media screen and (max-width: 468px){
    .area_wrap.dep5_wrap{
        height: 280px;
    }
    .pw_input_body .login_wrap{
        margin-top: 30px;
    }
    /* 비밀번호 입력 */
    .pw_input_body{
        padding-bottom: 30px;
    }
}



/* CDEC-5DEP-06 로그인 비밀번호 재설정 본인 확인 */

/* 로그인 비밀번호 재설정 본인 확인 */
.pw_reset_body .login_wrap{
    padding:40px 30px 100px;
}
@media screen and (max-width: 1029px){
    .pw_reset_body .login_wrap{
        padding:40px 30px 65px;
    }
}
@media screen and (max-width: 992px){
    .pw_reset_body .login_wrap{
        padding:40px 30px 95px;
    }
}
@media screen and (max-width: 768px){
    .area_wrap.pw_reset_wrap{
        height: 480px;
    }
    .pw_reset_body .login_wrap{
        padding:0px 30px;
    }
}
@media screen and (max-width: 462px){
    .area_wrap.pw_reset_wrap{
        height: 405px;
    }
}
@media screen and (max-width: 332px){
    .area_wrap.pw_reset_wrap{
        height: 425px;
    }
}



/* CDEC-5DEP-07 비밀번호 재설정 페이지 */
@media screen and (max-width: 1213px){
    .area_wrap.r_pw_login_wrap .pw_login_body{
        padding: 20px 50px 180px;
    }
}
@media screen and (max-width: 1058px){
    .area_wrap.r_pw_login_wrap .pw_login_body{
        padding: 20px 50px 150px;
    }
}
@media screen and (max-width: 992px){
    .area_wrap.r_pw_login_wrap{
        height: 495px;
    }
    .area_wrap.r_pw_login_wrap .pw_login_body{
        padding: 20px 50px 70px;
    }
}
@media screen and (max-width: 768px){
    .area_wrap.r_pw_login_wrap{
        height: 475px;
    }
}
@media screen and (max-width: 462px){
    .area_wrap.r_pw_login_wrap{
        height: 415px;
    }
}
@media screen and (max-width: 385px){
    .area_wrap.r_pw_login_wrap{
        height: 435px;
    }
}




/* CDEC-5DEP-08 통지서(일반대원) */

/* 통지서 */
/* 통지서 영역: 테마(다크/라이트)에 따라 색이 바뀌지 않도록 고정 */
.notice{
    max-width: 1300px;
    margin: 0 auto;
    color-scheme: light;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-card-bg: #fff;
    --bs-card-color: #212529;
    --bs-heading-color: #333;
}
.notice_wrap{
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 20px;
    padding: 30px 40px 35px;
    margin-bottom: 20px;
    border: 1px solid rgba(21, 120, 93, 0.1);
    transition: all 0.3s ease;
}
.notice_wrap:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.notice_wrap button:disabled {
    /* disabled 상태의 기본 스타일 */
    background: linear-gradient(135deg, #ccc 0%, #b0b0b0 100%);
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}


/* 모바일 크기 시 참가필증 상단에 뜸 */
.n_top_part{
    display: none;
}
/* 통지서 제목 */
.notice_wrap h1{
    color: #333;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    padding: 0px 0px 25px;
    margin-bottom: 0;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* 통지서 내용안에 col-lg-4 */
.n_wrap > div{
    padding: 0px 10px;
    margin-right: 0;
}
/* col-lg-4안에 card */
.n_wrap > div .card{
    border: 1px solid rgba(21, 120, 93, 0.2);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}
.n_wrap > div .card:hover {
    box-shadow: 0 8px 30px rgba(21, 120, 93, 0.15);
    transform: translateY(-2px);
}
/* 통지서 내용 제목 */
.n_title {
    height: 70px;
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(21, 120, 93, 0.2);
}
.n_title h3{
    line-height: 1;
    text-align: center;
    color: #fff;
    font-weight: 800;
    margin-bottom: 0;
    font-size: 26px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}
/* 통지서 내용 컨텐츠 3개 */
.n_body{
    padding: 20px;
    padding-bottom: 25px;
    background: #fff;
    /* height: 800px; */
}
.n_box{
    display: flex;
    align-items: stretch;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2px;
    min-height: 50px;
}
.n_box:hover {
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(21, 120, 93, 0.1);
}
/* n_box제목 */
.n_box_title{
    background: linear-gradient(135deg, #f0f7f5 0%, #e8f3ef 100%);
    width: 30%;
    padding: 12px 15px;
    color: #15785d;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 1px solid rgba(21, 120, 93, 0.15);
    border-right: 2px solid rgba(21, 120, 93, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    min-height: 50px;
    box-sizing: border-box;
}
/* n_box내용 */
.n_box_txt{
    width: 70%;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(21, 120, 93, 0.15);
    font-size: 15px;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    background: #fff;
    word-break: keep-all;
    word-wrap: break-word;
    line-height: 1.6;
    box-sizing: border-box;
    min-height: 50px;
}
/* 성명/연차 같은 줄에 있는 경우 - 4개 요소가 있는 경우 (성명, 값, 연차, 값) */
.n_box .n_box_title:nth-child(1),
.n_box .n_box_title:nth-child(3) {
    width: 30%;
    flex-shrink: 0;
}
.n_box .n_box_txt:nth-child(2),
.n_box .n_box_txt:nth-child(4) {
    width: 70%;
    flex: 1 1 70%;
    min-width: 0;
}
/* QR이미지 */
.n_box_txt img{ 
    width: 70px;
    height: 70px;
    cursor: pointer;
    flex-shrink: 0;
    object-fit: contain;
    /* flex 컨테이너 안에서는 margin: auto 불필요, 부모의 justify-content가 처리 */
}
/* QR 이미지가 있는 .n_box_txt 가운데 정렬 */
.n_box_txt:has(img),
.n_box_txt:has(> img) {
    justify-content: center;
    align-items: center;
}
.n_box_none{
    display: none;
}
/* border 처리 안된 곳 */
.r_border{
    border-right: 2px solid rgba(21, 120, 93, 0.2);
}
.t_border{
    border-top: 2px solid rgba(21, 120, 93, 0.2);
}
/* 로고 슬라이드 & 민방위기본법 내용 묶음 */
.notice_slide{
    padding: 20px 0px;
}
.notice_info{
    padding: 10px 0px;
}
.notice_info .txt{
    font-size: 14px;
    font-weight: bolder;
    color: #ff0000;
    text-align: center;
    margin-bottom: 0;
    padding: 0px 10px;
}
.slide_img{
    position: relative;
    width: 90%;
    margin: 0 auto;
    height: 40px;
    overflow: hidden;
}

.scrolling-image {
    position: absolute;
    width: 250px;
}

/* 민방위기본법 내용 */
.law_txt{
    font-size: 15px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 0;
    margin-top: 12px;
    padding: 0px 15px;
    line-height: 1.8;
    letter-spacing: -0.3px;
}
/* 소집일시 날짜&시간 */
.d_t_wrap p{
    margin-bottom: 0;
    padding-right: 5px;
}
/* 예약확인, 참석예약 버튼 */
.d_t_po{
    position: relative;
}
.d_t_btn{
    width: 65px;
    height: 40px;
    position: absolute;
    right: 10px;
    top:15px;
    padding-right: 5px;
    
}
.d_t_btn button{
    width: 65px;
    height: 35px;
    line-height: 1;
    font-size: 14px;
    border-radius: 8px;
    border: 0;
    color: #fff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
/* 예약확인, 예약하기 (테마/모바일에서 배경 유지) */
.res{
    background: linear-gradient(135deg, #0a4673 0%, #083d5c 100%) !important;
    display: none;
    color: #fff !important;
}
.d_t_btn button.res{
    background: linear-gradient(135deg, #0a4673 0%, #083d5c 100%) !important;
    color: #fff !important;
}
.res:hover{
    background: linear-gradient(135deg, #125990 0%, #0a4673 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 70, 115, 0.4);
}
.res:active {
    transform: translateY(0);
}
/* 참석예약 (테마와 관계없이 글씨색 흰색 고정) */
.att{
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%) !important;
    display: none;
    color: #fff !important;
}
.d_t_btn button.att{
    color: #fff !important;
}
.att:hover{
    background: linear-gradient(135deg, #1a9b77 0%, #15785d 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(21, 120, 93, 0.4);
    color: #fff !important;
}
.att:active {
    transform: translateY(0);
    color: #fff !important;
}
/* 시장 및 군수 및 구청장 도장 */
/* div.n_box 중에서 block 처리 */
.non_flex{
    display: block;
    text-align: center;
    padding: 15px 0 0;
}
.non_flex p{
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}
/* 도장 */
.stamp_img{
    width: 200px;
    height: 90px;
    margin: 0 auto;
    margin-bottom: 10px;
    position: relative;
}
.stamp_img p{
    margin-bottom: 0;
    line-height: 90px;
    color: #555;
    position: relative;
    z-index: 9;
}
.stamp_img img{
    width: 90px;
    position: absolute;
    top:0;
    right: 0;
    z-index: 8;
}

/* 안내문 */
.n_body2{
    padding: 10px 10px 0px;
    /* padding-bottom: 125px; */
}
.n_body2_txt{
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}
.notice_content{
    background-color: #ffffff;
    height: 260px;
    margin-bottom: 10px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.notice_content textarea{
    width: 100%;
    height: 100%; 
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    box-sizing: border-box;
    resize: none;
    overflow: auto;
    border: none;
    outline: none;
    padding: 16px 18px;
    background: transparent;
}
.notice_content p{
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
}
/* 안내문 버튼3개 */
.n_body2_btn{
    width: 100%;
    height: 60px;
    border: 0;
    margin-bottom: 10px;
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
    border-radius: 12px;
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    box-shadow: 0 4px 15px rgba(21, 120, 93, 0.3);
    cursor: pointer;
}
.n_body2_btn:hover:not(:disabled){
    background: linear-gradient(135deg, #1a9b77 0%, #15785d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 120, 93, 0.4);
}
.n_body2_btn:active:not(:disabled) {
    transform: translateY(0);
}
/* 집합교육일정조회 버튼 */
.d_check{
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    margin-top: 10px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(21, 120, 93, 0.3);
    transition: all 0.3s ease;
    border-radius: 8px;
}
.d_check:hover{
    background: linear-gradient(135deg, #1a9b77 0%, #15785d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 120, 93, 0.4);
}
.d_check:active {
    transform: translateY(0);
}
/* 일괄입실 비밀번호 버튼 */
.c_in_p{
    background: linear-gradient(135deg, #66b78b 0%, #4a9d6f 100%);
    box-shadow: 0 4px 15px rgba(102, 183, 139, 0.3);
    transition: all 0.3s ease;
    border-radius: 8px;
}
.c_in_p:hover{
    background: linear-gradient(135deg, #79d1a1 0%, #66b78b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 183, 139, 0.4);
}
.c_in_p:active {
    transform: translateY(0);
}
/* 일괄퇴실 비밀번호 버튼  */
.c_out_p{
    background: linear-gradient(135deg, #898989 0%, #6c6c6c 100%);
    box-shadow: 0 4px 15px rgba(137, 137, 137, 0.3);
    transition: all 0.3s ease;
    border-radius: 8px;
}
.c_out_p:hover{
    background: linear-gradient(135deg, #a0a0a0 0%, #898989 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(137, 137, 137, 0.4);
}
.c_out_p:active {
    transform: translateY(0);
}

/* 수령증 */
/* 교육훈련 통지서 수령 */
.training_n{
    padding: 0px 15px;
}
.training_n h4{
    text-align: center;
    margin: 0;
    padding: 15px 0px;
    font-size: 18px;
    font-weight: 800;
    color: #333;
}
.training_n table{
    /* width: 90%; */
    margin: 0 auto;
    border: 1px solid #a5a5a5;
    font-size: 16px;
}
.training_n th{
    font-weight: 800;
    color: #333;
}
.training_n td{
    font-weight: 700;
    color: #555;
    letter-spacing: -1px;
}

/* 통지서 하단 버튼 3개 */
/* 통지서 하단 버튼 영역: 참가 필증 / 전국 일정 / 통지서 내역보기 통일 */
.s_bottom_btn{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
    margin-top: 10px;
}
.s_bottom_btn button{
    border: 0;
    border-radius: 10px;
    height: 55px;
    font-size: 19px;
    color: #fff !important;
    font-weight: 700;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.n_bottom_part{
    flex: 1;
    min-width: 140px;
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    box-shadow: 0 4px 15px rgba(21, 120, 93, 0.3);
}
.n_bottom{
    display: flex;
    flex: 2;
    gap: 10px;
    min-width: 0;
}
.n_bottom button{
    flex: 1;
    min-width: 120px;
}
.national{
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(21, 120, 93, 0.3);
}
.n_bottom_part:hover,
.national:hover{
    background: linear-gradient(135deg, #1a9b77 0%, #15785d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 120, 93, 0.4);
}
.n_bottom_part:active,
.national:active {
    transform: translateY(0);
}
.breakdown{
    background: linear-gradient(135deg, #f48120 0%, #e06b0a 100%);
    box-shadow: 0 4px 15px rgba(244, 129, 32, 0.3);
}
.breakdown:hover{
    background: linear-gradient(135deg, #ffa75e 0%, #f48120 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 129, 32, 0.4);
}
.breakdown:active {
    transform: translateY(0);
}
.national a,
.breakdown a{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
@media screen and (max-width: 992px){
    /* 모바일 크기 시 헤더 아래에 뜸 */
    .n_top_part{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
        border: 0;
        border-radius: 12px;
        height: 55px;
        font-size: 20px;
        color: #fff;
        font-weight: 700;
        width: 100%;
        margin-bottom: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(21, 120, 93, 0.3);
        cursor: pointer;
    }
    .n_top_part:hover{
        background: linear-gradient(135deg, #1a9b77 0%, #15785d 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(21, 120, 93, 0.4);
    }
    .n_top_part:active {
        transform: translateY(0);
    }
    /* 모바일 상단 퇴실 버튼: 주황 그라데이션 + 반짝임 */
    .n_top_part.n_top_part--exit{
        background: linear-gradient(135deg, #f48120 0%, #e66a00 100%);
        box-shadow: 0 4px 15px rgba(244, 129, 32, 0.3);
        animation: shimmer 2s ease-in-out infinite;
    }
    .n_top_part.n_top_part--exit:hover{
        background: linear-gradient(135deg, #ff9a40 0%, #f48120 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(244, 129, 32, 0.5);
    }
    .n_top_part.n_top_part--exit:active {
        transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce) {
        .n_top_part.n_top_part--exit {
            animation: none;
        }
    }
    /* 통지서 */
    .notice{
        max-width: 720px;
    }
    .notice_wrap{
        padding: 25px 25px 20px;
        border-radius: 16px;
    }
    .n_wrap > div .card {
        margin-bottom: 30px;
    }
    .n_wrap > div {
        padding: 0px 5px;
    }
    /* 안내문 */
    .n_body2{
        padding-bottom: 0;
    }
    /* 수령증 */
    .n_body3{
        padding-bottom: 30px;
    }
    /* 모바일: 참가필증은 상단 n_top_part로만 표시, 하단에서는 숨김 */
    .n_bottom_part{
        display: none;
    }
    /* 모바일: 퇴실 비밀번호는 상단 n_top_part로만 표시, 안내문 옆 버튼 영역 숨김 */
    .n_out_sec_desktop{
        display: none !important;
    }
    .n_bottom{
        flex: 1 1 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .n_bottom button{
        flex: 1;
        min-width: 120px;
    }
}
@media screen and (max-width: 768px){
    /* 통지서 제목 */
    .notice_wrap h1{
        font-size: 28px;
        letter-spacing: -1px;
        padding: 0px 0px 20px;
    }
    /* 통지서 내용 제목 */
    .n_title{
        height: 60px;
        border-radius: 12px 12px 0 0;
    }
    .n_title h3{
        line-height: 1;
        font-size: 20px;
    }
    /* 통지서 내용 */
    .n_body{
        padding: 15px;
        padding-bottom: 20px;
    }
    /* 정보 박스 */
    .n_box_title{
        font-size: 15px;
        padding: 10px 12px;
        min-height: 45px;
    }
    .n_box_txt{
        font-size: 14px;
        padding: 10px 12px;
        min-height: 45px;
    }
    /* 모바일 QR 이미지 가운데 정렬 */
    .n_box_txt:has(img),
    .n_box_txt:has(> img) {
        justify-content: center;
        align-items: center;
    }
    .n_box{
        min-height: 45px;
    }
    /* 안내문 */
    .notice_content p{
        font-size: 18px;
        color: #333;
    }
    /* 안내문 버튼3개 */
    .n_body2 button{
        font-size: 18px;
        height: 50px;
        border-radius: 10px;
    }
    /* 교육훈련 통지서 수령 */
    .training_n h4{
        font-size: 18px;
    }
    .training_n table{
        font-size: 14px;
    }
    /* 안내문 버튼3개 */
    .n_body2_btn{
        height: 50px;
        font-size: 18px;
        border-radius: 10px;
    }
    /* 상단 하단 버튼 */
    .n_top_part,
    .s_bottom_btn button,
    .n_bottom button{
        font-size: 18px;
        height: 50px;
        border-radius: 10px;
    }
    .n_bottom a{
        line-height: 50px;
    }
}
@media screen and (max-width: 462px){
    /* 통지서 제목 */
    .notice_wrap h1{
        font-size: 24px;
        letter-spacing: -1px;
        padding: 0px 0px 15px;
    }
    .notice_wrap{
        padding: 20px 15px 15px;
        border-radius: 14px;
    }
    .n_wrap > div .card {
        margin-bottom: 20px;
        border-radius: 12px;
    }
    .n_title{
        height: 55px;
        border-radius: 12px 12px 0 0;
    }
    .n_title h3{
        font-size: 18px;
    }
    .n_body{
        padding: 12px;
        padding-bottom: 18px;
    }
    /* n_box제목 */
    .n_box_title{
        font-size: 14px;
        padding: 8px 10px;
        width: 28%;
        min-height: 40px;
    }
    .n_box_txt{
        font-size: 13px;
        padding: 8px 10px;
        width: 72%;
        min-height: 40px;
    }
    /* 작은 모바일 QR 이미지 가운데 정렬 */
    .n_box_txt:has(img),
    .n_box_txt:has(> img) {
        justify-content: center;
        align-items: center;
    }
    .n_box{
        min-height: 40px;
    }
    /* 성명/연차 같은 줄에 있는 경우 */
    .n_box .n_box_title:first-child + .n_box_txt {
        width: 36%;
        flex: 1 1 36%;
        min-width: 0;
    }
    .n_box .n_box_title:first-child + .n_box_txt + .n_box_title {
        width: 28%;
        flex-shrink: 0;
    }
    .n_box .n_box_title:first-child + .n_box_txt + .n_box_title + .n_box_txt {
        width: 36%;
        flex: 1 1 36%;
        min-width: 0;
    }
    /* 버튼 */
    .n_body2_btn{
        height: 45px;
        font-size: 16px;
        border-radius: 8px;
    }
    .n_top_part,
    .s_bottom_btn button,
    .n_bottom button{
        font-size: 16px;
        height: 45px;
        border-radius: 8px;
    }
    .n_bottom a{
        line-height: 45px;
    }
}




/* CDEC-5DEP-10 통지서(사이버대원) */
/* 모바일 크기 시 크기 시 이수확인 상단에 뜸  */
.con_com_t_btn{
    display: none;
}
/* 사이버교육 바로가기 버튼 */
.cyber_btn{
    background-color: #0b7ca4;
    margin-top: 10px;
}
.cyber_btn:hover{
    background-color: #1a91bd;
}
/* 웹 크기 시 이수확인 하단에 뜸 */
.con_com_btn{
    background-color: #053560;
    width: 49.5%;
}
.con_com_btn:hover{
    background-color: #124b7c;
}
@media screen and (max-width: 992px){
    /* 모바일 크기 시 크기 시 이수확인 상단에 뜸 */
    .con_com_t_btn{
        display: block;
        background-color: #053560;
        border: 0;
        border-radius: 5px;
        height: 55px;
        font-size: 23px;
        color: #fff;
        font-weight: 700;
        width: 100%;
        margin-bottom: 15px;
        transition: all 0.1s;
    }
    .con_com_t_btn:hover{
        background-color: #124b7c;
    }
    /* 웹 크기 시 이수확인 하단에 뜸 */
    .con_com_btn{
        display: none;
    }
}
@media screen and (max-width: 768px){
    .con_com_t_btn{
        font-size: 20px;
        height: 45px;
    }
}





/* CDEC-5DEP-11 통지서(현장등록대원) */
.notice_wrap h1 span{
    color: #15785d;
}




/* CDEC-5DEP-12 통지서내역확인 */
.n_his_txt{
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #f0f7f5 0%, #e8f3ef 100%);
    padding: 12px 20px;
    color: #15785d;
    border-radius: 10px;
    border: 1px solid rgba(21, 120, 93, 0.2);
    margin-bottom: 20px;
}
.n_his_bottom .col-lg-6:nth-child(1){
    padding-right: 10px;
}
/* 통지서 확인 */
.n_his_wrap .card{
    margin-bottom: 25px;
    border: 1px solid rgba(21, 120, 93, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}
.n_his_wrap .card:hover {
    box-shadow: 0 8px 30px rgba(21, 120, 93, 0.15);
    transform: translateY(-2px);
}
.n_his_title {
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(21, 120, 93, 0.2);
}
.n_his_title h3{ 
    text-align: center;
    font-size: 22px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}
.n_his_body{
    border: none;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 0 0 16px 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.n_his_body table {
    border: 1px solid rgba(21, 120, 93, 0.15);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0;
}
.n_his_body th{
    width: 30%;
    text-align: center;
    background: linear-gradient(135deg, #f0f7f5 0%, #e8f3ef 100%);
    color: #15785d;
    font-weight: 800;
    font-size: 16px;
    padding: 12px;
    border-bottom: 2px solid rgba(21, 120, 93, 0.2);
}
.n_his_body td{
    font-weight: 600;
    color: #333;
    padding: 12px 15px;
    font-size: 16px;
    background: #fff;
    border-bottom: 1px solid rgba(21, 120, 93, 0.1);
}
.n_his_body tr:last-child td {
    border-bottom: none;
}
.n_his_btn{
    width: 150px;
    height: 40px;
    line-height: 1;
    border-radius: 10px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(21, 120, 93, 0.3);
    cursor: pointer;
}
.n_his_btn:hover:not(:disabled){
    background: linear-gradient(135deg, #1a9b77 0%, #15785d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 120, 93, 0.4);
}
.n_his_btn:active:not(:disabled) {
    transform: translateY(0);
}
.n_his_btn:disabled {
    background: linear-gradient(135deg, #ccc 0%, #b0b0b0 100%);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}
/* 통지서 수령 순서 */
.n_his_res{
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.n_his_res ul{
    display: flex;
    padding-left: 0;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
}
.n_his_res li{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 170px;
}
.n_his_res li:last-child{
    max-width: 120px;
}
.n_h_r_wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.n_h_r_wrap:last-child{
    width: 100%;
}
.n_his_res li::after{
    content: "";
    display: inline-block;
    background-image: url(/img/h_res_img.png);
    width: 50px;
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: 0px 40px;
}
.n_his_res li:last-child:after{
    display: none;
}
.n_his_res_img{
    background-color: #fafafa;
    border:1px solid #d7d7d7;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    background-repeat: no-repeat;
    margin: 0 auto;
}
.n_his_res li:nth-child(1) .n_his_res_img{
    background-image: url(/img/n_his_body1.png);
    background-size: 45px;
    background-position: 22px;
}
.n_his_res li:nth-child(2) .n_his_res_img{
    background-image: url(/img/n_his_body2.png);
    background-size: 35px;
    background-position: 27px;
}
.n_his_res li:nth-child(3) .n_his_res_img{
    background-image: url(/img/n_his_body3.png);
    background-size: 45px;
    background-position: 25px;
}
.n_his_res p{
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}
/* 통지서 안내사항 */
.n_his_bottom .issues_text{
    padding: 23px 35px;
}
.n_his_bottom .issues_text li{
    line-height: 37px;
}
@media screen and (max-width: 1300px){
    /* 통지서 확인 */
    .n_his_body th{
        width: 40%;
        text-align: center;
        background-color: #ebebeb;
        color: #333;
        font-weight: 800;
    }
}
@media screen and (max-width: 1024px){
    /* 통지서 안내사항 */

    /* 통지서 수령 순서 */
    .n_his_res ul{
        width: 440px;
    }
    .n_his_res ul li{
        width: 160px;
    }
    .n_h_r_wrap{
        width: 160px;
    }
    .n_his_res_img{
        width: 70px;
        height: 70px;
    }
    .n_his_res li:nth-child(1) .n_his_res_img{
        background-image: url(/img/n_his_body1.png);
        background-size: 35px;
        background-position: 17px;
    }
    .n_his_res li:nth-child(2) .n_his_res_img{
        background-image: url(/img/n_his_body2.png);
        background-size: 25px;
        background-position: 22px;
    }
    .n_his_res li:nth-child(3) .n_his_res_img{
        background-image: url(/img/n_his_body3.png);
        background-size: 33px;
        background-position: 21px;
    }
    .n_his_res p{
        margin-top: 5px;
        font-size: 15px;
    }
    .n_his_bottom .issues_text{
        padding: 18px 25px;
    }
    .n_his_bottom .issues_text li{
        line-height: 30px;
    }
}
@media screen and (max-width: 992px){
    /* 통지서 내역 */
    .h_wrap{
        margin-bottom: 10px;
    }
    .n_his_bottom .col-lg-6:nth-child(1){
        padding: 10px;
        margin-bottom: 10px;
    }
    .n_his_txt{
        font-size: 18px;
        letter-spacing: -1px;
    }
    /* 통지서 수령 순서 */
    .n_his_res ul{
        width: 460px;
    }
    .n_his_res li{
        width: 170px;
    }
    .n_his_res_img{
        width: 90px;
        height: 90px;
    }
    .n_his_res li:nth-child(1) .n_his_res_img{
        background-image: url(/img/n_his_body1.png);
        background-size: 45px;
        background-position: 22px;
    }
    .n_his_res li:nth-child(2) .n_his_res_img{
        background-image: url(/img/n_his_body2.png);
        background-size: 35px;
        background-position: 27px;
    }
    .n_his_res li:nth-child(3) .n_his_res_img{
        background-image: url(/img/n_his_body3.png);
        background-size: 45px;
        background-position: 25px;
    }
}
@media screen and (max-width:768px){
    .n_his_txt{
        font-size: 16px;
        padding: 10px 15px;
        margin-bottom: 15px;
    }
    .n_his_wrap .card{
        margin-bottom: 20px;
        border-radius: 12px;
    }
    .n_his_title{
        border-radius: 12px 12px 0 0;
        padding: 12px;
    }
    .n_his_title h3{
        font-size: 19px;
    }
    .n_his_body{
        padding: 15px;
        border-radius: 0 0 12px 12px;
        gap: 15px;
    }
    .n_his_body th{
        font-size: 14px;
        letter-spacing: -0.5px;
        padding: 10px;
    }
    .n_his_body td{
        font-size: 14px;
        letter-spacing: -0.5px;
        padding: 10px 12px;
    }
    .n_his_btn{
        width: 140px;
        height: 38px;
        font-size: 14px;
    }
    /* 통지서 수령 순서 */
    .n_his_res{
        min-height: 180px;
        padding: 15px;
    }
    .n_his_res ul{
        width: 100%;
        max-width: 440px;
    }
    .n_his_res ul li{
        max-width: 160px;
    }
    .n_h_r_wrap{
        width: 100%;
    }
    .n_his_res_img{
        width: 70px;
        height: 70px;
    }
    .n_his_res li:nth-child(1) .n_his_res_img{
        background-image: url(/img/n_his_body1.png);
        background-size: 35px;
        background-position: 17px;
    }
    .n_his_res li:nth-child(2) .n_his_res_img{
        background-image: url(/img/n_his_body2.png);
        background-size: 25px;
        background-position: 22px;
    }
    .n_his_res li:nth-child(3) .n_his_res_img{
        background-image: url(/img/n_his_body3.png);
        background-size: 33px;
        background-position: 21px;
    }
    .n_his_res p{
        margin-top: 5px;
        font-size: 15px;
    }
    .n_his_bottom .issues_text{
        padding: 18px 25px;
    }
    .n_his_bottom .issues_text li{
        line-height: 30px;
    }
}
@media screen and (max-width: 462px){
    /* 통지서 수령 순서 */
    .n_his_res{
        min-height: 160px;
        padding: 12px;
    }
    .n_his_res ul{
        width: 100%;
        max-width: 300px;
    }
    .n_his_res li{
        max-width: 100px !important;
        padding-right: 0;
    }
    .n_his_res_img{
        width: 40px;
        height: 40px;
    }
    .n_his_res li::after{
        display: none;
    }
    .n_his_res li:nth-child(1) .n_his_res_img{
        background-size: 20px;
        background-position: 10px;
    }
    .n_his_res li:nth-child(2) .n_his_res_img{
        background-size: 15px;
        background-position: 12px;
    }
    .n_his_res li:nth-child(3) .n_his_res_img{
        background-size: 20px;
        background-position: 10px;
    }
    .n_his_res p {
        font-size: 13px;
    }
}
@media screen and (max-width: 360px){
    .n_his_res li{
        width: 90px !important;
        padding-right: 0;
    }
}
@media screen and (max-width: 320px){
    .n_his_res li{
        width: 80px !important;
        padding-right: 0;
    }
}




/* CDEC-5DEP-13 주소정보 확인 */
/* 해당되는 주소 선택하기 */
.address_box_wrap{
    border: 1px solid rgb(200, 200, 200);
    height: 405px;
    overflow-x: hidden;
    margin-bottom: 28px;
}
.login_body.adress_body{
    padding: 20px 30px 25px;
}
/* 해당되는 주소 선택 스크롤 스타일 */
.address_box_wrap::-webkit-scrollbar{
    width: 12px;
}
.address_box_wrap::-webkit-scrollbar-thumb{
    background-color: #979797;
}
.address_box_wrap::-webkit-scrollbar-track{
    background-color: #cdcdcd;
}
.address_box{
    display: flex;
    /* height: 60px; */
    padding: 5px 10px 5px;
    background-color: #fff;
    cursor: pointer;
}
.address_box label {
    width: 100%;
}
.address_box .address_box_txt {
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    vertical-align: middle;
}
.address_box:nth-child(even){
    background-color: #f5f5f5;
}
/*  체크박스 스타일 (대원 확인 주소 선택) */
.address_box_wrap [type="radio"],
.login_body.adress_body .address_box_wrap input[type="radio"] {
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid rgb(144, 144, 144);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    margin-top: 20px;
    flex-shrink: 0;
}
.address_box_wrap [type="radio"]:checked,
.login_body.adress_body .address_box_wrap input[type="radio"]:checked {
    background-color: #15785d !important;
    border: 1px solid #15785d !important;
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
}
.address_box_wrap [type="radio"]:hover {
    box-shadow: 0 0 5px rgb(101, 101, 101);
    cursor: pointer;
}
.address_box_wrap [type="radio"]:disabled {
    background-color: lightgray;
    box-shadow: none;
    opacity: 0.7;
    cursor: not-allowed;
}
.address_box p,
.address_box .address_box_txt {
    margin-left: 10px;
    margin-bottom: 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}
/* 주소확인 버튼 */
.adr_che_btn{
    background-color: #0b4838;
    color: #fff;
    border: 0;
    margin: 0 auto;
    margin-top: 20px;
    display: block;
    width: 180px;
    height: 40px;
    border-radius: 5px;
    transition: all 0.1s;
    font-size: 17px;
    font-weight: 500;
}
.adr_che_btn:hover {
    background-color: #15785d;
}
@media screen and (max-width: 992px){
    .area_wrap{
        height: 670px;
    }
}
@media screen and (max-width: 768px){
    .area_wrap{
        height: 500px;
    }
    /* 해당되는 주소 선택하기 */
    .address_box_wrap{
        height: 250px;
        margin-bottom: 0;
    }
    .address_box_wrap [type="radio"]{
        margin-top: 15px;
    }
    .address_box > p,
    .address_box .address_box_txt{
        font-size: 14px;
    }
}
@media screen and (max-width: 462px){
    .area_wrap{
        height: 470px;
    }
    /* 해당되는 주소 선택하기 */
    .address_box_wrap [type="radio"],
    .login_body.adress_body .address_box_wrap input[type="radio"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: #fff;
        width: 7px;
        height: 7px;
        min-width: 7px;
        min-height: 7px;
    }
    .address_box_wrap [type="radio"]:checked,
    .login_body.adress_body .address_box_wrap input[type="radio"]:checked {
        background-color: #15785d !important;
        border: 1px solid #15785d !important;
        width: 7px !important;
        height: 7px !important;
    }
    .address_box > p,
    .address_box .address_box_txt{
        font-size: 13px;
    }
    .adr_che_btn{
        margin-top: 17px;
        height: 30px;
        line-height: 30px;
        width: 120px;
        font-size: 15px;
    }
}


/* CDEC-5DEP-14 집합교육 설문조사 */
.edu1{
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    overflow-x: clip;
    box-sizing: border-box;
}
.edu5_wrap{
    max-width: min(1080px, 100%);
    margin: 0 auto;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(21, 120, 93, 0.1);
}
.edu3_title{
    font-size: 32px;
    text-align: center;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* 설문조사 질문 */
.edu5_qu{
    margin-bottom: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(21, 120, 93, 0.1);
    transition: all 0.3s ease;
}
.edu5_qu:hover {
    box-shadow: 0 8px 30px rgba(21, 120, 93, 0.15);
    transform: translateY(-2px);
}
.edu5_qu_title{
    font-size: 20px;
    font-weight: 800;
    color: #15785d;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(21, 120, 93, 0.2);
    letter-spacing: -0.5px;
}
/* 서울시1일 설문 구간 대제목 (Part 1~4) */
.edu5_part_title {
    font-size: 18px;
    font-weight: 800;
    color: #1565c0;
    margin: 0 0 14px 0;
    padding: 0 0 8px 0;
    border-bottom: 1px solid rgba(21, 101, 192, 0.25);
    letter-spacing: -0.4px;
    line-height: 1.35;
}
/* 서울시 설문: Part 구간당 카드 1개 — 동일 Part 내 문항은 한 박스에 연속 배치 */
.edu5_qu_seoul_part {
    margin-bottom: 32px;
}
.edu5_qu_seoul_part .edu5_qu_wrap {
    margin-bottom: 18px;
}
.edu5_qu_seoul_part .edu5_qu_wrap:last-child {
    margin-bottom: 0;
}
.edu5_qu_wrap{
    margin-bottom: 20px;
}
.edu5_qu_wrap p,
.qu_wrap_txt{
    margin-bottom: 0px;
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.6;
}
.qu_wrap_txt span{
    color: #ff0000;
}
.qu_b_txt_wrap {
    width: 100%;
}
.edu5_qu_b_txt{
    font-size: 15px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    float: left;
    margin-right: 25px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.edu5_qu_b_txt:hover {
    background: rgba(21, 120, 93, 0.05);
    color: #15785d;
}
.edu5_qu_b_txt label:hover,
.edu5_qu_b_txt.on{
    color: #15785d;
}
.edu5_qu_b_txt.on {
    background: rgba(21, 120, 93, 0.1);
    color: #15785d;
}
/*  체크박스 스타일 */
.edu5_qu_b_txt [type="radio"]{
    vertical-align: middle;
    appearance: none;
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    margin-top: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}
.edu5_qu_b_txt [type="radio"]:checked {
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    border: 2px solid #15785d;
    width: 18px;
    height: 18px;
    box-shadow: 0 0 0 3px rgba(21, 120, 93, 0.2);
}
.edu5_qu_b_txt [type="radio"]:hover {
    border-color: #15785d;
    box-shadow: 0 0 0 3px rgba(21, 120, 93, 0.1);
    cursor: pointer;
}
.edu5_qu_b_txt [type="radio"]:disabled {
    background-color: lightgray;
    box-shadow: none;
    opacity: 0.7;
    cursor: not-allowed;
}
.edu5_qu_b_txt label{
    cursor: pointer;
}
.edu5_qu_wrap_txt{
    font-size: 18px;
    font-weight: 900;
    color: #222;
}
.edu5_qu_in{
    width: 100%;
    height: 40px;
    border: 1px solid rgba(21, 120, 93, 0.2);
    border-radius: 8px;
    outline: none;
    padding: 0 15px;
    background-color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.edu5_qu_in:focus {
    border-color: #15785d;
    box-shadow: 0 0 0 3px rgba(21, 120, 93, 0.1);
}
/* 서울시 설문 혼합식(기타): 라디오 다음 줄에 주관식 */
.edu5_qu_b_txt.surv_mixed_last {
    flex-wrap: wrap;
    width: 100%;
    float: none;
    align-items: flex-start;
    box-sizing: border-box;
}
.edu5_qu_b_txt.surv_mixed_last .surv_mixed_ju_row {
    flex-basis: 100%;
    width: 100%;
    margin-top: 10px;
    padding-left: 26px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.edu5_qu_b_txt.surv_mixed_last .surv_mixed_ju_hint {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    line-height: 1.4;
}
.edu5_qu_b_txt.surv_mixed_last .surv_mixed_l_in {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
@media screen and (max-width: 500px) {
    .edu5_qu_b_txt.surv_mixed_last .surv_mixed_ju_row {
        padding-left: 0;
        margin-top: 12px;
    }
}

/* 기타 작성 */
.l_in_txt{
    width: 200px;
    height: 32px;
    border: 1px solid rgba(21, 120, 93, 0.2);
    border-radius: 8px;
    outline: none;
    padding: 0 10px;
    background-color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.l_in_txt:focus {
    border-color: #15785d;
    box-shadow: 0 0 0 3px rgba(21, 120, 93, 0.1);
}
/* 하단 버튼 */
.edu5_btn_wrap{
    width: 100%;
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.edu5_btn_wrap button{
    border-radius: 12px;
    width: 50%;
    border: 0;
    height: 50px;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.edu5_btn1{
    background: linear-gradient(135deg, #f48120 0%, #e06a0f 100%);
    margin-right: 0;
}
.edu5_btn1:hover{
    background: linear-gradient(135deg, #ffa75e 0%, #f48120 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 129, 32, 0.4);
}
.edu5_btn1:active {
    transform: translateY(0);
}
.edu5_btn2{
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
}
.edu5_btn2:hover{
    background: linear-gradient(135deg, #1a9b77 0%, #15785d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 120, 93, 0.4);
}
.edu5_btn2:active {
    transform: translateY(0);
}

/* 모바일 설문 스텝: 진행률, 스텝 네비, 그룹 단위 표시 */
.edu5_step_progress,
.edu5_step_nav {
    display: none;
}
@media screen and (max-width: 768px) {
    .edu5_step_progress[aria-hidden="true"],
    .edu5_step_nav[aria-hidden="true"] {
        display: none !important;
    }
    .edu5_step_progress[aria-hidden="false"] {
        display: none !important;
    }
    .edu5_step_progress_bar {
        margin-top: 0;
        height: 8px;
        background: rgba(21, 120, 93, 0.15);
        border-radius: 4px;
        overflow: hidden;
    }
    .edu5_step_progress_bar_fill {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, #15785d 0%, #0b4838 100%);
        border-radius: 4px;
        transition: width 0.35s ease;
    }
    .edu5_step_nav {
        display: none !important;
    }
    .edu5_wrap {
        padding-top: 0;
        padding-bottom: 90px;
    }
    .edu5_qu,
    .edu5_qu_wrap {
        scroll-margin-top: 60px;
    }
    .edu5_step_nav .edu5_btn_prev,
    .edu5_step_nav .edu5_btn_next {
        flex: 1;
        border-radius: 12px;
        height: 48px;
        border: 0;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    .edu5_step_nav .edu5_btn_prev {
        background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
        color: #fff;
    }
    .edu5_step_nav .edu5_btn_prev:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }
    .edu5_step_nav .edu5_btn_next {
        background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
        color: #fff;
    }
    .edu5_step_nav .edu5_btn_next:hover,
    .edu5_step_nav .edu5_btn_next.edu5_btn_submit_step:hover {
        opacity: 0.95;
        transform: translateY(-1px);
    }
    .edu5_step_nav .edu5_btn_next.edu5_btn_submit_step {
        background: linear-gradient(135deg, #f48120 0%, #e06a0f 100%);
    }
}
@media screen and (min-width: 769px) {
    .edu5_step_progress,
    .edu5_step_nav {
        display: none !important;
    }
}

@media screen and (max-width:992px){
    .edu3_title{
        font-size: 28px;
        margin-bottom: 25px;
    }
    .edu5_wrap{
        max-width: min(720px, 100%);
        padding: 25px 30px;
        border-radius: 16px;
    }
    .edu5_qu{
        padding: 20px;
        border-radius: 12px;
    }
    .edu5_qu_title{
        font-size: 18px;
    }
    .edu5_txt_wrap{
        padding: 15px;
    }
    .edu5_txt_wrap p{
        font-size: 14px;
    }
    /* 하단 버튼 */
    .edu5_btn_wrap{
        display: block;
    }
    .edu5_btn_wrap button{
        width: 100%;
    }
    .edu5_btn1{
        margin-right: 0;
        margin-bottom: 10px;
    }
}
@media screen and (max-width:768px){
    .edu3_title{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .edu5_wrap{
        padding: 28px 20px 90px;
        border-radius: 14px;
    }
    .edu5_qu{
        margin-bottom: 30px;
        padding: 18px;
        border-radius: 12px;
    }
    .edu5_qu_seoul_part {
        margin-bottom: 22px;
    }
    .edu5_qu_title{
        font-size: 17px;
        padding-bottom: 8px;
    }
    .edu5_part_title {
        font-size: 16px;
        margin-bottom: 12px;
        padding-bottom: 6px;
    }
    .edu5_qu_wrap p,
    .qu_wrap_txt{
        font-size: 15px;
        margin-bottom: 8px;
    }
    .edu5_qu_b_txt{
        font-size: 14px;
        margin-bottom: 10px;
        margin-right: 15px;
        padding: 6px 10px;
    }
    .edu5_qu_wrap_txt{
        font-size: 15px;
    }
    .edu5_btn_wrap{
        margin-top: 25px;
        gap: 12px;
    }
    .edu5_btn_wrap button{
        height: 48px;
        font-size: 16px;
    }
}
@media screen and (max-width:500px){
    .edu5_qu{
        margin-bottom: 30px;
    }
    .edu5_qu_title{
        margin-bottom: 5px;
    }
    .edu5_qu_b_txt{
        float: none;
    }
    .edu5_qu_wrap{
        margin-bottom: 15px;
    }
}
@media screen and (max-width:462px){
    .edu3_title{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .edu5_wrap{
        padding: 10px 20px 15px;
    }
    .edu5_txt_wrap{
        padding: 10px;
    }
    .edu5_txt_wrap p{
        font-size: 13px;
        margin-bottom: 1px;
    }
    .edu5_qu_title{
        font-size: 14px;
    }
    .edu5_part_title {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .edu5_qu_wrap p,
    .qu_wrap_txt{
        font-size: 13px;
    }
    .edu5_qu_b_txt{
        font-size: 13px;
    }
    /* 하단 버튼 */
    .edu5_btn_wrap button{
        font-size: 18px;
    }
    .edu5_btn_wrap button{
        height: 40px;
    }
}




/* 로그인본인인증 CDEC-LOGIN-04 */
/* 본인인증 진행 */
.aut_txt{
    margin-bottom: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #555;
    margin-bottom: 10px;
}
/* 인증수단 선택 */
.atu_box_wrap{
    height: 170px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.atu_box{
    width: 25%;
    padding-top: 40px;
    background-color: #fff;
}
.aut_img_wrap{
    width: 55px;
    height: 55px;
    border: 1px solid rgb(228, 228, 228);
    border-radius: 5px;
    margin: 0 auto;
    background-repeat: no-repeat;
    cursor: pointer;
    background-color: #fff;
}
/* 휴대폰 */
.atu_box:nth-child(1) .aut_img_wrap{
    background-image: url(../img/cellphone_logo.png);
    background-size: 40px;
    background-position: 7px;
}
/* 카카오 */
.atu_box:nth-child(2) .aut_img_wrap{
    background-image: url(../img/Kakao_logo.jpg);
    background-size: 40px;
    background-position: 7px;
}
/* 휴대폰 */
.atu_box:nth-child(3) .aut_img_wrap{
    background-image: url(../img/cellphone_logo.png);
    background-size: 40px;
    background-position: 7px;
}
/* 카드 */
.atu_box:nth-child(4) .aut_img_wrap{
    background-image: url(../img/card_logo.png);
    background-size: 40px;
    background-position: 7px;
}
/* 아이핀 */
.atu_box:nth-child(5) .aut_img_wrap{
    background-image: url(../img/i-pin_logo.png);
    background-size: 40px;
    background-position: 7px;
}
.atu_title{
    font-size: 14px;
    color: #000;
    text-align: center;
}
.n_aut{
    margin-bottom: 0;
    color: #ff3434;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    margin-top: 15px;
}

@media screen and (max-width:1102px){
    .atu_box_wrap{
        height: 150px;
    }
    .atu_box{
        padding-top: 30px;
    }
}

@media screen and (max-width:500px){
    .aut_txt{
        font-size: 14px;
        line-height: 18px;
    }
    /* 인증수단 선택 */
    .atu_box_wrap{
        height: 100px;
        padding: 0;
    }
    .atu_box{
        padding-top: 20px;
    }
    .aut_img_wrap{
        width: 40px;
        height: 40px;
    }
    /* 카카오 */
    .atu_box:nth-child(2) .aut_img_wrap{
        background-image: url(../img/Kakao_logo.jpg);
        background-size: 32px;
        background-position: 4px;
    }
    /* 휴대폰 */
    .atu_box:nth-child(3) .aut_img_wrap{
        background-image: url(../img/cellphone_logo.png);
        background-size: 32px;
        background-position: 4px;
    }
    /* 카드 */
    .atu_box:nth-child(4) .aut_img_wrap{
        background-image: url(../img/card_logo.png);
        background-size: 32px;
        background-position: 4px;
    }
    /* 아이핀 */
    .atu_box:nth-child(5) .aut_img_wrap{
        background-image: url(../img/i-pin_logo.png);
        background-size: 32px;
        background-position: 4px;
    }
    .atu_title{
        font-size: 13px;
        text-align: center;
    }
    .n_aut{
        font-size: 13px;
    }
}

@media screen and (max-width:368px){
    .aut_txt{
        font-size: 12px;
        line-height: 15px;
    }
    /* 인증수단 선택 */
    .atu_box_wrap{
        height: 80px;
        padding: 0;
    }
    .atu_box{
        padding-top: 15px;
    }
    .aut_img_wrap{
        width: 35px;
        height: 35px;
    }
    /* 카카오 */
    .atu_box:nth-child(2) .aut_img_wrap{
        background-image: url(../img/Kakao_logo.jpg);
        background-size: 25px;
    }
    /* 휴대폰 */
    .atu_box:nth-child(3) .aut_img_wrap{
        background-image: url(../img/cellphone_logo.png);
        background-size: 25px;
    }
    /* 카드 */
    .atu_box:nth-child(4) .aut_img_wrap{
        background-image: url(../img/card_logo.png);
        background-size: 25px;
    }
    /* 아이핀 */
    .atu_box:nth-child(5) .aut_img_wrap{
        background-image: url(../img/i-pin_logo.png);
        background-size: 25px;
    }
    .atu_title{
        font-size: 12px;
        font-weight: 700;
        letter-spacing: -1px;
    }
    .n_aut{
        font-size: 12px;
        letter-spacing: -1px;
        margin-top: 10px;
    }
}



/* 비밀번호 재발급(간편인증) CDEC-PWD-05 */
.pw5_title_txt{
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    color: #555;
    margin-top: 5px;
    margin-bottom: 5px;
}
/* 성명, 생년월일 입력 */
.pw5_box_wrap{
    background-color: #eeeeee;
    border: 1px solid #e3e3e3;
    padding: 17px 20px;
    margin-top: 10px;
}
.pw5_box{
    margin-bottom: 10px;
}
.pw6_box{
    margin: 85px 10px;
}
/* 성명, 생년월일 시작-----*/
.pw5n_b{
    display: flex;
}
.pw5_box1{
    width: 100%;
}
.pw5_box1 .pw5_box_in{
    padding-left: 7px;
}
.pw5_box1:nth-child(1){
    margin-right: 7px;
}
/* 성명, 생년월일 끝-----*/
/* 인증번호 시작-----*/
.pw5_box2{
    display: flex;
}
.pw5_box2 .pw5_box_in{
    width: 75%;
    margin-right: 7px;
}
/* 발송버튼 */
.sh_btn{
    width: 25%;
    background: linear-gradient(135deg, #15785d 0%, #0b4838 100%);
    color: #fff;
    border: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 35px;
    line-height: 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(21, 120, 93, 0.3);
    flex-shrink: 0;
}
.sh_btn:hover{
    background: linear-gradient(135deg, #1a9b77 0%, #15785d 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(21, 120, 93, 0.4);
}
.sh_btn:active {
    transform: translateY(0);
}
.sh_btn:disabled {
    background: linear-gradient(135deg, #ccc 0%, #b0b0b0 100%);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}
.sh_btn:disabled:hover {
    transform: none;
    box-shadow: none;
}
/* 확인버튼 */
.pw5_box2 .chk_btn{
    background: linear-gradient(135deg, #4872a9 0%, #3a5f8a 100%);
    color: #fff;
    border: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 35px;
    line-height: 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(72, 114, 169, 0.3);
    flex-shrink: 0;
}
.pw5_box2 .chk_btn:hover{
    background: linear-gradient(135deg, #5a8ac4 0%, #4872a9 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(72, 114, 169, 0.4);
}
.pw5_box2 .chk_btn:active {
    transform: translateY(0);
}
/* 완료버튼 */
.pw5_box2 .comp_btn{
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: #fff;
    border: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 35px;
    line-height: 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.3);
    flex-shrink: 0;
}
.pw5_box2 .comp_btn:hover:not(:disabled){
    background: linear-gradient(135deg, #34ce57 0%, #28a745 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(40, 167, 69, 0.4);
}
.pw5_box2 .comp_btn:active:not(:disabled) {
    transform: translateY(0);
}
.pw5_box2 .comp_btn:disabled {
    background: linear-gradient(135deg, #ccc 0%, #b0b0b0 100%);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}
.pw5_box2 .comp_btn:disabled:hover {
    transform: none;
    box-shadow: none;
}
/* 인증번호 끝-----*/
.pw5_box_title{
    font-size: 17px;
    font-weight: 600;
    color: #555;
    margin-bottom: 3px;
}
.pw5_box_in{
    height: 35px;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    width: 100%;
    outline: none;
    padding-left: 10px;
}
.pw5_box_in::placeholder{
    color: #ababab;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -1px;
}
/* pw5 내용 */
.pw5_txt_wrap{
    background-color: #bddfd6;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    margin-top: 15px;
}
.pw5_txt{
    margin-bottom: 0;
    font-size: 13px;
    color: #222;
    font-weight: 700;
}
.pw5_txt::before{
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #0b4838;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 5px;
}
.ann_pw5_txt{
    height: 120px;
}

@media screen and (max-width:992px){
    .pw5_box{
        margin-bottom: 20px;
    }
    .pw6_box{
        margin: 60px 10px;
    }
    /* 성명, 생년월일 시작-----*/
    .pw5n_b{
        display: block;
    }
    .pw5_box1:nth-child(1){
        margin-right: 0px;
    }
    /* 성명, 생년월일 끝-----*/

    /* 인증번호 시작-----*/
    .pw5_box2 .pw5_box_in{
        width: calc(100% - 110px);
    }
    .sh_btn,
    .pw5_box2 .chk_btn,
    .pw5_box2 .comp_btn {
        min-width: 100px;
        width: auto;
    }
    /* 인증번호 끝-----*/
}

@media screen and (max-width:768px){
    .pw5_box_title{
        font-size: 15px;
    }
    /* 인증번호 시작-----*/
    .pw5_box2 .pw5_box_in{
        width: calc(100% - 110px);
    }
    .sh_btn,
    .pw5_box2 .chk_btn,
    .pw5_box2 .comp_btn {
        min-width: 90px;
        width: auto;
        font-size: 13px;
    }
    /* 인증번호 끝-----*/
}

@media screen and (max-width:462px){
    .pw5_box_in::placeholder{
        font-size: 13px;
    }
}

@media screen and (max-width:368px){
    .pw5_title_txt{
        letter-spacing: -1px;
        font-size: 13px;
    }
    .pw5_box_in{
        padding-left: 5px;
    }
    /* 인증번호 시작-----*/
    .pw5_box2 {
        flex-wrap: wrap;
        gap: 8px;
    }
    .pw5_box2 .pw5_box_in{
        width: 100%;
        margin-right: 0;
    }
    .sh_btn,
    .pw5_box2 .chk_btn,
    .pw5_box2 .comp_btn {
        width: 100%;
        min-width: auto;
        font-size: 13px;
    }
    /* 인증번호 끝-----*/
}