@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

@font-face {
    font-family: 'NanumSquareRound';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/NanumSquareRound.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* reset */
@media all {
    .clear:after { 
        content:""; 
        display:block; 
        clear:both;
    }
    * { margin:0; padding:0; outline:none; box-sizing:border-box; }
    body {
    line-height:1; font-size:14px; font-weight:400; color:#000; font-family: 'Noto Sans KR', sans-serif !important; word-wrap: break-word; word-break: keep-all;
    }
    h1, h2, h3, h4, h5, h6 { margin:0; font-family: 'Noto Sans KR', sans-serif !important; line-height:1; font-size: 1em; }
    ul, ol { list-style:none; margin:0; padding: 0; }
    a { outline:0; text-decoration:none; color: #000; font-family: 'Noto Sans KR', sans-serif !important; }
    a:focus { outline:none; }
    figure,dl,dd,input[type=radio], input[type=checkbox]  { margin: 0; padding: 0; }
    img { border:none; outline:none; max-width: 100%; }
    p { margin:0; padding:0; word-wrap: break-word; word-break: keep-all;  }
    button, input, submit { border: none; background: none; }
    dt { font-weight: normal; }
    ::placeholder { font-family: 'Noto Sans KR', sans-serif !important; }
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
        transition: background-color 5000s ease-in-out 0s;
        -webkit-transition: background-color 9999s ease-out;
        box-shadow: none !important;
        -webkit-text-fill-color: none !important;
    }
}   

/* 탭 초기화 */
.tabBox1 .nav { border: none; }
.tabBox1 .nav > li { margin: 0; float: none; }
.tabBox1 .nav > li > a { padding: 0; margin: 0; border-radius:0; border: 0; }
.tabBox1 .nav > li:hover > a { background: none; }
.tabBox1 .nav > li.active > a { border: none; background: none; }

:root {
	/* 컨텐츠 너비 */
	--containerV1-width : 1300;

	--main-color : #c2d7bb; /* mainColor */		
	--sub-color : #93b289; /* subColor */		
	--basic-border-color : #7d9874; /* basic-borderColor */	
    
    --header-height: 100px;
}
@media (max-width:991px) {/* 모바일 */
	:root { --header-height: 80px; }
}

/* container */
.containerV1 { width: 100%; margin: 0 auto; max-width: calc(var(--containerV1-width) * 1px); }
@media (max-width:1430px) {
	.containerV1 { padding: 0 15px; }
}

/* 확대 축소 애니메이션 */
@keyframes ani_scale1 {
	50% { transform:scale(1.005); }
}
@keyframes ani_scale2 {
	50% { transform:scale(1.04); }
}
@keyframes ani_scale3 {
	50% { transform:scale(1.00); }
}

.wrapper { overflow-x: hidden; }

/* 게시판 글 없을 때 */
.post-none { font-size: 16px; }


/*--------------------------------------------------- 해드세팅 ----------------------------------------------------------------------------*/
/* 사이트맵 */
.box-siteMap {
    /* 사이트맵 기준 폰트 */
    --font-size-standard : 10;
    font-size: 
    min(calc(var(--font-size-standard) / 1920 * 100vw),
    calc(var(--font-size-standard) * 1px));
    position: fixed; left: 0; top: 0; width: 100%; height: 100%;
    z-index: 9999;
    display: flex; transform: translateX(100%);
    transition: 0.5s;
}
.box-siteMap:before {
    content: ''; position: absolute; left: 50%; top: 50%;
    transform:translate(-50%,-50%); width: 100%; height: 100%;
    background: #000;
    z-index: 1; 
    opacity: 0.6;
}
.box-siteMap:after {
    content: ''; position: absolute; left: 0; top: 0;
    background: url(./img/sitemap_img.jpg) no-repeat center / cover;
    width: 100%; height: 100%;
}
.box-siteMap > * { position: relative; z-index: 2; }
.box-siteMap.active { transform: translateX(0%); }
.box-siteMap a { color: inherit; }
.box-siteMap .logoBox {
    position: absolute; left: 50px; top: 50px;
}
.box-siteMap .logoBox a { display: block; }
.box-siteMap .closeBtn {
    position: absolute; right: 50px; top: 50px;
    font-size: 50px; width: 1em; height: 1em;
    line-height: 1; color: #fff;
}
.box-siteMap .outer { 
    color: #fff; display: flex; justify-content: center;
    width: 100%; height: 65%; margin-top: auto;
    font-size: 44px;
    gap:clamp(0.5em,calc(100 / 1920 * 100vw),100px);
}
.box-siteMap .outer > li > a {
    font-weight: bold; margin-bottom: 0.8em; display: block;
}
.box-siteMap .outer .inner {
    font-size: 0.5em; display: grid; gap:1em;
    color: rgba(255,255,255,1);
}
.box-siteMap .outer .inner > li { 
    padding-left: 0.5em; 
}
.box-siteMap .outer .inner > li > a:before {
    content: '- '; display: inline-block; margin-right: 0.2em;
}

.header_wrap { 
    --transtion:0.4s;
    --font-size:clamp(16px,calc(18 / 1920 * 100vw),18px);
    position:fixed; right:0; top:0; width:100%; z-index:2000; 
    transition:var(--transtion); font-size: var(--font-size); 
    background: url(./img/header_bg.png) repeat-x;
}
.header_wrap > .containerV1 { 
    height: var(--header-height); display:grid; align-items:center; 
    transition:var(--transtion); 
}

#header { 
    display:flex; align-items:center;
}

