@charset "utf-8";
/* 투어머치 전현진 */


/* 서브 TOP */
.sub-top {
    position: relative;
    overflow: hidden;
    height: 550px;
    max-height: 800px;
    padding-top: var(--height-header);
    transition: .3s;
}

.sub-top .sub-top-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background-color: var(--color-gray);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-size: 0;
    /*
    animation-name: subTopScale;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    */
}

@keyframes subTopScale {
    0% {transform: scale(1.2)}
    to {transform:scale(1)}
}

.sub-top h1.h1-tit {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
    padding: 0 var(--page-padding);
    padding-bottom: calc(var(--page-padding) * 3);
    color: var(--color-white);
    word-break: keep-all;
    text-align: center;
}

.sub-top h1.h1-tit em {
    line-height: 1.4;
    font-family: var(--font-point);
    font-size: clamp(3rem, 3vw, 5rem);
    text-shadow: 0 2px 2px rgba(var(--color-black-rgb),0.1);
}

.sub-top h1.h1-tit .txt {
    line-height: 1.4;
    font-weight: var(--font-weight-light);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.sub-top .sub-top-state {
    --loca-height: 50px;

    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: var(--color-background);
    box-shadow: 0 3px 10px rgba(var(--color-black-rgb),0.1);
    border-radius: calc(var(--loca-height) / 2);
    transition: .3s;
    z-index: 20;
}

.sub-top .sub-top-state .loca {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    padding-left: 10px;
    font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.sub-top .sub-top-state .loca .home-btn {
    width: 30px;
    height: var(--loca-height);
    line-height: var(--loca-height);
    text-align: center;
    opacity: 0.6;
    transition: .2s;
}

.sub-top .sub-top-state .loca .home-btn:hover {
    color: var(--color-dcepc);
    opacity: 1;
}

.sub-top .sub-top-state .loca dl {
    position: relative;
}

.sub-top .sub-top-state .loca dl:before {
    position: absolute;
    top: calc(50% - 3px);
    left: -23px;
    width: 6px;
    height: 6px;
    background-color: var(--color-gray-light);
    border-radius: 50%;
    content: '';
}

.sub-top .sub-top-state .loca dl dt .loca-on-off-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: var(--loca-height);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    color: var(--color-gray);
}

.sub-top .sub-top-state .loca dl dt .loca-on-off-btn em {
    max-width: 60px;
}

.sub-top .sub-top-state .loca dl dt .loca-on-off-btn .arrow {
    transition: .3s;
}

.sub-top .sub-top-state .loca dl dt .loca-on-off-btn.on .arrow {
    transform: rotate(180deg);
}

.sub-top .sub-top-state .loca dl dd {
    display: none;
    position: absolute;
    bottom: calc(var(--loca-height) + 10px);
    left: calc(50% - 60px);
    width: 120px;
}

.sub-top .sub-top-state .loca dl dd ul {
    overflow: hidden;
    background-color: var(--color-background);
    box-shadow: 0 2px 3px rgba(var(--color-black-rgb),0.2);
    border-radius: 5px;
}

.sub-top .sub-top-state .loca dl dd ul li:not(:first-child) {
    border-top: 1px solid var(--color-gray-light);
}

.sub-top .sub-top-state .loca dl dd ul li a {
    line-height: 50px;
    padding: 0 10px;
    font-size: 1.5rem;
}


@media screen and (min-width: 639px) {
    .sub-top {
        height: 600px;
    }

    .sub-top .sub-top-state .loca dl dt .loca-on-off-btn em {
        max-width: 100px;
    }
}

@media screen and (min-width: 767px) {
    .sub-top h1.h1-tit {
        padding-bottom: calc(var(--page-padding) * 3);
    }

    .sub-top .sub-top-state {
        --loca-height: 60px;

        bottom: 20px;
    }

    .sub-top .sub-top-state .loca {
        gap: 60px;
        padding-left: 30px;
    }

    .sub-top .sub-top-state .loca dl:before {
        left: -33px;
    }

    .sub-top .sub-top-state .loca dl dt .loca-on-off-btn em {
        max-width: 200px;
    }

    .sub-top .sub-top-state .loca dl dd {
        left: calc(50% - 100px);
        width: 200px;
    }
}

@media screen and (min-width: 979px) {
}

@media screen and (min-width: 1239px) {
    .sub-top {
        height: 700px;
    }

    .sub-top h1.h1-tit {
        padding-bottom: calc(var(--page-padding) * 5);
    }

    .sub-top .sub-top-state {
        --loca-height: 70px;
    }

    .sub-top .sub-top-state .loca {
        gap: 100px;
    }

    .sub-top .sub-top-state .loca dl:before {
        left: -53px;
    }

    .sub-top .sub-top-state .loca dl dt .loca-on-off-btn em {
        max-width: auto;
    }
}

@media screen and (min-width: 1439px) {
    .sub-top .sub-top-state {
        left: calc(50% - 670px);
        right: auto;
        bottom: 30px;
        width: 1340px;
    }
}


/* 스크롤 유도 */
.scroll-down {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin:0 auto;
    text-align:center;
    z-index: 10;
}

.scroll-down p {
    position: relative;
    right: -2px;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: rgba(var(--color-white-rgb),0.5);
    text-transform: uppercase;
}

.scroll-down div {
    position:relative;
    margin: 0 auto;
    width: 1px;
    height: 100px;
}

.scroll-down div::after,
.scroll-down div::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 1px;
    height: 100%;
    margin-left: -0.5px;
    background: rgba(255,255,255,.2);
    -webkit-transition: .5s;
    transition: .5s;
}

.scroll-down div::after {
    will-change: transform;
    width: 1px;
    background: var(--color-white);
    animation-name:scrollDown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.75,0,.173,1);
}

@keyframes scrollDown {
    0% {transform-origin:50% 100%;transform: scaleY(1)}
    50% {transform-origin: 50% 100%;transform: scaleY(0)}
    50.001% {transform-origin:50% 0;transform:scaleY(0)}
    to { transform-origin: 50% 0; transform:scaleY(1)}
}

@media screen and (min-width: 639px) {
    .scroll-down div {
        height: 120px;
    }
}

@media screen and (min-width: 1239px) {
    .scroll-down div {
        height: 140px;
    }
}


/* 서브페이지 공통 */
.sub-panels {
    position: relative;
    padding: calc(var(--page-padding) * 1.5) var(--page-padding);
}

.sub-panels.no-bottom-padding {
    padding-bottom: 0 !important;
}

.sub-menu-list {
    position: relative;
    overflow: hidden;
    padding: 0 var(--page-padding);
    margin: 0 calc(var(--page-padding) * -1);
    margin-bottom: clamp(30px, 5vw, 80px) !important;
}

.sub-menu-list .sub-menu-slide ul {
    align-items: center;
}

.sub-menu-list .sub-menu-slide ul li {
    width: auto;
}

.sub-menu-list .sub-menu-slide ul li .sub-menu-btn {
    position: relative;
    line-height: 1.4;
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--color-basic);
    opacity: 0.5;
    transition: .3s;
}

.sub-menu-list .sub-menu-slide ul li .sub-menu-btn:before {
    position: absolute;
    bottom: 0;
    left: 49.9%;
    right: 49.9%;
    height: 10px;
    border-radius: 10px 10px 0 0;
    background-color: rgba(var(--color-yellow-rgb),0);
    transition: .3s;
    content: '';
}

