
#page_wrap {
    position: relative;
}
#page_wrap.page01_01 .box-wrap {
    background: #eae7e3;
    padding: 50px;
}
#page_wrap.page01_01 .right-t {
    text-align: right;
    color: #6b3e6b;
    font-size: 22px;
    font-weight: 600;
}
#page_wrap.page01_01 .right-t p {
    font-size: 25px;
    font-weight: 600;
    color: #000;

}

#page_wrap.page01_01 .box-wrap .white-box {
    background: #fff;
    padding: 100px 70px;
    position: relative;
    margin-top: 45px;
}
#page_wrap.page01_01 .label-wrap {
    position: relative;
    display: inline-block;
    position: absolute;
    top: -30px;
    left: 30px;
}

#page_wrap.page01_01 .label-wrap .label {
    background: #6b3a6d;
    /* 보라색 */
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    padding: 15px 50px;
    position: relative;
    z-index: 10;
}

/* 꼬리(삼각형) */
#page_wrap.page01_01 .label-wrap .label::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 28px 0 0 20px;
    border-color: transparent transparent transparent #2e1a2f;

}

#page_wrap.page01_01 .box-wrap .white-box .main-title {
    text-align: center;
    font-size: 40px;
    color: #09375e;
    font-weight: 700;
    position: relative;
    display: block;
}
#page_wrap.page01_01 .box-wrap .white-box .main-title br {
    display: none;
}
#page_wrap.page01_01 .box-wrap .white-box .main-title::before {
    position: absolute;
    width: 90%;
    height: 1px;
    background: #000;
    content: '';
    margin-top: 56px;
}
#page_wrap.page01_01 .box-wrap .white-box .text {
    margin-top: 50px;
    font-size: 22px;
    color: #363636;
}
/* 블록 상·하단 라인 */
#page_wrap.page01_01 .box-wrap .white-box .text .points {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    padding: 28px 0;
    margin-top: 50px;
}

/* 리스트 리셋 */
#page_wrap.page01_01 .box-wrap .white-box .text .points-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 항목 스타일 */
#page_wrap.page01_01 .box-wrap .white-box .text .points-list li {
    position: relative;
    padding-left: 20px;
    font-size: 22px;
    line-height: 1.9;
    color: #111;
}

/* 항목 간격 */
#page_wrap.page01_01 .box-wrap .white-box .text .points-list li + li {
    margin-top: 4px;
}

/* 주황색 도트 */
#page_wrap.page01_01 .box-wrap .white-box .text .points-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.9em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff9a3b;
    transform: translateY(-50%);
}
#page_wrap.page01_01 .box-wrap .white-box .sign-wrap {
    display: flex;
    justify-content: end;
    align-items: end;
    margin-top: 50px;
}
#page_wrap.page01_01 .box-wrap .white-box .sign-wrap .sign-text {
    height: 50px;
    font-size: 20px;
    font-weight: 600;
    color: #3d5876;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}
#page_wrap.page01_01 .box-wrap .white-box .sign-wrap .sign-text .name {
    width: 160px;
    height: 60px;
    display: inline-block;
    background: url("../../img/sub/ssain.jpg");
    background-repeat: no-repeat;
    background-position: 50% 100%;
}
@media (max-width:600px) {
    #page_wrap.page01_01 .box-wrap .white-box .points-list li {
        font-size: 16px;
    }
}

#page_wrap.page01_02 .sub_txt {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    column-gap: 20px;
}
#page_wrap.page01_02 .sub_txt .img_li_box {
    border: 1px #dcdcdc solid;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
#page_wrap.page01_02 .sub_txt .img_li_box img {
    width: 100%;
    /* width: 180px; */
}
#page_wrap.page01_02 .sub_txt .img_li_box .ceo_info {
    padding-left: 35px;
    padding-right: 35px;
}
#page_wrap.page01_02 .sub_txt .img_li_box .ceo_info .ceo_info01 {
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin-bottom: 12px;
}
#page_wrap.page01_02 .sub_txt .img_li_box .ceo_info .ceo_info02 {
    font-size: 16px;
    line-height: 24px;
}