/* 로고 */
#header .logo { width: 190px; }
#header .logo a { display: block; }


/* 아이콘 */
#header .iconBox { display:flex; }

/* 스크롤 */
.header_wrap.scroll {
    background: var(--sub-color);
}
.header_wrap.scroll > .containerV1 { 
    font-size: 0.9em; 
    height: calc( var(--header-height) - 20px ); 
}


@media (min-width:991px) {/* pc */
    @keyframes head-inner-ani1 {
        0%{ transform:translateX(-10%); }
        70%{ transform:translateX(10%); }
        100%{ transform:translateX(0); }
    }

    /* pc - menu */
    /*---------------------------------------- pc - outer ---------------------------------------------*/
    .header_wrap .menu_box { width: 100%; }
    #h_menu { 
        flex:1;
        display:flex; align-items:center; gap:1em; 
        justify-content: space-between;
    }
    #h_menu .outer { -ms-display:flex; display:flex; gap:2.6em; }

    #h_menu .outer > li { position: relative; }
    #h_menu .outer > li > a { 
        color: #fff; display: block; font-weight: bold; 
    }
    #h_menu .outer > li > a::before{
        content: "";
        position: absolute;
        width: 0%;
        height: 2px;
        background: #fff;
        top: 110%;
        transition: all 0.3s;
    }
    /*---------------------------------------- // pc -outer ---------------------------------------------*/

    /*---------------------------------------- pc - inner ---------------------------------------------*/
    #h_menu .outer > li > .inner {
        --inner-border-color:#f4f4f4;
        font-size: 0.9em;
        position:absolute; left:50%; top:100%; transform:translateX(-50%); 
        z-index: 1; width:11em; visibility:hidden; opacity: 0; 
        padding: 2em 0.5em 0.5em 0.5em; 
        height: 0; 
        overflow: hidden;
    }
    #h_menu .outer > li > .inner:after {
        content: ''; position: absolute; 
        width: 0; height: 0; left: 50%; top: 1.1em; z-index: 1;
        transform: translateX(-50%);
        border-left: 0.7em solid transparent; 
        border-right: 0.7em solid transparent; 
        border-bottom:1em solid #fff;
    }
    #h_menu .outer > li > .inner > li {
        position: relative; z-index: 2;
        box-shadow: 2px 2px 8px rgb(0 0 0 / 20%);
        background-color: #fff;
        border: 1px solid var(--inner-border-color);
    }
    #h_menu .outer > li > .inner > li:first-child {
        border-radius: 1em 1em 0 0; overflow: hidden;
    }
    #h_menu .outer > li > .inner > li:last-child {
        border-radius: 0 0 1em 1em; overflow: hidden;
    }
    #h_menu .outer > li > .inner.one > li {
        border-radius: 1em !important;
    }
    #h_menu .outer > li > .inner > li > a  { 
        display: block;
        transition:var(--transtion); padding:0.83em 1.1em; text-align:center; 
        color: #888; 
    }
    /*---------------------------------------- // pc - inner ---------------------------------------------*/

    /* 아이콘 */
    #header .iconBox { gap:1em; align-items: center; }
    #header .iconBox > li > a { 
        color: #fff; display: block; 
    }
    #header .iconBox .tooltip > .tooltip-inner {
        background: var(--basic-border-color);
    }
    #header .iconBox .tooltip > .tooltip-arrow {
        border-bottom:5px solid var(--basic-border-color);
    }
    #header .iconBox .btn_siteMap { 
        margin-left: 0.5em;
        background: #b6d9aa; color: #fff;
        font-size: 2em; width: 1.5em; height: 1.5em;
        border-radius:50%;
    }

    /* pc - hover */
    #h_menu .outer > li:hover > a::before { width: 100%; }
    #h_menu .outer > li:hover > .inner { 
        visibility:visible; opacity: 1; 
        height: auto; 
        transition:var(--transtion);
    } 
    #h_menu .outer > li:hover > .inner:after {
        transition:var(--transtion);
    }
    #h_menu .outer > li > .inner > li > a:hover { 
        color:#fff; background:var(--sub-color); 
    } 

    /* pc - 페이지 및 게시판 이동하면 해당 메뉴 스타일 */
    #h_menu .outer > li > a.on::before{width: 100%;} 
}