.sub-menu-list .sub-menu-slide ul li .sub-menu-btn em {
    position: relative;
}

.sub-menu-list .sub-menu-slide ul li .sub-menu-btn:hover {
    opacity: 1;
}

.sub-menu-list .sub-menu-slide ul li .sub-menu-btn.select {
    font-size: clamp(2.4rem, 3vw, 3.6rem);
    font-weight: var(--font-weight-bold);
    opacity: 1;
}

.sub-menu-list .sub-menu-slide ul li .sub-menu-btn.select:before {
    background-color: rgba(var(--color-yellow-rgb),1);
    animation: sub-gnb-active .5s ease-in-out 1s;
    animation-fill-mode: forwards;
}

.text-point {
    position: relative;
    border-bottom: 3px solid rgba(var(--color-basic-rgb),0.1);
}

.text-point em {
    position: relative;
}

.text-point.ep-yellow { border-color: #FFF741; }
.text-point.ep-blue { border-color: #83C8F7; }
.text-point.ep-green { border-color: #77E95B; }

@keyframes sub-gnb-active {
    0% { 
        left: 49.9%;
        right: 49.9%;
    }
    100% {
        left: -10px;
        right: -10px;
    }
}

@media screen and (min-width: 639px) {
    .text-point {
        border-bottom: none;
    }

    .text-point:before {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 15px;
        background-color: rgba(var(--color-basic-rgb),0.1);
        content: '';
    }

    .text-point.ep-yellow:before { background-color: #FFF741; }
    .text-point.ep-blue:before { background-color: #83C8F7; }
    .text-point.ep-green:before { background-color: #77E95B; }
}

@media screen and (min-width: 767px) {
    .sub-panels {
        padding: calc(var(--page-padding) * 2) var(--page-padding) calc(var(--page-padding) * 4);
    }

    .sub-menu-list .sub-menu-slide ul li .sub-menu-btn:before {
        height: 20px;
        border-radius: 20px 20px 0 0;
    }

    @keyframes sub-gnb-active {
        0% { 
            left: 49.9%;
            right: 49.9%;
        }
        100% {
            left: -20px;
            right: -20px;
        }
    }
}

@media screen and (min-width: 1239px) {
}

@media screen and (min-width: 1439px) {
    .sub-panels {
        padding: calc(var(--page-padding) * 2) 0 calc(var(--page-padding) * 4);
    }

    .sub-menu-list {
        margin: 0;
    }
}


/* 서브페이지 공통 // Base DL List */
.base-dl-list dl {
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1.4;
    padding-left: 15px;
    font-size: clamp(1.4rem, 3vw, 1.6rem);
}

.base-dl-list dl:not(:first-child) {
    margin-top: 15px;
}

.base-dl-list dl dt {
    position: relative;
    color: var(--color-gray);
    font-weight: var(--font-weight-light);
}

.base-dl-list dl dt:after {
    position: absolute;
    top: calc(50% - 2px);
    left: -15px;
    width: 4px;
    height: 4px;
    background-color: var(--color-blue);
    border-radius: 50%;
    content: '';
}

.base-dl-list dl dd {
    word-break: break-all;
    font-weight: var(--font-weight-medium);
}

.base-dl-list dl dd .site-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    color: var(--color-basic);
    transition: .3s;
}

.base-dl-list dl dd .site-link .ico {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: var(--color-gray);
    color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    transition: .3s;
}

.base-dl-list dl dd .site-link:hover {
    color: var(--color-dcepc);
}

.base-dl-list dl dd .site-link:hover .ico {
    background-color: var(--color-dcepc);
}

@media screen and (min-width: 767px) {
    .base-dl-list dl {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .base-dl-list dl dt {
        flex-shrink: 0;
        width: 90px;
    }

    .base-dl-list dl dd {
        flex-grow: 1;
    }

    .base-dl-list dl dd .site-link {
        max-width: 300px;
    }
}


/* 서브페이지 공통 // Base UL List */
.jum-ul {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1.4;
    padding-left: 15px;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--color-gray);
}

.jum-ul li {
    position: relative;
    word-break: keep-all;
}

.jum-ul li:after {
    position: absolute;
    top: 8px;
    left: -15px;
    width: 4px;
    height: 4px;
    background-color: var(--color-gray-light);
    border-radius: 50%;
    content: '';
}

.jum-ul li:not(:first-child) {
    margin-top: 5px;
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
    .jum-ul li:after {
        top: 10px;
    }
}


/* 서브페이지 공통 // 페이지네이션 */
.pn-pagenation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: clamp(30px, 5vw, 60px);
}

.pn-pagenation .pn-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 40px;
    border: 1px solid var(--color-gray-light);
    color: var(--color-gray);
    border-radius: 20px;
    transition: .3s;
}

.pn-pagenation .pn-btn.disable {
    opacity: 0.5;
    cursor: default;
}

.pn-pagenation .pn-btn .ico {
    font-size: 2rem;
}

.pn-pagenation .pn-btn em {
    display: none;
}

.pn-pagenation .page-num {
    color: var(--color-gray);
}

.pn-pagenation.mini-ver {
    gap: 10px;
    margin-top: 30px;
}

.pn-pagenation.mini-ver .pn-btn {
    width: 100px;
}

@media screen and (min-width: 639px) {
    .pn-pagenation .pn-btn {
        justify-content: space-between;
        width: 150px;
        height: 50px;
        padding: 0 20px;
        border-radius: 30px;
    }

    .pn-pagenation .pn-btn em {
        display: block;
    }

    .pn-pagenation.mini-ver .pn-btn {
        justify-content: center;
        height: 40px;
        border-radius: 25px;
    }
}

@media screen and (min-width: 979px) {
    .pn-pagenation {
        gap: 50px;
    }

    .pn-pagenation .pn-btn {
        width: 200px;
    }

    .pn-pagenation .pn-btn:not(.disable):hover {
        border-color: var(--color-point);
        color: var(--color-point);
    }

    .pn-pagenation .pn-btn.prev-btn:not(.disable):hover {
        transform: translateX(-10px);
    }

    .pn-pagenation .pn-btn.next-btn:not(.disable):hover {
        transform: translateX(10px);
    }
}


/* 게시판 // 리스트 상단 */
.board-list-top-search {
    --tab-cate-btn-height: 40px;

    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: clamp(30px, 3vw, 50px);
}

.board-list-top-search .total-num {
    color: var(--color-gray);
    font-size: clamp(1.4rem, 3vw, 1.6rem);
}

.board-list-top-search .total-num b {
    color: var(--color-dcepc);
}

.board-list-top-search .tab-cate-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.board-list-top-search .tab-cate-list .tab-cate-btn {
    display: block;
    height: var(--tab-cate-btn-height);
    line-height: calc(var(--tab-cate-btn-height) - 2px);
    padding: 0 15px;
    border: 1px solid var(--color-gray-light);
    box-shadow: 0 3px 0 rgba(var(--color-gray-light-rgb),0.3);
    border-radius: 5px;
    color: var(--color-gray);
}

.board-list-top-search .tab-cate-list .tab-cate-btn.select {
    border-color: var(--color-dcepc);
    color: var(--color-dcepc);
    font-weight: var(--font-weight-semibold);
}

.board-list-top-search .blt-search-area {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid var(--color-gray-light);
}

.board-list-top-search .blt-search-area .search-select,
.board-list-top-search .blt-search-area .search-input {
    border: none;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
}

.board-list-top-search .blt-search-area .search-select {
    flex-shrink: 0;
    display: none;
    padding-left: 0;
}

.board-list-top-search .blt-search-area .search-input {
    flex-grow: 1;
    width: 100%;
}

.board-list-top-search .blt-search-area .search-btn {
    flex-shrink: 0;
    color: var(--color-gray);
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
    .board-list-top-search {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .board-list-top-search .tab-cate-list {
        flex-shrink: 0;
    }

    .board-list-top-search .blt-search-area {
        width: 400px;
    }

    .board-list-top-search .blt-search-area .search-select,
    .board-list-top-search .blt-search-area .search-input {
        height: var(--tab-cate-btn-height);
        line-height: var(--tab-cate-btn-height);
    }

    .board-list-top-search .blt-search-area .search-select {
        display: block;
    }
}

@media screen and (min-width: 979px) {
    .board-list-top-search {
        --tab-cate-btn-height: 50px;
    }

    .board-list-top-search .tab-cate-list .tab-cate-btn {
        padding: 0 20px;
    }
}

@media screen and (min-width: 1239px) {
}


/* 게시판 // 리스트 */
.base-board-list {
    border-top: 1px solid var(--color-gray);
}

.base-board-list .bb-link {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-gray-light);
    color: var(--color-basic);
    transition: .3s;
}

.base-board-list .bb-link.notice {
    padding: 15px;
    background-color: rgba(var(--color-blue-light-rgb),0.1);
}

.base-board-list .bb-link .num {
    display: none;
    color: var(--color-gray);
    font-weight: var(--font-weight-light);
    font-size: clamp(1.3rem, 3vw, 1.5rem);
}

.base-board-list .bb-link.notice .num {
    font-size: clamp(1.6rem, 3vw, 1.8rem);
}

.base-board-list .bb-link .subject {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.base-board-list .bb-link .subject .cate {
    height: 30px;
    line-height: 28px;
    padding: 0 15px;
    border: 1px solid var(--color-gray-light);
    background-color: rgba(var(--color-gray-light-rgb),0.2);
    border-radius: 15px;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    color: var(--color-gray);
}

.base-board-list .bb-link.notice .subject .cate {
    background-color: var(--color-background);
}

.base-board-list .bb-link .subject em {
    line-height: 1.4;
    font-weight: var(--font-weight-medium);
    font-size: clamp(1.6rem, 3vw, 2rem);
}

.base-board-list .bb-link .date {
    font-size: clamp(1.3rem, 3vw, 1.4rem);
    color: var(--color-gray);
    font-weight: var(--font-weight-light);
}

@media screen and (min-width: 767px) {
    .base-board-list .bb-link,
    .base-board-list .bb-link.notice {
        padding: 20px;
    }
}

@media screen and (min-width: 979px) {
}

@media screen and (min-width: 1239px) {
    .base-board-list .bb-link {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }

    .base-board-list .bb-link .num {
        flex-shrink: 0;
        display: block;
        width: 70px;
        text-align: center;
    }

    .base-board-list .bb-link .subject {
        flex-grow: 1;
    }

    .base-board-list .bb-link .date {
        flex-shrink: 0;
    }

    .base-board-list .bb-link:hover {
        background-color: rgba(var(--color-gray-light-rgb),0.2);
    }

    .base-board-list .bb-link:hover .subject em {
        color: var(--color-dcepc);
    }
}


/* 게시판 > 뷰 */
.base-board-view .board-view-top {
    position: relative;
    padding: 10px 0;
    border-top: 1px solid var(--color-gray);
    border-bottom: 1px solid var(--color-gray-light);
}

.base-board-view .board-view-top h1.board-h1 {
    line-height: 1.4;
    padding-right: 40px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -.5pt;
}

.base-board-view .board-view-top .date-hit {
    margin-top: 10px;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    color: var(--color-gray);
}

.base-board-view .board-view-top .date-hit > span {
    display: inline-block;
    margin-right: 20px;
}

.base-board-view .board-view-top .date-hit > span:last-child {
    margin-right: 0;
}

.base-board-view .board-view-top .sub-txt {
    margin-top: 10px;
    font-size: 1.2rem;
    color: var(--color-gray);
}

.base-board-view .board-view-top .link-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.base-board-view .board-view-file {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    border: 1px solid rgba(var(--black-white-rgb),0.08);
    background-color: var(--color-background);
    border-radius: 10px;
    box-shadow: 0 1px 0px rgba(var(--black-white-rgb),0.1);
}

.base-board-view .board-view-file ul li {
    position: relative;
}

.base-board-view .board-view-file ul li:not(:last-child) {
    border-bottom: 1px solid rgba(var(--black-white-rgb),0.1);
}

.base-board-view .board-view-file ul li a {
    display: block;
    padding: 10px 10px 10px 45px;
    font-size: clamp(1.4rem, 2vw, 1.6rem);
}

.base-board-view .board-view-file ul li a span.ico {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 32px;
    height: 32px;
    line-height: 30px;
    border-right: 1px solid rgba(var(--black-white-rgb),0.1);
    border-bottom: 1px solid rgba(var(--black-white-rgb),0.1);
    background-color: rgba(var(--color-green-rgb),0.03);
    text-align: center;
    color: var(--color-green);
    font-size: 1.6rem;
    border-radius: 0 0 10px 0;
}

.base-board-view .board-view-file ul li a small {
    color: var(--color-gray);
    font-size: clamp(1.2rem, 3vw, 1.4rem);
}

.base-board-view .board-view-con {
    position: relative;
    line-height: 2;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.base-board-view .board-reply {
    padding: 20px;
    background-color: rgba(var(--color-blue-light-rgb),0.1);
}

.base-board-view .board-reply h3 {
    margin-bottom: 20px;
    font-size: clamp(1.6rem, 3vw, 1.8rem);
    font-weight: var(--font-weight-medium);
}

.base-board-view .thesis-view-con .thesis-box {
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    color: var(--color-gray);
}

.base-board-view .thesis-view-con .thesis-box:not(:first-child) {
    margin-top: 30px;
}

.base-board-view .thesis-view-con .thesis-box h3 {
    font-size: clamp(1.6rem, 3vw, 1.8rem);
    color: var(--color-green);
    font-weight: var(--font-weight-semibold);
}

.base-board-view .thesis-view-con .thesis-box .shape-keyword {
    flex-wrap: wrap;
    gap: 5px 20px;
}

.base-board-view .thesis-view-con .thesis-box .shape-keyword a:hover {
    text-decoration: underline;
}

.base-board-view .view-next-prev {
    position: relative;
    margin: 10px -10px;
    border: 1px solid rgba(var(--color-basic-rgb),0.1);
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 2px 3px rgb(215 216 220 / 40%);
}

.base-board-view .view-next-prev li {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px;
}

.base-board-view .view-next-prev li:not(:first-child) {
    border-top: 1px dashed rgba(var(--color-basic-rgb),0.1);
}

.base-board-view .view-next-prev li .np-tit {
    flex-shrink: 0;
	width: 30px;
    padding-right: 10px;
    text-align: center;
}

.base-board-view .view-next-prev li .np-tit span {
    display: none;
}

.base-board-view .view-next-prev li a {
    flex-grow: 1;
    position: relative;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.base-board-view .view-next-prev li a .np-date {
    display: none;
    color: var(--color-gray);
}

.base-board-view .btn-area {
    gap: 5px;
    margin-top: 30px;
}

@media screen and (min-width: 767px) {
    .base-board-view .board-view-top {
        padding: 20px 10px;
    }

    .base-board-view .board-view-top .link-btn {
        top: 20px;
    }

    .base-board-view .board-view-file {
        margin-top: 20px;
    }

    .base-board-view .board-view-file ul li a {
        padding: 20px 20px 20px 60px;
    }

    .base-board-view .board-view-file ul li a span.ico {
        width: 42px;
        height: 42px;
        line-height: 40px;
    }

    .base-board-view .board-view-con {
        padding: 40px 0;
    }

    .base-board-view .view-next-prev {
        margin: 10px 0;
    }

    .base-board-view .view-next-prev li {
        padding: 20px;
    }

    .base-board-view .view-next-prev li a {
        padding-right: 120px;
    }

    .base-board-view .view-next-prev li a .np-date {
        display: inline;
        position: absolute;
        top: 50%;
        right: 20px;
        height: 30px;
        line-height: 30px;
        margin-top: -15px;
    }

    .base-board-view .btn-area .btns {
        height: 46px;
        line-height: 44px;
        width: 150px;
    }
}

@media screen and (min-width: 979px) {
    .base-board-view .board-view-con {
        padding: 40px 20px;
    }

    .base-board-view .board-reply {
        padding: 40px;
    }

    .base-board-view .board-info-table dl dt {
        width: 230px;
    }

    .base-board-view .board-info-table dl dd {
        padding: 10px 20px;
    }

    .base-board-view .view-next-prev li .np-tit {
        width: 100px;
        text-align: left;
    }
    
    .base-board-view .view-next-prev li .np-tit span {
        display: inline-block;
        margin-left: 10px;
        color: var(--color-gray);
    }

    .base-board-view .view-next-prev li:hover {
        background-color: rgba(var(--color-basic-rgb),0.02);
    }
    
    .base-board-view .view-next-prev li a:hover {
        color: var(--color-point);
    }
}

@media screen and (min-width:1239px) {
}


/* 센터소개 > 센터소개 */
.introduce-content {
    padding-top: calc(var(--page-padding) * 1.5);
    padding-bottom: calc(var(--page-padding) * 1.5);
}

.introduce h2.sub-h2 {
    margin-bottom: 20px;
    text-align: center;
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
}

@media screen and (min-width: 979px) {
}

@media screen and (min-width: 1239px) {
    .introduce-content {
        padding-top: calc(var(--page-padding) * 2);
        padding-bottom: calc(var(--page-padding) * 2);
    }
}

@media screen and (min-width: 1439px) {
}


/* 센터소개 > 센터소개 // 대전콘텐츠기업지원센터는? */
.introduce .introduce-top {
    position: relative;
    overflow: hidden;
    padding-top: clamp(80px, 14vw, 250px);
    text-align: center;
}

.introduce .introduce-top .it-img {
    position: absolute;
    top: -300px;
    left: 0;
    right: 0;
    bottom: -300px;
    background: url("../img/introduce_top_bg.jpg") no-repeat center/cover;
}

.introduce .introduce-top .respon {
    position: relative;
    padding: 20px 20px 5px;
    margin: 0 -20px;
    background-color: var(--color-background);
}

.introduce .introduce-top p {
    line-height: 1.4;
    color: var(--color-gray);
    font-size: clamp(1.6rem, 3vw, 2rem);
}

.introduce .introduce-top p b {
    color: var(--color-violet);
}

.introduce .introduce-top p br {
    display: none;
}

.introduce .introduce-top .it-guidebox {
    max-width: 500px;
    padding: 20px;
    margin: 0 auto;
    margin-top: 30px;
    border: 1px solid var(--color-gray-light);
    background-color: rgba(var(--color-blue-light-rgb),0.2);
    box-shadow: 0 4px 0 rgba(var(--color-basic-rgb),0.05);
    border-radius: 20px;
}

.introduce .introduce-top .it-guidebox h3 {
    color: var(--color-violet);
}

.introduce .introduce-top .it-guidebox p {
    line-height: 1.4;
    margin-top: 10px;
    font-size: clamp(1.4rem, 3vw, 1.6rem);
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
    .introduce .introduce-top .respon {
        padding: 40px 20px 5px;
        margin: 0 auto;
    }

    .introduce .introduce-top p br {
        display: block;
    }
}

@media screen and (min-width: 979px) {
}

@media screen and (min-width: 1239px) {
}


/* 센터소개 > 센터소개 // 창조형 콘텐츠, 혁신형 콘텐츠 */
.introduce .introduce-creative-innovation .respon {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.introduce .introduce-creative-innovation .ici-box h3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
    padding: 20px;
    margin-bottom: 20px;
    background-color: var(--ici-color);
    font-size: clamp(1.8rem, 3vw, 2rem);
    font-weight: var(--font-weight-medium);
    color: var(--color-white);
    border-radius: 10px;
}

.introduce .introduce-creative-innovation .ici-box h3 em {
    padding: 10px 20px;
    background-color: var(--color-white);
    color: var(--ici-color);
    border-radius: 30px;
}

.introduce .introduce-creative-innovation .ici-box ul {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.introduce .introduce-creative-innovation .ici-box ul li {
    width: 32%;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--color-gray);
    text-align: center;
}

.introduce .introduce-creative-innovation .ici-box ul li figure {
    display: inline-block;
    width: 80%;
    max-width: 160px;
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: 0;
}

@media screen and (min-width: 979px) {
    .introduce .introduce-creative-innovation .respon {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }

    .introduce .introduce-creative-innovation .ici-box {
        width: calc(50% - 20px);
    }
}

@media screen and (min-width: 1239px) {
    .introduce .introduce-creative-innovation .ici-box h3 {
        flex-direction: row;
        align-items: center;
        height: 70px;
        padding: 5px;
        margin-bottom: 30px;
        border-radius: 35px;
    }

    .introduce .introduce-creative-innovation .ici-box h3 em {
        height: 60px;
        line-height: 60px;
        padding: 0 20px;
    }
}

@media screen and (min-width: 1339px) {
    .introduce .introduce-creative-innovation .ici-box h3 em {
        font-size: 2.4rem;
    }
}


/* 센터소개 > 센터소개 // 기업 성장 파트너 */
.introduce .introduce-growth-partner {
    position: relative;
    border-top: 1px solid var(--color-gray-light);
    text-align: center;
}

.introduce .introduce-growth-partner p {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--color-gray);
}

.introduce .introduce-growth-partner p br {
    display: none;
}

.introduce .introduce-growth-partner p b {
    color: var(--color-basic);
}

.introduce .introduce-growth-partner .txtimg {
    display: inline-block;
    width: 70%;
    max-width: 400px;
    margin: 40px 0;
    font-size: 0;
}

.introduce .introduce-growth-partner .slogan-sns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 0;
}

@media screen and (min-width: 639px) {
    .introduce .introduce-growth-partner p br {
        display: block;
    }
}

@media screen and (min-width: 767px) {
    .introduce .introduce-growth-partner .txtimg {
        width: 40%;
    }

    .introduce .introduce-growth-partner .slogan-sns {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

@media screen and (min-width: 979px) {
}

@media screen and (min-width: 1239px) {
    .introduce .introduce-growth-partner .slogan-sns li {
        width: 31%;
        
        transition: 1.7s cubic-bezier(0.5, 0, 0, 1);
        transform: translate(0) scale(1);
    }

    .introduce .introduce-growth-partner .slogan-sns li:nth-child(1) { transform: translateX(-30rem); }
    .introduce .introduce-growth-partner .slogan-sns li:nth-child(2) { transform: scale(1.3); transform-origin: center; }
    .introduce .introduce-growth-partner .slogan-sns li:nth-child(3) { transform: translateX(30rem); }

    .introduce .introduce-growth-partner .slogan-sns.aos-animate li { transform: translate(0) scale(1); }
}

@media screen and (min-width: 1349px) {
    .introduce .introduce-growth-partner {
        border-top: none;
    }

    .introduce .introduce-growth-partner:before {
        position: absolute;
        top: 0;
        left: calc(50% - 670px);
        width: 1340px;
        height: 1px;
        background-color: var(--color-gray-light);
        content: '';
    }
}


/* 센터소개 > 센터소개 // 사업소개 */
.introduce .introduce-business {
    position: relative;
    border-top: 1px solid var(--color-gray-light);
    background-color: var(--bg-gray-light);
}

.introduce .introduce-business h2.sub-h2 {
    margin-bottom: clamp(20px, 3vw, 40px);
}

.introduce .introduce-business .ib-box {
    position: relative;
}

.introduce .introduce-business .ib-box .ib-con:not(:first-child) {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px dotted var(--color-gray-light);
}

.introduce .introduce-business .ib-box .ib-con figure {
    width: clamp(60px, 5vw, 100px);
    margin: 0 auto;
    font-size: 0;
}

.introduce .introduce-business .ib-box .ib-con h3 {
    --ib-con-h3-size: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: var(--ib-con-h3-size);
    margin: 10px 0 20px;
    border-radius: calc(var(--ib-con-h3-size) / 2);
    background-color: var(--ib-color);
    color: var(--color-white);
    font-size: clamp(1.8rem, 2vw, 2.4rem);
}

.introduce .introduce-business .ib-box .ib-con h3 small {
    font-weight: var(--font-weight-light);
}

.introduce .introduce-business .ib-box .ib-con .b-list {
    padding: 0 20px;
}

.introduce .introduce-business .ib-box .ib-con .b-list li:not(:first-child) {
    margin-top: 20px;
}

.introduce .introduce-business .ib-box .ib-con .b-list dl dt {
    position: relative;
    margin-bottom: 10px;
    font-weight: var(--font-weight-bold);
    font-size: clamp(1.6rem, 3vw, 2rem);
}

.introduce .introduce-business .ib-box .ib-con .b-list dl dt:before {
    position: absolute;
    top: calc(50% - 3px);
    left: -20px;
    width: 6px;
    height: 6px;
    background-color: var(--color-basic);
    border-radius: 50%;
    content: '';
}

.introduce .introduce-business .ib-box .ib-con .b-list dl dd {
    word-break: keep-all;
    font-size: clamp(1.4rem, 3vw, 1.6rem);
}

.introduce .introduce-business .ib-box .ib-con .b-list dl dd b {
    display: block;
    padding-bottom: 5px;
    color: var(--ib-color);
    font-weight: var(--font-weight-medium);
}

.introduce .introduce-business .ib-box .ib-con .b-list dl dd b:not(:first-of-type) {
    margin-top: 20px;
}

.introduce .introduce-business .ib-box .ib-con .b-list dl dd p {
    color: var(--color-gray);
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
    .introduce .introduce-business .ib-box {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
    }

    .introduce .introduce-business .ib-box .ib-con {
        width: 32%;
    }

    .introduce .introduce-business .ib-box .ib-con:not(:first-child) {
        padding-top: 0px;
        margin-top: 0px;
        border-top: none;
    }
}

@media screen and (min-width: 979px) {
    .introduce .introduce-business .ib-box .ib-con h3 {
        --ib-con-h3-size: 70px;
    }
}

@media screen and (min-width: 1239px) {
    .introduce .introduce-business .ib-box .ib-con {
        width: 31%;
        
        transition: 1.7s cubic-bezier(0.5, 0, 0, 1);
        transform: translate(0) scale(1);
    }

    .introduce .introduce-business .ib-box .ib-con:nth-child(1) { transform: translateX(-30rem); }
    .introduce .introduce-business .ib-box .ib-con:nth-child(2) { transform: scale(1.3); transform-origin: center; }
    .introduce .introduce-business .ib-box .ib-con:nth-child(3) { transform: translateX(30rem); }

    .introduce .introduce-business .ib-box.aos-animate .ib-con { transform: translate(0) scale(1); }

    .introduce .introduce-business .ib-box .ib-con h3 {
        margin: 20px 0 30px;
    }

    .introduce .introduce-business .ib-box .ib-con .b-list {
        padding: 0 50px;
    }
}

@media screen and (min-width: 1439px) {
}


/* 센터소개 > 층별시설안내 // 층별시설안내 메뉴 */
.facility-mnu-area {
    position: sticky;
    top: var(--height-header);
    left: 0;
    margin: 0 calc(var(--page-padding) * -1);
    background-color: var(--color-background);
    text-align: center;
    z-index: 100;
}

.facility-mnu-area:before,
.facility-mnu-area:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(var(--color-basic-rgb),0.1);
    content: '';
}

.facility-mnu-area:after {
    top: unset;
    bottom: 0;
}

.facility-mnu-area ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.facility-mnu-area ul li {
    position: relative;
    width: 33.3333%;
}

.facility-mnu-area ul li:not(:first-child):before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(var(--color-basic-rgb),0.1);
    content: '';
}

.facility-mnu-area ul li .f-state-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
    padding: 15px 0;
    color: var(--color-gray);
    transition: .3s;
}

.facility-mnu-area ul li .f-state-btn figure {
    width: 60%;
    max-width: 110px;
    font-size: 0;
    filter: grayscale(1);
    transition: .3s;
}

.facility-mnu-area ul li .f-state-btn em {
    line-height: 1.4;
    font-size: clamp(1.4rem, 2.5vw, 2.4rem);
}

.facility-mnu-area ul li .f-state-btn em small {
    font-size: clamp(1.1rem, 1.5vw, 1.6rem);
    opacity: 0.5;
}

.facility-mnu-area ul li .f-state-btn:hover {
    background-color: rgba(var(--color-blue-light-rgb),0.1);
    color: var(--color-basic);
}

.facility-mnu-area ul li .f-state-btn:hover figure {
    filter: grayscale(0);
}

.facility-mnu-area ul li .f-state-btn.active {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.facility-mnu-area ul li .f-state-btn.active figure {
    filter: grayscale(0);
}

.facility-mnu-area ul li .f-state-btn.active em small {
    opacity: 1;
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
    .facility-mnu-area ul li .f-state-btn {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
}

@media screen and (min-width: 1239px) {
    .facility-mnu-area ul li .f-state-btn {
        height: var(--height-header);
        padding: 0 15px;
    }
}


/* 센터소개 > 층별시설안내 */
.facility-content {
    position: relative;
    padding-top: calc(var(--page-padding) * 1.5);
    padding-bottom: calc(var(--page-padding) * 1.5);
}

.facility-content:not(:first-of-type) {
    border-top: 1px solid var(--color-gray-light);
}

.facility-content h2.sub-h2 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: clamp(20px, 3vw, 40px);
}

.facility-content h2.sub-h2 .floor {
    padding: 5px 20px;
    background-color: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-point);
    font-size: clamp(1.6rem, 3vw, 3rem);
    border-radius: 20px;
}

.facility-content h2.sub-h2 .sub-txt {
    font-weight: var(--font-weight-regular);
    color: var(--color-gray);
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.facility-content .facility-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.facility-content .facility-list .f-con figure {
    overflow: hidden;
    margin-bottom: 10px;
    font-size: 0;
    border-radius: 5px;
}

.facility-content .facility-list .f-con h3 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: var(--font-weight-semibold);
}

.facility-content .facility-list .f-con h3 span {
    font-weight: var(--font-weight-regular);
}

.facility-content .facility-list .f-con p {
    line-height: 1.4;
    margin-top: 5px;
    font-size: clamp(1.4rem, 2.5vw, 1.7rem);
    word-break: keep-all;
    color: var(--color-gray);
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
    .facility-content h2.sub-h2 {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }

    .facility-content h2.sub-h2 .floor {
        height: 60px;
        line-height: 60px;
        padding: 0 30px 0 20px;
        border-radius: 0 30px 30px 0;
    }

    .facility-content h2.sub-h2 .sub-txt {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .facility-content .facility-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        gap: 40px 20px;
    }

    .facility-content .facility-list .f-con {
        width: calc(50% - 10px);
    }

    .facility-content .facility-list .f-con h3,
    .facility-content .facility-list .f-con p {
        padding: 0 10px;
    }
}

@media screen and (min-width: 1239px) {
    .facility-content {
        padding-top: calc(var(--page-padding) * 2);
        padding-bottom: calc(var(--page-padding) * 2);
    }

    .facility-content:last-of-type {
        padding-bottom: 0;
    }

    .facility-content h2.sub-h2 {
        gap: 20px;
    }

    .facility-content .facility-list {
        gap: 40px;
    }

    .facility-content .facility-list .f-con {
        width: calc(50% - 20px);
    }

    .facility-content .facility-list .f-con figure {
        margin-bottom: 20px;
    }

    .facility-content .facility-list .f-con h3 {
        gap: 40px;
    }
}

@media screen and (min-width: 1349px) {
    .facility-content:not(:first-of-type) {
        border-top: none;
    }

    .facility-content:not(:first-of-type):before {
        position: absolute;
        top: 0;
        left: calc(50% - 670px);
        width: 1340px;
        height: 1px;
        background-color: var(--color-gray-light);
        content: '';
    }
}


/* 센터소개 > 오시는 길 */
.location .mapbox {
    margin: 0 calc(var(--page-padding) * -1);
    font-size: 0;
}

.location .mapbox iframe {
    width: 100%;
    height: clamp(300px, 30vw, 600px);
}

.location .location-info .respon {
    padding: var(--page-padding) 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.location .location-info h1 {
    width: 70%;
    max-width: 270px;
    margin-bottom: 20px;
    font-size: 0;
}

.location .location-info .inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.location .location-info ul li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 1.4;
}

.location .location-info ul li:not(:first-child) {
    margin-top: 8px;
}

.location .location-info ul li .ico {
    flex-shrink: 0;
    width: 30px;
}

.location .location-info ul li em {
    flex-grow: 1;
}

.location .location-info .loca-char {
    max-width: 426px;
    font-size: 0;
}

.location .trafic-info {
    margin-top: calc(var(--page-padding) * 1.5);
}

.location .trafic-info h2.sub-h2 {
    margin-bottom: 20px;
}

.location .trafic-info .trafic-content .trafic-box:not(:first-child) {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--color-gray-light);
}

.location .trafic-info .trafic-content .trafic-box h3 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: var(--font-weight-medium);
    font-size: clamp(1.6rem, 3vw, 2rem);
}

.location .trafic-info .trafic-content .trafic-box .bg-bus-blue { background-color: #138CCD; }
.location .trafic-info .trafic-content .trafic-box .bg-bus-green { background-color: #27B02B; }

.location .trafic-info .trafic-content .trafic-box ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location .trafic-info .trafic-content .trafic-box ul li {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    line-height: 1.4;
    margin-bottom: 5px;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--color-gray);
}

.location .trafic-info .trafic-content .trafic-box ul li em {
    flex-shrink: 0;
    padding: 5px 15px;
    color: var(--color-white);
    border-radius: 30px;
}

.location .trafic-info .trafic-content .trafic-box ul li span {
    padding-left: 15px;
}

@media screen and (min-width: 639px) {
    .location .trafic-info .trafic-content .trafic-box:not(:first-child) {
        padding-top: 30px;
        margin-top: 30px;
    }

    .location .trafic-info .trafic-content .trafic-box ul li {
        flex-direction: row;
    }

    .location .trafic-info .trafic-content .trafic-box ul li em {
        width: var(--trafic-em-width);
        padding: 8px 15px;
        text-align: center;
    }

    .location .trafic-info .trafic-content .trafic-box ul li span {
        padding-top: 8px;
    }
}

@media screen and (min-width: 767px) {
    .location .location-info h1 {
        margin-bottom: 40px;
    }

    .location .location-info .inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .location .location-info ul {
        flex-shrink: 0;
    }

    .location .location-info .loca-char {
        flex-grow: 1;
    }
}

@media screen and (min-width: 1239px) {
    .location .location-info .respon {
        position: relative;
        padding-left: 330px;
    }

    .location .location-info h1 {
        position: absolute;
        top: calc(var(--page-padding) + 10px);
        left: 0;
        margin: 0;
    }

    .location .location-info ul {
        font-size: 2rem;
    }

    .location .location-info ul li .ico {
        width: 40px;
    }

    .location .trafic-info {
        margin-top: calc(var(--page-padding) * 2);
    }

    .location .trafic-info .respon {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 80px;
    }

    .location .trafic-info .respon h2.sub-h2 {
        flex-shrink: 0;
        margin: 0;
    }

    .location .trafic-info .trafic-content {
        flex-grow: 1;
        padding-top: 15px;
    }

    .location .trafic-info .trafic-content .trafic-box:not(:first-child) {
        padding-top: 50px;
        margin-top: 50px;
    }

    .location .trafic-info .trafic-content .trafic-box h3 {
        margin-bottom: 30px;
    }

    .location .trafic-info .trafic-content .trafic-box.trafic-bus ul {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        gap: 10px 20px;
    }

    .location .trafic-info .trafic-content .trafic-box.trafic-bus ul li {
        width: calc(50% - 10px);
    }
}

@media screen and (min-width: 1439px) {
    .location .mapbox {
        margin: 0;
    }
}


/* 주요사업 */
.business .business-content {
    position: relative;
    padding-top: calc(var(--page-padding) * 1.5);
    padding-bottom: calc(var(--page-padding) * 1.5);
}

.business .business-content h2.sub-h2 {
    margin-bottom: 20px;
}

.business .business-content .jum-ul li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.business .business-content .jum-ul li em {
    flex-shrink: 0;
    color: var(--color-basic);
    font-weight: var(--font-weight-medium);
}

.business .business-info {
    padding-top: 0 !important;
}

.business .business-info .pic {
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 0;
}

.business .business-info .inner h3 {
    margin-bottom: 20px;
    font-weight: var(--font-weight-semibold);
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.business .business-schedule {
    background-color: var(--color-point);
    color: var(--color-white);
}

.business .schedule-tbl {
    table-layout: fixed;
    border-top: 1px solid var(--color-blue);
    background-color: var(--color-background);
}

.business .schedule-tbl th,
.business .schedule-tbl td {
    padding: 15px 10px;
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    text-align: center;
}

.business .schedule-tbl th.border-left,
.business .schedule-tbl td.border-left,
.business .schedule-tbl th:not(:first-child),
.business .schedule-tbl td:not(:first-child) {
    border-left: 1px dotted rgba(var(--color-basic-rgb),0.2);
}

.business .schedule-tbl thead th {
    border-bottom: 1px solid var(--color-gray-light);
    background: linear-gradient(to top,  rgba(0,0,0,0.05) 0%,rgba(0,0,0,0) 100%);
}

.business .schedule-tbl tbody td {
    color: var(--color-gray);
}

.business .schedule-tbl tbody td.on {
    background-color: var(--color-green);
    color: var(--color-white);
}

.business .business-manner {
    padding-bottom: 0 !important;
}

.business .business-manner .btn-area {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 20px;
}

.business .business-manner .btn-area a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 40px;
    border: 1px solid var(--color-blue);
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    font-weight: var(--font-weight-medium);
    border-radius: 20px;
    transition: .3s;
}

@media screen and (min-width: 767px) {
    .business .business-content:not(:first-child) {
        padding-top: 50px;
        margin-top: 50px;
    }

    .business .business-manner .btn-area {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        margin-top: 30px;
    }

    .business .business-manner .btn-area a {
        height: 50px;
        padding: 0 25px;
        border-radius: 25px;
    }
}

@media screen and (min-width: 1239px) {
    .business .business-content {
        position: relative;
        padding-top: calc(var(--page-padding) * 2);
        padding-bottom: calc(var(--page-padding) * 2);
    }

    .business .b-side .respon {
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        gap: 40px;
    }

    .business .b-side .respon.in-pic {
        align-items: center;
    }

    .business .b-side .respon h2.sub-h2 {
        flex-shrink: 0;
        width: 400px;
        word-break: keep-all;
    }

    .business .b-side .respon .pic {
        flex-shrink: 0;
        width: 400px;
        margin-bottom: 0;
    }

    .business .b-side .respon .inner {
        flex-grow: 1;
        padding-top: 15px;
    }

    .business .b-side .respon.in-pic .inner {
        padding-top: 0;
    }

    .business .b-side .respon.in-pic .jum-ul li:not(:first-child) {
        margin-top: 10px;
    }

    .business .business-content .jum-ul li em {
        width: var(--jun-ul-em-width);
    }

    .business .business-manner .btn-area a:hover {
        border-color: var(--color-point);
        background-color: var(--color-point);
        color: var(--color-white);
    }
}

@media screen and (min-width: 1439px) {
}


/* 입주기업 > 입주안내 */
.tenant-guide .tg-content h2.sub-h2 {
    margin-bottom: 20px;
}

.tenant-guide .tg-content h3 {
    margin-bottom: 20px;
    font-weight: var(--font-weight-medium);
    font-size: clamp(1.8rem, 3vw, 2rem);
}

.tenant-guide .tg-content h3:not(:first-of-type) {
    margin-top: 40px;
}

.tenant-guide .tenant-qualification {
    --char-width: 100px;
    --bottom-size: 150px;

    position: relative;
    padding-top: calc(var(--page-padding) * 1.5);
    padding-bottom: calc(var(--bottom-size) * 0.7);
    background-color: var(--color-point);
    color: var(--color-white);
}

.tenant-guide .tenant-qualification:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--bottom-size);
    background-image: url("../img/img_cloud.png");
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: contain;
    content: '';
}

