/* main.css */
@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap");

@font-face {
    font-family: 'Busan';
    src: url('../../css/home/fonts/Busan.woff2') format('woff2'),
    url('../../css/home/fonts/Busan.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'S-CoreDream-3Light';
    src: url('../../css/home/fonts/S-CoreDream-3Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'S-CoreDream-5Medium';
    src: url('../../css/home/fonts/S-CoreDream-5Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'S-CoreDream-6Bold';
    src: url('../../css/home/fonts/S-CoreDream-6Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GmarketSansMedium';
    src: url('../../css/home/fonts/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

#wrap {
    min-height: 100vh;
    letter-spacing: -0.5px;
}

#mHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

#mHeader > .header {
    position: relative;
    min-width: 1740px;
    height: 100%;
    background-color: #fff;
}

/* 툴팁 */
#fp-nav {
    margin-top: 0;
}

#fp-nav ul li .fp-tooltip {
    color: #1e2c5d;
    top: 50%;
    margin-top: -8px;
    font-size: 13px;
    overflow: visible;
    visibility: hidden;
    opacity: 0;
    text-align: right;
    line-height: 15px;
}

#fp-nav ul li .fp-tooltip.fp-right {
    right: 28px;
}

#fp-nav ul li:hover .fp-tooltip {
    visibility: visible;
    opacity: 1;
}

.mContent {
    left: 0;
    transition: 1s;
}

#skipnavi {
    position: absolute;
    top: -1px;
    left: 0;
    background-color: #333;
    z-index: 999999;
}

#skipnavi a {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 25px;
    margin-top: -100px;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    background: #000;
}

#skipnavi a:link {
    color: #333;
}

#skipnavi a:focus {
    margin-top: 0;
    text-decoration: underline;
    color: #fff;
}

/*** 현재위치 ***/
.lnb_wrap {
    width: 100%;
    padding: 0 5%;
    margin-top: 111px;
    height: 50px;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.lnb_wrap .container {
    padding: 0;
}

.lnb_right {
    display: flex;
    justify-content: flex-end;
    /*justify-content: flex-start; 왼쪽 정렬 */
    align-items: center;
    height: 100%;
    gap: 10px; /* 메뉴 간격 */
}

.lnb_item {
    font-size: 14px;
    font-weight: 600;
    height: 50px;
    line-height: 50px;
    white-space: nowrap;
    color: #333;
}

.lnb_wrap .home {
    width: 17px;
    text-align: center;
    background-image: url("../../images/home/home.svg"); /* 아이콘 이미지 경로 설정 */
    background-size: contain; /* 이미지 크기 맞추기 */
    background-repeat: no-repeat; /* 이미지 반복 방지 */
    display: inline-block; /* 텍스트를 표시할 필요 없으므로 inline-block으로 변경 */
    height: 17px; /* 이미지 높이 설정 */
}

.lnb_wrap .home:hover {
    transform: rotateY(180deg);
    transition: all 0.2s linear;
}

.dder {
    width: 1px;
    height: 16px;
    background-color: #ddd;
    margin: 0 15px;
}

/*** 현재위치 end ***/

/* 서브컨텐츠 */
#subCont {
    display: block;
    overflow: hidden;
    margin: 0;
    min-height: 600px;
}

#subCont .inner {
    position: relative;
    padding: 0 5%;
    margin: auto;
    width: 100%;
    display: flex;
    gap: 40px;
}

/* 좌측 메뉴 */
/* 전체 왼쪽 메뉴 컨테이너 */
#subCont .page-left {
    width: 250px;
    flex-shrink: 0;
    margin-right: 30px;
}

/* 상단 타이틀 영역 */
#subCont .left-top {
    border-radius: 16px;
    background-image: linear-gradient(135deg, #0068b7, #003a6b),
    url("../../images/home/bg_menu_back.png");
    background-position: center, right bottom; /* 그라데이션은 중앙, 무늬는 오른쪽 하단 */
    background-size: cover, 80px 80px; /* 그라데이션은 영역 채움, 무늬는 80x80px (예시) */
    background-repeat: no-repeat; /* 무늬가 반복되지 않도록 설정 */
    background-blend-mode: overlay; /* 그라데이션과 무늬를 섞는 방식 (선명도 조절) */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

#subCont .page-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    padding: 30px 25px;
    font-family: "Pretendard", sans-serif;
    position: relative;
}

#subCont .page-name:after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 25px;
    width: 40px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

/* 메뉴 리스트 영역 */
#subCont .m-snb {
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

#subCont .m-snb ul.left-menu {
    padding: 10px 0;
}

#subCont .m-snb ul.left-menu > li {
    margin: 5px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

#subCont .m-snb ul.left-menu > li.on {
    background: #f5f9ff;
}

/* 선택된 메뉴 스타일 */
#subCont .m-snb ul.left-menu > li.on > a {
    color: #0068b7;
    font-family: "GmarketSansMedium";
    font-weight: 600;
    position: relative;
    padding-left: 50px;
    background: #e8f3ff url("../../images/home/check_ic_b.png") left 20px center no-repeat;
}

/* 기본 메뉴 스타일 */
#subCont .m-snb ul.left-menu li a {
    display: block;
    font-size: 16px;
    padding: 15px 15px 9px 20px;
    font-family: "GmarketSansMedium";
    color: #555;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* 호버 스타일 - 중요: .on 클래스에는 적용되지 않도록 수정 */
#subCont .m-snb ul.left-menu > li:not(.on) a:hover {
    background: #f5f9ff;
    color: #0068b7; /* 로고 색상으로 변경 */
}

/* 선택된 메뉴의 호버 스타일 - 배경만 변경하고 아이콘은 유지 */
#subCont .m-snb ul.left-menu > li.on > a:hover {
    background: #e8f3ff url("../../images/home/check_ic_b.png") left 20px center no-repeat;
    color: #0068b7;
}

#subCont .m-snb ul.depth3 {
    display: block;
    overflow: hidden;
    background: #f6f8f9;
    padding: 15px 10px 15px 50px;
}

#subCont .m-snb ul.depth3 li a {
    position: relative;
    font-size: 16px;
    display: block;
    padding: 8px 0;
}

#subCont .m-snb ul.depth3 li.on a {
    text-decoration: underline;
}

#subCont .m-snb ul.depth3 li a:hover {
    text-decoration: underline;
}

#subCont .m-snb ul.depth3 li.on a::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 3px;
    background: #1b61c0;
    left: -20px;
    top: 17px;
}

/* 우측컨텐츠*/
#subCont .page-right {
    flex-grow: 1; /* 남은 공간 차지 */
    padding-bottom: 60px;
}

#subCont .page-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

#subCont .page-right .dep3_tt {
    padding-left: 10px;
    font-size: 24px;
    color: #1b61c0;
}

.sub-container {
    width: 100%;
    max-width: 1350px; /* 또는 100% 가능 */
    margin: 0 auto;
    margin-left: 0;
    padding: 0 20px; /* 좌우 여백 */
    box-sizing: border-box;
}

/*.sub-container {
  width: 100%;
  max-width: 1400px;   
  margin-left: 0;
  margin-right: auto;
  box-sizing: border-box;
  padding: 0 40px;     
}*/

.pd-cont {
    display: block;
    /*padding: 95px 5%;*/
    box-sizing: border-box;
}

.pd-cont-2 {
    display: block;
    padding: 0 5%;
    box-sizing: border-box;
}

.pd-cont-4 {
    display: block;
    width: 100%;
    max-width: 1460px;
    margin: auto;
    padding: 95px 0;
    min-height: 400px;
    box-sizing: border-box;
}

.bg_01 {
    position: relative;
    background: url(../../images/home/bg_sub.png);
}

#sub_top {
    text-align: left;
    margin-bottom: 40px;
}

#sub_top .sub_title {
    top: 20px;
    position: relative;
    font-family: "GmarketSansMedium";
    font-size: 28px;
    font-weight: 700;
}

#sub_top .sub_title::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0068b7;
    margin-left: 7px;
}

/*footer*/
#footer {
    position: relative;
    display: block;
    clear: both;
}

#footer .foot-head {
    background: #021826;
}

#footer .foot-head ul {
    display: block;
    padding-left: 10px;
}

#footer .foot-head > ul > li {
    float: left;
    width: auto;
    position: relative;
    padding-left: 10px;
}

#footer .foot-head > ul > li:last-child {
    width: 16%;
    float: right;
    padding: 0 20px;
}

#footer .foot-head > ul > li > a {
    display: block;
    font-size: 16px;
    color: #fff;
    padding: 20px 10px;
}

#footer .foot-head > ul > li:last-child > a::after {
    content: ""; /* content가 필요 없으므로 빈 문자열로 */
    background-image: url("../../images/home/link_icon.svg");
    background-size: contain; /* 아이콘 크기 조정 */
    background-repeat: no-repeat; /* 반복되지 않게 */
    position: absolute;
    right: 30px;
    width: 20px; /* 아이콘 크기 설정 */
    height: 20px; /* 아이콘 크기 설정 */
    top: 50%; /* 위에서 아래로 가운데 정렬 */
    transform: translateY(-50%); /* 수직 가운데 맞추기 */
}

#footer .foot-head ul li a:hover,
#footer .foot-head ul li a:focus {
    color: #c0cfd8;
}

#footer .foot-head .quick_menu {
    background: #041f30;
}

#footer .foot-head .quick_menu > .quick_list {
    display: none;
}

#footer .foot-head .quick_menu.on > .quick_list {
    position: absolute;
    display: block;
    bottom: 50px;
    right: 0;
    padding: 0;
    width: 100%;
    z-index: 999;
    background: #041f30;
}

#footer .foot-head .quick_menu.on > .quick_list li {
    width: 100%;
    border-bottom: 1px solid #0c2f45;
}

