/* common.css 배포일:2026.03.20 11:52:36 */ 
@charset "utf-8";

* {
    box-sizing: border-box;
}

/* ========================================
   Layout
======================================== */

.layout:has(.layout) {
    max-width: none;
    padding: 0;
}

.layout:has(.layout) .page-title-wrap {
    padding: 200px 30px 33px;
    max-width: 1440px;
    margin: 0 auto;
}

/* ========================================
   Header
======================================== */
#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    z-index: 1000;
}

#header.is-open .gnb::before {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header .logo {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 190px;
    height: 50px;
    background: url(/home/image/common/header_kj_logo.svg) no-repeat center / contain;
    z-index: 10;
}

#header .logo a {
    display: block;
    width: 100%;
    height: 100%;
}

#header .layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

#header .gnb {
    --gnb-height: 80px;
    position: relative;
    display: flex;
    gap: clamp(24px, 3vw, 56px);
    padding-bottom: 25px;
}

#header .gnb::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    height: var(--gnb-height);
    background: #fff;
    box-shadow: none;
    transition: height 0.2s ease-out, box-shadow 0.2s;
    pointer-events: none;
    z-index: -1;
}

#header .gnb .depth1 {
    position: relative;
    z-index: 1;
    /*width: clamp(70px, 6vw, 100px);*/
}

#header .gnb .depth1::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 0;
    width: calc(100% + 56px);
    height: 80px;
}

#header .gnb .depth1 > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -0.64px;
}

#header .gnb .depth1.is-active > a,
#header .gnb .depth1 > a:hover {
    color: #1C3456;
    font-weight: 700;
}
/*
#header .gnb .depth2 {
    position: absolute;
    left: -28px;
    top: 80px;
    width: calc(100% + 56px);
    padding: 5px 0;
    display: none;
}*/
#header .gnb .depth2-wrap {
    position:fixed;
    left:50%;
    top:80px;
    padding:20px 300px;
    display:none;
    width:100%;
    margin:0 auto;
    transform:translateX(-50%);
    background:#01375A;

}
#header .gnb .depth2 {
    width:727px;
    margin:0 auto;
    display:flex;
    justify-content:space-around;
    
}
#header .gnb .depth1.is-open .depth2-wrap {
    display:flex;
}
/*
#header.is-open .gnb .depth2 {
    display: block;
}*/

#header .gnb .depth2 > li > a {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
}

#header .gnb .depth2 > li:not(:has(> ul.depth3)) > a:hover,
#header .gnb .depth2 > li:not(:has(> ul.depth3)) > a:focus {
    color: #6C9900;
}

#header .gnb .depth3 {
    display: block;
    padding: 5px 0;
}

#header .gnb .depth3 li a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: #999;
    text-align: center;
    white-space: nowrap;
}

#header .gnb .depth3 li a:hover,
#header .gnb .depth3 li a:focus {
    color: #6C9900;
}

#header .gnb .depth3.is-open {
    display: block;
}

#header .header-util {
    position: absolute;
    right: 40px;
    top: 0;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

#header .btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 40px;
    border-radius: 20px;
    color: #222;
    text-align: center;
    font-family: 'neurimbo Gothic', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.36px;
}

#header .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

#header .btn-icon img {
    width: 40px;
    height: 40px;
}

#header .btn-icon.language-btn{
    position:relative;
    width:40px;
    height:40px;
    display:block;
    background: url(/home/image/common/icn_language.svg) no-repeat center center;
    background-size:contain;
}

#header .btn-icon.language-btn.active .language-list {
    display:block;
}

#header .btn-icon.language-btn .language-list { 
    display: none;
    position: absolute;
    left: -28px;
    top: calc(100% + 10px);
    width: 94px;
    padding:4px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

#header .btn-icon.language-btn .language-list li a {
    display: block;
    padding: 4px 12px;
    font-size: 14px;
    line-height:160%;
    color: #666;
    text-align: center;
    border-radius: 24px;
}
#header .btn-icon.language-btn .language-list li a:hover,
#header .btn-icon.language-btn .language-list li a:focus {
    color: #1C3456;
    font-weight: 700;
    background: #F7F7F7;
}


#header .btn-icon.search-btn{
    width:40px;
    height:40px;
    display:block;
    background: url(/home/image/common/icn_search.svg) no-repeat center center;
    background-size:contain;
}

#header .btn-icon.sitemap-btn{
    width:40px;
    height:40px;
    display:block;
    background: url(/home/image/common/icn_gnb.svg) no-repeat center center;
    background-size:contain;
}


#header .header-mobile {
    display: none;
}


@media screen and (max-width: 1250px){

    body.sitemap-open #header {
        z-index: 2001;
        width:calc(100% - 70px);
        background:transparent;
    }
    body.sitemap-open #header .header-mobile{
       display: none;
    }

    body.sitemap-open #header .header-util{
        display: flex;
        height:70px;
        right:0;
    }

    body.sitemap-open #header .header-util .btn-login{
        color:#fff;
    }

    body.sitemap-open #header .btn-icon.language-btn {
        background:url(/home/image/common/icn_language_white.svg) no-repeat center center;
    }

    body.sitemap-open #header .btn-icon.search-btn, 
    body.sitemap-open #header .btn-icon.sitemap-btn{
        display:none;
    }

}

/* ========================================
   Footer
======================================== */
#footer {
    position: relative;
    height: 440px;
    background: #1C3456;
    overflow: hidden;
}

#footer .footer-bg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/home/image/common/img_footer_bg.png) no-repeat center / cover;
}

#footer .footer-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 100%;
    padding: 0 60px;
    z-index: 1;
}