.tenant-guide .tenant-qualification .respon {
    position: relative;
}

.tenant-guide .tenant-qualification .jum-ul {
    color: var(--color-white);
}

.tenant-guide .tenant-qualification .jum-ul li:after {
    background-color: rgba(var(--color-white-rgb),0.5);
}

.tenant-guide .tenant-qualification .dangkon-char {
    position: absolute;
    bottom: 0;
    right: 0;
    width: var(--char-width);
    height: 200px;
    background-image: url("../img/img_dangkon.png");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    font-size: 0;
    animation-name: tenantDangkonMove;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

@keyframes tenantDangkonMove {
    0% {right: 0;opacity: 0;}
    10% {opacity: 1;}
    to { right: 105%;opacity: 1;}
}

.tenant-guide .tenant-space {
    padding-top: calc(var(--page-padding) * 1.5);
}

.tenant-guide .operational-policy,
.tenant-guide .support-matters {
    position: relative;
    padding-top: calc(var(--page-padding) * 1.5);
    margin-top: calc(var(--page-padding) * 1.5);
    border-top: 1px solid var(--color-gray-light);
}

@media screen and (min-width: 479px) {
    .tenant-guide .tenant-qualification {
        --bottom-size: 200px;
    }
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
    .tenant-guide .tenant-qualification {
        --char-width: 150px;
        --bottom-size: 250px;
    }

    .tenant-guide .tenant-qualification .dangkon-char {
        bottom: 30px;
        height: 250px;
    }
}

@media screen and (min-width: 1239px) {
    .tenant-guide .tg-content .respon {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 40px;
    }

    .tenant-guide .tg-content h2.sub-h2 {
        flex-shrink: 0;
        width: 240px;
        margin-bottom: 0;
    }

    .tenant-guide .tg-content .tg-box {
        flex-grow: 1;
        padding-top: 10px;
    }

    .tenant-guide .tenant-qualification {
        padding-top: calc(var(--page-padding) * 2);
    }

    .tenant-guide .operational-policy,
    .tenant-guide .support-matters {
        padding-top: calc(var(--page-padding) * 2);
        margin-top: calc(var(--page-padding) * 2);
    }
}

@media screen and (min-width: 1439px) {
    .tenant-guide .tenant-qualification {
        --char-width: 200px;
        --bottom-size: 550px;
    }

    .tenant-guide .tenant-qualification:before {
        background-size: 100% auto;
    }

    .tenant-guide .tenant-qualification .dangkon-char {
        bottom: 150px;
        height: 300px;
    }

    .tenant-guide .operational-policy,
    .tenant-guide .support-matters {
        border-top: none;
    }

    .tenant-guide .operational-policy:before,
    .tenant-guide .support-matters:before {
        position: absolute;
        top: 0;
        left: calc(50% - 670px);
        width: 1340px;
        height: 1px;
        background-color: var(--color-gray-light);
        content: '';
    }
}


/* 입주기업 // 리스트 */
.tenant-company-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}