@media (991px <= width <= 1300px) {
    .box-siteMap .outer { font-size: 35px; }
    /* 스크롤 */
    .header_wrap.scroll > .containerV1 { 
        height: calc( var(--header-height) - 10px ); 
    }
}

@media (max-width:991px) {/* 모바일 */
    .box-siteMap { display: none; }
    .header_wrap > .containerV1 {
        display: block;
    }
    /* 스크롤 */
    .header_wrap.scroll > .containerV1 { 
        height: calc( var(--header-height) - 10px );
    }

    #header { 
        gap:2.8em; justify-content: space-between; height: 100%; 
        align-items:center;
    }

    #header .logo { width: 150px; }

    /* 모바일 열기 버튼 */
    .header_wrap .open_btn { 
        cursor:pointer; font-size: 2em; color: #fff; 
    }

    .menu_box { 
        --transition:0.4s;
        font-size: 21px;
        position: fixed; right: 0; top: 0; width: 100%; height: 100%; 
        z-index:9999; background: #fff; transition:var(--transition); 
        order:2;
        transform:translateX(100%);
    }

    /* 모바일닫기버튼 */
    .header_wrap .topBox {
        display: flex !important; align-items: center;
        margin-bottom: 1.5em; order:1;
    }
    .close_btn { 
        width:2em; height:2em; cursor:pointer; 
        z-index: 9999; 
        transform:translateX(20%); margin-left: auto;
    }
    .close_btn > i { display:block; color:#000; text-align:center; line-height:1em; font-size:2em; }

    #h_menu { 
        width: 100%; height: 100%; overflow-x: hidden; overflow-y:auto; 
        position: absolute;  top:0;
        display:grid; align-items:start; align-content:start; padding:1em;
    }
    .menu_box #h_menu .outer { 
        display:grid; padding-bottom: 1.5em; order:3;
    }
    #h_menu .outer > li > a {
        font-weight: bold; display: flex; align-items: center;
        justify-content: space-between; 
        border-bottom: 1px solid rgba(0,0,0,0.3);
        padding: 0.8em 0.3em;
        pointer-events: none;
    }
    #h_menu .outer > li > a:after {
        content: ''; display: block; margin-right: 0.3em;
        background: url(./img/head_mob_arrow.png) no-repeat center / cover;
        width: 14px; height: 14px;
    }
    #h_menu .inner { 
        font-size: 0.9em; padding-left: 0.4em; padding-top: 0.8em; 
        margin-bottom: 1em; display: none;
    }
    #h_menu .inner > li > a {
        display: block; padding-left: 0.7em; position: relative;
    }
    #h_menu .inner > li:not(:last-child) > a {
        margin-bottom: 1em;
    }
    #h_menu .inner > li > a:before {
        content: '-'; position: absolute; left: 0; top: 50%;
        transform: translateY(-50%);
    }

    #header .iconBox { 
        font-size: 1em;
        order:2; 
        justify-content: center;
        gap:1em;
        margin-bottom: 0.8em;
        border-top: 1px solid rgba(0,0,0,0.3);
        border-bottom: 1px solid rgba(0,0,0,0.3);
        padding: 1em 0;
    }
    #header .iconBox > li > a {
        display: flex; gap:0.3em; align-items: center;
    }
    #header .iconBox img {
        filter: invert(1);
    }

    /* 모바일메뉴박스 보이게 하는 클래스 */
    .menu_box.inactive { transform:translateX(0); } 

    /* outer 클릭시 inner보이는 효과 */
    #h_menu .outer > li.on > a:after {
        transform: rotate(180deg);
    }
    #h_menu .outer > li.on .inner {
        display: block;
    }

    /* on */
    .menu_box #h_menu .outer > li > a.on { color: var(--sub-color); }
}
/*--------------------------------------------------- 해드세팅 끝 ----------------------------------------------------------------------------*/