/* 탭 메뉴 */
/* =========================
   탭 메뉴 (정리본)
========================= */

/* 래퍼 */
.tabs-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    position: relative;
    margin-bottom: 55px;
}

/* 화살표 (PC) */
.tab-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #d7d7d7;
    background: #fff;
    color: #666;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s, opacity 0.15s;
}
.tab-arrow--left {
    left: -50px;
}
.tab-arrow--right {
    right: -50px;
}
.tab-arrow:hover {
    background: #1f5fbf;
    color: #fff;
    border-color: #1f5fbf;
}
.tab-arrow[disabled] {
    opacity: 0.35;
    pointer-events: none;
}

/* 캡슐형 트랙 */
.tabs-box {
    flex: 1 1 auto;
    overflow: hidden;
    border-radius: 14px;
    background: #f4f4f4;
}

/* 스크롤 영역 */
.tabs-scroller {
    display: flex;
    min-height: 62px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}
.tabs-scroller::-webkit-scrollbar {
    display: none;
}
.tabs-scroller.dragging {
    cursor: grabbing;
    user-select: none;
}

/* 탭 */
.tab {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    font-weight: 500;
    font-size: 18px;
    color: #909090;
    text-decoration: none;
    position: relative;
    transition: color 0.15s, background 0.15s;
    width: 25%;
    text-align: center;
    line-height: 22px;
}
.tab.active {
    background: #2b50b9;
    /* 활성 파랑 */
    color: #fff;
}
/* 활성 탭 라운드 */
/* .tabs-scroller .tab:first-child.active{ border-radius:14px 0 0 14px; }
.tabs-scroller .tab:last-child.active{  border-radius:0 14px 14px 0; } */
.tabs-scroller .tab.active {
    border-radius: 14px;
    box-shadow: 0 3px 5px rgba(17, 2, 153, 0.4);
}
/* 활성 다음 탭 경계선 제거(필요시) */
.tab.active + .tab::before {
    background: transparent;
}

/* 모바일: 화살표 숨김 + 여백 조정 */
@media (max-width:991px) {
    .tab-arrow {
        display: none;
    }
    .tabs-wrap {
        gap: 0;
    }
}

h2.title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

#page_wrap.page01_03 {}
/* 컨테이너 한 섹션 */
#page_wrap.page01_03 .box-wrap {}

/* 섹션 타이틀 */
#page_wrap.page01_03 .box-wrap .box-title {
    margin-top: 37px;
    margin-bottom: 16px;
    position: relative;

}
#page_wrap.page01_03 .box-wrap .box-title h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0d326f;
}
#page_wrap.page01_03 .box-wrap .box-title::before {
    content: "\F282";
    position: absolute;
    right: 10px;
    top: 10px;
    color: #000;
    font-family: 'bootstrap-icons';
}
/* 조항 박스 */
#page_wrap.page01_03 .box-wrap .box {
    position: relative;
    margin-bottom: 12px;
    border: 1px #dae2f8 solid;
    /* background: #f8fafe; */
    padding: 35px 45px;
    border-radius: 0.8em;
    /* font-size: 17px; */
    line-height: 28px;
}
/* #page_wrap.page01_03 .box-wrap .box {
    position: relative;
    margin-bottom: 12px;
    border: 1px #ddd solid;
    padding: 20px 35px 25px;
    border-radius: 0.8em;
    font-size: 17px;
    line-height: 28px;
} */

/* 조항 제목 (h4) */
#page_wrap.page01_03 .box-wrap .box > h4 {
    margin: 0 0 6px;
    font-size: 21px;
    font-weight: 600;
    color: #1e1e1e;
    /* 포인트 파랑 */
    line-height: 1.4;
    /* border-bottom: 1px #eeeeee solid; */
    /* border-bottom: 1px #e6ecfc solid; */
    padding-bottom: 16px;
    color: #2b50b9;
    position: relative;
}
#page_wrap.page01_03 .box-wrap .box > h4::before {
    /* position: absolute;
     width: 30px;
     height: 1px;
     background: #6480cc;
     content: '';
     margin-top: 36px; */
}
/* 본문 문장 */