.tenant-company-list .tcl-con {
    overflow: hidden;
    width: 100%;
    border: 1px solid var(--color-gray-light);
    background-color: rgba(var(--color-blue-light-rgb),0.1);
    border-radius: 10px;
    transition: .3s;
}

.tenant-company-list .tcl-con a.logomark {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    background-color: var(--color-background);
    box-shadow: 0 2px 10px rgba(var(--color-gray-light-rgb),0.3);
}

.tenant-company-list .tcl-con a.logomark img {
    max-width: 200px;
    max-height: 80px;
    transition: .3s;
}

.tenant-company-list .tcl-con .company-info {
    padding: 20px;
}

.tenant-company-list .tcl-con .company-info .tit {
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: var(--font-weight-semibold);
    font-size: clamp(1.8rem, 3vw, 2rem);
    color: var(--color-basic);
    transition: .3s;
}

@media screen and (min-width: 639px) {
    .tenant-company-list .tcl-con {
        width: calc(50% - 10px);
    }
}

@media screen and (min-width: 979px) {
    .tenant-company-list {
        gap: 20px 2%;
    }

    .tenant-company-list .tcl-con {
        width: 32%;
    }
}

@media screen and (min-width: 1239px) {
    .tenant-company-list {
        gap: 30px 2%;
    }

    .tenant-company-list .tcl-con a.logomark img {
        max-width: 250px;
        max-height: 100px;
    }

    .tenant-company-list .tcl-con .company-info {
        padding: 30px 40px;
    }

    .tenant-company-list .tcl-con:hover {
        border-color: var(--color-gray);
        box-shadow: 0 3px 15px rgba(var(--color-black-rgb),0.1);
        transform: translateY(-10px);
    }

    .tenant-company-list .tcl-con:hover a.logomark img {
        scale: 1.1;
    }

    .tenant-company-list .tcl-con:hover .company-info .tit {
        color: vaR(--color-dcepc);
    }
}