#footer .footer-left {
    flex: 1;
    min-width: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto auto;
    align-content: end;
    align-items: start;
    column-gap: 60px;
    padding-bottom: 80px;
}

#footer .footer-sns {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

#footer .footer-sns img {
    width: 40px;
    height: 40px;
}

#footer .footer-logo {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 60px;
}

#footer .footer-logo img {
    height: 30px;
}

#footer .footer-link {
    grid-column: 1;
    grid-row: 3;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

#footer .footer-link a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.56px;
}

#footer .footer-link a.bold {
    font-weight: 700;
    line-height: 1.7;
}

#footer .footer-right {
    grid-column: 2;
    grid-row: 4;
    align-self: center;
    min-width: 220px;
}

#footer .footer-site-select-wrap {
    width: 100%;
}

#footer .footer-site-select {
    box-sizing: border-box;
    width: 100%;
    min-width: 220px;
    min-height: 44px;
    padding: 10px 40px 10px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.56px;
    color-scheme: light;
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M14 8L10 12L6 8' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
}

#footer .footer-site-select option {
    color: #222;
    background-color: #fff;
}

#footer .footer-site-select option:disabled {
    font-weight: 700;
    color: #1c3456;
    background-color: #fff;
}

#footer .footer-info {
    grid-column: 1;
    grid-row: 4;
    opacity: 0.4;
}

#footer .footer-info p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.56px;
}

/* ========================================
   페이지 타이틀 + 브레드크럼 영역
======================================== */
.page-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 200px 0 33px;
}

.page-title-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-title {
	max-width: 1000px;
    font-size: 56px;
    font-weight: 700;
    color: #1C3456;
    letter-spacing: -2.24px;
    line-height: 1.3;
}