#footer .foot-head .quick_menu.on > .quick_list li a {
    display: block;
    color: #fff;
    padding: 10px;
    font-size: 14px;
}

#footer .foot-body {
    display: block;
    overflow: hidden;
    padding: 45px 0;
}

#footer .foot-body .logo_wrap {
    float: left;
    height: auto;
    margin-right: 75px;
}

#footer .foot-body .logo_wrap > .f-logo {
    display: block;
    background: url(../../images/home/copy_logo.png) no-repeat;
    width: 254px;
    height: 48px;
    position: relative;
}

#footer .foot-body .foot-info {
    float: left;
    top: 5px;
}

#footer .foot-body .foot-info li {
    display: inline-block;
    font-size: 16px;
    line-height: 130%;
    color: #666666;
    padding-right: 25px;
}

#footer .foot-body .copyright {
    font-size: 16px;
    line-height: 130%;
    color: #666666;
    margin-top: 7px;
}

/*SNS채널연결*/
/* Social Icons */
#footer .foot-body .social-icons {
    float: right;
    margin-right: 10px;
}

#footer .foot-body .social-icons a {
    margin-left: 15px;
}

#footer .foot-body .social-icons img {
    width: 39px;
    height: 39px;
    transition: transform 0.3s ease;
}

#footer .foot-body .social-icons img:hover {
    transform: scale(1.1);
}

/*리스트 스타일*/
.list_head {
    display: block;
    overflow: hidden;
    /*margin-bottom: 25px;*/
}

.list_head .list_total {
    float: left;
    font-size: 18px;
    padding-top: 15px;
}

.list_total span.cate {
    position: relative;
    font-weight: 700;
    color: #222;
    padding-right: 10px;
}

.list_total span.cate::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 1px;
    height: 10px;
    background: #e2e2e2;
}

.list_total span.num {
    font-weight: 700;
    color: #222;
    padding-left: 5px;
}

.list_head .search-box {
    float: right;
    right: 50px;
    border-bottom: 2px solid #ddd;
    padding: 5px 0;
    background: #fff;
}

.list_body .btn-area {
    text-align: right;
}

.sw {
    display: none;
}

/*tb_list_01 :: 게시판리스트*/
#tb_list_01 {
    width: 100%;
    border-top: 2px solid #222;
    background: #fff;
}

#tb_list_01 thead th {
    position: relative;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    font-weight: 700;
    padding: 15px 10px;
    color: #666;
    white-space: nowrap;
}

#tb_list_01 thead th::after {
    content: "";
    position: absolute;
    right: 0;
    top: 17px;
    width: 2px;
    height: 15px;
    background: #dddddd;
}

#tb_list_01 thead th:last-child::after {
    content: "";
    position: absolute;
    right: 0;
    top: 17px;
    width: 0px;
    height: 0px;
}

#tb_list_01 thead tr {
    border-bottom: 1px solid #ddd;
}

#tb_list_01 tbody tr {
    border-bottom: 1px solid #ddd;
}

#tb_list_01 tbody tr:hover {
    background: #f5f6f8;
}

#tb_list_01 tbody th {
    font-size: 16px;
    font-weight: 600;
}

#tb_list_01 tbody td.tt a:hover {
    color: #0068b7;
}

#tb_list_01 tbody td {
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    padding: 17px 10px;
    white-space: nowrap;
}

#tb_list_01 tbody td a {
    display: block;
    max-width: 600px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    font-size: 16px;
}

#tb_list_01 tbody td.tt {
    text-align: left;
    font-size: 16px;
    color: #222;
    font-weight: 700;
    max-width: 600px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#tb_list_01 .t_stt {
    background: #ff7800;
    color: #fff;
    font-weight: 500;
    padding: 3px 8px 5px;
    border-radius: 3px;
    font-size: 12px;
    line-height: 100%;
}

#tb_list_01 tbody td.tt span {
    position: relative;
}

#tb_list_01 tbody td span.link::after {
    content: url(../../images/home/i_link.png);
    position: relative;
    padding-left: 10px;
    top: 2px;
}

#tb_list_01 tbody td span.new {
    font-size: 0;
    text-indent: -9999px;
}

#tb_list_01 tbody td span.new::after {
    content: url(../../images/home/i_new.png);
    position: relative;
    padding-left: 10px;
    top: 4px;
}

#tb_list_01 tbody td span.private {
    font-size: 0;
    text-indent: -9999px;
}

#tb_list_01 tbody td span.private::after {
    content: url(../../images/home/i_private.png);
    position: relative;
    padding-left: 10px;
    top: 4px;
}

#tb_list_01 span.selection,
#tb_list_01 span.available {
    font-size: 16px;
    color: #c8005f;
    padding: 8px 14px;
    border: 1px solid #c8005f;
    font-weight: 700;
}

#tb_list_01 span.taken,
#tb_list_01 span.closed {
    font-size: 16px;
    color: #98999a;
    padding: 8px 14px;
    border: 1px solid #98999a;
    font-weight: 700;
}

/*게시판검색*/
.search-box {
    float: right;
    border-bottom: 2px solid #ddd;
    padding: 5px 0;
    background: #fff;
    margin-bottom: 30px;
}

.search-box .btn-area {
    text-align: right;
}

.btn-search-list {
    text-indent: -9999px;
    background: url(../../images/home/bt_search.png) center center no-repeat;
}

.btn-search-list:active,
.btn-search-list:focus {
    color: #fff;
    outline: none;
}

/*페이징*/
#paging_wrap {
    clear: both;
    display: block;
    overflow: hidden;
}

#paging_wrap .paging {
    margin-top: 30px;
    text-align: center;
    font-size: 0;
}

#paging_wrap .paging a {
    display: inline-block;
    width: 34px;
    border: 1px solid transparent;
    font-size: 18px;
    line-height: 34px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}

#paging_wrap .paging a + a {
    margin-left: 8px;
}

#paging_wrap .paging a.active {
    background: #222;
    width: 34px;
    height: 34px;
    color: #fff;
    font-weight: bold;
}

#paging_wrap .paging .nav {
    width: 30px;
    height: 30px;
    background: #fff;
    line-height: 30px;
}

#paging_wrap .paging .prev_10 {
    background: url(../../images/home/pg_arr_10_prev.png) center center no-repeat;
}

#paging_wrap .paging .next_10 {
    background: url(../../images/home/pg_arr_10_next.png) center center no-repeat;
}

#paging_wrap .paging .prev {
    background: url(../../images/home/pg_arr_prev.png) center center no-repeat;
}

#paging_wrap .paging .next {
    background: url(../../images/home/pg_arr_next.png) center center no-repeat;
}

/*공지사항 상세*/
#view_01 .view_head {
    border-top: 2px solid #222;
}

#view_01 .view_head .title_info {
    padding: 25px 35px;
    border-bottom: 1px solid #dddddd;
}

#view_01 .view_head span.due {
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    color: #c8005f;
    padding: 10px 14px;
    border: 1px solid #c8005f;
    vertical-align: top;
    margin-right: 10px;
}

#view_01 .view_head span.closed {
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    color: #98999a;
    padding: 10px 14px;
    border: 1px solid #98999a;
    vertical-align: top;
    margin-right: 10px;
}

#view_01 .view_head h2.vtitle {
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 20px;
    font-weight: 700;
}

#view_01 .view_head .vtitle-info {
    font-size: 14px;
    line-height: 14px;
}

#view_01 .view_head .vtitle-info li {
    float: left;
    padding: 0 16px;
    border-right: 1px solid #ddd;
}

#view_01 .view_head .vtitle-info li:first-child {
    padding-left: 0;
}

#view_01 .view_head .vtitle-info li:last-child {
    border-right: 0;
}

#view_01 .view_head .ct {
    font-weight: 700;
    color: #222;
}

#view_01 .view_head .txt {
    color: #666;
    padding-left: 10px;
}

#view_01 .attatch_list {
    overflow: hidden;
    padding: 15px 35px;
    border-bottom: 1px solid #dddddd;
    background: #f5f6f8;
}

#view_01 .attatch_list .ilbl {
    float: left;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    color: #222;
    padding-right: 20px;
    border-right: 1px solid #ddd;
}

#view_01 .attatch_list .board-view-filelist {
    float: left;
    padding-left: 20px;
}

#view_01 .attatch_list .board-view-filelist li a {
    position: relative;
    display: block;
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 14px;
    color: #222;
    font-weight: 500;
}

#view_01 .attatch_list .board-view-filelist li a:hover {
    text-decoration: underline;
}

#view_01 .attatch_list .board-view-filelist li a::before {
    content: url(../../images/home/i_file.png);
    position: absolute;
    top: 0;
    left: 0;
}

#view_01 .attatch_list .board-view-filelist li:last-child a {
    margin-bottom: 0;
}

#view_01 .view_body {
    padding: 25px 30px;
    font-size: 16px;
    line-height: 150%;
    border-bottom: 1px solid #dddddd;
}

#view_01 .view_body img {
    justify-content: center;
    object-fit: cover;
    padding: 20px;
}

#view_01 .view_foot {
    border-bottom: 1px solid #dddddd;
    margin-bottom: 45px;
}

#view_01 .view_foot ul {
    position: relative;
}

#view_01 .view_foot ul:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 51px;
    background: #ddd;
    transform: translateY(-50%);
}

#view_01 .view_foot ul li {
    width: 50%;
    height: auto;
    box-sizing: border-box;
    float: left;
}

#view_01 .view_foot ul li.prev {
    text-align: left;
}

#view_01 .view_foot ul li a {
    display: block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 20px 100px 20px 10px;
}

#view_01 .view_foot ul li.prev a {
    padding: 25px 10px 25px 80px;
}