/* 입주기업 // 뷰 */
.company-view-top {
    position: relative;
    overflow: hidden;
    margin: 0 calc(var(--page-padding) - var(--page-padding) - var(--page-padding));
    border-top: 1px solid var(--color-gray-light);
    background-color: rgba(var(--color-blue-light-rgb),0.1);
}

.company-view-top .company-summary {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: var(--page-padding);
}

.company-view-top .company-summary .logomark {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    padding: 0 20px;
    border: 1px solid var(--color-gray-light);
    background-color: var(--color-background);
    box-shadow: 0 3px 0px rgba(var(--color-gray-light-rgb),0.2);
    border-radius: 10px;
}

.company-view-top .company-summary .logomark img {
    max-width: 200px;
    max-height: 80px;
    transition: .3s;
}

.company-view-top .company-summary .company-s-info .comp-cate-list {
    margin-bottom: 15px;
}

.company-view-top .company-summary .company-s-info h3 {
    font-family: var(--font-point);
    font-size: clamp(2.4rem, 3vw, 3rem);
}

.company-view-top .company-summary .company-s-info .base-dl-list {
    margin-top: 20px;
}

.company-view-top .company-picture {
    position: relative;
    padding: 10px;
    border-bottom: 1px solid var(--color-gray-light);
    background-color: var(--color-background);
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 100%;
    background-image: url("../img/company_picture_bg.png");
    font-size: 0;
}

