/* 언어설정 */
@charset 'utf-8';

@font-face {
    font-family: 'SUIT-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'KCCHyerim-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2411-3@1.0/KCCHyerim-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* 전체설정 */
* {
    margin: 0;
    padding: 0;
    font-family: 'SUIT-Regular';
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--main-text);
}

img {
    vertical-align: bottom;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;

}

.body {
    max-width: 100%;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    /* 스크롤 막기 */
    touch-action: none;
    /* 터치 시 흔들림 방지 (모바일 UX 향상) */
}

/* 색상설정 */
:root {
    --main-navi: #204B62;
    --main-text: #333;
    --main-white: #fff;
}

/* 상세설정 ---------------------------------------------------------------------------- */

main {
    margin-top: 60px;
}

.txt {
    background-image: url(/img/job_bg.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    /* 또는 원하는 높이 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    text-align: center;
}

.txt h1 {
    font-size: 60px;
    margin-top: 50px;
    font-weight: bold;
    display: inline-block;
    color: #fff;
}

.txt h2 {
    color: #fff;
    margin-top: 40px;
    font-size: 35px;
}

/* 상단 탭 메뉴 */
.menu-line {
    text-align: center;
    margin-top: 50px;
}

.menu-line .tab {
    display: inline-block;
    margin: 0 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: var(--main-navi);
    background-color: var(--main-white);
    padding: 10px 20px;
    border: 2px solid var(--main-navi);
    border-radius: 50px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.menu-line .tab:hover {
    background-color: var(--main-navi);
    color: var(--main-white);
}

.menu-line .active {
    background-color: var(--main-navi);
    color: var(--main-white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


/* 설명 문장 */

.highlight-text {
    text-align: center;
    margin: 30px auto;
    /* ← auto로 가운데 정렬 */
    font-size: 22px;
    color: #333;
    line-height: 1.6;
    max-width: 900px;
    /* 선택사항: 너무 길지 않게 */
}

.highlight-text .em {
    color: #e14400;
    font-weight: bold;
}


/* 성범죄 카드 리스트 */

.crime-table1 {
    width: 100%;
    max-width: 1500px; /* 필요 시 조정 */
    margin: 30px auto;
    border-collapse: collapse;
    font-size: 18px;
}

.crime-table1 .section-title1 {
    caption-side: top;
    font-size: 25px;
    font-weight: bold;
    color: #333;
    padding-bottom: 10px;
    text-align: left; /* 좌측 정렬 유지 */
}

.crime-table1 .section-title1::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 28px;
    background-color: var(--main-navi);
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 2px;
}

.crime-table1 td:nth-child(1)  {
    width: 25%;
}

.crime-table1 td:nth-child(2) {
    width: 75%;
}

.crime-table1 th,
.crime-table1 td {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: left;
    vertical-align: top;
}

.crime-table1 th {
    background-color: #204B62;
    color: #fff;
}

.crime-table1 tr:nth-child(even) {
    background-color: #f9f9f9;
}



/* 재산범죄  */

.crime-table2 {
    width: 100%;
    max-width: 1500px; /* 필요 시 조정 */
    margin: 50px auto;
    border-collapse: collapse;
    font-size: 18px;
}

.crime-table2 .section-title2 {
    caption-side: top;
    font-size: 25px;
    font-weight: bold;
    color: #333;
    padding-bottom: 10px;
    text-align: left; /* 좌측 정렬 유지 */
}

.crime-table2 .section-title2::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 28px;
    background-color: var(--main-navi);
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 2px;
}

.crime-table2 td:nth-child(1)  {
    width: 25%;
}

.crime-table2 td:nth-child(2) {
    width: 75%;
}

.crime-table2 th,
.crime-table2 td {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: left;
    vertical-align: top;
}

.crime-table2 th {
    background-color: #204B62;
    color: #fff;
}

.crime-table2 tr:nth-child(even) {
    background-color: #f9f9f9;
}


/* 강력범죄 */

.crime-table3 {
    width: 100%;
    max-width: 1500px; /* 필요 시 조정 */
    margin: 50px auto;
    border-collapse: collapse;
    font-size: 18px;
}

.crime-table3 .section-title3 {
    caption-side: top;
    font-size: 25px;
    font-weight: bold;
    color: #333;
    padding-bottom: 10px;
    text-align: left; /* 좌측 정렬 유지 */
}

.crime-table3 .section-title3::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 28px;
    background-color: var(--main-navi);
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 2px;
}

.crime-table3 td:nth-child(1)  {
    width: 25%;
}

.crime-table3 td:nth-child(2) {
    width: 75%;
}

.crime-table3 th,
.crime-table3 td {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: left;
    vertical-align: top;
}

.crime-table3 th {
    background-color: #204B62;
    color: #fff;
}

.crime-table3 tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* 기타범죄 */

.crime-table4 {
    width: 100%;
    max-width: 1500px; /* 필요 시 조정 */
    margin: 50px auto;
    border-collapse: collapse;
    font-size: 18px;
}

.crime-table4 .section-title4 {
    caption-side: top;
    font-size: 25px;
    font-weight: bold;
    color: #333;
    padding-bottom: 10px;
    text-align: left; /* 좌측 정렬 유지 */
}

.crime-table4 .section-title4::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 28px;
    background-color: var(--main-navi);
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 2px;
}

.crime-table4 td:nth-child(1)  {
    width: 25%;
}

.crime-table4 td:nth-child(2) {
    width: 75%;
}

.crime-table4 th,
.crime-table4 td {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: left;
    vertical-align: top;
}

.crime-table4 th {
    background-color: #204B62;
    color: #fff;
}

.crime-table4 tr:nth-child(even) {
    background-color: #f9f9f9;
}


/* 업무유형 */
/* 성범죄, 형종 및 형량 기준 1.강제추행죄 */
/* 형량 기준 테이블 */
.content2_1 .sentencing-wrap {
    max-width: 1500px; /* 필요 시 조정 */
    margin: 30px auto;
    text-align: left;
    padding: 0 20px; /* 좁은 화면 대응 */
}

.section-title {
    text-align: left;
    font-size: 30px;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 20px;
    position: relative;
    color: #333;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 28px;
    background-color: #003d83;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 2px;
}

.content2_1 {
    text-align: center;
    /* ✅ h3 박스를 가운데 정렬 */
}

.content2_1 .section_sb_title_1_1 {
    text-align: left;
    font-size: 25px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
    position: relative;
    color: #333;
}

.content2_1 .section_sb_title_1_2 {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
    position: relative;
    color: #003856;
    display: inline-block;
    box-shadow: inset 0 -80px 0 rgba(225, 238, 244, 1);
    padding: 6px 14px;
}

.content2_1 .section_sb_title_1_3 {
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
    position: relative;
    color: #333;
}

.sentencing-table1 {
    width: 1500px;
    max-width: 1500px;
    margin: 50px auto;
    font-family: 'SUIT-Regular', sans-serif;
    font-size: 18px;
}

.sentencing-table1 .common-table1 {}

.sentencing-table1 .common-table1 {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.sentencing-table1 .common-table1 th {
    background-color: #204B62;
    color: #fff;
    padding: 10px;
}

.sentencing-table1 .common-table1 td {
    padding: 10px;
    border: 1px solid #ccc;
}

.sentencing-table1 .common-table1 tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* 열 너비 고정 (형량 기준 테이블) */
.common-table1 th:nth-child(1),
.common-table1 td:nth-child(1) {
    width: 28%;
}

.common-table1 th:nth-child(2),
.common-table1 td:nth-child(2) {
    width: 24%;
}

.common-table1 th:nth-child(3),
.common-table1 td:nth-child(3) {
    width: 24%;
}

.common-table1 th:nth-child(4),
.common-table1 td:nth-child(4) {
    width: 24%;
}

/*  설명 문구  */
.table-note {
    margin: 20px 0px 40px 0px;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    background-color: #f1f1f1;
    padding: 10px 12px;
    border-left: 4px solid #204B62;
    text-align: left;
}


/* 감경/가중 요소 테이블 */

.sentencing-1 .common-table2 {}

.sentencing-table1 .common-table2 {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.sentencing-table1 .common-table2 th {
    background-color: #204B62;
    color: #fff;
    padding: 10px;
}

.sentencing-table1 .common-table2 .row-title {
    background-color: #caecff52;
    font-weight: bold;
}

.sentencing-table1 .common-table2 td {
    padding: 10px;
    border: 1px solid #ccc;
    color: #333;
    line-height: 1.6;
}

.sentencing-table1 .common-table2 .list_title {
    text-align: left;
}

.sentencing-table1 .common-table2 .list_title ul {
    margin: 8px 0 0 16px;
    padding: 5px;
    list-style: square
}

.sentencing-table1 .common-table2 .list_title ul li {
    margin-bottom: 6px;
}

/* 열 너비 고정 (형량 기준 테이블) */
.common-table2 th:nth-child(1),
.common-table2 td:nth-child(1) {
    width: 10%;
}

.common-table2 th:nth-child(2),
.common-table2 td:nth-child(2) {
    width: 10%;
}

.common-table2 th:nth-child(3),
.common-table2 td:nth-child(3) {
    width: 30%;
}

.common-table2 th:nth-child(4),
.common-table2 td:nth-child(4) {
    width: 40%;
}

/* 테이블 3유형 */
.sentencing-1 .common-table3 {}

.sentencing-table1 .common-table3 {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.sentencing-table1 .common-table3 th {
    background-color: #204B62;
    color: #fff;
    padding: 10px;
}

.sentencing-table1 .common-table3 .row-title {
    background-color: #caecff52;
    font-weight: bold;
}

.sentencing-table1 .common-table3 td {
    padding: 10px;
    border: 1px solid #ccc;
    color: #333;
    line-height: 1.6;
}

.sentencing-table1 .common-table3 .list_title {
    text-align: left;
}

.sentencing-table1 .common-table3 .list_title ul {
    margin: 8px 0 0 16px;
    padding: 5px;
    list-style: square
}

.sentencing-table1 .common-table3 .list_title ul li {
    margin-bottom: 6px;
}

/* 열 너비 고정 (형량 기준 테이블) */
.common-table3 th:nth-child(1),
.common-table3 td:nth-child(1) {
    width: 70%;
}

.common-table3 th:nth-child(2),
.common-table3 td:nth-child(2) {
    width: 30%;
}


/* 양형인자의 정의 */
.standard-section {
    max-width: 1500px;
    margin: 40px auto;
    padding: 0 0px;
    font-family: 'SUIT-Regular', sans-serif;
    color: #333;
    text-align: left;
}

.standard-title {
    font-size: 25px;
    font-weight: bold;
    color: #204B62;
    margin-bottom: 10px;
}

.standard-subnote {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.standard-block {
    margin-bottom: 30px;
}

.standard-subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #204B62;
    margin-bottom: 10px;
}

.standard-block p {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.8;
    margin-left: 10px;
}

.standard-block ul {
    list-style-type: disc;
    margin-left: 35px;
}

.standard-block ul li {
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.6;

}




/* 업무절차 */

.content2 {}

.content2 .highlight-text {}

.highlight_img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 30px 0;
    margin-left: 0;
    /* 혹시 상속받은 마진이 있을 경우 초기화 */
}

.highlight_img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}



/* 가해자 변호 */

.content3 {}

.sub-title {
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1f3340;
}

.sub-title span {
    display: inline-block;
    box-shadow: inset 0 -20px 0 rgba(255, 220, 194, 1);
    padding: 0 10px;
}

/* 각 케이스 항목의 스타일 */
.info-list-wrap {
    max-width: 1500px;
    margin: 60px auto 100px;
    padding: 0 20px;
    text-align: center;
}

.info-list-title {
    font-size: 25px;
    font-weight: bold;
    display: inline-block;
    box-shadow: inset 0 -20px 0 rgba(255, 229, 231, 1);
    padding-bottom: 5px;
    color: #333;
    margin-bottom: 30px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 10px;
}

.info-box {
    background-color: #fff0e9;
    border-radius: 25px;
    padding: 25px 30px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info-box .info-title {
    font-weight: bold;
    font-size: 25px;
    color: #e14400;
    margin-bottom: 10px;
}

.info-box .info-content {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 15px;
}


/* 피해자 고소대리 */
.content4 {}

.sub-title2 {
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1f3340;
}

.sub-title2 span {
    display: inline-block;
    box-shadow: inset 0 -20px 0 rgb(255, 213, 205);
    padding: 0 10px;
}

.footer {
    margin-top: 50px;
}



/* 미디어 쿼리 구간------------------------------------------------------------------------------------- */


/* PC 전용 */
@media screen and (min-width: 1440px) {
    .table-responsive {
        width: 100%;
        overflow-x: auto;
    }

    .crime-table1,
    .crime-table2,
    .crime-table3,
    .crime-table4 {
        width: 100%;
        min-width: 600px;
    }
}

/* 노트북 전용 */
@media screen and (min-width: 1025px) and (max-width: 1439px) {
    .table-responsive {
        width: 100%;
        overflow-x: auto;
    }

    .crime-table1,
    .crime-table2,
    .crime-table3,
    .crime-table4 {
        width: 100%;
        min-width: 600px;
    }
}

/* 태블릿 전용 */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .table-responsive {
        width: 100%;
        overflow-x: auto;
    }

    .crime-table1,
    .crime-table2,
    .crime-table3,
    .crime-table4 {
        width: 100%;
        min-width: 600px;
    }

    .sentencing-table1 {
        width: 100%;
        overflow-x: auto;
    }

    .sentencing-table1 table {
        width: 900px;
    }

    .txt h1 {
        font-size: 40px;
    }

    .txt h2 {
        font-size: 28px;
    }

    p {
        font-size: 14px;
    }

    td {
        font-size: 15px;
    }
}

/* 모바일 전용 */
@media screen and (min-width: 481px) and (max-width: 767px) {
    .txt {
        height: 250px;
        margin-top: 30px;
    }

    .txt h1 {
        font-size: 30px;
        margin-top: 20px;
    }

    .crime-table1,
    .crime-table2,
    .crime-table3,
    .crime-table4 {
        width: 98%;
        margin: 50px auto;
        border-collapse: collapse;
        font-size: 15px;
    }

    .crime-table1 th, .crime-table1 td,
    .crime-table2 th, .crime-table2 td,
    .crime-table3 th, .crime-table3 td,
    .crime-table4 th, .crime-table4 td {
        padding: 8px;
    }

    .crime-table1 caption,
    .crime-table2 caption,
    .crime-table3 caption,
    .crime-table4 caption {
        font-size: 20px;
    }

    .txt h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .menu-line .tab {
        font-size: 18px;
        margin: 0 3px;
    }

    .highlight-text {
        font-size: 16px;
        padding: 0 10px;
    }

    .card-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 15px;
    }

    .crime-card img {
        height: 150px;
    }

    .crime-card h3 {
        font-size: 18px;
    }

    .crime-card p {
        font-size: 14px;
    }

    .sentencing-table1 {
        width: 100%;
        overflow-x: auto;
        font-size: 15px;
    }

    .sentencing-table1 table {
        width: 800px;
    }

    .table-note {
        font-size: 14px;
        padding: 8px 10px;
    }

    /* 표 안 텍스트 줄바꿈 방지 */
    .sentencing-table1 th,
    .sentencing-table1 td {
        white-space: nowrap;
    }

    /* 업무유형 */
    .sentencing-table1 {
        width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }

    .sentencing-table1 table {
        width: 100%;
        font-size: 12px;
        table-layout: fixed;
        word-break: break-word;
        /* 셀 내부에서 단어 끊어서 줄바꿈 */
    }

    .sentencing-table1 th,
    .sentencing-table1 td {
        padding: 6px 4px;
        white-space: normal;
        /* 줄바꿈 허용 */
        word-break: break-word;
        /* 긴 단어도 줄바꿈 */
        overflow-wrap: break-word;
        /* 추가 안전 처리 */
        text-align: center;
    }

    /* 열 너비 지정 */
    .common-table1 th:nth-child(1),
    .common-table1 td:nth-child(1) {
        width: 32%;
    }

    .common-table1 th:nth-child(2),
    .common-table1 td:nth-child(2),
    .common-table1 th:nth-child(3),
    .common-table1 td:nth-child(3),
    .common-table1 th:nth-child(4),
    .common-table1 td:nth-child(4) {
        width: 22%;
    }

    .common-table2 th:nth-child(3),
    .common-table2 td:nth-child(3) {
        width: 10%;
    }

    /* 표 주석 설명 */
    .table-note {
        font-size: 13px;
        padding: 5px 8px;
    }

    /* 업무절차 */
    .highlight_img img {
        width: 90%;
        height: auto;
    }

     /* 서브 제목 (sub-title) */
     .sub-title {
        font-size: 26px;
        margin: 30px 0 20px 0;
        padding: 0 10px;
        line-height: 1.4;
    }


    /* 서브 본문 텍스트 (sub-text) */
    .sub-text {
        font-size: 15px;
        padding: 0 10px;
        line-height: 1.6;
    }

    .defense-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 5px;
        margin-right: 5px;
    }

    .defense-img img {
        width: 100%;
        height: 360px;
        max-width: 1200px;
        margin-bottom: 20px;
        border-radius: 9px 9px 0px 0px;
        margin-top: -5px;
    }

    .defense-img {
        max-width: 1290px;
        margin: 0 auto; /* 이미지 가운데 정렬 */
    }

    .defense-box .sub-text {
        font-size: 16px;
        padding: 0 15px;
        line-height: 1.6;
    }

    .defense-text {
        margin-top: -10px;
    }

    /* 서브 제목 (sub-title) */
    .sub-title2 {
        font-size: 26px;
        margin: 30px 0 20px 0;
        padding: 0 10px;
        line-height: 1.4;
    }


    /* 서브 본문 텍스트 (sub-text) */
    .highlight-text {
        font-size: 15px;
        padding: 0 10px;
        line-height: 1.6;
    }

    .defense-box .sub-text {
        font-size: 16px;
        padding: 0 15px;
        line-height: 1.6;
    }

    .defense-text {
        margin-top: -10px;
        padding: 5px;
    }

    .mobile-hide {
        display: none;
    }
}