/* 1단계 리스트 */
#page_wrap.page01_03 .box-wrap .box ul.num {
    margin: 18px 0 0 1.2em;
    padding: 0;
    list-style: decimal;
    /* ← 숫자 리스트 */
}
#page_wrap.page01_03 .box-wrap .box ul.num > li {
    margin: 2px 0 20px;
}
#page_wrap.page01_03 .box-wrap .box ul.num.non_mb li {
    margin-bottom: 6px;
}
/* 2단계 리스트 */
#page_wrap.page01_03 .box-wrap .box ul ul {
    margin-top: 4px;
    list-style: none;
}
#page_wrap.page01_03 .box-wrap .box ul.mb li {
    margin-bottom: 20px;
}
/* 숫자형 리스트를 쓰고 싶을 때(선택) */
#page_wrap.page01_03 .box-wrap .box ol {
    margin: 8px 0 0 1.4em;
    padding: 0;
    list-style: decimal;
}
#page_wrap.page01_03 .box-wrap .box ol li {
    margin: 2px 0 210px;
}

/* 강조 텍스트 */
#page_wrap.page01_03 .box-wrap .box strong {
    font-weight: 600;
    color: #000;
}

/* 링크(선택) */
#page_wrap.page01_03 .box-wrap .box a {
    color: #2b50b9;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* 반응형 */
@media (max-width: 991px) {
    #page_wrap.page01_03 .box-wrap {
        margin: 22px 0 32px;
    }
    #page_wrap.page01_03 .box-wrap .box-title h3 {
        font-size: 22px;
    }
    #page_wrap.page01_03 .box-wrap .box {
        padding: 16px;
    }
    #page_wrap.page01_03 .box-wrap .box > h4 {
        font-size: 17px;
    }
}
@media (max-width: 600px) {
    #page_wrap.page01_03 .box-wrap .box-title h3 {
        font-size: 20px;
    }
    #page_wrap.page01_03 .box-wrap .box {
        padding: 14px;
        border-radius: 8px;
    }
    #page_wrap.page01_03 .box-wrap .box > h4 {
        font-size: 16px;
    }
}
#page_wrap .table-basic thead th {
    background: #f9f9f9;
    font-size: 17px;
}
#page_wrap .table-basic tbody th {
    color: #000;
    font-size: 17px;
}
#page_wrap .table-basic tbody td {
    text-align: center;
    font-size: 17px;
}
#page_wrap.page05_01 .benner {
    position: relative;
}
#page_wrap.page05_01 .benner dl {
    position: absolute;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}