.company-view-top .company-picture .cp-slide ul li {
    width: auto;
}

.company-view-top .company-picture .cp-slide ul li a {
    display: block;
    overflow: hidden;
    cursor: default;
}

.company-view-top .company-picture .cp-slide ul li a img {
    height: 120px;
    transition: .3s;
}

.company-view-top .company-picture .slide-btn-area {
    display: none;
}

.company-view-top .company-picture .slide-btn-area .swiper-button {
    position: absolute;
    top: calc(50% - 20px);
    width: 100px;
    height: 50px;
    line-height: 48px;
    border: 1px solid rgba(var(--color-white-rgb),0.5);
    background-color: rgba(var(--color-black-rgb),0.2);
    border-radius: 25px;
    color: var(--color-white);
    text-align: center;
    font-size: 1.8rem;
    transition: .3s;
    z-index: 500;
}

.company-view-top .company-picture .slide-btn-area .swiper-button:hover {
    border-color: var(--color-white-rgb);
    background-color: rgba(var(--color-black-rgb),0.4);
}

.company-view-top .company-picture .slide-btn-area .swiper-button.swiper-prev {
    left: 20px;
}

.company-view-top .company-picture .slide-btn-area .swiper-button.swiper-next {
    right: 20px;
}

.company-view-top .company-picture .slide-btn-area .swiper-button.swiper-button-disabled {
    visibility: hidden;
    opacity: 0;
    cursor: default;
}

