:root {
	--sub-border-radius20: 20px; 
	--sub-border-radius30: 30px; 
}
@media (max-width:768px){
    :root {
        --sub-border-radius20: 10px;
        --sub-border-radius30: 15px;
    }
}

/* scroll_ani */
.scroll_ani {
    position: absolute; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    color: #fff; 
    z-index: 3; 
    height: 100px;
}
.scroll_ani > span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    position: relative;
}
.scroll_ani > span:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    animation-name: zoominout;
    animation-iteration-count: infinite;
    animation-duration:2s;
    animation-timing-function:ease-in-out;
}
@keyframes zoominout { 
    0% {
        width: 5px;
        height: 5px;
        opacity: 1;
    } 
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    } 
}
.scroll_ani > .back {
    position: relative; 
    height:100%; 
    width:1px; 
    margin: 30px auto 0; 
    background: rgba(255,255,255,0.2);
}
.scroll_ani > .back .animation {
    width: 100%; 
    background: rgba(255,255,255,1); 
    animation-name: updown;
    animation-iteration-count: infinite;
    animation-duration:2s;
    animation-timing-function:ease-in-out;
}
@keyframes updown { 
    0% {height:0%} 
    100% {height:100%} 
}

/* subtop */
#subtop {
    position: relative;
}
#subtop .c_wrp {
    height: 400px;
    text-align: center;
}
#subtop .c_wrp h1 {
    line-height: 1em;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,1);
}
#subtop .c_wrp h1 strong {
    color: #fff;
}
#subtop .c_wrp .sub {
    color: rgba(255,255,255,0.5);
}
@media (max-width:992px) {
    #subtop .c_wrp {
        height: 350px;
    }
}
@media (max-width:768px) {
    #subtop {
        background-size: cover !important;
    }
    #subtop .c_wrp {
        height: 200px;
    }
}

/* sub_tabss */
#sub_tabs {
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 1;
}
#sub_tabs ul {
    position: relative;
    display: block;
    box-shadow: 0 0 0;
    background-color: transparent;
    border: 0;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    column-gap: 3vw;
}
#sub_tabs li a {
    display: block;
    text-decoration: none;
    padding: 22px 0 20px;
    font-size: 17px;
    color: #aaa;
    font-weight: 300;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
#sub_tabs li:hover a {
    background-color: transparent;
}
#sub_tabs li.act a {
    border-bottom-color: #2c8acc;
    color: #2c8acc;
    font-weight: 500;
}
@media (max-width:500px) {
    #sub_tabs {
        flex-wrap: wrap;
        row-gap: 5px;
        padding: 15px 0;
        justify-content: center;
    }
    #sub_tabs li a {
        padding: 5px 10px;
        border-radius: 30px;
        font-size: 13px;
        border: 1px solid #ddd;
        margin-bottom: 0;
        text-align: center;
    }
    #sub_tabs li.act a {
        color: #fff;        
        font-weight: 600;
        background-color: #2c8acc;
    }
}


/* dvdHr */
.dvdHr {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 6rem 0;
}
.dvdHr.sm {
    margin: 4rem 0;
}
.dvdHr.big {
    margin: 8rem 0;
}
@media (max-width:768px){
    .dvdHr {
        margin: 3rem 0;
    }
    .dvdHr.sm {
        margin: 2rem 0;
    }
    .dvdHr.big {
        margin: 4rem 0;
    }
}

/* company1 */
#company1 .sec1 .fbox .img img {
    border-radius: var(--sub-border-radius30);
}
@media (max-width:768px) {
    #company1 .sec1 .fbox .img {
        padding-top: 30px;
    }
}

/* mapbox */
.mapbox .cont {
    display: none !important;
}
.mapbox .root_daum_roughmap {
	border: 0px !important;
	padding: 0px !important;
}
.mapbox .root_daum_roughmap .map_border {
    opacity: 0;
}
.mapbox .root_daum_roughmap .wrap_map,
.mapbox iframe {
    height: 600px !important;
    border-radius: var(--sub-border-radius30);
    overflow: hidden;
}
@media (max-width:768px) {
	.mapbox .root_daum_roughmap .wrap_map,
	.mapbox iframe {
		height: 250px !important;
	}
}