#page_wrap.page05_01 .benner dl dt {
    color: #fff;
    font-size: 19px;
    font-weight: 400;
    /* line-height: 24px; */
}
#page_wrap.page05_01 .benner dl dd {
    color: #fff;
    font-size: 29px;
    line-height: 36px;
    font-weight: 700;
}
#page_wrap.page05_01 .benner img {
    width: 100%;
}
#page_wrap.page05_01 .content .title {
    margin-top: 60px;
    border-bottom: 1px #ddd solid;
    padding-bottom: 20px;
    margin-bottom: 36px;
}
#page_wrap.page05_01 .content .title h3 {
    color: #000;
    font-size: 26px;
    font-weight: 700;
}
#page_wrap.page05_01 .content .title h3 span {
    background: url("../../img/sub/heat.png");
    background-repeat: no-repeat;
    background-position: 0 50%;
    padding-left: 42px;
    color: #f2669b;
}
#page_wrap.page05_01 .content .ssain {
    text-align: right;
    margin-top: 32px;
    color: #000;
    font-size: 15px;
}
#page_wrap.page05_01 .content .ssain span {
    font-family: 'Nanum Brush Script';
    font-weight: 590;
    padding-left: 16px;
    font-size: 38px;
}
#page_wrap ul.dot li {
    padding-bottom: 6px;
}
#page_wrap ul.dot li::before {
    content: "· ";
}
#page_wrap.page05_03 .box {
    display: flex;
}
/*
#page_wrap.page05_03 .box:last-child {
    margin-top: 90px;
}
*/
#page_wrap.page05_03 .box {
    margin-top: 90px;
}
#page_wrap.page05_03 .box .title {
    width: 42%;
    display: block;
    color: #0d326f;

}
#page_wrap.page05_03 .box .title p.year {
    font-family: 'Poppins', 'Noto Sans KR', sans-serif;
    font-size: 19px;
    color: #8a8a8a;
    font-weight: 600;
    /* border: 1px #3f68d6 solid; */
    /* background: #e9eef8; */
    /* color: #2b50b9; */
    /* padding: 2px 15px; */
    /* border-radius: 3em; */
    /* position: absolute; */
    margin-top: 20px;
    position: relative;
    display: block;
    color: #000;

}
#page_wrap.page05_03 .box .title p.year::before {
    position: absolute;
    width: 120px;
    height: 1px;
    background: #000;
    content: '';
    margin-top: 26px;
}
#page_wrap.page05_03 .box:last-child .title p.year::before {
    position: absolute;
    width: 76px;
    height: 1px;
    background: #2b50b9;
    content: '';
    margin-top: 26px;
}
#page_wrap.page05_03 .box .title p.year::after {
    content: "\F285";
    margin-left: 12px;
    font-family: 'bootstrap-icons';
    font-size: 12px;
}

#page_wrap.page05_03 table tbody th {
    font-family: 'Poppins', 'Noto Sans KR', sans-serif;
}
#page_wrap.page05_03 table tbody td:nth-child(3) {}
/*
#page_wrap.page05_04 table.last {
    margin-top: 40px;
}
*/
#page_wrap.page05_04 table {
    margin-top: 40px;
}
#page_wrap.page05_04 tbody td ul li::before {
    content: "· ";
}
#page_wrap.page05_04 .tip {
    margin-top: 20px;
    border: 1px #dae2f8 solid;
    background: #fbfcff;
    padding: 25px 34px;
    border-radius: 10px;
    text-align: center;
    color: #2b50b9;
}
#page_wrap.page05_07 .tip-box {
    background: #f7f7f7;
    border-radius: 13px;
    padding: 42px 55px;
    display: flex;
    margin-bottom: 40px;

}
#page_wrap.page05_07 .tip-box h3 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
}
#page_wrap.page05_07 .tip-box dl {
    padding-left: 40px;
    margin-left: 40px;
    position: relative;

}
#page_wrap.page05_07 .tip-box dl::before {
    content: "";
    width: 1px;
    height: 90%;
    background: #d2d2d2;
    position: absolute;
    left: 0;
    top: 0;

}

#page_wrap.page05_07 .tip-box dl dt {
    color: #000;
    position: relative;
    display: inline-block;
    font-weight: 600;
}
#page_wrap.page05_07 .tip-box dl dt::before {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000;
    content: '';
    margin-top: 26px;
}
#page_wrap.page05_07 .tip-box dl dd {
    margin-top: 12px;
    position: relative;
    font-size: 17px;
}
#page_wrap.page05_07 .tip-box dl dd::before {
    content: '· ';
}
#page_wrap.page05_07 .table-responsive {
    margin-top: 40px;
}
#page_wrap.page01_48 .box-wrap {
    margin-bottom: 30px;
}
#page_wrap.page01_48 .box-wrap h2 {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}
#page_wrap.page01_48 .box-wrap .box {
    width: 100%;
    height: 300px;
    /* 원하시는 높이 */

    /* 1. 바탕색 설정 (보통 흰색이나 투명) */
    background-color: #ffffff;

    /* 2. 격자 선 만들기 (가로선 + 세로선) */
    background-image:linear-gradient(#f2f2f2 1px, transparent 1px),
    /* 가로선 색상과 두께 */
    linear-gradient(90deg, #f2f2f2 1px, transparent 1px);
    /* 세로선 색상과 두께 */

    /* 3. 격자 칸 크기 조절 */
    background-size: 20px 20px;
    /* 가로 20px, 세로 20px 간격 */

    /* (옵션) 선이 박스 테두리와 딱 맞게 시작하도록 설정 */
    background-position: -1px -1px;

    /* (옵션) 로고 중앙 정렬 */
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    /* 박스 외곽선 */
}
#page_wrap.page01_48 .box-wrap .box.box02 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 50px 60px;
    height: auto;
}
#page_wrap.page04_49 .benner {
    position: relative;

}
#page_wrap.page04_49 .benner h1 {
    position: absolute;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}
