@charset "utf-8";
/* background */
:root {
    --sublayout: 90%;
}
#container {
    flex: 1 0 auto;
}
.bubblearea {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 auto;
    padding-top: 10%;
    background-color: var(--color-white);
    padding-bottom: 3rem;
}
.bubble-textimage {
    width: 90%;
    height: 70%;
    margin: 0 auto;
}
.bubble-image {
    display: none;
    width: 90%;
    height: 70%;
}

.bubble1 {
    position: absolute;
    top: 30%;
    right: 500px;
    mix-blend-mode: darken;
    background: url(/static/prjt/cmmn/img/bubble.svg) no-repeat;
    background-size: cover;
    background-color: #d3d3d3;
}
.bubble2 {
    position: absolute;
    top: 30%;
    right: 500px;
    mix-blend-mode: color-dodge;
    background: url(/static/prjt/cmmn/img/bubble-bottom.svg) no-repeat;
    background-size: cover;
    opacity: 0.85;
}

/*mouse cursor */
.bubble-cursor {
    position: fixed;
    display: block;
    pointer-events: none;
    cursor: none !important;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%) scale(0.5);
    box-shadow: 0 0 0 transparent, 0 0 12.5rem transparent;
    z-index: 90;
}
.is-Bubble {
    transform: translate(-50%, -50%) scale(1.3);
    display: block;
    background-color: transparent;
}
/* //mouse cursor */

.bubble-text {
    font-size: 25px;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
    padding-top: 4.3rem;
}

.click-bubble {
    background: url(/static/prjt/cmmn/img/click-btn.svg) no-repeat;
    background-size: cover;
    position: relative;
    display: block;
    align-content: center;
    width: 12.8rem;
    height: 3.55rem;
    margin: 0 auto;
    margin-top: 11.25rem;
    background-position: center center;
}
.click-bubble:hover {
    background-color: transparent;
}

.button--bubble__effect-container {
    position: absolute;
    display: block;
    width: 150%;
    height: 200%;
    top: -50%;
    left: -30%;
    transition: all 0.1s ease-out;
    pointer-events: none;
}
.effect-button {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: transparent;
    transition: background 0.1s ease-out;
}
.circle {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 15px;
    background: var(--color-primary);
    transition: background 0.1s ease-out;
    opacity: 0;
}
.click-bubble:hover .circle {
    opacity: 1;
}
.circle.top-left {
    top: 40%;
    left: 27%;
}
.circle.bottom-right {
    bottom: 40%;
    right: 27%;
}

/*//background */

/* program-area */
.program-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    background-color: var(--color-white);
}
.program-area > .contents-wrapping {
    padding: 8vw 0 6vw 3.3vw;
}
/* .subtitle{opacity:0;visibility:hidden;transform:translateY(100px);} */
.threecircle {
    width: 3rem;
    height: 5rem;
}
.maintit {
    font-family: "NanumSquareNeoExtraBold";
    color: var(--color-primary);
    font-size: 72px;
    line-height: 50px;
    letter-spacing: -0.04rem;
    padding-left: 3rem;
}
.programs-group-area {
    padding-top: 3rem;
    padding-left: 3rem;
}
.programs-group {
    width: 100%;
    overflow: hidden;
    height: 100%;
}
.programs {
    display: flex;
    align-items: center;
}
.programSwiper .swiper-slide {
    flex-shrink: 0;
    width: 20vw;
    height: 28vw;
}
.program-box {
    position: relative;
}
.program-poster {
    height: 25vw;
    border-radius: 0.8vw;
    border: 0.5px solid #ddd;
    position: relative;
    cursor: pointer;
}
.programSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.8vw;
}
.program-tit {
    color: var(--color-primary);
    font-size: var(--font-medium);
    line-height: 28px;
    font-weight: 700;
    padding-top: 0.8rem;
    padding-left: 0.4rem;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
}
.program-tit-hover {
    color: var(--color-white);
    font-weight: 500;
    line-height: 3rem;
    font-size: 36px;
    letter-spacing: 0.06rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    text-wrap: wrap;
    width: 100%;
}
.program-host {
    color: var(--color-white);
    font-size: var(--font-primary);
    font-weight: 500;
    line-height: 19.5px;
    text-align: left;
    position: absolute;
    bottom: 2rem;
}
.host-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--color-primary);
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 0.25rem;
    border: 1px solid var(--color-primary);
    align-content: center;
}
.host-tit {
    font-size: var(--font-primary);
    font-family: "NanumSquareNeoBold";
    color: var(--color-white);
    text-align: center;
}
.program-poster:hover > .host-box,
.host-box:hover {
    background-color: var(--color-white);
}
.program-poster:hover .host-tit,
.host-box:hover > .host-tit {
    color: var(--color-primary);
}
.hover-texts {
    opacity: 0;
    visibility: hidden;
    color: var(--color-white);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2.5rem;
    word-break: keep-all;
    border-radius: 8px;
}
.program-poster:hover > .hover-texts {
    opacity: 1;
    visibility: visible;
    background-color: rgba(1, 46, 227, 0.8);
    transition: all 0.5s;
    border-radius: 0.8vw;
    border: 1px solid transparent;
    cursor: pointer;
}