/*--------------------------------------------------- 인덱스세팅 ----------------------------------------------------------------------------*/
main .section {font-size: min(10px, calc(10 / 450 * 100vw)); overflow: hidden; }

/* 타이틀박스 */
main .titleBox {color: #000; text-align: center; margin-bottom: 9.5em; transition: 1s; }
main .title-V1 {
    font-family: 'NanumSquareRound' !important; font-size: 3.4em; 
    color: inherit; line-height: 1.3; margin-bottom: 0.5882em;
    
}
main .titleBox .text-v1 { 
    /* !체크 - 가능하면 중요도 있는 건 태그 말고 클래스로 */
    font-size: 2.4em; color: inherit; line-height: 1.3; 
}
main .titleBox[data-scroll="out"] {
    transform: translateY(10%); opacity: 0;      
}

/* main btn css */
.main_link_btn { 
    --item-color:#000;
    position: relative; padding: 0.35em 0; 
    border-bottom: 1px solid #000; 
    border-bottom: 1px solid var(--item-color); 
    display: inline-block; color: var(--item-color) !important;
    font-weight: 500; font-size: 1.6em;
}
.main_link_btn:before {
    content: ''; position: absolute; left: 0; top: 0; width: 0; height: 1px;
    background: #000; 
    background: var(--item-color); 
    transition:0.4s;
}
.main_link_btn:hover:before {
    width: 100%;
}


/* section1 */
@media all {
    /* section1 */
    main .section1{padding: 11.5em 0;}
    
    main .section1 .itemBox {display: flex; gap: 5em; }
    main .section1 .item_text {flex: 1; transition: 1s; }
    main .section1 .item_text h2 {
        font-size: 2.4em; color: #313131; font-weight: bold; line-height: 1.3;
        margin-bottom: 1.2em;
    }
    main .section1 .item_text .text_box {display: grid; gap: 3em; margin-bottom: 4.7em;}
    main .section1 .item_text .text_box p.text1 {
        font-size: 1.6em; color: #626262; line-height: 1.6;
    }
    main .section1 .item_img { transition: 1s; }

    main .section1 .itemBox[data-scroll="out"] .item_text {
        transform: translateX(-5%); opacity: 0;
    }
    main .section1 .itemBox[data-scroll="out"] .item_img {
        transform: translateX(5%); opacity: 0;
    }
}

@media (max-width: 1230px) {
    main .section1 .itemBox br {display: none;}
}

@media (max-width:991px) {
    main .section1 .itemBox {flex-direction: column; gap:5em; align-items: center;}
    main .section1 .itemBox .item_text {order: 2; text-align: center;}
    main .section1 .itemBox .item_text h2 {justify-content: center; flex-direction: column;}
    main .section1 .itemBox .btn_box {justify-content: center; flex-wrap: unset;}
}


/* section2 */
main .section2{background-color: #fbfbfb; padding: 11.5em 0;}
main .section2 .itemBox{
    display: flex; align-items: center; justify-content: space-between; 
    gap: 3em; padding: 0 3em;
}
main .section2 .itemBox .item { transition:1s; }
main .section2 .itemBox .item_img{
    margin-bottom: 3.5em; text-align: center; 
}

main .section2 .itemBox .item_text{text-align: center;}
main .section2 .itemBox .item_text h3{
    font-size: 2em; color: #313131; font-weight: bold; margin-bottom: 1em;
}
main .section2 .itemBox .item_text p{
    font-size: 1.6em; color: #626262; line-height: 1.6;
}
@media (min-width:991px) {
    main .section2 .itemBox[data-scroll="out"] .item1 {
        opacity: 0; transform: translateY(5%);
    }
    main .section2 .itemBox[data-scroll="out"] .item2 {
        opacity: 0; transform: translateY(15%);
    }
    main .section2 .itemBox[data-scroll="out"] .item3 {
        opacity: 0; transform: translateY(30%);
    }
}
@media (max-width: 1090px) {
    main .section2 .itemBox .item_text{min-height: 150px;}
    main .section2 .itemBox .item_text p br{display: none;}
}
@media (max-width:768px) {
    main .section2 .itemBox{flex-direction: column; padding: 0;}
    main .section2 .itemBox .item{display: flex; align-items: center; gap: 3em;}
    main .section2 .itemBox .item_text{min-height: initial; text-align: left;}
}


/* section3 */
main .section3{
    padding: 5em 0 2em 0; position: relative; 
}
main .section3:before {
    content: ''; position: absolute; left: 50%; top: 50%;
    transform: translate(-50%,-50%); width: 100%; height: 100%;
    background-color: #b3d2c0; transition: 1s;
}
main .section3[data-scroll="out"]:before {
    width: 80%;
}
main .section3 .itemBox{
    display: flex; align-items: start; justify-content: space-between;
    gap: 3em; position: relative; z-index: 1;
}
main .section3 .itemBox .item_text{margin-top: 2.5em;}
main .section3 .itemBox .item_text h2{
    font-size: 2.4em; font-weight: bold;
    color: #ffffff; margin-bottom: 1.04em; line-height: 1.3;
}
main .section3 .itemBox .item_text .text_box p{
    font-size: 1.6em; line-height: 1.6; color: #fff; margin-bottom: 2.5em;
}
main .section3 .itemBox .main_link_btn {
    --item-color:#fff;
}
main .section3 .itemBox .item_img{ margin-right: 3em; }

@media (max-width: 768px){
    main .section3{
        padding: 5em 0;
    }
    main .section3 .itemBox{
        flex-direction: column-reverse;  gap: 0; align-items: center;
    }
    main .section3 .itemBox .item_text{text-align: center; margin-top: 0;}
    main .section3 .itemBox .item_img{margin-right: 0;}
}


/* section4 */
main .section4 {
    padding: 11.5em 0; overflow: hidden;
}
main .section4 .title-V1 { margin-bottom: 0.4em; }
main .section4 .titleBox { margin-bottom: 6em; }
main .section4 .btn_wrap {
    margin-top: 8em; text-align: center;
}
@media (max-width:768px) {
    main .section4 .btn_wrap {
        margin-top: 5em;
    }
}

/* section5 */
main .section5 {
    padding: 11.5em 0; position: relative;
}
main .section5:before {
    content: ''; position: absolute; left: 50%; top: 50%;
    transform: translate(-50%,-50%); width: 100%; height: 100%;
    background-color: #fbfbfb; transition: 2s;
}
main .section5[data-scroll="out"]:before {
    width: 10%;
}
main .section5 .containerV1 { position: relative; z-index: 1; }
main .section5 .basic-post-list1 .post-list li.item-first {
    transition: 1s;
}
main .section5 .basic-post-list1 .post-list li.item-first[data-scroll="out"] {
    opacity: 0;
}
main .section5 .btn_wrap {
    margin-top: 8em; text-align: center;
}
@media (max-width:768px) {
    main .section5 .btn_wrap {
        margin-top: 5em;
    }
}


/* section6 */
main .section6{
    background:url(./img/section6_bg.jpg) no-repeat center / cover;
    text-align: center; padding: 12em 0;
}
main .section6 .itemBox{ color: #fff; transition: 1s; }
main .section6 .itemBox[data-scroll="out"] {
    opacity: 0; transform: translateY(10%);
}
main .section6 .itemBox h2{
    font-size: 3.4em; font-weight: bold; line-height: 1.3; 
    margin-bottom: 0.5em;
}
main .section6 .itemBox h3 { 
    font-size: 2.4em; color: inherit; line-height: 1.3; font-weight: bold;
    margin-bottom: 1em;
}
main .section6 .itemBox p{
    font-size: 1.6em; line-height: 1.3; margin-bottom: 2.5em;
}
main .section6 .main_link_btn{
    --item-color:#fff;
    text-align: center;
}
@media (min-width:991px) {
    main .section6{
        background: url(./img/section6_bg_pc.jpg) no-repeat center / cover;
        background-attachment: fixed;
    }
}





/*--------------------------------------------------- 인덱스세팅 끝 ----------------------------------------------------------------------------*/



/*--------------------------------------------------- 푸터세팅 ----------------------------------------------------------------------------*/
#footer {
    background: #fff; color: #fff;
    font-size: 18px;
    overflow: hidden;
}
#footer a { color: inherit; }
#footer .box1 {
    padding: 75px 0;
}
#footer .box1 .outer {
    display: flex; justify-content: space-between;
}
#footer .box1 .outer > li:last-child {
    padding-right: min(calc(80 / 1920 * 100vw),80px);
}
#footer .box1 .outer > li > .text {
    display: block; position: relative;
}
#footer .box1 .outer > li > .text:after {
    content: ''; display: block; width: 1.2em; height: 3px;
    background: var(--main-color); margin: 1em 0;
}
#footer .box1 .outer > li > .text > a {
    font-weight: bold;
}
#footer .box1 .inner {
    font-size: 0.89em; display: grid; gap:1em;
    color: rgba(255,255,255,0.6);
}