.company-detail {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: calc(var(--page-padding) * 1.5) 0;
}

.company-detail .cd-box h3 {
    margin-bottom: clamp(20px, 3vw, 40px);
    color: var(--color-dcepc);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-family: var(--font-point);
}

.company-detail .cd-box dl:not(:first-of-type) {
    margin-top: clamp(20px, 3vw, 40px);
}

.company-detail .cd-box dl dt {
    margin-bottom: clamp(10px, 3vw, 20px);
    font-size: clamp(1.8rem, 3vw, 2rem);
    color: var(--color-dcepc);
    font-weight: var(--font-weight-semibold);
}

.company-detail .cd-box .content-guide {
    color: var(--color-gray);
}

@media screen and (min-width: 639px) {
    .company-view-top .company-picture .cp-slide ul li a img {
        height: 150px;
    }
}

@media screen and (min-width: 767px) {
    .company-view-top .company-summary {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
    }

    .company-view-top .company-summary .logomark {
        flex-grow: 1;
    }

    .company-view-top .company-summary .company-s-info {
        flex-shrink: 0;
        width: 60%;
    }

    .company-view-top .company-picture .cp-slide ul li a img {
        height: 200px;
    }

    .company-detail {
        padding: calc(var(--page-padding) * 1.5) 0 calc(var(--page-padding) * 4);
    }
}