#view_01 .view_foot ul li a .ico {
    position: absolute;
    top: 0;
    display: block;
    overflow: hidden;
    width: 100px;
    height: 100%;
    transition: all 0.3s ease;
}

#view_01 .view_foot ul li.prev .ico {
    left: 0;
}

#view_01 .view_foot ul li a .ico:after {
    content: "";
    display: block;
    position: absolute;
    width: 36px;
    height: 19px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../../images/home/board_arr_spr.png) no-repeat;
}

#view_01 .view_foot ul li.prev .ico:after {
    background-position: 0 0;
    margin: auto;
}

#view_01 .view_foot ul li a .subject {
    display: block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.2;
    color: #222;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 0;
}

#view_01 .view_foot ul li a .lbl {
    display: block;
    color: #222;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: -0.05em;
    line-height: 130%;
    margin: 5px 0 0;
}

#view_01 .view_foot ul li.next {
    text-align: right;
}

#view_01 .view_foot ul li.next a {
    padding: 25px 80px 25px 10px;
}

#view_01 .view_foot ul li.next .ico {
    right: 0;
}

#view_01 .view_foot ul li.next .ico:after {
    background-position: -46px 0;
    margin: auto;
}

/*버튼*/
.board-view-btns {
    text-align: center;
    margin-top: 70px;
}

.btn-list {
    background: url(../../images/home/i_list.png) left 60px center no-repeat;
    border: 1px solid #e9e9e9;
    padding: 20px 60px 20px 90px;
    font-weight: 700;
    text-align: center;
}

.btn-list:hover {
    background: #0068b7 url(../../images/home/i_list_w.png) left 60px center no-repeat;
    border: 1px solid #034d85;
    color: #fff;
}

/*뉴스레터신청*/
#newsletter .suggest-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #f5f6f8;
    padding: 30px 40px;
    border-radius: 20px;
    overflow: hidden;
    flex-wrap: wrap; /* 반응형 대비 */
}

/* 이미지 */
#newsletter .suggest-box .newsletter-img {
    width: 160px;
    height: auto;
    flex-shrink: 0;
    margin-right: 40px;
}

/* 텍스트 박스 */
#newsletter .txt-box {
    flex: 1;
    background: #fff;
    padding: 30px 200px 30px 70px;
    border-radius: 30px 0 0 0;
    position: relative;
    min-width: 0;
    box-sizing: border-box;
    margin-right: 10px;
}

/* 타이틀 */
#newsletter .txt-box .tt {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    padding-bottom: 15px;
    color: #222;
    border-bottom: 2px dotted #eee;
    word-break: keep-all;
}

/* 설명 */
#newsletter .txt-box .dt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    padding-top: 15px;
}

/* 버튼 위치 */
#newsletter .txt-box .btn-area {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* 버튼 */
.btn-register {
    width: 220px;
    color: #fff;
    padding: 16px 30px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    background: #c8005f url(../../images/home/i_arrow.png) right 20px center no-repeat;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-register:hover {
    background: #d00565 url(../../images/home/i_arrow.png) right 15px center no-repeat;
    transition: all 0.3s ease-in-out;
}

/*뉴스레터보기*/
.guide_box {
    position: relative;
    padding: 60px 60px 60px 150px;
    background: #f5f6f8 url(../../images/home/i_check.png) top 50px left 60px no-repeat;
}

.guide_box .m_txt {
    font-size: 24px;
    line-height: 130%;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.guide_box .m_txt2 {
    font-size: 24px;
    line-height: 130%;
    font-weight: 700;
    color: #0d2b58;
    margin-bottom: 5px;
}

.guide_box .s_txt {
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 20px;
}

.guide_box .d_list {
    display: block;
    padding-left: 20px;
}

.guide_box .d_list li {
    font-size: 16px;
    line-height: 150%;
    list-style: decimal;
}

/*뉴스레터필터*/
.newsletter-filter {
    padding: 40px 50px;
    background: #f5f6f8;
    margin-bottom: 45px;
    display: flex;
    align-items: flex-start; /* 위쪽 정렬 */
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-icon {
    position: absolute;
    top: 35px;
    left: 60px;
    width: 32px;
    height: 32px;
    pointer-events: none;
}

/* 텍스트 영역: 뉴스레터 선택 + 안내문구 */
.txt-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 180px; /* 넉넉히 확보 */
    gap: 6px;
}

.m_txt {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.guide-text {
    font-size: 14px;
    color: #666;
    line-height: 1.3;
}

/* 셀렉트박스들 */
.select-box {
    max-width: 220px;
    position: relative;
    font-size: 16px;
}

.select-box {
    position: relative; /* 기준점 반드시 */
    width: 100%;
    margin-bottom: 15px;
}

.select-box select {
    width: 100%;
    font-size: 15px;
    padding: 10px 40px 10px 12px; /* 오른쪽 여백 확보 */
    line-height: 1.2;
    border: 2px solid #ddd;
    border-radius: 8px;
    appearance: none;
    background-color: #fff;
}

.select-box::after {
    content: "▼";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #007fc8;
    pointer-events: none;
    z-index: 2; /* 혹시 다른 요소에 가려지면 추가 */
}

/* 뉴스레터 미리보기 영역 */
.newsletter-preview {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    position: relative;
    margin-bottom: 100px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-preview img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/*포토뉴스*/

.photo-news {
    padding: 20px;
    width: 100%;
    display: block; /* flex를 없애고 block으로 변경 */
}

/* 뉴스 항목 스타일 */
.news-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    float: left; /* 왼쪽 정렬을 위한 float 설정 */
    margin-right: 20px; /* 항목 사이에 여백 추가 */
    height:330px;
}

/* 이미지 스타일 */
.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* 뉴스 내용 영역 */
.news-details {
    padding: 15px;
}

.news-details h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.news-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.news-summary {
    font-size: 15px;
    color: #555;
}

/* 마우스 오버 효과 */
.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/*자료실*/
/*list style*/
#list_01 {
    border-top: 2px solid #222;
    border-bottom: 1px solid #ddd;
}

#list_01 .list_wrap {
    width: calc(100% + 20px);
    padding: 35px 0;
    margin-left: -10px;
    margin-right: 10px;
}

#list_01 .list_item {
    position: relative;
    float: left;
    width: calc(33.3% - 20px);
    margin: 10px;
    box-sizing: border-box;
    background: #fff;
}

#list_01 .list_item a {
    display: block;
    border: 1px solid #ddd;
    padding: 50px 40px;
}

#list_01 .list_item .category {
    font-size: 16px;
    line-height: 130%;
    color: #c8005f;
    font-weight: 700;
    margin-bottom: 8px;
}

#list_01 .list_item .category2 {
    font-size: 16px;
    line-height: 130%;
    color: #0d2b58;
    font-weight: 700;
    margin-bottom: 8px;
}

#list_01 .list_item .title {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 22px;
    line-height: 130%;
    color: #222;
    font-weight: 700;
    margin-bottom: 40px;
}

#list_01 .list_item ul.info li {
    float: left;
    border-right: 1px solid #ddd;
    font-size: 16px;
    line-height: 16px;
    padding: 0 8px;
}

#list_01 .list_item ul.info li:first-child {
    padding-left: 0;
}

#list_01 .list_item ul.info li:last-child {
    border-right: 0;
}

#list_01 .list_item .btn_img {
    opacity: 0;
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #c8005f url(../../images/home/i_arrow.png) center center no-repeat;
    width: 50px;
    height: 50px;
    border-radius: 100px;
}

#list_01 .list_item .btn_img2 {
    opacity: 0;
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #0d2b58 url(../../images/home/i_arrow.png) center center no-repeat;
    width: 50px;
    height: 50px;
    border-radius: 100px;
}

#list_01 .list_item a:hover .btn_img {
    opacity: 1;
    transition: all 0.5s ease;
}

#list_01 .list_item2 {
    position: relative;
    float: left;
    width: calc(33.3% - 20px);
    margin: 10px;
    box-sizing: border-box;
    background: #fff;
}

#list_01 .list_item2 a {
    display: block;
    border: 1px solid #ddd;
    padding: 30px 40px;
}

#list_01 .list_item2 .category {
    font-size: 16px;
    line-height: 130%;
    color: #0d2b58;
    font-weight: 700;
    margin-bottom: 8px;
}

#list_01 .list_item2 .title {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 22px;
    line-height: 130%;
    color: #222;
    font-weight: 700;
    margin-bottom: 20px;
}

#list_01 .list_item2 .title1 {
    display: inline-block;
    width: 100%;
    white-space: normal; /* 여러 줄로 텍스트가 나눠지게 함 */
    overflow: auto; /* 내용이 길어지면 스크롤바가 생기도록 설정 */
    font-size: 22px;
    line-height: 130%; /* 줄간격 조정 */
    color: #222;
    font-weight: 700;
    height: 65px; /* 고정된 높이 설정 */
}

#list_01 .list_item2 .title2 {
    display: inline-block;
    width: 100%;
    white-space: normal; /* 여러 줄로 텍스트가 나눠지게 함 */
    overflow: auto; /* 내용이 길어지면 스크롤바가 생기도록 설정 */
    font-size: 20px;
    line-height: 130%; /* 줄간격 조정 */
    color: #222;
    font-weight: 700;
    height: 65px; /* 고정된 높이 설정 */
}

#list_01 .list_item2 ul.info li {
    float: left;
    border-right: 1px solid #ddd;
    font-size: 16px;
    line-height: 16px;
    padding: 0 8px;
}

#list_01 .list_item2 ul.info li:first-child {
    padding-left: 0;
}

#list_01 .list_item2 ul.info li:last-child {
    border-right: 0;
}

#list_01 .list_item2 .btn_img {
    opacity: 0;
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #0d2b58 url(../../images/home/i_arrow.png) center center no-repeat;
    width: 50px;
    height: 50px;
    border-radius: 100px;
}