/* addrInfo */
.addrInfo {
    padding: 40px;
    background-color: rgba(231, 241, 241, 0.4);
    border-radius: var(--sub-border-radius30);
}
.addrInfo .row {
    margin: 0 -40px;
}
.addrInfo .row > [class*="col-"] {
    padding: 0 40px;
}
@media (max-width:768px) {
    .addrInfo {
        padding: 15px;
    }
    .addrInfo .fbox > div {
        width: 100% !important;
    }
    .addrInfo .fbox > .txt {
        order: 1;
        padding: 20px 15px 35px;
    }
    .addrInfo .fbox > .img {
        order: 2;
    }
}
/* infoItem */
.infoItem {
    display: flex;
    align-items: center;
    gap: 16px;
}
.infoItem .tcon {
    width: calc(100% - 80px);
}
.infoItem .icon {
    width: 80px;
}
.infoItem .icon img {
    background-color: #fff;
    border-radius: 50%;
}
@media (max-width:768px) {
    .infoItem .tcon {
        width: calc(100% - 60px);
    }
    .infoItem .icon {
        width: 60px;
    }
}

/* cWrp */
.cWrp {
    display: flex;
    align-items: flex-start;
}
.cWrp .cTit {
    width: 200px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.cWrp .cCon {
    width: calc(100% - 200px);
}
.cWrp .cCon .bus {
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (max-width:768px){
    .cWrp {
        flex-wrap: wrap;
    }
    .cWrp .cTit {
        width: 100%;
        gap: 8px;
    }
    .cWrp .cTit img {
        width: 22px;
    }
    .cWrp .cCon {
        width: 100%;
        margin-top: 15px;
    }
}
/* proList */
.proList .item.fbox .img {
    width: 40%;
}
.proList .item.fbox .txt {
    width: 60%;
}
.proList .item .img {
    border-radius: var(--sub-border-radius20);
    overflow: hidden;
}
@media (max-width:768px){
    .proList .item.fbox .img,
    .proList .item.fbox .txt {
        width: 100%;
    }
    .proList .item.fbox .txt {
        padding-top: 15px;
    }
}
/* programPage */
.programPage .row {
    margin: 0 -20px;
}
.programPage .row > [class*="col-"] {
    padding: 0 20px;
}
.programPage .owl-carousel.nav-inside .owl-nav, 
.programPage .owl-carousel.nav-inside .owl-dots {
    bottom: 10px;
    right: 10px;
}
.programPage .owl-theme .owl-dots .owl-dot span {
    background: rgba(0,0,0,0.5);
    width: 15px;
    height: 15px;
    margin: 5px;
}
.programPage .owl-carousel .owl-dots .owl-dot.active span, 
.programPage .owl-carousel .owl-dots .owl-dot:hover span {
    background: rgba(255,255,255,0.8);
}

/* info1 */
#info1 .item {
    padding: 70px 50px;
    background-color: #f9f9f9;
    border-radius: var(--sub-border-radius30);
}
#info1 .item .icon img {
    background-color: #fff;
    border-radius: 50%;
    width: 250px;
    padding: 15px;
}
@media (min-width:768px) {
    #info1 .item .btCont {
        min-height: 100px;
    }
}
@media (max-width:768px) {
    #info1 .item {
        padding: 40px 20px;
    }
    #info1 .item .icon img {
        width: 30vw;
    }
}

/* info2 */
#info2 .pList {
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
}
@media (min-width:768px) {
    #info2 .pList {
        min-height: 380px;
    }
}
/* specTit */
.specTit {
    position: relative;
    padding-left: 15px;
}
.specTit:after {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 2px;
    background-color: #174876;
}

/* factorItems */
.factorItems .item {
    padding: 0px 15px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    text-align: center;
}
@media (max-width:768px){
    .factorItems .item {
        padding: 10px 15px;
        min-height: 110px;
    }
}
@media (max-width:500px){
    .factorItems.col-xs-12 {
        width: 100%;
    }
    .factorItems .item {
        padding: 0 15px;
        min-height: 90px;
    }
}