@media screen and (min-width: 979px) {
    .company-view-top .company-summary .company-s-info .base-dl-list dl dd .site-link {
        max-width: 400px;
    }

    .company-view-top .company-picture {
        border-bottom: none;
        background-color: transparent;
    }

    .company-view-top .company-picture .cp-slide ul li a img {
        height: 300px;
    }
}

@media screen and (min-width: 1239px) {
    .company-view-top .company-summary {
        padding: calc(var(--page-padding) * 2) var(--page-padding);
    }

    .company-view-top .company-summary .logomark {
        height: 180px;
    }

    .company-view-top .company-summary .logomark img {
        max-width: 250px;
        max-height: 100px;
    }

    .company-view-top .company-summary .company-s-info {
        flex-shrink: 0;
        width: 65%;
    }

    .company-view-top .company-summary .company-s-info .base-dl-list dl dd .site-link {
        max-width: 500px;
    }

    .company-view-top .company-picture .cp-slide ul li a img {
        height: 400px;
    }

    /*
    .company-view-top .company-picture .cp-slide ul li a:hover img {
        scale: 1.2;
    }
    */

    .company-view-top .company-picture .slide-btn-area {
        display: inline;
    }

    .company-detail {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        gap: 60px;
    }

    .company-detail:before {
        position: absolute;
        top: 0;
        left: 50%;
        bottom: 0;
        width: 1px;
        background-color: rgba(var(--color-gray-light-rgb),0.5);
        content: '';
    }

    .company-detail .cd-box {
        width: calc(50% - 30px);
    }

}

@media screen and (min-width: 1439px) {
    .company-view-top {
        margin: 0;
    }

    .company-view-top .company-summary {
        padding: calc(var(--page-padding) * 2) 0;
    }

    .company-view-top .company-summary .company-s-info .base-dl-list dl dd .site-link {
        max-width: 700px;
    }

    .company-detail {
        gap: 80px;
    }
}









/* ------------------------------------------------------------ */


@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
}

@media screen and (min-width: 979px) {
}

@media screen and (min-width: 1239px) {
}

@media screen and (min-width: 1340px) {
}

@media screen and (min-width: 1439px) {
}

@media screen and (min-width: 1640px) {
}

@media screen and (min-width: 1840px) {
}