.page-title-left .btn-share {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.page-title-left .btn-share img {
    width: 30px;
    aspect-ratio: 1 / 1; 
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb .home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.breadcrumb .home img {
    width: 100%;
    height: 100%;
}

.breadcrumb-divider {
    width: 8px;
    height: 14px;
}

.breadcrumb-item {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    letter-spacing: -0.64px;
	white-space: nowrap;
}

.breadcrumb-item.current {
    font-weight: 700;
    color: #1C3456;
}

/* ========================================
   페이지네이션
======================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 100px 0;
}

.pagination-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 400;
    color: #222;
    letter-spacing: -0.72px;
    transition: all 0.2s;
}

.pagination a:hover {
    color: #1C3456;
}

.pagination a.active {
    background: #1C3456;
    font-weight: 700;
    color: #fff;
}

.pagination a.first img,
.pagination a.prev img,
.pagination a.next img,
.pagination a.last img {
    width: 40px;
    aspect-ratio: 1 / 1;
}

/* ========================================
   공통 테이블
======================================== */
.tbl-wrap {
    margin: 10px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.tbl-basic {
    width: 100%;
    border-collapse: collapse;
}

.tbl-basic tr {
    border-bottom: 1px solid #CCC;
}

.tbl-basic tbody tr:last-child {
    border-bottom: none;
}

.tbl-basic th,
.tbl-basic td {
    height: 80px;
    padding: 10px 20px;
    font-size: 16px;
    color: #222;
    /* border-bottom: 1px solid #CCC; */
    letter-spacing: -0.72px;
    text-align: center;
    vertical-align: middle;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.tbl-basic thead th {
    height: 58px;
}

.tbl-basic th {
    background: #F6FAFE;
    font-weight: 400;
    color: #666;
    text-align: center;
}

.tbl-basic td {
    color: #222;
}

.tbl-basic tbody.hidden {
    display: none;
}

.tbl-basic.tbl-green th {
    background: #F8FCF0;
}

/* ========================================
   테이블 2컬럼 레이아웃
======================================== */
.tbl-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.tbl-col {
    flex: 1 1 calc(50% - 20px);
    min-width: 0;
}

.tbl-col .sub-section-title {
    margin-bottom: 24px;
}

@media screen and (max-width: 1200px) {
    .tbl-cols {
        gap: 30px;
    }
}

@media screen and (max-width: 900px) {
    .tbl-cols {
        flex-direction: column;
        gap: 50px;
    }

    .tbl-col {
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 750px) {
    .tbl-col .sub-section-title {
        margin-bottom: 16px;
    }
}

/* ========================================
   범용 컴포넌트
======================================== */
.section-intro-title .sub-section-title {
    margin-bottom: unset;
}

.sub-content {
    padding-bottom: 150px;
}

.sub-section + .sub-section {
    margin-top: 75px;
}

.sub-text {
    display: inline-block;
    margin-top: 10px;
    font-size: 18px;
    color: #000;
}

.sub-list {
    margin-top: 5px;
    padding-left: 10px;
}

.sub-list li {
    position: relative;
    padding-left: 15px;
    font-size: 16px;
    color: #222;
}

.sub-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #222;
}

.tbl-basic .sub-list li,
.tbl-basic ol.circle-num li {
    font-size: 16px;
}

.sub-section-title {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.96px;
}

.sub-section-title img {
    width: 38px;
    height: 38px;
}

@media screen and (max-width: 750px) {
    .sub-content {
        padding-bottom: 60px;
    }

    .sub-section + .sub-section {
        margin-top: 40px;
    }

    .sub-section p,
    .sub-section span {
        font-size: 15px;
    }

    .sub-section span {
        flex: 1;
    }

    .sub-text {
        font-size: 15px;
    }

    .sub-list li {
        font-size: 15px;
        padding-left: 12px;
    }

    .tbl-basic .sub-list li,
    .tbl-basic ol.circle-num li {
        font-size: 14px;
    }

    .sub-section-title {
        font-size: 18px;
    }

    .sub-section-title.fs-18 {
        font-size: 16px !important;
    }

    .sub-section-title img {
        width: 28px;
        height: 28px;
    }
}

.btn-gradient {
    min-width: 100px;
    padding: 10px 48px;
    background: linear-gradient(105.73deg, #1C3456 6.51%, #0064A2 50.73%, #3EC2BE 94.94%);
    border-radius: 32px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.8px;
    color: #fff;
    white-space: nowrap;
}

.btn-cancel {
    display: flex;
    padding: 10px 48px;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    border: 1px solid #999;
    background: #fff;
    font-weight: 700;
    font-size: 20px;
    color: #999;
    cursor: pointer;
}

.btn-gradient:hover {
    background: linear-gradient(105.73deg, #152a47 6.51%, #005289 50.73%, #35a8a5 94.94%);
}

.btn-basic:hover,
.btn-gradient:visited,
.btn-gradient:link,
.btn-gradient:active {
    color: #fff;
}

.btn-basic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px 10px;
    height: 38px;
    background: #01375A;
    border-radius: 32px;
    font-size: 18px;
    color: #fff;
    letter-spacing: -0.72px;
    transition: background 0.2s;
}

.btn-basic img {
    width: 22px;
    aspect-ratio: 1 / 1;
    transform: translateY(-1px);
}

.btn-basic:hover,
.btn-basic:visited,
.btn-basic:link,
.btn-basic:active {
    background: #012A45;
    color: #fff;
}

@media screen and (max-width: 750px) {
    .btn-basic {
        padding: 8px 16px 7px;
        height: 32px;
        border-radius: 24px;
        font-size: 14px;
    }

    .btn-basic img {
        width: 18px;
    }
}

.intro-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.intro-banner .bg-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.intro-banner-title {
    position: relative;
    z-index: 1;
    font-size: 32px;
    font-weight: 700;
    color: #173557;
    letter-spacing: -1.28px;
    line-height: 1.4;
}

.intro-banner-text {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    font-size: 18px;
    color: #222;
    letter-spacing: -0.72px;
    line-height: 1.6;
}

@media screen and (max-width: 750px) {
    .btn-gradient {
        padding: 10px 24px;
        font-size: 16px;
        max-width: 100%;
    }

    .intro-banner {
        padding: 50px 20px;
    }

    .intro-banner-title {
        font-size: 20px;
    }

    .intro-banner-text {
        margin-top: 16px;
        font-size: 14px;
    }
}

.section-intro {
    padding-bottom: 40px;
}

.section-intro-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-intro-desc {
    margin: 20px 0 40px;
    font-size: 18px;
    color: #222;
    letter-spacing: -0.72px;
}

.section-intro-tasks ul li {
    font-size: 16px;
}

.section-intro-tasks p {
    font-size: 16px;
    color: #222;
    line-height: 1.6;
}

@media screen and (max-width: 750px) {
    .section-intro {
        padding-bottom: 30px;
    }

    .section-intro-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .section-intro-desc {
        margin-top: 16px;
        font-size: 14px;
    }

    .section-intro-tasks {
        margin-top: 20px;
    }

    .section-intro-tasks ul li {
        font-size: 14px;
    }
}

.info-box {
    margin: 15px 0;
    padding: 32px 40px;
    background: #F6FAFE;
    font-size: 16px;
    color: #000;
    border-radius: 16px;
}

ol.circle-num li {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    color: #000;
}

ol.circle-num li::before {
    position: absolute;
    left: 0;
    color: #000;
}

ol.circle-num li:nth-of-type(1)::before {
    content: '①';
}

ol.circle-num li:nth-of-type(2)::before {
    content: '②';
}

ol.circle-num li:nth-of-type(3)::before {
    content: '③';
}

ol.circle-num li:nth-of-type(4)::before {
    content: '④';
}

ol.circle-num li:nth-of-type(5)::before {
    content: '⑤';
}

ol.circle-num li:nth-of-type(6)::before {
    content: '⑥';
}

ol.circle-num li:nth-of-type(7)::before {
    content: '⑦';
}

ol.circle-num li:nth-of-type(8)::before {
    content: '⑧';
}

ol.circle-num li:nth-of-type(9)::before {
    content: '⑨';
}

ol.circle-num li:nth-of-type(10)::before {
    content: '⑩';
}

.no-marker li {
    padding-left: 0 !important;
}

.no-marker li::before {
    display: none !important;
}

.formula {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    font-size: 18px;
}

.fraction {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.fraction .numerator {
    border-bottom: 1px solid #333;
    padding: 0 10px 4px;
}

.fraction .denominator {
    padding: 4px 10px 0;
}

@media screen and (max-width: 750px) {
    .formula span {
        flex: unset;
    }
}

/* ========================================
   콘텐츠 탭
======================================== */
.content-tab-wrap {
    margin-bottom: 40px;
}

.content-tab {
    display: flex;
    gap: 4px;
    overflow-x: auto;
}

.content-tab li {
    min-width: fit-content;
}

.content-tab li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 36px;
    border-radius: 12px 12px 0 0;
    border: 2px solid transparent;
    border-bottom: 1px solid #E5E5E5;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.72px;
    white-space: nowrap;
    background-color: #F7F7F7;
    transition: all 0.2s;
}

.content-tab li a:hover {
    color: #0064A2;
}

.content-tab li.active a {
    border: 2px solid #0064A2;
    border-bottom: 1px solid transparent;
    color: #0064A2;
    background: #fff;
}

/* ========================================
   아코디언
======================================== */
.accordion-wrap {
    padding: 40px 0 100px;
}

.accordion-item[open] > .accordion-title::before {
    background-image: url(/home/image/common/btn_navy_minus.svg);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    list-style: none;
}

.accordion-title::-webkit-details-marker {
    display: none;
}

.accordion-title::before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(/home/image/common/btn_navy_plus.svg) no-repeat center / contain;
    transition: background-image 0.2s;
}

.accordion-body {
    padding: 20px 0 40px 45px;
}

.accordion-body > p {
    margin-bottom: 30px;
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    word-break: keep-all;
}

.accordion-sub-item[open] > .accordion-sub-title::before {
    background-image: url(/home/image/common/btn_navy_minus.svg);
}

.accordion-sub-title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    list-style: none;
}

.accordion-sub-title::-webkit-details-marker {
    display: none;
}

.accordion-sub-title::before {
    content: '';
    width: 24px;
    height: 24px;
    background: url(/home/image/common/btn_navy_plus.svg) no-repeat center / contain;
    transition: background-image 0.2s;
}

.accordion-sub-body {
    padding: 15px 0 20px 39px;
}

.accordion-sub-body > p {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    word-break: keep-all;
    margin-bottom: 40px;
}

.accordion-list {
    margin-top: 15px;
}

.accordion-list > li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.accordion-list > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
}

.accordion-list > li strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.accordion-list > li p {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    word-break: keep-all;
}

.accordion-list > li:last-child {
    margin-bottom: 0;
}

/* ========================================
   다운로드 박스
======================================== */
.download-box {
    margin-top: 40px;
    padding-top: 40px;
}

.download-box-title {
    padding-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-align: center;
    border-bottom: 1px solid #000;
}

.download-box-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.download-box-list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #D9D9D9;
}

.download-box-list > li {
    border-bottom: 1px solid #D9D9D9;
}

.download-box-list > li.full {
    grid-column: 1 / -1;
}

.download-box-list > li:nth-last-child(-n+2) {
    border-bottom: none;
}

.download-box-list > li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    font-size: 16px;
    color: #000;
    transition: color 0.2s;
}