.arrow {
    padding-top: 0.625rem;
    display: flex;
}
.program-area button {
    position: relative;
    top: 0;
    width: 2.625rem;
    height: 2.625rem;
    background: #0134ff;
    border-radius: 3.12rem;
    cursor: none;
}
.program-area .btn-next {
    margin-left: 0.625rem;
}

.program-area .btn-next:after {
    content: "";
    width: 1.8rem;
    height: 1.8rem;
    background: url("/static/prjt/cmmn/img/ico_next.svg") no-repeat;
    background-position: center center;
    background-size: 100%;
    filter: brightness(0) invert(1);
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    z-index: 2;
}
.program-area .btn-prev::after {
    content: "";
    width: 1.8rem;
    height: 1.8rem;
    background: url("/static/prjt/cmmn/img/ico_prev.svg") no-repeat;
    background-position: center center;
    background-size: 100%;
    filter: brightness(0) invert(1);
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    z-index: 2;
}

.swiper-button-disabled {
    background: #caccce !important;
    pointer-events: none;
}
/* //program-area */

/* news-area */
.news-area {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.news-area > .contents-wrapping {
    margin: 0 auto;
    padding: 8vw 3.3vw 6vw 3.3vw;
    position: relative;
    width: 100%;
}
.news-area .tabs {
    align-items: flex-start;
    justify-content: flex-end;
    position: absolute;
    top: -110px;
    right: 83px;
    gap: 30px;
}
.news-area .tabcontents.active {
    padding: 0 5rem;
    display: flex;
    flex-wrap: wrap;
    margin-top: 5rem;
    position: relative;
    flex-direction: column;
}

.report-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.report {
    position: relative;
    display: block;
    float: left;
    overflow: hidden;
    width: 100%;
    height: 20.3rem;
    border-top: 2px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    cursor: pointer;
}

.report-bg {
    position: relative;
    width: 100%;
    height: 100%;
}
.report-bg::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    display: block;
    transform: translateY(-50%);
    height: calc(100% - 1.25rem);
    width: 1px;
    background-color: var(--color-primary);
}
.report-img {
    opacity: 0;
}
.report-itemInfo {
    width: 100%;
    height: 100%;
    padding: 2rem;
}
.report-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
}