@media screen and (max-width: 480px) and (orientation: portrait) {
    .txt {
        height: 250px;
        margin-top: 30px;
    }

    .txt h1 {
        font-size: 35px;
        margin-top: 20px;
    }

    .crime-table1,
    .crime-table2,
    .crime-table3,
    .crime-table4 {
        width: 98%;
        margin: 50px auto;
        border-collapse: collapse;
        font-size: 15px;
    }

    .crime-table1 th, .crime-table1 td,
    .crime-table2 th, .crime-table2 td,
    .crime-table3 th, .crime-table3 td,
    .crime-table4 th, .crime-table4 td {
        padding: 8px;
    }

    .crime-table1 caption,
    .crime-table2 caption,
    .crime-table3 caption,
    .crime-table4 caption {
        font-size: 18px;
    }

    .txt h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .menu-line .tab {
        font-size: 18px;
        margin: 0 3px;
    }

    .highlight-text {
        font-size: 16px;
        padding: 0 10px;
    }

    .card-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 15px;
    }

    .crime-card img {
        height: 150px;
    }

    .crime-card h3 {
        font-size: 18px;
    }

    .crime-card p {
        font-size: 14px;
    }

    .sentencing-table1 {
        width: 100%;
        overflow-x: auto;
        font-size: 15px;
    }

    .sentencing-table1 table {
        width: 800px;
    }

    .table-note {
        font-size: 14px;
        padding: 8px 10px;
    }

    /* 표 안 텍스트 줄바꿈 방지 */
    .sentencing-table1 th,
    .sentencing-table1 td {
        white-space: nowrap;
    }

    /* 업무유형 */
    /* 테이블 전체 축소 */
    .sentencing-table1 {
        width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }

    .sentencing-table1 table {
        width: 100%;
        font-size: 12px;
        table-layout: fixed;
    }

    .sentencing-table1 th,
    .sentencing-table1 td {
        padding: 6px 4px;
        white-space: normal;
        /* 줄바꿈 허용 */
    }

    /* 첫 번째 열(구분)만 약간 넓게 */
    .common-table1 th:nth-child(1),
    .common-table1 td:nth-child(1) {
        width: 40%;
    }

    /* 나머지 열 좁게 */
    .common-table1 th:nth-child(2),
    .common-table1 td:nth-child(2) {
        width: 15%;
    }

    .common-table1 th:nth-child(3),
    .common-table1 td:nth-child(3) {
        width: 15%;
    }

    .common-table1 th:nth-child(4),
    .common-table1 td:nth-child(4) {
        width: 15%;
    }

    .common-table2 th:nth-child(3),
    .common-table2 td:nth-child(3) {
        width: 10%;
    }

    /* 표 주석 설명 */
    .table-note {
        font-size: 13px;
        padding: 5px 8px;
    }

    /* 업무절차 */
    .highlight_img img {
        width: 90%;
        height: auto;
    }

      /* 서브 제목 (sub-title) */
      .sub-title {
        font-size: 26px;
        margin: 30px 0 20px 0;
        padding: 0 10px;
        line-height: 1.4;
    }


    /* 서브 본문 텍스트 (sub-text) */
    .sub-text {
        font-size: 15px;
        padding: 0 10px;
        line-height: 1.6;
    }

    .defense-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 10px;
        margin-right: 5px;
        max-width: 350px;
        gap: 10px;
    }

    .defense-img img {
        width: 100%;
        height: 360px;
        max-width: 1200px;
        margin-bottom: 20px;
        border-radius: 9px 9px 0px 0px;
    }

    .defense-img {
        max-width: 1290px;
        margin: 0 auto; /* 이미지 가운데 정렬 */
    }

    .defense-box .sub-text {
        font-size: 16px;
        padding: 0 15px;
        line-height: 1.6;
    }

    .defense-text {
        margin-top: -10px;
        padding: 5px;
    }

    /* 서브 제목 (sub-title) */
    .sub-title2 {
        font-size: 26px;
        margin: 30px 0 20px 0;
        padding: 0 10px;
        line-height: 1.4;
    }


    /* 서브 본문 텍스트 (sub-text) */
    .highlight-text {
        font-size: 15px;
        padding: 0 10px;
        line-height: 1.6;
    }

    .defense-box .sub-text {
        font-size: 16px;
        padding: 0 15px;
        line-height: 1.6;
    }

    .defense-text {
        margin-top: -10px;
    }

    .mobile-hide {
        display: none;
    }
}