.download-box-list > li a:hover {
    color: #01375A;
}

.download-box-list > li a img {
    width: 16px;
    height: 20px;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.download-link:hover {
    text-decoration: underline;
}

.download-link img {
    width: 20px;
    height: 20px;
}

/* ========================================
   로그인
======================================== */
.login-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.login-intro {
    margin-bottom: 60px;
    font-size: 18px;
    font-weight: 500;
    color: #173557;
    letter-spacing: -0.72px;
    word-break: keep-all;
}

.login-tab-wrap {
    display: flex;
    gap: 16px;
    width: fit-content;
    margin: 0 auto;
    padding: 4px;
    background: #F7F7F7;
    border-radius: 16px;
}

.login-tab {
    padding: 10px 36px;
    background: transparent;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.72px;
    cursor: pointer;
    transition: all 0.2s;
}

.login-tab:hover {
    color: #0064A2;
}

.login-tab.active {
    background: #0064A2;
    color: #fff;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    position: relative;
    padding-bottom: 49px;
}

.login-field {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 24px;
}

.login-field-label {
    width: 100px;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    letter-spacing: -1.12px;
}

.login-field-input {
    width: 560px;
    height: 64px;
    padding: 0 23px;
    border: 1px solid #C1C1C1;
    border-radius: 12px;
    font-size: 24px;
    color: #222;
    letter-spacing: -0.96px;
}

.login-field-input::placeholder {
    color: #B2B2B2;
}

.login-util {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 700px;
    margin-bottom: 24px;
}

.login-error {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    font-size: 18px;
    color: #ED2226;
    letter-spacing: -0.72px;
    white-space: nowrap;
}

.login-error img {
    width: 24px;
    height: 24px;
    transform: translateY(-1.5px);
}

.login-link {
    font-size: 18px;
    font-weight: 700;
    color: #666;
    letter-spacing: -0.72px;
    margin-left: auto;
}

.login-link:hover {
    text-decoration: underline;
}

.btn-login-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    color: #fff;
    border: none;
    cursor: pointer;
}

.login-info-box {
    margin-top: 20px;
    padding: 28px;
    border: 1px solid #CCC;
    border-radius: 24px;
}

.login-form + .login-info-box {
    margin-top: 100px;
}

.login-info-title {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.72px;
}

.login-info-cols {
    display: flex;
    gap: 8px;
}

.login-info-col {
    flex: 1;
    min-width: 0;
}

.login-info-col strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 700;
    color: #666;
    letter-spacing: -0.64px;
}

.login-info-col ul {
    margin-inline-start: 10px;
    padding-left: 24px;
}

.login-info-col ul li {
    list-style: disc;
    font-size: 16px;
    color: #666;
    letter-spacing: -0.64px;
}

.login-info-list {
    padding-left: 24px;
}

.login-info-list li {
    list-style: disc;
    font-size: 16px;
    color: #666;
    letter-spacing: -0.64px;
}

body.search-layer-open {
    overflow: hidden;
}

#globalSearchLayer.search-layer {
    position: fixed;
    inset: 0;
    z-index: 1900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

#globalSearchLayer.search-layer.is-open {
    opacity: 1;
    pointer-events: auto;
}

#globalSearchLayer .search-layer-dim {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    bottom: 0;
    background: rgba(34, 34, 34, 0.6);
}

#globalSearchLayer .search-layer-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    height: 640px;
    padding: 120px 260px 0;
    background: #fff;
    box-sizing: border-box;
}