#list_01 .list_item2 a:hover .btn_img {
    opacity: 1;
    transition: all 0.5s ease;
}

#list_01 .list_item2 .btn_img1 {
    opacity: 0;
    position: absolute;
    bottom: 20px;
    right: 30px;
    background: #0d2b58 url(../../images/home/i_arrow.png) center center no-repeat;
    width: 40px;
    height: 40px;
    border-radius: 100px;
}

#list_01 .list_item2 a:hover .btn_img1 {
    opacity: 1;
    transition: all 0.5s ease;
}

/*자료실상세*/
.tit_03 {
    position: relative;
    font-size: 20px;
    line-height: 20px;
    padding-left: 13px;
    color: #222;
    font-weight: 700;
    margin-bottom: 20px;
}

.tit_03::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 19px;
    background: #0d2b58;
    left: 0;
}

#view_02 .view_head {
    border: 10px solid #f5f6f8;
    padding: 25px 40px 25px 40px;
    margin-bottom: 50px;
    position: relative;
}

#view_02 .view_head .title_info .category {
    display: inline-block;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 15px;
    font-weight: 700;
    color: #c8005f;
}

#view_02 .view_head .title_info .category2 {
    display: inline-block;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #0d2b58;
}

#view_02 .view_head span.selection {
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    color: #c8005f;
    padding: 10px 14px;
    border: 1px solid #c8005f;
    vertical-align: top;
    margin-right: 10px;
}

#view_02 .view_head span.taken {
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    color: #98999a;
    padding: 10px 14px;
    border: 1px solid #98999a;
    vertical-align: top;
    margin-right: 10px;
}

#view_02 .view_head .title_info .vtitle {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    vertical-align: top;
}

#view_02 .view_head .vtitle-info {
    font-size: 16px;
    line-height: 16px;
}

#view_02 .view_head .vtitle-info li {
    float: left;
    padding: 0 16px;
    border-right: 1px solid #ddd;
}

#view_02 .view_head .vtitle-info li:first-child {
    padding-left: 0;
}

#view_02 .view_head .vtitle-info li:last-child {
    border-right: 0;
}

#view_02 .vtitle-info .ct {
    font-weight: 700;
    color: #222;
}

#view_02 .vtitle-info .txt {
    color: #666;
    padding-left: 10px;
}

#view_02 .view_head .edit_btn {
    position: absolute;
    right: 60px;
    bottom: 60px;
    font-size: 16px;
}

#view_02 .view_head .edit_btn .c_b a {
    color: #222;
    padding-right: 10px;
}

#view_02 .view_head .edit_btn .c_m a {
    color: #c8005f;
    padding-left: 10px;
}

#view_02 .view_head .edit_btn .br1 {
    border-right: 1px solid #ddd;
}

#view_02 .view_foot {
    border-bottom: 1px solid #dddddd;
    margin-bottom: 45px;
}

#view_02 .view_body {
    padding-bottom: 60px;
    border-bottom: 1px solid #ddd;
}

#view_02 .view_body .attatch_list {
    float: left;
    width: calc(40% - 60px);
    margin-right: 60px;
}

#view_02 .view_body .v_content {
    float: left;
    width: 60%;
}

#view_02 .view_body .v_content .cont {
    font-size: 18px;
    line-height: 150%;
}

#view_02 .view_body .v_content_2 {
    width: 100%;
}

#view_02 .view_body .board-view-filelist li {
    margin-bottom: 10px;
}

#view_02 .view_body .board-view-filelist li a {
    border: 1px solid #ddd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    display: block;
    padding: 15px 30px 15px 35px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}

#view_02 .view_body .board-view-filelist li a:hover {
    background: #f5f6f8;
    border: 1px solid #f5f6f8;
}

#view_02 .view_body .board-view-filelist li a::before {
    content: url(../../images/home/i_file.png);
    position: absolute;
    top: 15px;
    left: 15px;
}

#view_02 .view_body .btn_all_down {
    background: #c8005f url(../../images/home/i_download2.png) right 30px center no-repeat;
}

#view_02 .view_body .btn_all_down2 {
    background: #0d2b58 url(../../images/home/i_download2.png) right 30px center no-repeat;
}

#view_02 .view_body .btn_all_down a {
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    padding: 20px 30px;
    color: #fff;
}

#view_02 .view_body .btn_all_down2 a {
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    padding: 20px 30px;
    color: #fff;
}

#view_02 .view_body .v_content img {
    width: 80%;
}

#view_02 .view_foot ul {
    position: relative;
    background: #f5f6f8;
}

#view_02 .view_foot ul:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 51px;
    background: #ddd;
    transform: translateY(-50%);
}

#view_02 .view_foot ul li {
    width: 50%;
    height: auto;
    box-sizing: border-box;
    float: left;
}

#view_02 .view_foot ul li.prev {
    text-align: left;
}

#view_02 .view_foot ul li a {
    display: block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 30px 120px 30px 20px;
}

#view_02 .view_foot ul li.prev a {
    padding: 25px 10px 25px 100px;
}

#view_02 .view_foot ul li a .ico {
    position: absolute;
    top: 0;
    display: block;
    overflow: hidden;
    width: 100px;
    height: 100%;
    transition: all 0.3s ease;
}

#view_02 .view_foot ul li.prev .ico {
    left: 0;
}

#view_02 .view_foot ul li a .ico:after {
    content: "";
    display: block;
    position: absolute;
    width: 46px;
    height: 24px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../../images/home/board_arr_spr.png) no-repeat;
}

#view_02 .view_foot ul li.prev .ico:after {
    background-position: 0 0;
    margin: auto;
}

#view_02 .view_foot ul li a .subject {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.2;
    color: #222;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 0;
}

#view_02 .view_foot ul li a .lbl {
    display: block;
    color: #222;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: -0.05em;
    line-height: 130%;
    margin: 5px 0 0;
}

#view_02 .view_foot ul li.next {
    text-align: right;
}

#view_02 .view_foot ul li.next a {
    padding: 25px 100px 25px 10px;
}

#view_02 .view_foot ul li.next .ico {
    right: 0;
}

#view_02 .view_foot ul li.next .ico:after {
    background-position: -36px 0;
    margin: auto;
}

/*홍보자료*/
/* 상단 버튼 */
.promo__buttons {
    padding-top: 10px;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.promo__button {
    background-color: #0068b7;
    color: white;
    padding: 5px 14px 5px 7px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
}

.promo__button:hover {
    background-color: #005aa7;
}

.promo__button i {
    margin-right: 0.8rem;
}

.pstit_icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    display: inline-block;
}

.promo__button img {
    margin-right: 5px; /* 아이콘과 텍스트 사이 간격 */
}

/* 섹션 스타일 */
.promo__section {
    padding: 2.5rem 2rem;
    margin: 2.5rem 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo__section-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    /*margin-bottom: 1.0rem;*/
    display: flex;
    align-items: center;
}

.tit-high {
    color: #0168b7;
    margin-right: 8px;
}

/* 타이틀 앞에 작은 색상 박스를 추가 */
.promo__section-title::before {
    content: "";
    width: 5px;
    height: 18px;
    background: #0d2b58; /* 원하는 색상 */
    margin-right: 10px; /* 막대와 텍스트 간의 간격을 5px로 조정 */
}

/* 동영상 섹션 */
.promo__video-wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    align-items: flex-start;
}

.video-block {
    display: flex;
    flex-wrap: wrap; /* 화면 좁으면 세로로 정렬 */
    gap: 1rem;
    margin: 1.5rem 0;
}

.video-block video {
    flex: 1 1 400px; /* 최소 400px 확보 */
    max-width: 100%;
    border: 2px solid #ddd;
    border-radius: 0.5rem;
}

.video-block figcaption {
    flex: 1 1 300px; /* 최소 300px 확보 */
    font-size: 0.95rem;
    line-height: 1.5;
}

.video-block summary {
    cursor: pointer;
    font-weight: bold;
    padding: 0.5rem;
    background: #eee;
    border-radius: 0.3rem;
    user-select: none;
}

.transcript {
    margin-top: 0.5rem;
    padding: 1rem;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    max-height: 400px; /* 길어도 스크롤 */
    overflow-y: auto;
    position: relative;
}

/* 스크롤 힌트 */
.transcript::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2rem;
    background: linear-gradient(to top, #f9f9f9, transparent);
    pointer-events: none;
}

/* 브로슈어  11/12수정*/
.promo__brochure-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.promo__brochure-item {
    display: flex;
    align-items: flex-start; /* 제목과 버튼을 상단에 정렬 */
    gap: 1rem;
    flex: 1 1 calc((100% - 2rem) / 3);
}

.promo__brochure-item img {
    width: auto;
    height: auto;
    max-width: 100%; /* 이미지가 부모 컨테이너에 맞게 크기 조정 */
}

.promo__btn-container {
    display: flex;
    flex-direction: column; /* 버튼들을 세로로 나열 */
    gap: 1rem;
    /*align-items: center;  버튼을 중앙 정렬 */
}

.promo__btn-container h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
}

.promo__btn {
    background-color: #28a745;
    color: white;
    font-size: 0.9rem;
    text-align: left;
    padding: 10px 40px 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    background: #0d2b58 url(../../images/home/i_download2.png) right 15px center no-repeat;
    background-size: 12px 12px;
}

.promo__btn:hover {
    background-color: #0168b7;
    transform: scale(1.05);
}

/* 소개자료 */
.info-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: flex-start; /* 제목과 버튼을 상단에 정렬 */
    gap: 1rem;
    flex: 1 1 calc(50% - 1rem); /* 두 항목을 한 줄에 배치 */
}

.info-item img {
    width: auto;
    height: auto;
    max-width: 100%; /* 이미지가 부모 컨테이너에 맞게 크기 조정 */
}