#page_wrap.page04_49 section.section01 {
    margin-top: 50px;
    margin-bottom: 50px;
}
#page_wrap.page04_49 section.section01 h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}
#page_wrap.page04_49 .box-wrap .box-title {
    margin-top: 37px;
    margin-bottom: 16px;
    position: relative;

}
#page_wrap.page04_49 .box-wrap .box-title h3 {
    font-size: 21px;
    font-weight: 600;
    color: #0d326f;
}
#page_wrap.page04_49 .box-wrap .box-title::before {
    content: "\F282";
    position: absolute;
    right: 10px;
    top: 10px;
    color: #000;
    font-family: 'bootstrap-icons';
}
#page_wrap.page04_49 .box-wrap .box {
    position: relative;
    margin-bottom: 12px;
    border: 1px #dae2f8 solid;
    /* background: #f8fafe; */
    padding: 30px 35px;
    border-radius: 0.8em;
    /* font-size: 17px; */
    line-height: 28px;
}
#page_wrap.page04_49 .box-wrap .box p.tip {
    margin-top: 20px;
    font-weight: 500;
    color: #000;
}
#page_wrap.page04_49 .box-wrap .box ul > li > ul {
    padding-left: 20px;
    padding-top: 12px;
}
#page_wrap.page04_49 .box-wrap .box ul > li > ul > li::before {
    content: "";
}
#page_wrap.page04_49 .text-wrap {
    margin-top: 50px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}
#page_wrap.page04_49 .text-wrap .text {
    padding-right: 50px;
    font-size: 19px;
}
#page_wrap.page04_49 .text-wrap .text p {
    color: #000;
}
.f1200 * {
    box-sizing: border-box;
    word-break: keep-all;
}
.f1200 .kh-header {
    /* 배경 이미지를 꼭 넣어주세요 */
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.9), rgba(0, 45, 86, 0.7)), url("https://kh2.issacmall.com/layouts/default/img/main/index-visual00.jpg") no-repeat center/cover;
    padding: 160px 20px 120px;
    text-align: center;
    color: #ffffff;
    border-radius: 0 0 40px 40px;
    margin-bottom: 60px;
}
.f1200 .kh-header .subtitle {
    color: #86efac;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 5px 20px;
    border-radius: 30px;
}
.f1200 .kh-header .main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.f1200 .kh-header .congratulations {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.f1200 .kh-section {
    padding: 100px 20px;
}
.f1200 .section-header {
    text-align: center;
    margin-bottom: 70px;
}
.f1200 .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #002D56;
    line-height: 1.3;
    margin-bottom: 15px;
}
.f1200 .section-desc {
    color: #6b7280;
    font-size: 1.1rem;
}

.f1200 .activities {
    background-color: #f9fafb;
}
.f1200 .card-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); /* 정확히 4등분 */
    gap: 20px; 
    margin: 0 auto; 
}

.f1200 .card { 
    background: #ffffff; 
    padding: 40px 20px; /* 가로가 좁아지므로 패딩 조정 */
    border-radius: 24px; 
    text-align: center; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.f1200 .card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.f1200 .card .icon-bubble {
    width: 90px;
    height: 90px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 35% 65% 60% 40% / 55% 50% 50% 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
    transition: 0.4s;
}
.f1200 .card:hover .icon-bubble {
    background: #2563eb;
    color: #fff;
    rotate: 10deg;
}
.f1200 .card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
}
.f1200 .card p {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.6;
}