.table1 .tit {
    color: var(--color-primary);
    font-size: 25px;
    line-height: 38.4px;
    text-align: left;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.table1 .tit:hover {
    text-decoration-line: underline;
    text-underline-position: from-font;
    text-underline-offset: 6px;
    text-decoration-color: var(--color-primary);
    font-family: var(--font-bold);
}
.table1 .monthly {
    color: var(--color-primary);
}
.report-item p {
    color: var(--color-primary);
    font-family: "NanumSquareNeo";
}
.report-itemInfo .tit {
    font-size: 28px;
    line-height: 3.5rem;
}
.report-itemInfo .con {
    font-size: var(--color-primary);
    line-height: 22px;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.report-bg:hover .report-img {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.report-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0 0 0 1px;
}
.report-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.noimg {
    background-size: cover;
    background-color: rgba(1, 46, 227, 0.95);
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.report-img .report-logo {
    width: 145px;
    height: 145px;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.report:nth-child(5),
.report:nth-child(6),
.report:nth-child(7),
.report:nth-child(8) {
    border-top: none;
}
.report:nth-child(1) > .report-bg::before,
.report:nth-child(5) > .report-bg::before {
    content: none;
}

/*// news-area */

/* banner-area */
.banner-area {
    position: relative;
}
.banners {
    width: 100%;
    overflow-x: hidden;
}
.banners {
    width: 100%;
}
.banner-area .banner {
    height: 100%;
}
.banner {
    text-align: center;
    font-size: 18px;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner.forMobile {
    display: none;
}
.banner.forWeb {
    display: block;
}
.banner-arrow {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
}
.banner-arrow button {
    background-color: transparent;
}
.banner-next {
    width: 1.25vw;
    height: 1.25vw;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    background: url("/static/prjt/cmmn/img/ico_next.svg") no-repeat;
    background-position: center center;
    background-size: 100%;
    filter: brightness(0) invert(1);
}
.banner-prev {
    width: 1.25vw;
    height: 1.25vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    background: url("/static/prjt/cmmn/img/ico_prev.svg") no-repeat;
    background-position: center center;
    background-size: 100%;
    filter: brightness(0) invert(1);
}
/* //banner-area */

/* dreamtext-area */
.dreamtext-area {
    position: relative;
    height: 100%;
    background-color: var(--color-white);
}
.dreamtext-area > .contents-wrapping {
    padding: 8vw 0 6vw 0;
}
.dreamtext-area .tit {
    font-size: 28px;
    color: #0134ff;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -0.4px;
    width: 56%;
    word-break: keep-all;
    margin-bottom: 1.8rem;
    padding-left: 3.3vw;
}
.dream-texts {
    position: relative;
    width: 100%;
    height: 41rem;
    overflow: hidden;
}
.dream-texts > .txt {
    position: absolute;
    left: 50%;
    font-weight: 700;
    font-family: "Pretendard";
    font-size: 200px;
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: #0134ff;
    color: var(--color-white);
    line-height: 1.5;
    letter-spacing: -1.4px;
    transform: translateX(-50%);
    white-space: nowrap;
    width: 1400px;
    margin-left: -700px;
    text-align: center;
}
.txt.textDr {
    top: 0;
    transform: translateX(-80%);
    color: #0134ff;
}
.txt.textIs {
    top: 12rem;
    transform: translateX(-85%);
}
.txt.textNow {
    top: 25rem;
    transform: translateX(-4%);
}

/* otherbanner-area */

#otherbanner {
    --slides: 3;
    position: relative;
    min-height: calc(var(--slides) * 100vh);
}

/* 고정될 상자 */
#otherbanner .fixedBoxBanner {
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 2;
}

.otherbanner-area {
    position: relative;
    background-color: var(--color-white);
    width: 100%;
    height: 100vh;
}
#otherbanner .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

 .otherbanner-area > .contents-wrapping {
    margin: 0 auto;
    padding: 0 3.3vw 0 3.3vw;
    position: relative;
    width: 100%;
    height: 100vh;
}

.otherbanner-area .banner-groups {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}
.otherbanner-area .ddaybanners {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.otherbanner-area .banner {
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    position: relative;
}
/* 0715 수정 */
.banner:nth-of-type(odd) > .banner-imgs {
    order: 1;
}
.banner:nth-of-type(odd) > .banner-texts {
    order: 2;
}

.banner:nth-of-type(even) > .banner-imgs {
    order: 2;
}
.banner:nth-of-type(even) > .banner-texts {
    order: 1;
}




.otherbanner-area .banner-imgs {
    width: 700px;
    height: 700px;
    position: relative;
}

.banner-imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.due-days {
    position: absolute;
    top: 0;
    right: 0;
    width: 8.6rem;
    height: 8.6rem;
    background-color: var(--color-primary);
    display: block;
    align-content: center;
    text-align: center;
    z-index: 1;
}
.due-days.left {
    right: auto;
    left: 0;
}
.due-sub {
    font-size: 1.75rem;
    color: #ffe229;
    line-height: 2.6rem;
    letter-spacing: -0.01rem;
}
.due-main {
    font-size: 3.15rem;
    color: var(--color-white);
    line-height: 4rem;
}

.otherbanner-area .banner-texts {
    width: 47%;
    height: auto;
    flex-direction: column;
    display: flex;
    align-items: center;
}
/* //0715 수정 */
.banner-subtexts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.banner-subtit {
    font-size: var(--font-primary);
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: -0.02rem;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.banner-txtbox {
    padding: 5px 20px;
    min-width: 10rem;
    max-width: 45rem;
    background: var(--color-primary);
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 1rem;
}

.banner-maintit {
    font-size: 40px;
    line-height: 48px;
    font-family: "Pretendard";
    font-weight: 700;
    color: var(--color-primary);
    width: 100%;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.banner-txtbox > .banner-maintit {
    color: var(--color-white);
}
.banner-maintexts {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5rem;
}
.banner-con {
    width: 75%;
    margin: 2rem auto;
}
.banner-con pre {
    font-size: var(--font-medium);
    color: var(--color-primary);
    font-weight: 400;
    line-height: 1.7rem;
    text-align: center;
    white-space: pre-wrap;
    word-break: keep-all;
}
.banner-txtbox.small {
    padding: 5px 40px;
    max-width: 31rem;
    background: var(--color-primary);
    margin-top: 5rem;
}
.otherbanner-area .banner-txtbox.small {
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-info {
    color: var(--color-white);
    font-size: var(--font-medium);
    font-weight: 400;
    position: relative;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.line {
    height: 18px;
    width: 1px;
    border-left: 2px solid var(--color-white);
    margin: 0 40px;
}

.otherbanner-area .swiper-pagination {
    position: absolute;
    top: 50px;
    left: auto;
    right: 10px;
    transform: translateY(-50px);
    display: flex;
    flex-direction: column;
    width: auto;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
    opacity: 1;
    background: var(--color-white);
    border: 1px solid var(--color-primary);
    margin-top: 1rem !important ;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
}

/* //otherbanner-area */

/* ourspace-area */
.ourspace-area {
    position: relative;
    height: 100%;
    background-color: var(--color-primary);
    margin-top: 5rem;
        -ms-user-select: none;
        -moz-user-select: -moz-none;
        -khtml-user-select: none;
        -webkit-user-select: none;
}
.ourspace-area > .contents-wrapping {
    margin: 0 auto;
    padding: 4vw 3.3vw 9vw 3.3vw;
    position: relative;
}
.ourspace-area .maintit {
    color: var(--color-white);
}
.ourspace-tabs {
    display: flex;
    align-items: flex-start;
    margin-top: 3rem;
    padding-left: 3rem;
    height: 30rem;
}
.ourspace-area .tabtitles-group {
    padding: 0;
    width: 36%;
}
.ourspace-area .tabtitles {
    height: 100%;
}
.ourspace-area .tabtitle.long {
    height: 5rem;
}
.ourspace-area .tabtitle.short {
    height: 6rem;
}
.ourspace-area .tabtitle.long,
.ourspace-area .tabtitle.short {
    margin-top: 2rem;
}
.ourspace-area .facility01::after,
.ourspace-area .facility09::after {
    position: absolute;
    content: "";
    top: 19px;
    right: -29px;
    height: 40px;
}
.ourspace-area .facility03::after,
.ourspace-area .facility04::after,
.ourspace-area .facility06::after,
.ourspace-area .facility07::after {
    position: absolute;
    content: "";
    top: 33px;
    right: -10px;
    height: 40px;
}
.ourspace-area .facility-ico {
    width: 4rem;
    height: 1.7rem;
}
.ourspace-area .tabcontents {
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    margin-left: 15rem;
    margin-top: 0;
    min-height: auto;
}
.space-one {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    width: 100%;
}
.space-title {
    width: 100%;
    height: 9rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 4.5rem;
}
.facility-name {
    width: 100%;
    height: 100%;
    background: url(/static/prjt/cmmn/img/facility-namebg.svg) no-repeat;
    background-size: contain;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.name-tit {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 3.3rem;
    color: var(--color-white);
    text-align: center;
}

.space-one .con {
    width: 90%;
}
.space-one .con p {
    font-size: var(--font-medium);
    color: var(--color-white);
    font-weight: 400;
    text-align: center;
    line-height: 2rem;
    word-break: keep-all;
    width: 100%;
}

.space-one .infos {
    display: flex;
    align-items: center;
    margin-top: 4rem;
}
.space-one li {
    display: flex;
    flex-direction: column;
}
.space-one .info-detail {
    border: 1px solid var(--color-white);
    border-radius: 1.5rem;
    padding: 8px 24px;
    display: flex;
    align-items: center;
}
.info-detail.call {
    margin-top: 1rem;
}
.infos .ico-map {
    width: 1.2rem;
    height: 1.7rem;
    margin-right: 0.5rem;
}
.infos .ico-call {
    width: 1.7rem;
    height: 1.7rem;
    margin-right: 0.5rem;
}
.space-one li .text {
    color: var(--color-white);
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-weight: 500;
    padding-left: 5px;
}
.space-one .go-site {
    margin-left: 5rem;
    margin-bottom: 1rem;
}
.go-site img {
    animation: floating 1.5s infinite;
}

.ourspace-tabs .swiper-button-next,
.ourspace-tabs .swiper-button-prev {
    color: var(--color-white);
    z-index: 1;
}
.ourspace-tabs .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0px);
    right: auto;
}
.ourspace-tabs .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 0px);
    left: auto;
    z-index: 1;
}

@keyframes floating {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(7%);
    }
    100% {
        transform: translateY(0%);
    }
}

/* //ourspace-area */

/* 메인화면 팝업 */
.frontpop {
    width: 464px;
    height: 726px;
    /* display: block; */
}
.frontpop form {
    width: 100%;
}
.popup.tabs {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.popup.tab2 {
    width: 42px;
    border-radius: 8px 8px 0px 0px;
    background-color: #a4b2e8;
    text-align: center;
}
.popup.tab2 a {
    display: block;
    text-align: center;
    align-content: center;
    width: 100%;
    height: 100%;
    padding: 4px 0;
    font-size: var(--font-media);
    color: #fff;
    font-family: "NanumSquareNeoBold";
    line-height: 1.5;
}

.popup.tab2.active {
    background-color: #fff;
}
.popup.tab2.active a {
    font-family: "NanumSquareNeoHeavyBold";
    color: #000;
}

.popupcontents {
    background-color: #fff;
    width: 100%;
    height: 698px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.front-popup {
    width: 100%;
    height: 650px;
    padding: 5px;
}
.front-popup a {
    width: 100%;
    display: block;
}
.front-popup img {
    object-fit: contain;
    display: block;
    width: 100%;
}
.popupcontents {
    display: none;
}
.popupcontents.show {
    display: flex;
}
.popup-todayclose {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 48px;
    padding: 0 10px;
    background-color: white;
}
.todayclose {
    display: flex;
    align-items: center;
}
.todayclose-check {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* 2. 체크박스 + 텍스트 스타일 label */
.todayclose-label {
    display: inline-block;
    position: relative;
    padding-left: 24px;
    background-size: 18px !important;
    font-size: 14px;
    color: #1d1d1d;
    cursor: pointer;
    white-space: nowrap;
}
.todayclose-check:checked + .todayclose-label {
    background: url(/static/prjt/cmmn/img/checkbox_fill.svg) no-repeat;
}
.btn-popclose {
    position: relative;
    padding-right: 17px;
    font-size: 14px;
    color: #1d1d1d;
}

/* //메인화면 팝업 */

@media screen and (max-width: 1640px) {
    /* program-area */
    .programSwiper .swiper-slide {
        flex-shrink: 0;
        width: 20vw;
        height: 35vw;
    }

    .program-poster {
        height: 30vw;
    }
    .arrow > .btn-prev::after {
        top: 7px;
        left: 7px;
    }

    .arrow > .btn-next::after {
        top: 7px;
        right: 7px;
    }

    .hover-texts {
        padding: 2rem;
    }

    .program-tit-hover {
        font-size: 30px;
        line-height: 2.5rem;
    }

    /*// program-area */
    /* news-area */
    .report-itemInfo .tit {
        font-size: 23px;
        line-height: 2rem;
    }
    .report {
        height: 18.5rem;
    }
    .table1 .tit {
        font-size: 23px;
    }
    /* //news-area */
    .ourspace-area .tabcontents {
        margin-left: 13rem;
    }
    .ourspace-area .tabtitles-group {
        width: 36%;
        padding: 0;
    }

    .ourspace-area .tabtitle.short a::after {
        right: -8px;
    }
    .facility-name {
        height: 7rem;
    }
    .space-one li .text {
        font-size: var(--font-primary);
    }
    .space-one .go-site {
        margin-left: 1.5rem;
    }
    .space-one .info-detail {
        padding: 6px 15px;
    }
    .go-site img {
        width: 6.5rem;
        height: 6.5rem;
    }
    /* //ourspace-area */
}

@media screen and (max-width: 1350px) {
#otherbanner{min-height:auto;}
    /* ourspace-area */
    .ourspace-area .tabcontents {
        margin-left: 8rem;
    }
    .ourspace-area .tabtitles-group {
        width: 37%;
    }
    .ourspace-area .facility-ico {
        width: 3.2rem;
        height: 1.3rem;
        margin-right: 0;
    }

    .ourspace-area .tabtitle.short a::after {
        right: -7px;
    }
    .ourspace-area .facility01::after,
    .ourspace-area .facility09::after {
        right: -26px;
    }
    .space-one .con p {
        font-size: 17px;
    }
    .space-one li .text {
        font-size: 0.9rem;
    }
    .banner-con {
        width: 78%;
    }
    /* //ourspace-area */
    .dreamtext-area .tit {
        width: 70%;
    }
    .table1 .tit {
        line-height: 2rem;
    }
}

@media screen and (max-width: 1280px) {
    .program-area > .contents-wrapping {
        padding: 6vw 0 5vw 3vw;
    }
    .news-area > .contents-wrapping {
        padding: 3vw 3vw 5vw 3vw;
    }
    .dreamtext-area > .contents-wrapping {
        padding: 6vw 0 4vw 3vw;
    }
    .otherbanner-area > .contents-wrapping {
        padding: 6vw 0 3vw 0;
    }
    .ourspace-area > .contents-wrapping {
        padding: 6vw 3vw 5vw 3vw;
    }

    .click-bubble {
        margin-top: 140px;
    }
    .programs-group {
        padding-right: 5.3333333333vw;
    }
    .programSwiper .swiper-slide {
        width: 30vw;
        height: 44vw;
    }
    .program-poster {
        height: 38vw;
    }
    /* news-area */
    .news-area .tabs {
        position: relative;
        top: 20px;
        left: 50px;
        right: 0;
        justify-content: flex-start;
    }
    .fixedBoxBanner {
        position: relative !important;
    }
    .news-area .tabcontents.active {
        padding: 0 3rem;
        margin-top: 3rem;
    }
    .report {
        height: 16rem;
    }
    .report-itemInfo .tit {
        font-size: var(--font-medium);
        line-height: 1.7rem;
    }
    .report-img .report-logo {
        width: 120px;
        height: 120px;
    }
    .table1 .tit {
        line-height: 1.6rem;
        font-size: var(--font-medium);
    }
    .table1 .tit:hover {
        text-underline-offset: 2.5px;
    }
    /* //news-area */

    /* dreamtext-area */
    .dream-texts {
        height: 31rem;
    }
    .dreamtext-area > .contents-wrapping {
        padding: 8vw 0 5vw 3.3vw;
    }
    .dreamtext-area .tit {
        margin-bottom: 6vw;
        font-size: 1.5rem;
        line-height: 40px;
    }
    .dream-texts > .txt {
        font-size: 150px;
    }
    .txt.textIs {
        top: 10rem;
    }
    .txt.textNow {
        top: 20rem;
    }
    /* dreamtext-area */

    /* otherbanner-area */

    .otherbanner-area .banner-groups {
        height: 100%;
    }

    .otherbanner-area .banner {
        height: 100%;
        flex-direction: column;
    }
    .otherbanner-area .banner-imgs {
        width: 430px;
        height: 430px;
    }

    /* 0715 수정 */
    .otherbanner-area .banner-texts {
        margin-left: 0;
        margin-top: 3rem;
        width: 40%;
        height: 40%;
    }
    .otherbanner-area .banner-imgs {
        margin-left: 0;
        margin-top: 0;
        width: 40%;
        height: 40%;
    }
    .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 10px;
    }
    /* //0715 수정 */
    .banner-subtexts {
        width: 100%;
    }
    .banner-txtbox {
        min-width: 90%;
        max-width: 90%;
        padding: 0;
        margin-top: 1rem;
    }
    .banner-txtbox.small {
        margin-top: 2rem;
        min-width: 90%;
        max-width: 90%;
        padding: 0;
    }
    .banner-maintexts {
        margin-top: 2rem;
        width: 100%;
    }
    .banner:nth-of-type(even) > .banner-imgs {
        margin-top: 3rem;
    }
    .banner:nth-of-type(even) > .banner-texts {
        margin-top: 0;
    }
    .banner-maintit {
        font-size: var(--font-big);
        line-height: 2.5rem;
    }
    .banner-info {
        line-height: 2rem;
        font-size: var(--font-primary);
    }
    .line {
        margin: 0 30px;
    }
    .banner-con {
        display: none;
    }
    .banner-subtexts {
        align-items: center;
    }
    .banner-subtit {
        font-size: var(--font-medium);
        font-family: "NanumSquareNeoBold";
    }
    .otherbanner-area .swiper-pagination {
        left: 50%;
        right: unset;
        flex-direction: row;
        height: auto;
        top: auto;
        bottom: 0px;
        transform: translateX(-50%) !important;
    }

    .banner-con {
        margin: 1.5rem auto;
    }
    .banner-con p {
        font-size: var(--font-media);
    }
    /* //otherbanner-area */
    /*ourspace-area */
    .ourspace-tabs {
        flex-direction: column;
        padding: 0;
        height: 100%;
    }
    .ourspace-area .tabtitles-group {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: row;
        /* overflow-x: hidden; */
        -ms-overflow-style: none;
        scrollbar-width: none;
        white-space: nowrap;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        position: relative;
    }
    .ourspace-area .tabtitles {
        display: flex;
        flex-direction: row;
        width: max-content;
        height: 6rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-top: 0;
        padding-left: 3rem;
        gap: 15px;
    }
    .ourspace-area .tabtitles-group::-webkit-scrollbar,
    .ourspace-area .tabtitles::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
    .ourspace-area .tabtitle.short {
        height: 5rem;
    }
    .ourspace-area .tabtitle.long a,
    .ourspace-area .tabtitle.short a {
        width: 7.5rem;
        height: 100%;
        justify-content: center;
    }

    .ourspace-area .facility-link {
        flex-direction: column;
        width: 100%;
    }
    .ourspace-area .tabtitle.long,
    .ourspace-area .tabtitle.short {
        margin-top: 0;
    }
    .ourspace-area .tabtitle.long a::after {
        top: 11px;
        right: -13px;
        width: 1px;
        height: 70px;
    }
    .ourspace-area .tabtitle.short a::after {
        top: 11px;
        right: -13px;
        width: 1px;
        height: 70px;
    }
    .ourspace-area .facility02::after,
    .ourspace-area .facility05::after,
    .ourspace-area .facility08::after {
        content: "";
        position: absolute;
        border-left: var(--border);
        border-color: #2e58fc;
    }
    .ourspace-area .facility-link .space {
        font-size: 13px;
        padding-top: 0.5rem;
    }

    .ourspace-area .tabcontents {
        width: 100%;
        margin-left: 0;
        margin-top: 3rem;
    }
    .space-title {
        width: 100%;
        margin-bottom: 1rem;
    }

    .space-one .con p {
        font-size: var(--font-medium);
        width: 100%;
    }
    .space-one li .text {
        font-size: var(--font-tiny);
    }
    .infos .ico-map,
    .infos .ico-call {
        width: 1.2rem;
        height: 1.2rem;
    }
    .space-one .info-detail {
        padding: 3px 6px;
        margin-right: 0;
    }
    .space-one .go-site {
        margin-bottom: 1rem;
    }
    .ourspace-tabs .swiper-button-next,
    .swiper-button-prev {
        top: 46%;
    }
    /*//ourspace-area */
}

@media screen and (max-width: 1080px) {
    .maintit {
        font-size: 60px;
    }

    .bubblearea {
        padding-top: 100px;
    }
    .click-bubble {
        margin-top: 95px;
    }
    .hover-texts {
        padding: 1.5rem;
    }

    /* news-area */
    .news-area .tabcontents.active {
        padding: 0 3rem;
    }
    .report {
        height: 13rem;
    }
    .report-itemInfo .tit {
        line-height: 20px;
        font-size: var(--font-primary);
        max-height: 3.8rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .report-itemInfo .con {
        font-size: var(--font-media);
    }
    .report-img .report-logo {
        width: 100px;
        height: 100px;
    }
    .table1 .tit {
        line-height: 2rem;
        max-height: 5.5rem;
        font-size: 1rem;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        white-space: nowrap;
    }
    /* //news-area */
    /* otherbanner-area */

    .due-days {
        width: 7rem;
        height: 7rem;
    }
    .due-sub {
        line-height: 2.5rem;
    }
    .due-main {
        line-height: 3.8rem;
        font-size: 3rem;
    }
    .otherbanner-area .banner-texts {
        width: 70%;
    }
    /* otherbanner-area */
}

@media screen and (max-width: 768px) {
    .program-area > .contents-wrapping {
        padding: 3vw 0 3vw 3vw;
    }
    .news-area > .contents-wrapping {
        padding: 3vw 3vw 3vw 3vw;
    }
    .dreamtext-area > .contents-wrapping {
        padding: 8vw 0 3vw 0;
    }
    .otherbanner-area > .contents-wrapping {
        padding: 3vw 0 3vw 0vw;
    }
    .ourspace-area > .contents-wrapping {
        padding: 3vw 3vw 3vw 3vw;
    }
    /* bubblearea */
    .bubblearea {
        padding-top: 4rem;
    }
    .bubble-textimage {
        display: none;
    }
    .bubble-image {
        display: block;
        margin: 0 auto;
        object-fit: contain;
    }
    /* //bubblearea */
    /* program-area */
    .programs-group {
        padding-right: 2.6041666667vw;
    }
    .programSwiper .swiper-slide {
        width: 48vw;
        height: 67vw;
    }
    .program-poster {
        height: 58vw;
    }
    .maintit {
        font-size: 48px;
    }
    .hover-texts {
        padding: 1rem;
    }
    .program-tit {
        font-size: var(--font-primary);
    }
    .program-tit-hover {
        font-size: var(--font-big);
    }
    .program-host {
        font-size: var(--font-media);
    }
    .host-box {
        width: 3rem;
        height: 3rem;
    }
    /*// program-area */
    /* news-area */
    .table1 .tit {
        font-size: var(--font-media);
        line-height: 1.5rem;
        max-height: 3rem;
    }
    .report:nth-child(4) {
        border-top: none;
    }

    .report-group {
        grid-template-columns: repeat(3, 1fr);
    }
    .report {
        height: 12rem;
    }
    /* 0711 박민지 수정 */
    .report-itemInfo {
        padding: 1rem;
    }
    /* //0711 박민지 수정 */
    .report-itemInfo .tit {
        font-size: var(--font-media);
        line-height: 18px;
        max-height: 3rem;
        -webkit-line-clamp: 2;
    }
    .report-itemInfo .con {
        font-size: var(--font-tiny);
    }
    .report:nth-child(4) > .report-bg::before,
    .report:nth-child(7) > .report-bg::before {
        content: none;
    }
    .report:nth-child(5) > .report-bg::before {
        content: "";
    }
    .report-img .report-logo {
        width: 70px;
        height: 70px;
    }
    /*// news-area */

    /* otherbanner-area*/

    /* 0716 추가 */

    .otherbanner-area {
        position: relative;
        background-color: var(--color-white);
        width: 100%;
        height: 650px;
    }
    .otherbanner-area .banner-texts {
        height: auto;
        margin-top: 2rem;
    }
    .banner:nth-of-type(even) > .banner-imgs {
        margin-top: 2rem;
    }
    .otherbanner-area > .contents-wrapping,#otherbanner .fixedBoxBanner {
        height: 100%;
    }
    .otherbanner-area .banner-imgs {
        width: 400px;
        height: 310px;
    }
    /* //0716 추가 */
    .banner.forMobile {
        display: block;
    }
    .banner.forWeb {
        display: none;
    }
    .line {
        margin: 0 10px;
        height: 13px;
    }
    .banner-maintit {
        font-size: var(--font-medium);
    }
    .banner-info {
        font-size: var(--font-media);
    }
    .due-days {
        width: 6rem;
        height: 6rem;
    }
    .due-sub {
        line-height: 2.3rem;
        font-size: 1.5rem;
    }
    .due-main {
        line-height: 3rem;
        font-size: 2.5rem;
    }
    col:nth-child(1) {
        width: 15%;
    }
    /*// otherbanner-area*/
    /* dreamtext-area */
    .dreamtext-area .tit {
        font-size: 1rem;
        line-height: 30px;
        width: 85%;
    }
    .dream-texts > .txt {
        font-size: 100px;
    }
    .txt.textIs {
        top: 7rem;
    }
    .txt.textNow {
        top: 14rem;
    }
    .dream-texts {
        height: 26rem;
    }
    /* //dreamtext-area */
    /* ourspace-area */
    .space-title {
        margin-bottom: 1.5rem;
    }
    .space-one .con p {
        font-size: var(--font-primary);
    }
    .ourspace-tabs .swiper-button-next,
    .swiper-button-prev {
        top: 47%;
    }
    /* //ourspace-area */
    .footer-maininfo a {
        margin-right: 30px;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 500px) {
    .threecircle {
        width: 2rem;
        height: 4rem;
    }
    /* bubble-area */
    .bubble-image {
        width: 90%;
        height: 70%;
    }
    .bubble-text {
        font-size: var(--font-primary);
    }
    .click-bubble {
        margin-top: 50px;
        width: 9rem;
        height: 2.5rem;
    }
    /* //bubble-area */
    /* program-area */
    .program-area {
        padding: 0 24px;
    }
    .programs-group {
        padding-left: 0;
    }
    .programs-group-area {
        padding: 1rem 0;
    }

    .programSwiper .swiper-slide {
        width: 92vw;
        height: 123vw;
    }
    .program-poster {
        height: 112vw;
    }

    .host-tit {
        font-size: var(--font-media);
    }
    .maintit {
        font-size: 32px;
        padding-left: 0;
    }
    .arrow {
        padding-left: 0;
        padding-top: 2rem;
    }
    /*// program-area */

    /* news-area */
    .news-area {
        padding: 0 24px;
    }
    .news-area .tabs {
        gap: 20px;
    }

    .news-area .tabs {
        top: 5px;
        left: 0;
        gap: 10px;
    }
    .news-area .tabcontents.active {
        padding: 0;
        margin-top: 1.5rem;
    }
    .report-group {
        grid-template-columns: repeat(2, 1fr);
    }
    .report {
        height: 12rem;
    }
    .report:nth-child(3) {
        border-top: none;
    }
    .report:nth-child(1) > .report-bg::before,
    .report:nth-child(3) > .report-bg::before,
    .report:nth-child(5) > .report-bg::before,
    .report:nth-child(7) > .report-bg::before {
        content: none;
    }
    .report:nth-child(4) > .report-bg::before {
        content: "";
    }
    .report-img .report-logo {
        width: 90px;
        height: 90px;
    }
    /* //news-area */

    /* dreamtext-area */
    .dreamtext-area .tit {
        font-size: var(--font-media);
        line-height: 22px;
        width: 90%;
        padding-left: 7.3vw;
    }
    .dream-texts {
        height: 16rem;
    }
    .dream-texts > .txt {
        font-size: 60px;
        -webkit-text-stroke: 1px;
        -webkit-text-stroke-color: #0134ff;
    }

    .txt.textIs {
        top: 4rem;
    }
    .txt.textNow {
        top: 8rem;
    }
    /* //dreamtext-area */

    /* otherbanner-area */
    .otherbanner-area {
        padding: 0 20px 8vw;
    }
    .otherbanner-area > .contents-wrapping {
        padding: 0;
    }
    .otherbanner-area .banner {
        justify-content: flex-start;
    }
    .otherbanner-area .banner-imgs {
        width: 350px;
        height: 350px;
    }

    .otherbanner-area .banner-texts {
        width: 90%;
        height: auto;
    }
    .banner-subtit {
        font-size: var(--font-media);
    }
    .banner-area {
        margin-top: 2rem;
    }
    .banner-maintit {
        line-height: 1.8rem;
        text-wrap: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .banner-maintexts,
    .otherbanner-area .banner-txtbox.small {
        margin-top: 1.5rem;
    }

    .banner-info {
        font-size: var(--font-tiny);
        line-height: 1.8rem;
    }

    .line {
        height: 12px;
        margin: 0 15px;
        border-left: 1px solid var(--color-white);
    }
    .due-days {
        width: 5rem;
        height: 5rem;
    }
    .due-sub {
        line-height: 1.3rem;
        font-size: var(--font-primary);
    }
    .due-main {
        line-height: 2.6rem;
        font-size: var(--font-big);
    }
    /* //otherbanner-area */

    /* ourspace-area */
    .ourspace-area {
        padding: 0 24px;
    }
    .ourspace-area .tabtitles {
        padding-left: 0;
        height: 5.5rem;
        gap: 0px;
    }
    .ourspace-area .tabtitle.long,
    .ourspace-area .tabtitle.short {
        width: auto;
    }
    .ourspace-area .tabtitle.long a,
    .ourspace-area .tabtitle.short a {
        width: 8rem;
    }
    .ourspace-area .tabtitle.long a::after {
        top: 8px;
        right: -4px;
        height: 64px;
    }

    .tabtitle.long {
        gap: 6px;
    }
    .ourspace-area .tabtitle.short a::after {
        top: 8px;
        right: -7px;
        height: 64px;
    }

    .facility-name {
        height: 6rem;
    }
    .name-tit {
        font-size: var(--font-big);
    }
    .ourspace-area .facility-link .space {
        font-size: var(--font-tiny);
        line-height: 1.2rem;
        width: fit-content;
    }
    .space-one li .text {
        font-size: var(--font-tiny);
        line-height: 1rem;
    }
    .space-title {
        margin-bottom: 0;
        height: 8rem;
    }

    .space-one .con p {
        font-size: var(--font-tiny);
        line-height: 1.2rem;
    }
    .space-one .info-detail {
        padding: 5px 10px;
    }
    .infos .ico-map {
        width: 0.8rem;
        height: 1.3rem;
    }
    .infos .ico-call {
        width: 1.3rem;
        height: 1.3rem;
        margin-right: 0;
    }
    .ourspace-tabs .swiper-button-next,
    .swiper-button-prev {
        top: 42%;
    }
    /* //ourspace-area */

    /* 메인팝업-0710추가 */
    .frontpop {
        width: 90%;
        height: auto;
    }
    .popupcontents {
        height: 100%;
    }
    .front-popup {
        height: 90%;
    }
    .todayclose-label {
        background-size: 16px !important;
    }
    /* //메인팝업-0710추가 */
}