/*table_basic*/
.table.table_basic {
    border-top: 2px solid #454f5d;
}
.table.table_basic.table_fx {
    table-layout: fixed;
}
.table.table_basic thead tr th,
.table.table_basic thead tr td,
.table.table_basic tbody tr th,
.table.table_basic tbody tr td {
    font-size: 18px;
    color: #221814;
    line-height: 1.3em;
    text-transform: none;
    border: 1px solid #ddd;
    padding: 16px 40px;
}
.table.table_basic thead tr th:first-child,
.table.table_basic thead tr td:first-child,
.table.table_basic tbody tr th:first-child,
.table.table_basic tbody tr td:first-child {
    border-left: 0px;
}
.table.table_basic thead tr th:last-child,
.table.table_basic thead tr td:last-child,
.table.table_basic tbody tr th:last-child,
.table.table_basic tbody tr td:last-child {
    border-right: 0px;
}
.table.table_basic tbody tr td:nth-child(2){
    word-break: keep-all !important;
}
.table.table_basic thead tr th {
    font-weight: 600;
}
.table.table_basic tbody tr th {
    font-weight: 500;
}
.table.table_basic tbody tr td {
    font-weight: 400;
}
.table.table_basic.table_center thead tr th,
.table.table_basic.table_center thead tr td,
.table.table_basic.table_center tbody tr th,
.table.table_basic.table_center tbody tr td {
    text-align: center;
}
.table.table_basic.th_center thead tr th,
.table.table_basic.th_center tbody tr th {
    text-align: center;
    word-break: keep-all;
}
.table.table_basic.table_vh thead tr th,
.table.table_basic.table_vh thead tr td,
.table.table_basic.table_vh tbody tr th,
.table.table_basic.table_vh tbody tr td {
    vertical-align: middle;
}
.table.table_basic.th_vh thead tr th,
.table.table_basic.th_vh tbody tr th {
    vertical-align: middle;
}
.table.table_basic.table_wb thead tr th,
.table.table_basic.table_wb tbody tr td,
.table.table_basic.table_wb tbody tr th {
    word-break: keep-all;
}
.table.table_basic tbody tr th {
    /* background-color: #fcfcfc; */
}
.table.table_basic thead tr th {
    border-top: 2px solid #454f5d;
    border-bottom: 2px solid #454f5d;
    font-weight: 700;
}
.table.table_basic tbody tr.imp th,
.table.table_basic tbody tr.imp td {
    background-color: #fdfffb;
}
.table.table_basic tbody tr.imp td {
    color: #082c44;
    font-weight: 600;
}
.table.table_basic tbody tr td.text-left {
    text-align: left;
}
.table.table_basic tbody tr td.text-right {
    text-align: right;
}
.table.table_basic tbody tr td.imp {
    background-color: #fffef4;
}
@media (max-width:992px){
    .table_wrp {
        width: 100%;
        overflow-x: scroll;
    }
    .table_wrp .table.table_basic {
        width: 700px;
    }
    .table.table_basic thead tr th,
    .table.table_basic thead tr td,
    .table.table_basic tbody tr th,
    .table.table_basic tbody tr td {
        font-size: calc(100vw * (18 / 992));
        padding: calc(100vw * (14 / 992));
    }
}
@media (max-width:768px){
    .table.table_basic thead tr th,
    .table.table_basic thead tr td,
    .table.table_basic tbody tr th,
    .table.table_basic tbody tr td {
        font-size: calc(100vw * (18 / 768));
        padding: calc(100vw * (14 / 768));
		word-break: break-all !important;
    }
}
@media (max-width:500px){
    .table.table_basic thead tr th,
    .table.table_basic thead tr td,
    .table.table_basic tbody tr th,
    .table.table_basic tbody tr td {
        font-size: calc(100vw * (18 / 500));
        padding: calc(100vw * (10 / 500));
    }
}

/* faq */
#qnaWrp .qnaItem {
    position: relative;
}
#qnaWrp .qnaItem + .qnaItem {
    margin-top: 15px;
}
#qnaWrp .qnaItem:last-child {
    border-bottom-width: 2px;
}
#qnaWrp .qnaItem > div {
    position: relative;
    padding: 20px;
}
#qnaWrp .qnaItem .qna_a {
    background-color: #fff;
}
#qnaWrp .qnaItem .qna_q {
    padding: 20px 60px;
    cursor: pointer;
    background-color: #e8e8e8;
}
#qnaWrp .qnaItem .qna_q .actBtn {
    position: absolute;
    cursor: pointer;
    right: 20px;
    top: 0;
    height: 100%;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#qnaWrp .qnaItem.act .qna_q .actBtn {
    transform: rotate(180deg);
}
#qnaWrp .qnaItem .qna_q h3 {
    font-weight: 700;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