/* 푸터 스타일 여기에 작업 */
	
	/* 약관박스 : infobox  */
    #footer .infobox { border-bottom: 1px solid #ccc;}
    #footer .infobox > .containerV1 {display: flex; justify-content: space-between; align-items: center;}
    #footer .info_box {display: flex; padding: 25px 0;}
    #footer .info_box > li {position:relative;}
    #footer .info_box > li:after {
        content:''; position:absolute; right: 13px; top:53%; 
        transform:translateY(-50%); width:2px; height: 12px; background: #535353;
    }
    #footer .info_box > li:last-child:after { display:none;}
    #footer .info_box > li > a {
        font-weight: normal;
        display:block; color: #535353; font-size:  0.89em;
        line-height:1.8; margin-right:30px;
    }
    #footer .info_box > li > a:hover {text-decoration: underline !important;}

/* #footer  logo content   */
    #footer .contents {padding: 50px 0 46px; display: flex; gap: 20px; justify-content: space-between;}

    #footer .contents .item2 span{font-size: 0.89em; color: #707070;}
    #footer .contents .item2 .copy {font-size: 0.89em; color: #707070; line-height: 1.8;}
    #footer .contents .item2 .copy a {color: inherit !important;}
    #footer .contents .item2 .text span{margin-right: 18px; line-height: 1.8; position: relative;}
    #footer .contents .item2 .text span::before{
    content:''; position:absolute; right:-11px; top:55%; transform:translateY(-50%);
    width:2px; height: 12px; background:#535353;}

    #footer .contents .item2 .text span:last-child{margin-right: 0;}
    #footer .contents .item2 .text span:last-child::before{display: none;}
    
    #footer .contents .item3 {font-size: min(10px, calc(10 / 450 * 100vw));}
    #footer .contents .item3 p {color: #535353; font-size: 2em; font-weight: 500; line-height: 1.2;}
    #footer .contents .item3 h3 {color: #9cd789; font-weight: 500; font-size: 4.5em;}

    #footer .ft_sitemap {position: relative;height: 100%;}
    #footer .ft_sitemap > select {
        width: 218px; height: 40px; border-color: #d2d2d2;
        padding: 10px 15px; font-size: 0.77em; color: #959595;
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
    }
    #footer .ft_sitemap::after {
        content:''; position: absolute;
        top: 50%; right: 15px;
        transform: translateY(-3px);
        width: 8px;
        height: 5px;
        background: url("./img/footer_box.png") no-repeat;
    }