#globalSearchLayer .search-layer-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -2.24px;
    color: #173557;
    text-align: center;
}

#globalSearchLayer .search-layer-form {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 68px;
}

#globalSearchLayer .search-layer-input {
    flex: 1;
    min-width: 0;
    height: 78px;
    padding: 0 40px;
    border: 1px solid #B2B2B2;
    border-radius: 50px;
    font-size: 24px;
    letter-spacing: -0.96px;
    color: #222;
}

#globalSearchLayer .search-layer-input::placeholder {
    color: #B2B2B2;
}

#globalSearchLayer .search-layer-submit {
    width: 140px;
    height: 78px;
    border: none;
    border-radius: 50px;
    background: #173557;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.96px;
    color: #fff;
    cursor: pointer;
}

#globalSearchLayer .search-layer-keyword-wrap {
    display: flex;
    align-items: center;
    gap: 56px;
    margin-top: 32px;
}

#globalSearchLayer .search-layer-keyword-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.8px;
    white-space: nowrap;
}

#globalSearchLayer .search-layer-keyword-list {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

#globalSearchLayer .search-layer-keyword {
    padding: 8px 20px;
    border: 1px solid #222;
    border-radius: 12px;
    background: #fff;
    font-size: 20px;
    color: #222;
    letter-spacing: -0.8px;
    white-space: nowrap;
}

#globalSearchLayer .search-layer-close {
    position: absolute;
    right: 250px;
    top: 40px;
    width: 64px;
    height: 64px;
    border: none;
    background: transparent;
    cursor: pointer;
}

#globalSearchLayer .search-layer-close::before,
#globalSearchLayer .search-layer-close::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 32px;
    background: #173557;
    transform-origin: center;
}

#globalSearchLayer .search-layer-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#globalSearchLayer .search-layer-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* ========================================
   반응형 - 태블릿
======================================== */
@media screen and (max-width: 1250px) and (min-width: 751px) {
    #header .logo {
        left: 30px;
        width: 160px;
        height: 42px;
    }

    #header .gnb .depth1 > a {
        font-size: 14px;
    }

    #header .gnb .depth2 > li > a {
        font-size: 14px;
    }

    #header .header-util {
        right: 20px;
        gap: 10px;
    }

    #header .btn-login {
        width: 60px;
        height: 36px;
        font-size: 16px;
    }

    #header .btn-icon {
        width: 36px;
        height: 36px;
    }

    #globalSearchLayer .search-layer-panel {
        height: 560px;
        padding: 96px 80px 0;
    }

    #globalSearchLayer .search-layer-title {
        font-size: 48px;
        letter-spacing: -1.92px;
    }

    #globalSearchLayer .search-layer-form {
        gap: 16px;
        margin-top: 52px;
    }

    #globalSearchLayer .search-layer-input {
        height: 68px;
        padding: 0 28px;
        font-size: 20px;
    }

    #globalSearchLayer .search-layer-submit {
        width: 120px;
        height: 68px;
        font-size: 22px;
    }

    #globalSearchLayer .search-layer-keyword-wrap {
        gap: 24px;
    }

    #globalSearchLayer .search-layer-keyword-title {
        font-size: 18px;
    }

    #globalSearchLayer .search-layer-keyword-list {
        gap: 12px;
        flex-wrap: wrap;
        max-width: calc(100% - 180px);
    }

    #globalSearchLayer .search-layer-keyword {
        padding: 6px 14px;
        font-size: 18px;
    }

    #globalSearchLayer .search-layer-close {
        right: 72px;
        top: 28px;
        width: 52px;
        height: 52px;
    }
}