#qnaWrp .qnaItem .qna_q h4 {
    margin-bottom: 0px;
}
#qnaWrp .qnaItem .qna_q h3,
#qnaWrp .qnaItem .qna_q h4 {
    color: #666;
}
#qnaWrp .qnaItem.act .qna_q {
    background-color: #2789cd;
}
#qnaWrp .qnaItem.act .qna_q h3,
#qnaWrp .qnaItem.act .qna_q h4 {
    color: #fff;
}
@media (max-width:768px){
    #qnaWrp .qnaItem .qna_q {
        padding: 15px 40px;
        padding-right: 25px;
    }
    #qnaWrp .qnaItem .qna_q h3 {
        left: 15px;
    }
    #qnaWrp .qnaItem .qna_q .actBtn {
        background-size: 10px !important;
    }
}



/* center1 */
#center1 .chkList li {
    margin: 8px 0;
}
#center1 .chkList li .dft {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.3em;
}
#center1 .chkList li {
    background-color: #edf5f5;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}
#center1 .chkList li .dft {
    align-items: center;
}
#center1 .chkList li i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background-color: #fff;
}
#center1 .chkList li span {
    width: calc(100% - 33px);
    padding-left: 10px;
}
@media (max-width:768px){
    #center1 .mjCnt {
        margin-top: 50px;
    }
    #center1 .stt {
        text-align: center;
    }
    #center1 .chkList {
        width: 100%;
    }
    #center1 .chkList li {
        padding: 8px;
        border-radius: 4px;
        margin: 10px 0;
    }
    #center1 .chkList li i {
        width: 28px;
        height: 28px;
    }
    #center1 .chkList li span {
        width: calc(100% - 28px);
    }
}



/* center1 */
#center1 .cont {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
#center1 .cont .ic {
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: .8em;
    color: #fff;
    background-color: rgba(18, 154, 210, 0.9);
    border: 2px solid #14aeed;
    border-radius: 40px 40px 2px 40px;
    box-shadow: 3px 9px 20px rgba(18, 154, 210, 0.4);
}