.f1200 .info-box-modern {
    background: #ffffff;
    padding: 70px 50px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 30px 60px -15px rgba(0, 45, 86, 0.15);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.f1200 .info-box-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #002D56, #3b82f6);
}

.f1200 .badge {
    display: inline-block;
    background: #fef3c7;
    color: #d97706;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
}
.f1200 .info-title-modern {
    color: #1f2937;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 800;
}
.f1200 .info-desc-modern {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 50px;
}

.f1200 .action-area-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.f1200 .qr-box-modern {
    text-align: center;
    background: #f3f4f6;
    padding: 20px;
    border-radius: 20px;
}
.f1200 .qr-img-placeholder {
    width: 140px;
    height: 140px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 15px;
    font-weight: 700;
    color: #d1d5db;
    border: 2px dashed #d1d5db;
}
.f1200 .qr-box-modern p {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}
.f1200 .divider {
    font-weight: 700;
    color: #9ca3af;
    font-size: 1.2rem;
}

.f1200 .btn-gradient {
    display: inline-block;
    background: linear-gradient(135deg, #002D56 0%, #2563eb 100%);
    /* 네이비 -> 블루 그라데이션 */
    color: #ffffff;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.5);
    /* 빛나는 그림자 */
    transition: 0.3s;
}
.f1200 .btn-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.7);
    filter: brightness(110%);
}
.f1200 .btn-tip {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

.f1200 .message-modern {
    text-align: center;
    background: #f0f9ff;
    /* 아주 연한 하늘색 배경 */
}
.f1200 .quote-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.f1200 .quote-mark {
    font-size: 10rem;
    color: #dbeafe;
    position: absolute;
    top: -80px;
    left: -50px;
    z-index: 0;
    opacity: 0.7;
    font-family: serif;
}
.f1200 blockquote {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    position: relative;
    z-index: 1;
    line-height: 1.5;
    margin: 0;
}
.f1200 .highlight {
    background: linear-gradient(to top, #bfdbfe 40%, transparent 40%);
}
/* 형광펜 효과 */
.f1200 cite {
    display: block;
    font-style: normal;
    font-size: 1.1rem;
    color: #6b7280;
    margin-top: 30px;
    font-weight: 600;
}

.f1200 .kh-footer-modern {
    background: #111827;
    color: #9ca3af;
    padding: 60px 20px;
    border-radius: 40px 40px 0 0;
}
.f1200 .footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.f1200 .footer-left h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.f1200 .footer-left p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.f1200 .footer-right {
    text-align: right;
}
.f1200 .chairman-title {
    font-size: 1rem;
    margin-bottom: 5px;
}
.f1200 .chairman-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}
    /* 오시는 길 */
.wiz_location #map p.sky {
    position: absolute;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 16px 48px 18px;
}

.wiz_location #map .root_daum_roughmap {
    width: 100%;
}

.wiz_location .table_wrap {
    margin-top: 40px;
}
.wiz_location .table_wrap table {
    border-top:2px #000 solid;
}
.wiz_location .table_wrap .title h2 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    font-family: 'Noto Sans KR';
}

.section.section_address.lst {
    display:none;
}
/* 오시는 길 마감 */
/* 모바일 반응형 */
@media (max-width: 768px) {
    .f1200 .kh-header .main-title {
        font-size: 2.5rem;
    }
    .f1200 .section-title {
        font-size: 2rem;
    }
    .f1200 .card-grid {
        grid-template-columns: 1fr;
    }
    .f1200 .action-area-modern {
        flex-direction: column;
        gap: 30px;
    }
    .f1200 .divider {
        display: none;
    }
    .f1200 .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        align-items: center;
    }
    .f1200 .footer-right {
        text-align: center;
    }
}