/* ========================================
   반응형 - 모바일
======================================== */
@media screen and (max-width: 750px) {
    .login-wrap {
        padding-bottom: 60px;
    }

    .login-intro {
        margin-bottom: 30px;
        font-size: 15px;
    }

    .login-tab-wrap {
        flex-wrap: wrap;
        gap: 8px;
        padding: 4px;
        border-radius: 12px;
    }

    .login-tab {
        flex: 1;
        min-width: calc(50% - 8px);
        padding: 10px 16px;
        font-size: 15px;
        border-radius: 8px;
    }

    .login-form {
        margin-top: 30px;
        padding-bottom: 34px;
    }

    .login-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        margin-bottom: 16px;
    }

    .login-field-label {
        width: auto;
        font-size: 18px;
    }

    .login-field-input {
        width: 100%;
        height: 50px;
        padding: 0 16px;
        font-size: 16px;
        border-radius: 10px;
    }

    .login-util {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        margin-bottom: 20px;
    }

    .login-error {
        font-size: 14px;
        left: 50%;
        transform: translateX(-50%);
    }

    .login-error img {
        width: 20px;
        height: 20px;
    }

    .login-link {
        font-size: 14px;
    }

    .btn-login-submit {
        width: 100%;
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 24px;
    }

    .login-info-box {
        margin-top: 15px;
        padding: 20px;
        border-radius: 16px;
    }

    .login-form + .login-info-box {
        margin-top: 50px;
    }

    .login-info-title {
        font-size: 16px;
    }

    .login-info-cols {
        flex-direction: column;
        gap: 20px;
    }

    .login-info-col strong {
        font-size: 15px;
    }

    .login-info-col ul li {
        font-size: 14px;
    }

    .login-info-list li {
        font-size: 14px;
    }

    #globalSearchLayer .search-layer-panel {
        top: 60px;
        height: auto;
        min-height: 470px;
        padding: 72px 20px 56px;
    }

    #globalSearchLayer .search-layer-dim {
        top: 60px;
    }

    #globalSearchLayer .search-layer-title {
        font-size: 32px;
        letter-spacing: -1.28px;
    }

    #globalSearchLayer .search-layer-form {
        margin-top: 32px;
        flex-direction: column;
        gap: 12px;
    }

    #globalSearchLayer .search-layer-input {
        flex: none;
        width: 100%;
        height: 58px;
        padding: 0 24px;
        font-size: 18px;
        line-height: 1.6;
        border-radius: 30px;
    }

    #globalSearchLayer .search-layer-submit {
        width: 100%;
        height: 56px;
        border-radius: 30px;
        font-size: 20px;
    }

    #globalSearchLayer .search-layer-keyword-wrap {
        margin-top: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    #globalSearchLayer .search-layer-keyword-title {
        font-size: 16px;
    }

    #globalSearchLayer .search-layer-keyword-list {
        gap: 10px;
    }

    #globalSearchLayer .search-layer-keyword {
        padding: 6px 14px;
        font-size: 15px;
        border-radius: 10px;
    }

    #globalSearchLayer .search-layer-close {
        right: 12px;
        top: 12px;
        width: 42px;
        height: 42px;
    }

    #header {
        height: 60px;
    }

    #header .logo {
        left: 20px;
        width: 180px;
        height: 32px;
    }

    #header .gnb {
        display: none;
    }

    #header .layout,
    #header .logo,
    #header .header-util {
        display: none;
    }

    #header .header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        padding: 0 20px;
    }

    #header .header-mobile .btn-mobile-menu,
    #header .header-mobile .btn-mobile-search {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    #header .header-mobile .btn-mobile-menu img,
    #header .header-mobile .btn-mobile-search img {
        width: 40px;
        height: 40px;
    }

    #header .header-mobile .logo-mobile {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 190px;
        height: 50px;
    }

    #header .header-mobile .logo-mobile a {
        display: block;
        height: 100%;
    }

    #header .header-mobile .logo-mobile img {
        height: 100%;
        width: auto;
    }

    .content-tab-wrap {
        margin: 20px 0;
    }

    .content-tab-wrap.single {
        margin: 20px 0 0;
    }

    .content-tab-wrap.single .content-tab {
        overflow-x: auto;
    }

    .content-tab-wrap.single .content-tab li a {
        padding: 8px 16px;
        font-size: 14px;
        white-space: nowrap;
    }

    .content-tab li a {
        padding: 10px 20px;
        border-radius: 8px 8px 0 0;
        font-size: 14px;
    }

    .page-title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 125px 0 24px;
    }

    .layout:has(.layout) .page-title-wrap {
        padding: 125px 20px 24px;
    }

    .page-title-left {
        width: 100%;
    }


    .page-title {
        font-size: 36px;
        font-weight: 700;
        letter-spacing: -1.44px;
        line-height: 1.3;
    }

    .breadcrumb {
        display: none;
    }

    .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin: 40px 0 60px;
    }

    .pagination-arrows {
        display: flex;
        gap: 8px;
    }

    .pagination-arrows a {
        width: 40px;
        height: 40px;
    }

    .pagination-arrows a img {
        width: 40px;
        height: 40px;
    }

    .pagination a {
        width: 40px;
        min-width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 18px;
        font-weight: 400;
        color: #222;
        letter-spacing: -0.72px;
        flex-shrink: 0;
    }

    .pagination a.active {
        background: #1C3456;
        font-weight: 700;
        color: #fff;
    }

    .info-box {
        margin: 15px 0;
        padding: 15px 20px;
        font-size: 15px;
    }

    .tbl-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tbl-wrap .tbl-basic th,
    .tbl-wrap .tbl-basic td {
        height: 60px;
        padding: 5px 10px;
        font-size: 14px;
    }

    .tbl-wrap .tbl-basic thead th {
        height: 50px;
    }

    .tbl-wrap .tbl-basic.scroll-x {
        min-width: 800px;
    }

    #footer {
        height: auto;
        padding: 60px 20px 40px;
    }

    #footer .footer-bg {
        left: 0;
        bottom: 0;
        top: auto;
        transform: none;
        width: 100%;
        height: 100%;
        background: url(/home/image/common/img_footer_bg_mobile.png) no-repeat center / cover;
    }

    #footer .footer-content {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

        #footer .footer-left {
        flex: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 0;
    }

    #footer .footer-sns {
        order: 1;
        grid-column: auto;
        grid-row: auto;
        display: flex;
        gap: 40px;
        margin-bottom: 30px;
    }

    #footer .footer-sns img {
        width: 40px;
        height: 40px;
    }

    #footer .footer-logo {
        order: 2;
        grid-column: auto;
        grid-row: auto;
        margin-bottom: 40px;
    }

    #footer .footer-logo img {
        height: 30px;
    }

    #footer .footer-link {
        order: 3;
        grid-column: auto;
        grid-row: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
        margin-bottom: 40px;
    }

    #footer .footer-right {
        order: 4;
        grid-column: auto;
        grid-row: auto;
        align-self: stretch;
        width: 100%;
        margin-bottom: 40px;
    }

    #footer .footer-link li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    #footer .footer-link li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    #footer .footer-link a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: -0.64px;
    }

    #footer .footer-link a.bold {
        font-weight: 700;
    }

    #footer .footer-info {
        order: 5;
        grid-column: auto;
        grid-row: auto;
        text-align: center;
    }

    #footer .footer-info p {
        font-size: 14px;
        letter-spacing: -0.56px;
    }

    .accordion-wrap {
        padding: 20px 0 60px;
    }

    .accordion-title {
        gap: 10px;
        padding: 20px 0;
        font-size: 18px;
    }

    .accordion-title::before {
        width: 24px;
        height: 24px;
    }

    .accordion-body {
        padding: 15px 0 30px 34px;
    }

    .accordion-body > p {
        font-size: 15px;
    }

    .accordion-sub-title {
        gap: 10px;
        padding: 12px 0;
        font-size: 16px;
    }

    .accordion-sub-title::before {
        width: 20px;
        height: 20px;
    }

    .accordion-sub-body {
        padding: 10px 0 15px 30px;
    }

    .accordion-sub-body > p {
        font-size: 14px;
    }

    .accordion-list > li {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .accordion-list > li::before {
        top: 0.6em;
    }

    .accordion-list > li strong {
        font-size: 14px;
    }

    .accordion-list > li p {
        font-size: 14px;
    }

    .download-box {
        margin-top: 30px;
        padding-top: 30px;
    }

    .download-box-title {
        font-size: 16px;
    }

    .download-box-list {
        grid-template-columns: 1fr;
    }

    .download-box-list::before {
        display: none;
    }

    .download-box-list > li:last-child {
        border-bottom: none;
    }

    .download-box-list > li a {
        padding: 15px;
        font-size: 14px;
    }

}