.info__btn-container {
    display: flex;
    flex-direction: column; /* 버튼들을 세로로 나열 */
    gap: 1rem;
    /*align-items: center;  버튼을 중앙 정렬 */
}

.info__btn-container h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
}

/*CI*/
.ci-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.ci-item {
    display: flex;
    flex-direction: column; /* 세로 배치: 이미지 위, 버튼 아래 */
    align-items: center; /* 가운데 정렬 (원한다면 왼쪽 정렬도 가능) */
    flex: 1 1 calc(50% - 1rem); /* 한 줄에 2개 배치 */
    gap: 1rem;
    text-align: center;
}

.ci-item img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}

.ci__btn-container {
    display: flex;
    justify-content: center; /* 버튼 가운데 정렬 */
}

.ci__tit {
    font-size: 1.2rem;
    font-weight: bold;
    /*margin-bottom: 1rem;*/
    text-align: left;
}

.ci__desc {
    font-size: 0.95rem;
    color: #333;
    margin: 0.5rem 0; /* 이미지와 버튼 사이 간격 */
    text-align: left;
    line-height: 1.4;
}

/*KOLAS 공인시험기관*/
/* 이미지 간격을 없애고 첫 번째와 두 번째 이미지 사이만 여백을 줌 */
.kolas-section {
    margin-bottom: 0; /* 기본적으로 이미지 간격 없앰 */
    display: flex;
    justify-content: center;
}

/* 첫 번째 이미지와 두 번째 이미지 사이에만 여백을 추가 */
.kolas-section:first-of-type {
    margin-bottom: 40px; /* 첫 번째 이미지 아래에만 여백 추가 */
}

/* 반응형 이미지 맵 설정 */
.kolas-img {
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

/*새창열기 아이콘*/
.link-icon::after {
    content: url(../../images/home/i_link.png);
    position: relative;
    padding-left: 5px;
    top: 3px;
    width: 16px; /* 아이콘의 크기 조정 */
    height: 16px; /* 아이콘의 크기 조정 */
}

/*개인정보처리방침*/
.policy-content-wrapper {
    margin: 0 auto;
}

.policy-title {
    color: #0b6cf5;
    font-size: 34px;
    margin-bottom: 30px;
    text-align: center;
}

.policy-intro {
    background: #f0f6ff;
    border-left: 4px solid #0b6cf5;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
}

.policy-section-title {
    color: #0459d0;
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 2px solid #d0d8e5;
    padding-bottom: 5px;
}

.policy-paragraph,
.policy-list li {
    font-size: 16px;
    margin-bottom: 5px;
}

.policy-highlight {
    background: #f0f6ff;
    padding: 12px 15px;
    border-left: 4px solid #0b6cf5;
    margin-bottom: 20px;
    border-radius: 8px;
}

.policy-list {
    padding-left: 15px;
    list-style-type: disc;
    list-style-position: inside;
    list-style: none;
}

.policy-link {
    color: #0b6cf5;
    text-decoration: underline;
}

.download-btn {
    display: inline-block;
    padding: 6px 12px;
    background-color: #0b6cf5;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.download-btn:hover {
    background-color: #0957c2;
}

.highlight-link {
    color: #199bff !important;
    font-weight: 700 !important;
}

/*추진사업*/
.project-header {
    display: flex;
    align-items: center;
    background: #e6f0fb;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.project-header .title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #004b91;
    padding-right: 50px;
}

.project-header .info {
    text-align: left;
    margin-top: 5px;
}

.project-header .info p {
    margin: 0 0 10px 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.project-header .info .download-link {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(90deg, #005bac, #0074d9);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.project-header .info .download-link:hover {
    background: linear-gradient(90deg, #0074d9, #005bac);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* 대표사업 카드 */
.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

/* 대표사업 타이틀 */
.project-card h2 {
    color: #005bac;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.project-card h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #42508c;
    font-weight: 700;
}

/* 소분류 사업 */
.sub-project {
    padding: 10px 0 20px 0;
    border-top: 1px solid #eee;
}

/* 세부사업 테이블 */
.project-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.project-table .col-wide {
    width: 85%;
}

.project-table .col-narrow {
    width: 15%;
}

.project-table th,
.project-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.project-table th {
    background: #f1f6fb;
    font-weight: bold;
    color: #005bac;
}

.sub-title {
    font-weight: bold;
    margin-bottom: 6px;
}

.desc {
    color: #555;
    line-height: 1.5;
}

.info {
    font-size: 0.9rem;
    color: #666;
}

/* 사진 갤러리 */
.pro-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.pro-gallery-item {
    position: relative;
}

.pro-gallery-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.pro-gallery-item .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 0 0 8px 8px;
    box-sizing: border-box;
    text-align: center;
}

/* 상단 텍스트 라인 (국문+영문) */
.pro-top-visual {
    display: flex;
    flex-direction: column;
    align-items: center; /* 전체 중앙 정렬 */
    gap: 20px;
    padding: 20px 25px;
}

/* 상단 텍스트 라인 */
.pro-top-visual .top-line {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.pro-top-visual .top-line .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    background: #485d93;
    border-radius: 15px;
    border: 1px solid #3e548d;
    min-width: 200px;
}

.pro-top-visual .top-line .kor {
    font-size: 1.2rem;
    font-family: "GmarketSansMedium";
    color: #fff;
}

.pro-top-visual .top-line .eng {
    font-size: 0.85rem;
    color: #fff;
}

/* 하단 아이콘 카드 */
.pro-top-visual .bottom-line {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* 가운데 정렬 */
}

.pro-top-visual .bottom-line .icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
}

.pro-top-visual .bottom-line .icon-card .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 6px;
    border-radius: 50%; /* 원형 */
    background: #f1f6fb; /* 연한 배경 */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #004b91;
}

.pro-top-visual .bottom-line .icon-card .icon img {
    width: 50%;
    height: 50%;
}

.pro-top-visual .bottom-line .icon-card .label {
    text-align: center;
    font-size: 0.95rem;
    font-family: "GmarketSansMedium";
    color: #004b91;
}

/*입주시설안내*/
.facility-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: none;
}

.facility-tab {
    padding: 10px 16px;
    cursor: pointer;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 6px;
    transition: all 0.2s;
    text-align: center;
}

.facility-tab:hover {
    background: #f1f1f1;
}

.facility-tab.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    font-weight: bold;
}

/* 콘텐츠 */
.facility-tab-content {
    display: none;
    padding: 20px;
}

.facility-tab-content.active {
    display: block;
}

.facility-header {
    margin-bottom: 20px;
}

.facility-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #004b91;
}

.facility-header p {
    margin: 5px 0 0;
    color: #555;
}