/* 글제목줄 분류스타일 */
.bo_cate_link {
	display:inline-block;
	margin:0 3px 0 0;
	padding:0 6px 0 0;
	border-right:1px solid #e7f1ed;
	color:#999 !important;
	font-weight:bold;
	text-decoration:none;
	line-height: 24px;
}
/*list 공통*/
#board_01_list .content_move{
	color: #b2b2b2;
}
#board_01_list .empty_list{
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}
#board_01_list .sort-destination{
	min-height: 50px !important;
}
/*웹진형*/
#board_01_list #gall_allchk {
    padding: 0px 5px 10px 5px;
    height: 30px;
    margin-bottom: 10px;
    margin-top: -15px;
    margin-left: -15px;
}
#board_01_list #gall_allchk input[type="checkbox"],
#board_01_list .thumb-info input[type="checkbox"] {
    margin: 10px;
    position: absolute;
    z-index: 5;
}
#board_01_list #fboardlist a {
	text-decoration: none;
	color: #383f48;
}
#board_01_list #fboardlist .bo_cate_link{
	font-weight: 500;
}
#board_01_list #fboardlist h2 .cnt_cmt{
	color: #2ba2de;
	font-weight: 400;
}
#board_01_list .no-image-wrp {
	width:100%;
	min-height:260px; 
	background-color:#eaeaea; 
	margin:0;
	background: url(img/no-image.png) center center no-repeat;
	border: 1px solid #eee;
}
#board_01_list .no-image-wrp .no-image-con {
    display: block;
    text-indent: -999px;
    overflow: hidden;
	display: block;
}
#board_01_list .blog-posts .notice_img_admin{
	position: absolute;
    z-index: 3;
    margin: 4px 35px;
}
#board_01_list .blog-posts .notice_img{
	position: absolute;
    z-index: 3;
    margin: 4px 9px;
}
#board_01_list .bo_current{
	display: block;
	text-indent: -9999px;
	overflow: hidden;
	width: 0;
    height: 0;
}
#board_01_list .blog-posts .bo_current+.post-medium .post-img-area .thumb-info{
	overflow: hidden;
}
#board_01_list .blog-posts .bo_current+.post-medium .post-img-area .thumb-info .image-wrp:before{
    content: "열람중";
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
	left: 0;
	text-indent:-9999px;
	overflow:hidden;
}
#board_01_list .blog-posts .bo_current+.post-medium .post-img-area .thumb-info .image-wrp:after{
    content: ".";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background: url(./img/view.png) center center no-repeat;
	top: 0;
	left: 0;
	text-indent:-9999px;
	overflow:hidden;
}
@media only screen and (max-width: 992px){
	#board_01_list .post .row .col-md-1,
	#board_01_list .post .row .col-md-2,
	#board_01_list .post .row .col-md-3,
	#board_01_list .post .row .col-md-4,
	#board_01_list .post .row .col-md-5,
	#board_01_list .post .row .col-md-6,
	#board_01_list .post .row .col-md-7,
	#board_01_list .post .row .col-md-8,
	#board_01_list .post .row .col-md-9,
	#board_01_list .post .row .col-md-10,
	#board_01_list .post .row .col-md-11,
	#board_01_list .post .row .col-md-12 {
		padding: 0;
	}
	#board_01_list .blog-posts .notice_img_admin{
		margin: 4px 39px;
	}
	#board_01_list .blog-posts .notice_img{
		margin: 4px 9px;
	}
}
@media only screen and (max-width: 496px){
	#board_01_list #fboardlist h2 {
		margin: 0 !important;
		line-height: 1.4em;
	}
	#board_01_list #fboardlist h2 a {
		font-size: 13px;
	}
}
/*아이콘*/
#board_01_list .post-icon-area img{
	position: absolute;
    z-index: 10;
    right: 0;
    width: 50px;
	margin: 10px;
}
/*갤러리형*/
#board_01_list .sort-destination {
    overflow: visible;
}
#board_01_list .dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    width: 100%;
    background-color: #e5e5e5;
}
#board_01_list .dropdown-menu .list-unstyled {
    margin-bottom: 10px !important;
}
#board_01_list .item_meta {
	position: absolute;
    bottom: 0;
}
#board_01_list .item_meta > li{
	float: left;
	padding-right: 8px;
}
#board_01_list .portfolio-list .portfolio_subject_name{
	display: block;
	min-height: 50px;
	position: relative;
}
#board_01_list .portfolio-list .border-wrp .item-wrp{
	font-size: 13px;
    padding: 15px 0;
}
#board_01_list .portfolio-list h2{
	line-height: 2.5rem;
	font-size: 18px !important;	
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
#board_01_list .portfolio-list p {
	
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
#board_01_list .portfolio-list .notice_img_admin{
	position: absolute;
    z-index: 3;
    margin: 4px 50px;
}
#board_01_list .portfolio-list .notice_img{
	position: absolute;
    z-index: 3;
    margin: 4px 24px;
}
#board_01_list .bo_current+.isotope-item .thumb-info{
	overflow: hidden;
}
#board_01_list .bo_current+.isotope-item .thumb-info .image-wrp:before{
    content: "열람중";
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
	left: 0;
	text-indent:-9999px;
	overflow:hidden;
}
#board_01_list .bo_current+.isotope-item .thumb-info .image-wrp:after{
    content: ".";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background: url(./img/view.png) center center no-repeat;
	top: 0;
	left: 0;
	text-indent:-9999px;
	overflow:hidden;
}
@media only screen and (max-width: 992px){
	#board_01_list .isotope-item {
		position: static !important;
		text-align: left;
	}
	#board_01_list .portfolio-list .portfolio_subject_name{
		margin-top: 0;
		min-height: inherit;
	}
	#board_01_list .portfolio-list li{
		padding: 0;
	}
	#board_01_list .portfolio-list h2 {
		font-size: 15px !important;	
	}
	#board_01_list .portfolio-list .notice_img_admin{
		margin: 4px 39px;
	}
	#board_01_list .portfolio-list .notice_img{
		margin: 4px 9px;
	}
	#board_01_list .item_meta {
		position: inherit;
	}
}

/*피플푸드 수정*/
#board_01_list ul li a.img-thumbnail{
	border: 0px;
    padding: 0px;
    display: block;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
}
#board_01_list ul li a.img-thumbnail:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/hover_plus.png) center center no-repeat;
	background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    z-index: 4;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
#board_01_list ul li a.img-thumbnail:hover:before{
	opacity: 1;
}
#board_01_list ul li a.img-thumbnail:after{
	display: none;
}	
@media (max-width: 768px){
	#board_01_list ul li a.img-thumbnail{
		border-radius: 10px;
	}
}

/*p_dft*/
.p_dft {
	font-size: 13px;
	line-height: 1.4em;
	color: #636363;
	font-family: "dotum";
}