/* ========================================
   Sitemap Overlay
======================================== */
body.sitemap-open {
    overflow: hidden;
}

#siteSitemap.sitemap-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

#siteSitemap.sitemap-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

#siteSitemap .sitemap-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

#siteSitemap .sitemap-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 960px;
    margin: 0;
    background: #173557;
    background-size: auto 72px;
    padding: 130px 0 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    overflow-y: auto;
}

#siteSitemap .sitemap-close {
    position: absolute;
    right: 55px;
    top: 30px;
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: none;
    background: url(/home/image/common/icn_btn_close_green.svg) no-repeat center / contain;
    cursor: pointer;
}

#siteSitemap .sitemap-body {
    display: flex;
    justify-content: center;
    gap: 24px;
    background: url(/home/image/common/img_kj_logo_white.svg) no-repeat center 0 #173557;
    background-size: auto 72px;
    padding: 152px 0;
}

#siteSitemap .sitemap-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 196px;
}

#siteSitemap .sitemap-depth1-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1.12px;
    line-height: 160%;
    text-align: center;
}

#siteSitemap .sitemap-depth1-title a{
    color: #fff;
}

#siteSitemap .sitemap-depth2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

#siteSitemap .sitemap-depth2 > li {
    text-align: center;
}

#siteSitemap .sitemap-depth2 > li > a {
    font-size: 20px;
    font-weight: 400;
    color: #F7F7F7;
    letter-spacing: -0.8px;
    text-decoration: none;
}

#siteSitemap .sitemap-depth2 > li > a:hover {
    color: #94C22F;
}

#siteSitemap .sitemap-depth3 {
    margin-top: 4px;
    /* padding-left: 10px; */
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#siteSitemap .sitemap-depth3 a {
    font-size: 14px;
    color: #999;
    letter-spacing: -0.28px;
    text-decoration: none;
}

#siteSitemap .sitemap-depth3 a:hover {
    text-decoration: underline;
}

.form-radio-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.72px;
    cursor: pointer;
}

.form-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #b2b2b2;
    border-radius: 50%;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    flex: 0 0 20px;
    cursor: pointer;
}

.form-radio:checked {
    border-color: #01375a;
    background-image: radial-gradient(circle, #01375a 0 6px, transparent 6px);
    background-repeat: no-repeat;
    background-position: center;
}

.form-radio:focus-visible {
    outline: 2px solid #173557;
    outline-offset: 2px;
}

.form-radio-label .form-radio:checked + span {
    color: #01375a;
    font-weight: 700;
}

.form-check-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.72px;
    cursor: pointer;
}

.form-check {
    width: 20px;
    height: 20px;
    border: 2px solid #b2b2b2;
    border-radius: 50%;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    flex: 0 0 20px;
    cursor: pointer;
}

.form-check:checked {
    border-color: #01375a;
    background-image: radial-gradient(circle, #01375a 0 6px, transparent 6px);
    background-repeat: no-repeat;
    background-position: center;
}

.form-check:focus-visible {
    outline: 2px solid #173557;
    outline-offset: 2px;
}

.form-check-label .form-check:checked + span {
    color: #01375a;
    font-weight: 700;
}

@media screen and (max-width: 750px) {
    #siteSitemap .sitemap-panel {
        padding: 96px 0;
        max-height: 100%;
        overflow-y: auto;
    }

    #siteSitemap .sitemap-header {
        margin-bottom: 24px;
    }

    #siteSitemap .sitemap-title {
        font-size: 20px;
    }

    #siteSitemap .sitemap-close {
        right: 20px;
        top: 20px;
        width: 28px;
        height: 28px;
        background-size: contain;
    }

    #siteSitemap .sitemap-body {
        flex-direction: column;
        align-items: center;
        background-size: auto 40px;
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    #siteSitemap .sitemap-col {
        flex-direction: row;
        width: 100%;
        max-width: 300px;
        gap: 16px;
        padding-bottom: 24px;
    }

    #siteSitemap .sitemap-col:not(:last-child) {
        border-bottom: 1px solid #fff;
    }

    #siteSitemap .sitemap-depth1-title {
        font-size: 18px;
        width: 90px;
        text-align: left;
    }

    #siteSitemap .sitemap-depth2 {
        flex: 1;
        align-items: flex-start;
    }

    #siteSitemap .sitemap-depth2 > li {
        width: 100%;
        padding-bottom: 12px;
        text-align: left;
    }

    #siteSitemap .sitemap-depth2 > li:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #siteSitemap .sitemap-depth2 > li > a {
        font-size: 16px;
    }

    #siteSitemap .sitemap-depth3 {
        padding-left: 10px;
    }

    #siteSitemap .sitemap-depth3 a {
        font-size: 13px;
    }
}