/*  미디어쿼리 */
@media (max-width: 1200px){
    #footer .contents{flex-direction: column; align-items: center;}
    #footer .contents .item2{text-align: center;}
}

@media (max-width: 991px) {
    #footer .box1 { display: none;}
    #footer { font-size: 13px; }
    #footer .contents { padding: 1.2em 0; }
    #footer .contents .item2 {order: 2;}
    #footer .contents .item3 {text-align: center; order: 1;}
}
/*--------------------------------------------------- 푸터세팅 끝 ----------------------------------------------------------------------------*/








/* 서브페이지 패딩 */
.tmt_sub_frame { padding:40px 0 50px; min-height: 70vh; }


/* 게시판 및 게시판헤드 등 기타 버튼들 기본컬러 변경 */
.btn.btn-color {border: 1px solid var(--basic-border-color); background-color: var(--sub-color);}
.btn.active.btn-color, .btn.btn-color:hover, .btn.btn-color:focus, .btn.btn-color:active {background-color: var(--sub-color);}
.border-color, i.border-color, img.border-color {border-color: var(--basic-border-color);}

/* 모달 z-index높이기 (해드에 가려지는 경우 발견해서) */
.modal { z-index: 9999; }
.modal-backdrop { z-index: 9998; }

#style-switcher .widget-setup { top: 155px !important; }