/* 사진 */
.photo-carousel {
    position: relative;
    width: 900px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 4px 16px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* 점 네비게이션 */
.carousel-dots {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 5px;
}

.carousel-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dots .dot.active {
    background: #007bff;
}

/* 가로형 표 */
.facility-table {
    width: 100%;
    border-collapse: collapse;
    margin: 50px 0;
    font-size: 15px;
}

.facility-table thead {
    background: #f1f6fb;
}

.facility-table th {
    border: 1px solid #ddd;
    padding: 6px 5px;
    text-align: center;
}

.facility-table td {
    border: 1px solid #ddd;
    padding: 12px 10px;
    text-align: center;
}

.facility-table th {
    font-weight: bold;
    color: #005bac;
}

.facility-table tbody tr:nth-child(even) {
    background: #fafafa;
}

/* 지도 iframe */
.facility-map-section {
    width: 100%; /* 부모 요소의 너비 100% */
    height: 450px; /* 고정 높이 설정 (필요에 따라 조정) */
    position: relative; /* 자식 요소가 정확히 배치되도록 */
    margin-top: 20px; /* 맨 위에 여백을 두고 */
    overflow: hidden;
}

.root_daum_roughmap {
    width: 100% !important; /* 100%로 가로 크기 설정 */
    height: 100% !important; /* 부모 요소의 높이에 맞추기 */
    background-color: #fff; /* 배경색 */
    margin: 0 auto;
    position: relative;
}

/*교육일정안내*/
/* 테이블 전체 스타일 */
.training-table-container {
    overflow-x: auto;
    margin: 20px 0;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.training-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

/* 표 제목 */
.training-table th {
    padding: 12px 20px;
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 600;
}

/* 월 셀 스타일 */
.month-cell {
    background-color: #a2d5f2;
    color: #2c3e50;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    padding: 6px 0px 6px 20px;
    border-bottom: 2px solid #34495e;
}

/* 월 구분을 잘 보이도록 여백을 추가 */
.month-row {
    margin-top: 20px;
    background-color: #ecf0f1;
    border-top: 2px solid #2c3e50;
    border-bottom: 2px solid #34495e;
}

/* 각 일정 셀 스타일 */
.table-row td {
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    color: #34495e;
    border-bottom: 1px solid #e1e4e8;
}

.subject-cell {
    text-align: left !important; /* 강제로 왼쪽 정렬 */
}

/* 링크 스타일 */
.training-table a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.training-table a:hover {
    color: #0056b3;
}

/*상단타이틀*/
.top-page-header {
    display: flex;
    padding: 40px 50px;
    background: #f4f4f4 url("../../images/home/business/top_back.png") no-repeat right; /* 배경 색상 + 배경 이미지 */
    border-top: 4px solid #3498db; /* 상단 라인 */
    margin-bottom: 30px;
}

.top-page-header .title {
    width: 22%; /* 타이틀을 왼쪽 30%에 배치 */
    font-size: 1.79rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.top-page-header .bipa {
    color: #3498db; /* BIPA는 파란색으로 강조 */
}

.description-container {
    width: 78%; /* 설명글을 오른쪽 70%에 배치 */
}

.description-container .description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    max-width: 100%;
    margin: 0;
}

.top-page-header .description-container .download-link {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(90deg, #005bac, #0074d9);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.top-page-header .description-container .download-link:hover {
    background: linear-gradient(90deg, #0074d9, #005bac);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/*예약안내*/
.reservation-category {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column; /* 세로로 나열 */
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 30px; /* 아이콘 크기 */
    height: 30px;
    margin-right: 10px; /* 아이콘과 텍스트 사이 간격 */
    fill: #3498db;
}

.reservation-category h2 {
    font-size: 1.32rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 10px;
    display: flex; /* flexbox 사용 */
    align-items: center; /* 수직으로 가운데 정렬 */
    justify-content: flex-start; /* 가로로 왼쪽 정렬 */
}

/* 테이블 스타일 */
.reservation-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

/* 테이블 헤더 */
.reservation-table th {
    background-color: #3498db;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px;
    border-radius: 6px;
}

/* 테이블 데이터 */
.reservation-table td {
    padding: 12px;
    text-align: center;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* 테이블 로고 이미지 */
.reservation-table td img {
    width: 65%;
    height: auto;
}

/* 예약하기 버튼 스타일 */
.reservation-button {
    display: inline-block;
    padding: 7px 12px;
    background-color: #1e90ff;
    color: white;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.reservation-button:hover {
    background-color: #4682b4;
    transform: translateY(-4px);
}

.res250 {
    width: 220px;
}

.res330 {
    width: 250px;
}

/*인사말*/
/* 전체 페이지 스타일 */
.greeting-page {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* 상단 배경, 인사말 & 원장 사진 */
.greeting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 50px;
    background: url("../../images/home/about/greeting_top_back.png") no-repeat center;
    color: white;
    height: 370px; /* 배경 높이 조정 */
    position: relative;
}

.greeting-header .greeting-text {
    flex: 1;
    max-width: 60%;
}

.greeting-header .greeting-text h1 {
    font-size: 28px;
    color: white;
    font-family: GmarketSansMedium;
    margin: 0;
}

.greeting-header .greeting-text p {
    font-size: 28px;
    color: white;
    font-family: GmarketSansMedium;
    font-weight: 600;
}

.greeting-header .director-photo {
    margin-right: 50px;
}

.greeting-header .director-photo img {
    width: 100%;
    height: auto;
}

/*인사말 텍스트시작*/
.initial-text {
    padding: 85px;
    background-color: white;
    /* margin: 20px 0;*/
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.initial-text p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* 사진과 텍스트가 좌우로 배치되는 부분 */
.greeting-message .message-content {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.greeting-message .message-content .photo {
    margin-right: 20px;
}

.greeting-message .message-content .photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.greeting-message .message-content .text {
    flex: 1;
}

.greeting-message .message-content .text p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* 원장 이름 및 서명 */
.director-signature {
    text-align: right;
    padding: 40px;
    background-color: white;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.director-signature h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.director-signature .signature img {
    width: 150px;
    height: auto;
    margin-top: 10px;
}

/*연혁*/
.history-page {
    margin: 0;
    padding: 0;
}

/* 설립목적 섹션 */
.purpose {
    background: url(../../images/home/about/bg_summary.png) center right no-repeat;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-radius: 10px;
}

.purpose h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    position: relative; /* 자식 요소를 절대 위치로 배치할 수 있도록 */
    padding-left: 35px; /* 아이콘을 위한 공간 확보 */
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* 밑줄 추가 */
}

.purpose h2::before {
    content: ""; /* 아이콘이 아닌 이미지를 넣으므로 content는 빈 값 */
    position: absolute;
    left: 0;
    top: 50%;
    padding-bottom: 10px;
    transform: translateY(-50%); /* 아이콘이 수직으로 가운데 오게 */
    width: 20px; /* 아이콘 크기 */
    height: 20px; /* 아이콘 크기 */
    background: url(../../images/home/about/i_company2.png) no-repeat;
    background-size: contain; /* 아이콘이 비율에 맞게 크기 조정 */
}

.purpose p {
    font-size: 16px;
    margin: 0;
    color: #fff;
}

/* 연혁 섹션 */
section.timeline {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-stitle {
    font-size: 24px;
    font-family: "GmarketSansMedium";
    font-weight: 700;
    margin-bottom: 20px;
}

/* 연도별 래퍼 */
.timeline-year {
    margin-bottom: 40px;
    position: relative;
}

/* 연도 타이틀 */
.timeline-year h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0855ca;
    margin-bottom: 15px;
    text-align: left;
    position: relative;
    padding-left: 30px; /* 아이콘 공간 확보 */
}

.timeline-year h3::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 18px;
    margin-right: 6px;
    background: url(../../images/home/i_logo.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* 연도별 월별 항목 래퍼 */
.timeline-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* 좌우 간격 */
}

/* 월별 아이템 */
.timeline-item {
    flex: 1 1 45%; /* 한 줄에 두 개씩 배치 */
    max-width: 45%;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #3498db; /* 강조선 */
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* 월 표시 */
.timeline-item .month {
    font-weight: bold;
    color: #3498db;
    margin-right: 10px;
    min-width: 50px;
}

/* 실적 내용 */
.timeline-item .achievement {
    flex: 1;
    color: #333;
}

/* 좌우 배치 (짝수/홀수) */
.timeline-item:nth-child(odd) {
    text-align: left;
}

.timeline-item:nth-child(even) {
    text-align: left;
}

.timeline-items > .timeline-item:only-child {
    flex: 1 1 45%; /* 또는 max-width: 45% */
    text-align: left; /* 좌측 정렬 */
}

/*비전*/
.section-label {
    font-size: 22px;
    font-weight: 700;
    color: #0855ca;
    margin-bottom: 20px;
    text-align: left;
    position: relative;
    padding-left: 15px;
    padding-top: 20px;
}

.section-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 22px;
    background-color: #0855ca;
    border-radius: 3px;
    margin-top: 10px;
}

/* ===== 비전 ===== */
.vision-box {
    border: 3px solid #0855ca;
    border-radius: 18px;
    padding: 40px 25px;
    background-color: #ffffff;
    max-width: 750px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin: 10px auto; /* 위아래 10px, 좌우 자동으로 중앙 정렬 */
}

.vision-box .line1 {
    font-size: 22px;
    font-weight: 700;
    color: #0855ca;
    margin-bottom: 12px;
    text-align: center;
}

.vision-box .line2 {
    font-size: 18px;
    font-weight: 500;
    color: #555;
    line-height: 1.5;
    text-align: center;
}

/* ===== 3대 전략 ===== */
.strategy-container {
    flex-direction: column; /* 카드 세로 정렬 */
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.strategy-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px auto;
    max-width: 900px; /* 카드 최대 너비 지정 */
    width: 100%;
}

.strategy-summary {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #0855ca;
    margin-bottom: 40px;
}

.highlight-text {
    font-weight: 700;
    background-color: #0855ca; /* 음영 강조 */
    padding: 5px 10px;
    font-size: 18px;
    border-radius: 8px;
    text-align: center;
    color: #dce9ff;
    width: 35%;
}

.arrow {
    font-size: 20px;
    color: #3498db;
    font-weight: 700;
}

.str-description {
    font-size: 16px;
    color: #555;
    width: 65%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 20px 20px;
}

/* ===== 전략과제 ===== */
.tasks-container-horizontal {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.task-card-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    padding: 15px 25px;
    gap: 30px;
    width: 80%;
    max-width: 900px; /* 최대 크기 제한 */
    margin: 0 auto;
}

.task-card-horizontal .label {
    display: flex; /* flex로 중앙 정렬 */
    justify-content: center; /* 가로 중앙 */
    align-items: center; /* 세로 중앙 */
    font-weight: 700;
    color: #fff; /* 글자 색 */
    font-size: 16px;
    width: 10px; /* 원 가로 */
    height: 20px; /* 원 세로 */
    background-color: #0855ca; /* 원 배경색 */
    border-radius: 50%; /* 완전한 원 */
    flex: 0 0 auto; /* flex 고정 */
    text-align: center;
}

.task-card-horizontal .highlight {
    width: 40%;
    background-color: #e6f0ff;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 700;
    color: #0855ca;
    text-align: center;
    font-size: 18px;
}

.task-card-horizontal .task-details {
    justify-content: space-between;
    width: 45%;
    gap: 20px;
    font-size: 16px;
    line-height: 160%;
    color: #555;
}

/* ===== 핵심가치 ===== */
.core-values {
    text-align: center;
    margin-top: 40px;
}

.core-values .main {
    margin-bottom: 10px;
    background-color: #e6f0ff;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 700;
    width: 200px;
    color: #0855ca;
    text-align: center;
    font-size: 18px;
    margin: 0 auto 10px;
}

.core-values .sub {
    color: #555;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}

.values-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.value-card {
    background-color: #fff;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    color: #3498db;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: scale(1.05);
}

/*ESG경영*/
/* ===== 상위 탭 ===== */
.vision-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 0;
    border-bottom: 2px solid #0855ca; /* 하단 구분선으로 테두리 대체 */
}

.vision-tab-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px 8px 0 0;
    background-color: #f2f6ff;
    color: #0855ca;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vision-tab-btn:hover {
    background-color: #dce7ff;
}

.vision-tab-btn.active {
    background-color: #0855ca;
    color: #fff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15) inset;
}

/* ===== 상위 탭 콘텐츠 ===== */
.vision-tab-content {
    display: none;
    padding: 40px 30px;
    /* background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05); */
    max-width: 1200px;
    margin: 0 auto;
}

.vision-tab-content.active {
    display: block;
}

/* ===== 하위 탭 ===== */
.vision-sub-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    /* margin-bottom: 25px;*/
    padding-bottom: 10px;
    border-bottom: 1px solid #d0d7e3; /* 구분선만 */
}

.vision-sub-tab-btn {
    padding: 8px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    background-color: #f5f8ff;
    color: #0855ca;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vision-sub-tab-btn:hover {
    background-color: #e4edff;
}

.vision-sub-tab-btn.active {
    background-color: #0855ca;
    color: #fff;
    border-color: #0855ca;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* ===== 하위 탭 콘텐츠 ===== */
.vision-sub-tab-content {
    display: none;
    padding: 20px 0px;
    background-color: #fff;
    line-height: 1.8;
    color: #333;
}

.vision-sub-tab-content.active {
    display: block;
}

.vision-content-block h4 {
    font-size: 18px;
    color: #0855ca;
    font-weight: 700;
    margin-bottom: 12px;
    border-left: 4px solid #0855ca;
    padding-left: 10px;
}

.vision-content-block p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* ===== 공통 블록 스타일 ===== */
.vision-content-block {
    margin-top: 20px;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e6f5;
}

/* 블록 타이틀 */
.vision-content-block .block-title {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

/* ===== 텍스트형 ===== */
.vision-content-block .block-text {
    margin-top: 0;
}

/* ===== 선서문형 ===== */
.vision-content-block .block-oath {
    list-style: none;
    counter-reset: oath-counter;
    margin-top: 10px;
    padding-left: 0;
}

.vision-content-block .block-oath li {
    position: relative;
    padding: 10px 15px 10px 30px;
    margin-bottom: 12px;
    background-color: #eef6fb;
    border-radius: 6px;
}

.vision-content-block .block-oath li::before {
    content: counter(oath-counter) ".";
    counter-increment: oath-counter;
    position: absolute;
    left: 10px;
    top: 10px;
    font-weight: bold;
    color: #3498db;
}

/* ===== 약관형 ===== */
.vision-content-block .block-terms {
    margin-top: 0;
}

.vision-content-block .block-terms p {
    margin: 4px 0;
    font-weight: bold;
}

.vision-content-block .block-terms ol {
    margin: 0 0 10px 20px;
    padding-left: 0;
}

.vision-content-block .block-terms ol li {
    margin-bottom: 3px;
}

/* ===== 이미지형 ===== */
.vision-content-block .block-img {
    text-align: center;
}

.vision-content-block .block-img img {
    max-width: 70%;
    height: auto;
    /*border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

.esg-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #f5f7fa;
    border: 1px solid #dcdfe6;
    border-radius: 6px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    font-weight: bold;
}

.esg-download-btn:hover {
    background-color: #e9efff;
    border-color: #aabbee;
    color: #2c3e50;
}

.esg-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle; /* 텍스트랑 수직 정렬 */
    margin-right: 6px; /* 글자와 간격 */
}

/*오시는길*/
.gu-mobile {
    display: none;
}

/*모바일숨김*/

.map_container {
    display: flex;
    /*gap: 10px;*/
    /*max-width: 1200px;*/
    margin: 0 auto;
}

/* 좌측 구 목록 */
.map_left {
    flex: 1 1 38%;
    min-width: 250px;
}

.map_left .map_tt {
    padding: 18px;
    margin-right: 20px;
    margin-bottom: 20px;
    color: #666;
    background: #f8f9fa;
}

/* 산하기관 리스트 */
.district_list {
    margin-top: 10px;
    margin-right: 10px;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 6px;
    background: #f9f9f9;
}

.district_list h4 {
    margin: 5px 0 7px 0;
    font-size: 1em;
    font-weight: bold;
}

.district_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.district_list li a {
    display: block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #fff;
    white-space: nowrap;
}

.district_list li a:hover {
    opacity: 0.8;
}

/* 내부/외부 구분 색상 */
.institution_internal {
    background: #3498db;
}

.institution_external {
    background: #2ecc71;
}

/* 내부/외부 안내 표시 */
.legend {
    margin: 10px 0;
}

.legend span {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
}

.legend span.internal {
    background: #3498db;
}

.legend span.external {
    background: #2ecc71;
}

/* "더보기" 버튼 */
.more_btn {
    display: block;
    text-align: center;
    margin-top: 5px;
    padding: 4px 8px;
    background: #113771;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.more_btn:hover {
    opacity: 0.9;
}

.bs_map {
    width: 100%;
    max-width: 500px;
    height: 487px;
    position: relative;
    background: url(../../images/home/about/bs_map.png) no-repeat center top;
    background-size: cover;
}

.bs_map .gu {
    position: relative;
    width: 100%;
    height: 487px;
}

.bs_map a {
    color: #4e5158;
    text-decoration: none;
    position: absolute;
    transition: all 0.2s;
    line-height: 30px;
    width: 70px;
    text-align: center;
    border-radius: 30px;
    font-weight: 700;
}

.bs_map a.on {
    font-size: 15px;
}

.bs_map a.mm01 {
    top: 100px;
    right: 80px;
}

.bs_map a.mm02 {
    top: 150px;
    left: 250px;
}

.bs_map a.mm03 {
    top: 227px;
    right: 115px;
}

.bs_map a.mm04 {
    top: 185px;
    left: 190px;
}

.bs_map a.mm05 {
    top: 205px;
    left: 245px;
}

.bs_map a.mm06 {
    top: 230px;
    left: 240px;
}

.bs_map a.mm07 {
    top: 260px;
    left: 56%;
}

.bs_map a.mm08 {
    top: 300px;
    left: 12%;
}

.bs_map a.mm09 {
    top: 270px;
    left: 31%;
}

.bs_map a.mm10 {
    top: 260px;
    left: 42%;
}

.bs_map a.mm11 {
    top: 305px;
    left: 52%;
}

.bs_map a.mm12 {
    top: 310px;
    left: 36.5%;
}

.bs_map a.mm13 {
    top: 305px;
    left: 42%;
}

.bs_map a.mm14 {
    top: 330px;
    left: 39.5%;
}

.bs_map a.mm15 {
    top: 345px;
    left: 30%;
}

.bs_map a.mm16 {
    top: 360px;
    left: 48%;
}

.bs_map a.mm17 {
    top: 360px;
    right: 9%;
}

/* --- 기본 이미지 --- */
.bs_map .gu a.mm01 {
    background-image: url(../../images/home/about/bs_map01.png);
}

.bs_map .gu a.mm02 {
    background-image: url(../../images/home/about/bs_map02.png);
}

.bs_map .gu a.mm03 {
    background-image: url(../../images/home/about/bs_map03.png);
}

.bs_map .gu a.mm04 {
    background-image: url(../../images/home/about/bs_map04.png);
}

.bs_map .gu a.mm05 {
    background-image: url(../../images/home/about/bs_map05.png);
}

.bs_map .gu a.mm06 {
    background-image: url(../../images/home/about/bs_map06.png);
}

.bs_map .gu a.mm07 {
    background-image: url(../../images/home/about/bs_map07.png);
}

.bs_map .gu a.mm08 {
    background-image: url(../../images/home/about/bs_map08.png);
}

.bs_map .gu a.mm09 {
    background-image: url(../../images/home/about/bs_map09.png);
}

.bs_map .gu a.mm10 {
    background-image: url(../../images/home/about/bs_map10.png);
}

.bs_map .gu a.mm11 {
    background-image: url(../../images/home/about/bs_map11.png);
}

.bs_map .gu a.mm12 {
    background-image: url(../../images/home/about/bs_map12.png);
}

.bs_map .gu a.mm13 {
    background-image: url(../../images/home/about/bs_map13.png);
}

.bs_map .gu a.mm14 {
    background-image: url(../../images/home/about/bs_map14.png);
}

.bs_map .gu a.mm15 {
    background-image: url(../../images/home/about/bs_map15.png);
}

.bs_map .gu a.mm16 {
    background-image: url(../../images/home/about/bs_map16.png);
}

.bs_map .gu a.mm17 {
    background-image: url(../../images/home/about/bs_map17.png);
}

/* --- hover 효과 --- */
.bs_map .gu a:hover {
    filter: brightness(1.2);
    cursor: pointer;
}

/* --- 클릭/선택(active) 강조 --- */
.bs_map .gu a.active {
    filter: brightness(1.3);
}

/* 오른쪽 지도 */
.map_right {
    flex: 1 1 55%;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

/* 산하기관 상세 */
.district_list,
.institution_detail {
    display: none;
}

.district_list.active,
.institution_detail.active {
    display: block;
}

.institution_detail h5 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
}

.institution_detail {
    /*border: 1px solid #ddd;
    padding: 15px;*/
    margin-bottom: 15px;
    display: none; /* 클릭 시 표시 */
}

.institution_detail .inst_map {
    width: 100%;
    height: 450px; /* 최소 높이 지정 */
    background: #eee;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    position: relative; /* 지도 렌더링 안정화 */
}

.institution_detail.active {
    display: block; /* 선택 시 나타남 */
}

.institution_detail .inst_info {
    background: #f4f6f8;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.institution_detail .inst_info p {
    margin: 6px 0;
    font-size: 0.95em;
    color: #333;
}

.institution_detail .inst_info strong {
    color: #0071b2;
    margin-right: 4px;
}

.institution_detail .inst_info a {
    color: #3498db;
    text-decoration: underline;
}

.institution_detail .inst_info a:hover {
    color: #113771;
}

/*카카오지도 설정*/
.inst_map {
    width: 100%;
    height: auto; /* 또는 min-height: 400px; */
}

.root_daum_roughmap {
    width: 100% !important;
    height: 450px !important;
}

.root_daum_roughmap .wrap_map {
    height: 450px !important;
    position: relative;
}

/*진흥원에바란다*/
.opinion-wrap {
    margin: 0 auto;

    padding: 20px 30px;

    color: #333;
}

.opinion-guide {
    background: #f8fbff;
    border: 1px solid #dbe5f7;
    border-radius: 10px;
    padding: 30px 25px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

/* 제목 */
.opinion-guide h2 {
    font-size: 22px;
    color: #084ca3;
    margin-bottom: 15px;
    font-weight: 700;
}

/* 안내 문구 */
.opinion-guide p {
    color: #333;
    line-height: 1.8;
    font-size: 15.5px;
    margin-bottom: 25px;
}

.opinion-guide p strong {
    color: #0855ca;
}

/* ===== 단계별 흐름 (STEP) ===== */
.step-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 15px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid #c7d6ef;
    border-radius: 8px;
    padding: 10px 18px;
    min-width: 130px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-item:hover {
    background: #eaf2ff;
    transform: translateY(-2px);
}

.step-num {
    font-weight: 700;
    color: #0855ca;
    font-size: 14px;
    margin-bottom: 5px;
}

.step-text {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.step-arrow {
    color: #7a8aa0;
    font-weight: 600;
    font-size: 18px;
    margin: 0 5px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.required {
    color: #d00;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
}

input:focus,
textarea:focus {
    border-color: #084ca3;
    outline: none;
}

.terms {
    font-size: 14px;
}

.terms-box {
    background: #f8faff;
    border: 1px solid #d8e4f7;
    padding: 10px 12px;
    border-radius: 6px;
    margin-top: 8px;
    line-height: 1.6;
}

.captcha-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.captcha-box img {
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.btn-submit {
    background: #084ca3;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    padding: 12px 25px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #063b7c;
}

.btn-reset {
    background: #e0e6ef;
    color: #333;
    border: none;
    border-radius: 6px;
    padding: 12px 25px;
    margin-left: 10px;
    cursor: pointer;
}

.btn-reset:hover {
    background: #cfd8e3;
}

/*진흥원에바란다 글등록완료*/
.opinion-complete {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    /* background: #f9fbff;*/
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

.complete-box {
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.complete-icon {
    width: 60px;
    margin-bottom: 20px;
}

.complete-box h2 {
    font-size: 24px;
    color: #084ca3;
    margin-bottom: 15px;
}

.complete-box p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.complete-info {
    background: #f3f7ff;
    border: 1px solid #dbe5f7;
    border-radius: 8px;
    padding: 15px;
    margin: 25px 0;
    text-align: left;
    font-size: 14px;
    color: #333;
}

.complete-info p {
    margin: 5px 0;
}

.complete-btns {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-home,
.btn-new {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-home {
    background: #e0e6ef;
    color: #333;
}

.btn-new {
    background: #084ca3;
    color: #fff;
}

.btn-home:hover {
    background: #cfd8e3;
}

.btn-new:hover {
    background: #063b7c;
}

/*기업애로상담*/
.form-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-row.triple .form-group {
    flex: 1 1 calc(33.333% - 20px);
}

.form-row.double {
    display: flex;
    gap: 20px; /* 두 칸 사이 여백 */
}

.form-row.double .form-group:nth-child(1) {
    flex: 0 0 calc(20% - 10px); /* gap 절반만큼 빼기 */
}

.form-row.double .form-group:nth-child(2) {
    flex: 0 0 calc(80% - 10px);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px;
    font-size: 14px;
}

.agree-box label {
    display: flex;
    align-items: center; /* 수직 중앙 정렬 */
    gap: 10px; /* 체크박스와 텍스트 사이 여백 */
    font-size: 14px;
    color: #333;
}

.agree-box input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

/*조직도*/
.org-header .org-tit {
    font-size: 20px;
    font-weight: 700;
    color: #0068b7; /* 기본 색상 사용 */
    display: flex;
    align-items: center; /* 아이콘과 텍스트 수직 가운데 정렬 */
    gap: 10px; /* 아이콘과 텍스트 사이 간격 */
    margin-bottom: 10px; /* 조직도와의 간격 */
}

.org-icon {
    width: 24px; /* 아이콘 크기 */
    height: 24px;
}

.org-level-1 {
    background-color: #fff; /* 원장 (1 Depth) */
    color: #0068b7;
    width: 120px;
    border: 5px solid #0068b7;
}

.org-level-2 {
    background-color: #003b71; /* 이사회, 감사 등 (2 Depth) */
    color: white;
    width: 120px;
}

.org-level-3 {
    background-color: #0459a3; /* 상위부서 (3 Depth) */
    color: white;
    width: 120px;
}

.org-level-4 {
    background-color: #0679d1; /* 하위부서 (4 Depth) */
    color: white;
}

.org-box a,
.org-box2 a,
.org-box3 a,
.org-box4 a,
.org-level-other a {
    color: inherit; /* 부모 색상 그대로 사용 */
    text-decoration: none; /* 밑줄 제거 */
    display: block; /* 박스 전체 클릭 가능 */
    width: 100%;
    height: 100%;
    font-weight: inherit; /* 부모 폰트 굵기 유지 */
    font-size: inherit; /* 부모 폰트 크기 유지 */
}

.org-container {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;

    /* 배경 이미지 설정 */
    background-image: url("../../images/home/about/org_back.png");
    background-repeat: no-repeat;
    background-position: center top; /* top에서 50px 아래로 */
    background-size: auto;
    /* padding: 50px;*/
    border-radius: 20px;
}

.top-org-column {
    margin: 10px;
    display: flex;
    justify-content: space-around;
}

.org-column {
    /*margin-bottom: 50px;*/
    display: flex;
    justify-content: space-around;
}

.org-box {
    text-align: center;
    padding: 15px;
    font-weight: 700;
    border-radius: 20px;
    font-size: 18px;
}

.org-box2 {
    text-align: center;
    padding: 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
}

.org-box3 {
    text-align: center;
    padding: 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
}

.org-box4 {
    text-align: center;
    padding: 10px;
    margin-top: 5px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.sub-org-column {
    margin: 30px;
    display: flex;
    justify-content: space-around;
}

.sub-org-club {
    margin: 10px;
    justify-content: space-around;
}

.sub-org-club .sub-org-box {
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
}

/* 기타 조직의 스타일 */
.other-org-column {
    margin: 10px 50px 10px 10px;
    display: flex;
    justify-content: flex-end;
}

.org-level-other {
    background-color: #007bff;
    color: white;
    width: 120px;
    padding: 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
}

/*조직도검색*/
.org-search {
    display: flex;
    justify-content: center;
    margin: 20px auto; /* 위/아래 20px, 좌우 자동으로 가운데 */
    background-color: rgba(0, 104, 183, 0.05);
    padding: 10px 15px;
    border-radius: 15px;
    width: 500px; /* 고정 너비 */
}

.org-search select {
    border-radius: 15px; /* 모서리 둥글기 조절 */
    border: 2px solid #0068b7;
    padding: 5px 10px; /* 안쪽 여백 */
    font-size: 14px; /* 글자 크기 */
    background-color: white; /* 배경 */
    margin-right: 8px;
}

.org-search input {
    padding: 8px 12px;
    font-size: 16px;
    width: 250px;
    border: 2px solid #0068b7;
    border-radius: 15px;
    outline: none;
    margin-right: 8px;
}

.org-search button {
    padding: 8px 16px;
    font-size: 14px;
    background-color: #0068b7;
    color: white;
    width: 80px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

.org-search button:hover {
    background-color: #0051a3;
}

.org-note {
    text-align: left; /* 중앙 정렬 */
    margin-top: 20px; /* 조직도와 간격 */
    font-size: 14px;
    color: #555; /* 연한 회색 */
}

/*조직도상세보기*/
.dept-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.dept-table th,
.dept-table td {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 12px 15px;
    text-align: center;
}

/* 가장 왼쪽 셀만 왼쪽 경계선 제거 */
.dept-table th:first-child,
.dept-table td:first-child {
    border-left: none;
}

/* 가장 오른쪽 셀만 오른쪽 경계선 제거 */
.dept-table th:last-child,
.dept-table td:last-child {
    border-right: none;
}

.dept-table th {
    background-color: #0068b7;
    color: white;
    font-weight: 700;
}

.dept-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.dept-table td strong {
    font-weight: 700; /* 팀명 진하게 */
}

.dept-table td img {
    height: 1.5em; /* 텍스트 높이에 맞춤 */
    width: auto;
    vertical-align: middle;
}

.dept-table td:last-child {
    text-align: left;
}

.back-btn-container {
    text-align: center;
    margin-top: 20px;
}

.btn-back-org {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #0068b7; /* 진흥원 기본 색상 */
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.3s;
}

.btn-back-org:hover {
    background-color: #005299; /* 호버 시 진하게 */
}

.btn-back-icon {
    width: 18px;
    height: 16px;
    margin-right: 10px; /* 아이콘과 텍스트 사이 간격 */
}

.mobile-3only .org-box4 {
    display: block;
}

/*게시판 이미지+타이틀*/
.board-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.board-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.board-item:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
}

.board-text {
    flex: 1;
}

.board-title {
    font-size: 20px;
    color: #222;
    font-weight: 700;
    margin-bottom: 6px;
}

.board-date {
    font-size: 14px;
    color: #888;
}

.board-thumb {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    margin-left: 20px;
    overflow: hidden;
    border-radius: 6px;
}

.board-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*안내문구*/
.notice-container {
    max-width: 720px;
    margin: 80px auto;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 40px 50px;
}

.notice-tit {
    font-size: 1.6em;
    color: #004ea2;
    border-bottom: 2px solid #004ea2;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

p {
    font-size: 1.05em;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.alt-link {
    display: inline-block;
    background-color: #004ea2;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.alt-link:hover {
    background-color: #003b82;
}

.footer-note {
    font-size: 0.9em;
    color: #666666;
    margin-top: 30px;
}