@media screen and (max-width: 520px) {
    #siteSitemap .sitemap-panel {
        left: 0;
        right: 0;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    #siteSitemap .sitemap-body {
        padding-left: 16px;
        padding-right: 16px;
        gap: 20px;
    }

    #siteSitemap .sitemap-col {
        max-width: 100%;
        width: 100%;
    }
}

/* ========================================
   공유하기 버튼
======================================== */
.share-wrap {
    display: inline-flex;
    position: relative;
	margin-left: 3px;
}

.share-list {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 100;
}

.share-wrap.active .share-list {
    display: flex;
}

.share-list li {
    margin: 0;
}

.share-list button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s;
}

.share-list button:hover {
    transform: scale(1.1);
}

.share-list .facebook {
    background-color: #1877F2;
    background-image: url(/home/image/common/icn_share_facebook.svg);
}

.share-list .x {
    background-color: #000;
    background-image: url(/home/image/common/icn_share_x.svg);
}

.share-list .link {
    background-image: url(/home/image/common/icn_share_link.svg);
}

/* ========================================
   모달 팝업
======================================== */
body.modal-layer-open {
    overflow: hidden;
}

.modal-layer {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-layer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-layer-dim {
    position: absolute;
    inset: 0;
    background: rgba(34, 34, 34, 0.6);
}

.modal-layer-panel {
    position: relative;
    width: min(860px, calc(100% - 40px));
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    scrollbar-width: none;
    padding: 50px 60px 40px;
    border-radius: 24px;
    background: #fff;
}

.modal-layer-panel::-webkit-scrollbar {
    display: none;
}

.modal-layer-title {
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 700;
    color: #173557;
    letter-spacing: -1.28px;
    line-height: 1.4;
}

/* 모달 폼 */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-form-row {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 48px;
}

.modal-form-row.align-top {
    align-items: flex-start;
}

.modal-form-label {
    flex: 0 0 160px;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.72px;
    line-height: 1.6;
}

.modal-form-text {
    flex: 1;
    min-width: 0;
    font-size: 18px;
    color: #222;
    letter-spacing: -0.72px;
    line-height: 1.6;
}

.modal-form-field {
    flex: 1;
    min-width: 0;
}

.modal-form-field input,
.modal-form-field textarea {
    width: 100%;
    padding: 9px 16px;
    border: 1px solid #b2b2b2;
    border-radius: 16px;
    font-size: 18px;
    color: #222;
    letter-spacing: -0.72px;
    line-height: 1.6;
}

.modal-form-field input {
    height: 48px;
}

.modal-form-field input::placeholder,
.modal-form-field textarea::placeholder {
    color: #b2b2b2;
}

.modal-textarea-wrap {
    position: relative;
}

.modal-textarea-wrap textarea {
    height: 200px;
    resize: none;
}

.modal-char-count {
    position: absolute;
    right: 16px;
    bottom: 12px;
    font-size: 18px;
    color: #b2b2b2;
    letter-spacing: -0.72px;
}

.modal-consent {
    align-self: flex-end;
}

/* 모달 버튼 */
.modal-layer-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* 모달 팝업 - 모바일 */
@media screen and (max-width: 750px) {
    .modal-layer-panel {
        width: calc(100% - 24px);
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        padding: 24px 20px;
        border-radius: 16px;
    }

    .modal-layer-title {
        margin-bottom: 16px;
        font-size: 22px;
        letter-spacing: -0.88px;
    }

    .modal-form {
        gap: 12px;
    }

    .modal-form-row,
    .modal-form-row.align-top {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        min-height: auto;
    }

    .modal-form-label {
        flex: none;
        width: auto;
        padding: 0;
        font-size: 14px;
        line-height: 1.4;
    }

    .modal-form-text {
        flex: none;
        font-size: 14px;
        line-height: 1.4;
    }

    .modal-form-field {
        flex: none;
        width: 100%;
    }

    .modal-form-field input {
        height: 40px;
        padding: 0 12px;
        border-radius: 10px;
        font-size: 14px;
        line-height: 1.4;
    }

    .modal-form-field textarea {
        padding: 10px 12px;
        border-radius: 10px;
        font-size: 14px;
        line-height: 1.4;
    }

    .modal-textarea-wrap textarea {
        height: 160px;
    }

    .modal-char-count {
        right: 12px;
        bottom: 8px;
        font-size: 13px;
    }

    .modal-consent {
        align-self: flex-start;
    }

    .modal-consent.form-check-label,
    .modal-consent.form-radio-label {
        gap: 6px;
        font-size: 13px;
    }

    .modal-consent.form-check-label span,
    .modal-consent.form-radio-label span {
        transform: translateY(1px);
    }

    .modal-consent .form-check,
    .modal-consent .form-radio {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .modal-layer-actions {
        margin-top: 20px;
        gap: 10px;
    }

    .modal-layer-actions .btn-cancel,
    .modal-layer-actions .btn-gradient {
        flex: 1;
        padding: 8px 12px;
        font-size: 15px;
        border-radius: 24px;
    }
}

.empty-section {
    font-size: 20px;
    text-align: center;
	flex:1;
    padding:30px;
}
