@charset "UTF-8";

/* 레이아웃, 공통 */
main {
    padding-right: var(--space-70)
}
.layout {
    width: 90%;
    max-width: 1640px;
    margin: 0 auto;
}
.txt40 {
    font-size: var(--font-40);
    font-weight: var(--fw-black);
}
.txt30 {
    font-size: var(--font-30);
    font-weight: var(--fw-black);
}
.txt25 {
    font-size: var(--font-25);
}
.txt20 {
    font-size: var(--font-20);
}
.mb30 {
    margin-bottom: var(--space-30);
}
.mt30 {
    margin-top: var(--space-30);
}
.mt20 {
    margin-top: var(--space-20);
}
.mtmb60 {
    margin: var(--space-60) 0
}
.mtmb30 {
    margin-top: var(--space-30);
    margin-bottom: var(--space-30);
}
.mt50 {
    margin-top: var(--space-50);
}
.mt60 {
    margin-top: var(--space-60);
}
.mb60 {
    margin-bottom: var(--space-60);
}
.mt70 {
    margin-bottom: var(--space-70);
}
.mb70 {
    margin-bottom: var(--space-30);
}
.ptpb30 {
    padding-top: var(--space-30);
    padding-bottom: var(--space-30);
}
.pt30 {
    padding-top: var(--space-30);
}
.pb30 {
    padding-bottom: var(--space-30);
}
.pl60 {
    padding-left: var(--space-60)
}
.pr60 {
    padding-right: var(--space-60)
}
.ptpb60 {
    padding: var(--space-60) 0
}
.ptpb120 {
    padding: var(--space-120) 0
}
.ptpb150 {
    padding: var(--space-150) 0
}
.pt150 {
    padding-top: var(--space-150)
}
.pb150 {
    padding-bottom: var(--space-150)
}
.text-align-justify {
    text-align: justify;
    word-break: normal;
}
.btn-more {
    width: 78px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-14);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    background-color: var(--color-dark);
    border: 1px solid var(--color-dark);
}
.btn-more svg {
    width: 10px;
    height: 10px;
    margin-left: var(--space-8);
}
.btn-more:hover {
    color: var(--color-dark);
    background-color: var(--color-white);
}
.btn-more:hover svg line {
    stroke: var(--color-dark);
}
.btn-black {
    padding: var(--space-14) var(--space-25);
    background-color: var(--color-dark);
    border: 1px solid var(--color-dark);
    display: inline-flex;
    align-items: center;
    font-weight: var(--fw-semibold);
    color: var(--color-white);
}
.btn-black svg {
    width: auto;
    margin-left: var(--space-10)
}
.btn-black:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}
.btn-black:hover svg path,
.btn-black:hover svg line {
    stroke: var(--color-dark);
}
.btn-black.vr:hover svg path {
    fill: var(--color-dark)
}
.btn-black.vr:hover svg path {
    stroke: none
}

.btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-area .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-25);
    height: 50px;
    background-color: var(--color-dark);
}
.btn-area .btn:hover {
    background-color: transparent;
    border: var(--border-basic);
}
.btn-area .btn span {
    color: var(--color-white);
    font-size: var(--font-18);
    font-weight: var(--fw-semibold);
}
.btn-area .btn:hover span {
    color: var(--color-dark);
}

.flexbox {
    display: flex;
    align-items: center;
}
.line {
    border-bottom: var(--border-basic);
}
.sub-wrap .titlearea {
    margin-bottom: var(--space-80);
    text-align: center;
}
.sub-wrap .titlearea h3 {
    font-weight: var(--fw-black);
}
.sub-wrap .flexbox2 .titlearea {
    margin-bottom: var(--space-30);
    text-align: left;
}

.icon-list > li,
.introduce4 .history-list li,
.guide2 ol > li,
.location1 .icon-list p,
.location3 .bus-list .list,
.location4 .subway-list .list,
.exhibition-view1 .exhibition-info-top .info-area li,
.location5 .icon-list p {
    font-size: var(--font-20)
}
.pl80 {
    padding-left: var(--space-80)
}
.pr80 {
    padding-right: var(--space-80)
}
.dot-list > li {
    position: relative;
    padding-left: 11px;
    margin-bottom: var(--space-15);
}
.dot-list > li:last-child {
    margin-bottom: 0
}
.dot-list > li::before {
    content:"";
    width: 3px;
    height: 3px;
    display: block;
    background-color: var(--color-dark);
    position: absolute;
    left: 0;
    top: var(--space-10)
}
.icon-list > li,
.icon-list p {
    position: relative;
    padding-left: var(--space-24);
}
.icon-list > li {
    margin-bottom: var(--space-20);
}
.icon-list > li:last-of-type,
.icon-list p {
    margin-bottom: 0;
}
.icon-list > li::before,
.icon-list p::before {
    content: "";
    width: 9px;
    height: 9px;
    display: block;
    background: center/ contain url("/public/images/icon-square.svg") no-repeat;
    position: absolute;
    left: 0;
    top: 7px
}

.flexbox2 {
    width: 100%;
    display:flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.flexbox2 .flexleft {
    width: 526px;
    padding-right: var(--space-60);
}
.flexbox2 .flexright {
    width: calc(100% - 526px);
    padding-left: var(--space-60);
    border-left: var(--border-basic);
}

.flexbox3 {
    width: 100%;
    display:flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flexbox3 .box {
    width: 33.33%;
    padding: 0 var(--space-60)
}
.flexbox3 .box:not(:last-of-type) {
    border-right: var(--border-basic);
}

.flexbox4 {
    width: 100%;
    display:flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flexbox4 .box {
    width: 25%;
    padding: 0 var(--space-60)
}
.flexbox4 .box:not(:last-of-type) {
    border-right: var(--border-basic);
}

.flexbox-half {
    width: 100%;
    display:flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.flexbox-half .flexleft {
    width: 50%;
    padding-right: var(--space-60);
}
.flexbox-half .flexright {
    width: 50%;
    padding-left: var(--space-60);
    border-left: var(--border-basic);
}

.tab {
    display: flex;
    align-items: center;
}
.tab li {
    width: 199px;
    height: 49px;
}
.tab li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border: var(--border-basic);
}
.tab li:not(:last-of-type) {
    margin-right: var(--space-10)
}
.tab li.on a {
    background-color: var(--color-dark);
    border: 1px solid var(--color-dark);
    color: var(--color-white);
    font-weight: var(--fw-semibold);
}
.tab_con {
    clear: both;
}
.tab_con .tab_conarea {
    display: none;
}
    /* 레이아웃, 공통 미디어쿼리 */
    @media all and (max-width:1600px) {
        .txt40 {
            font-size: var(--font-30);
        }
        .txt30 {
            font-size: var(--font-25);
        }
        .txt25 {
            font-size: var(--font-22);
        }
        .txt20 {
            font-size: var(--font-18);
        }
        .ptpb150 {
            padding: var(--space-110) 0;
        }
        .btn-more {
            width: 58px;
            height: 26px;
            font-size: var(--font-12);
        }
        .btn-more svg {
            width: 7px;
            margin-left: var(--space-5);
        }
        .flexbox2 .flexleft {
            width: 300px;
            padding-right: var(--space-30);
        }
        .flexbox2 .flexright {
            width: calc(100% - 300px);
            padding-left: var(--space-30);
            border-left: var(--border-basic);
        }
        .flexbox-half .flexleft {
            padding-right: var(--space-30);
        }
        .flexbox-half .flexright {
            padding-left: var(--space-30);
        }
        .flexbox3 .box {
            padding: 0 var(--space-30);
        }
        .flexbox4 .box {
            padding: 0 var(--space-30)
        }
        .icon-list > li,
        .introduce4 .history-list li,
        .guide2 ol > li,
        .location1 .icon-list p,
        .location3 .bus-list .list,
        .location4 .subway-list .list,
        .location5 .icon-list p,
        .exhibition-view1 .exhibition-info-top .info-area li {
            font-size: var(--font-18);
        }
        .dot-list > li::before {
            top: var(--space-8)
        }
        .pl80 {
            padding-left: var(--space-40)
        }
        .pr80 {
            padding-right: var(--space-40)
        }
    }
    @media all and (max-width:1200px) {
        main {
            padding-right: 0
        }
        .pl80 {
            padding-left: var(--space-50)
        }
        .pr80 {
            padding-right: var(--space-50)
        }
    }
    @media all and (max-width:1000px) {
        .sub-wrap .titlearea h3 {
            text-align: center;
        }
        .txt40 {
            font-size: var(--font-30);
        }
        .txt30 {
            font-size: var(--font-25);
        }
        .txt20 {
            font-size: var(--font-18);
        }
        .pt30 {
            padding-top: var(--space-20);
        }
        .pb30 {
            padding-bottom: var(--space-20);
        }
        .ptpb30 {
            padding-top: var(--space-20);
            padding-bottom: var(--space-20);
        }
        .pl80 {
            padding-left: var(--space-50)
        }
        .pr80 {
            padding-right: var(--space-50)
        }
        .ptpb60 {
            padding: var(--space-40) 0
        }
        .ptpb120 {
            padding: var(--space-80) 0
        }
        .ptpb150 {
            padding: var(--space-90) 0;
        }
        .mt30 {
            margin-top: var(--space-20);
        }
        .mb30 {
            margin-bottom: var(--space-20);
        }
        .mtmb60 {
            margin: var(--space-30) 0
        }
        .sub-wrap .titlearea,
        .sub-wrap .flexbox2 .titlearea {
            margin-bottom: var(--space-40);
        }
        .btn-area .btn {
            padding: 0 var(--space-20);
            height: 45px;
        }
        .btn-area .btn span {
            font-size: var(--font-16);
        }
        .btn-black {
            padding: var(--space-12) var(--space-20);
        }
        .flexbox2 .flexleft,
        .flexbox2 .flexright,
        .flexbox3 .box,
        .flexbox-half .flexleft,
        .flexbox-half .flexright {
            width: 100%;
        }
        .flexbox2 .flexleft,
        .flexbox-half .flexleft {
            padding-right: 0
        }
        .flexbox2 .flexright,
        .flexbox-half .flexright {
            width: calc(100% - 0px);
            padding-left: 0;
            border-left: 0;
            margin-top: var(--space-40);
        }
        .flexbox3 .box {
            padding: 0;
            margin-bottom: var(--space-40)
        }
        .flexbox3 .box:last-of-type {
            margin-bottom: 0
        }
        .flexbox3 .box:not(:last-of-type) {
            border-right: 0
        }
        
        .flexbox4 .box {
            width: 100%;
            padding: var(--space-30) 0
        }
        .flexbox4 .box:first-of-type {
            padding-top: 0
        }
        .flexbox4 .box:last-of-type {
            padding-bottom: 0
        }
        .flexbox4 .box:not(:last-of-type) {
            border-right: 0;
            border-bottom: var(--border-basic);
        }

        .icon-list > li,
        .icon-list p {
            padding-left: var(--space-20);
        }
        .icon-list > li {
            margin-bottom: var(--space-15);
        }
        .icon-list > li::before,
        .icon-list p::before {
            width: 7px;
            height: 7px;
            
        }
        .icon-list p::before {
            top: 5px
        }
        .dot-list > li {
            padding-left: 8px;
            margin-bottom: var(--space-10);
        }
        .tab li {
            width: 170px;
            height: 42px;
        }
        .tab li a {
            font-size: var(--font-16);
        }
    }
    @media all and (max-width:640px) {
        .txt40 {
            font-size: var(--font-28);
        }
        .txt30 {
            font-size: var(--font-22);
        }
        .mb30 {
            margin-bottom: var(--space-20);
        }
        .mtmb30 {
            margin-top: var(--space-20);
            margin-bottom: var(--space-20);
        }
        .ptpb60 {
            padding: var(--space-30) 0
        }
        .ptpb120 {
            padding: var(--space-60) 0
        }
        .pt30 {
            padding-top: var(--space-20);
        }
        .btn-area .btn {
            padding: 0 var(--space-15);
            height: 40px;
        }
        .btn-area .btn span {
            font-size: var(--font-15);
        }
        .btn-black {
            padding: var(--space-8) var(--space-15);
            font-size: var(--font-15);
        }
        .btn-black svg {
            width: 14px;
            margin-left: 5px
        }
        .ptpb150 {
            padding: var(--space-60) 0;
        }
        
        .flexbox3 {
            align-items: center;
        }
        .flexbox2 .flexright,
        .flexbox-half .flexright {
            margin-top: var(--space-35);
        }
        .flexbox4 .box {
            padding: var(--space-25) 0
        }
        .sub-wrap .titlearea,
        .sub-wrap .flexbox2 .titlearea {
            margin-bottom: var(--space-35);
        }
        .tab {
            justify-content: space-between;
        }
        .tab li {
            width: 49%;
            height: 40px;
        }
        .tab li:not(:last-of-type) {
            margin-right: 0
        }
        .tab li a {
            font-size: var(--font-15);
        }
        .icon-list > li,
        .icon-list p {
            padding-left: var(--space-20);
        }
        .dot-list > li {
            padding-left: 10px;
            margin-bottom: var(--space-8);
        }
    }


/* 메인 비주얼 */
.main-visual {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    overflow: hidden;
    border-bottom: var(--border-basic);
}
/* .main-visual .visualarea {
    height: calc(100vh - 160px)
} */
/* .main-visual .swiper-slide.banner .visualarea {
    height: calc(100vh - 0px)
} */
.main-visual .visualarea img.pc {
    display: block;
    width:100%;
    height: 100%;
    object-fit: cover;
}
.main-visual .textarea .label {
    width: 52px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-16);
    font-weight: var(--fw-bold);
    background-color: var(--color-dark);
    color: var(--color-white);
    margin-right: var(--space-30);
}
.main-visual .textarea .name,
.main-visual .textarea .date {
    display: block;
    font-size: var(--font-25);
}
.main-visual .inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.main-visual .banner  .textarea {
    opacity: 0;
}
.main-visual .textarea .name {
    padding-right: var(--space-30);
    margin-right: var(--space-30);
    border-right: var(--border-basic);
}
.main-visual .textarea {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    font-weight: var(--fw-bold);
}
.main-visual .swiper-bottom {
    width:90%;
    max-width: 1700px;
    position: absolute;
    left: 0;
    right:0;
    margin: 0 auto;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.main-visual .swiper-control {
    background-color: var(--color-white);
    padding: 0 var(--space-30);
    height: 70px;
}
.main-visual .visualarea img.mobile {
    display: none;
}
    /* 메인 비주얼 미디어쿼리 */
    @media all and (max-width:1919px) {
        .main-visual,
        .main-visual .visualarea {
            height: auto;
        }
    }
    @media all and (max-width:1200px) {
        .main-visual .textarea {
            justify-content: flex-start;
            padding: 0 5%
        }
        .main-visual .textarea .name {
            padding-right: var(--space-20);
            margin-right: var(--space-20);
        }
        .main-visual .textarea .label {
            margin-right: var(--space-20);
        }
        .main-visual .swiper-control {
            padding: 0 var(--space-10);
            margin-right: -10px
        }
    }
    @media all and (max-width:1000px) {
        .main-visual .textarea .label {
            width: 34px;
            height: 20px;
            font-size: var(--font-12);
        }
        .main-visual .textarea .name {
            font-size: var(--font-20);
        }
        .main-visual .textarea .name {
            padding-right: var(--space-15);
            margin-right: var(--space-15);
        }
        .main-visual .textarea .label {
            margin-right: var(--space-15);
        }
        .main-visual .visualarea img.pc {
            display: block;
        }
        .main-visual .visualarea img.mobile {
            display: none;
        }
    }
    @media all and (max-width:640px) {
        .main-visual {
            height: auto;
            padding-bottom: var(--space-15);
        }
        .main-visual .visualarea img.pc {
            display: none;
        }
        .main-visual .visualarea img.mobile {
            display: block;
        }
        /* .main-visual .visualarea {
            height: 400px
        } */
        .main-visual .swiper-slide.banner .textarea  {
            display: none;
        }
        .main-visual .swiper-bottom {
            position: relative;
            justify-content: center;
        }
        .main-visual .textarea {
            height: auto;
            flex-direction: column;
            align-items: center;
            padding: 0 5%;
            margin: var(--space-15) 0 var(--space-25)
        }
        .main-visual .textarea .label {
            margin: 0 0 var(--space-5) 0;
        }
        .main-visual .textarea .name {
            padding-right: 0;
            margin-right: 0;
            border-right:0;
            margin-bottom: var(--space-5);
            font-size: var(--font-25);
        }
        .main-visual .textarea .date {
            font-size: var(--font-18);
        }
        .main-visual .swiper-control {
            height: auto;
            padding: 0;
            margin-right: 0
        }
    }

/* 메인 공통 */
.main-wrap {
    border-bottom: var(--border-basic);
    padding: var(--space-150) 0
}
.main-flexbox {
    width: 100%;
    display: flex;
    align-items: stretch;
}
.main-flexbox .flexleft {
    width: 355px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}
.main-flexbox .flexright {
    width: calc(100% - 355px);
    padding-left: var(--space-60);
    border-left: var(--border-basic);
}
.main-flexbox.reverse .flexleft {
    padding-right: var(--space-60);
    width: calc(100% - 595px);
}
.main-flexbox.reverse .flexright {
    width: 595px;
}
    /* 메인 공통 미디어쿼리 */
    @media all and (max-width:1200px) {
        .main-wrap {
            padding: var(--space-130) 0
        }
        .main-flexbox .flexleft {
            width: 250px;
            display: inline-flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .main-flexbox .flexright {
            width: calc(100% - 255px);
            padding-left: var(--space-40);
        }
        .main-flexbox.reverse .flexleft {
            padding-right: var(--space-40);
            width: 50%
        }
        .main-flexbox.reverse .flexright {
            width: 50%
        }
    }
    @media all and (max-width:1000px) {
        .main-wrap {
            padding: var(--space-90) 0
        }
        .main-flexbox .flexright {
            padding-left: var(--space-30);
        }
        .main-flexbox.reverse  {
            flex-wrap: wrap;
            align-items: flex-start;
        }
        .main-flexbox.reverse .flexleft {
            padding-right: 0;
            width: 100%;
        }
        .main-flexbox.reverse .flexright {
            width: 100%;
            padding-left: 0;
            border-left: 0;
        }
    }
    @media all and (max-width:640px) {
        .main-wrap {
            padding: var(--space-60) 0
        }
        .main-flexbox {
            flex-wrap: wrap;
            align-items: flex-start;
        }
        .main-flexbox .flexleft {
            width: 100%;
            justify-content: space-between;
            margin-bottom: var(--space-20)
        }
        .main-flexbox .flexright {
            width: 100%;
            padding-left: 0;
            border-left: 0;
        }
        .main-flexbox.reverse .flexleft {
            padding-right: 0;
            width: 100%;
        }
        .main-flexbox.reverse .flexright {
            width: 100%;
        }
    }

/* 메인 전시 */
.main-exhibition .layout,
.main-program .layout {
    width: 100%;
    padding-left: 5.5%;
    max-width: 1850px;
    margin: 0
}
.main-exhibition .swiper-slide,
.main-program .swiper-slide {
    width: 21%;
}
    /* 메인 전시 미디어쿼리 */
    @media all and (max-width:1600px) {
        .main-exhibition .swiper-slide,
        .main-program .swiper-slide {
            width: 30%;
        }
    }
    @media all and (max-width:1200px) {
        .main-exhibition .layout,
        .main-program .layout {
            padding-left: 5%;
        }
        .main-exhibition .swiper-slide,
        .main-program .swiper-slide {
            width: 35%;
        }
        .main-exhibition .m-titlearea pre,
        .main-program .m-titlearea pre {
            position: relative;
            font-size: var(--font-16);
        }
    }
    @media all and (max-width:1000px) {
        .main-exhibition .swiper-slide,
        .main-program .swiper-slide {
            width: 46%;
        }
    }
    @media all and (max-width:640px) {
        .main-exhibition .swiper-slide,
        .main-program .swiper-slide {
            width: 65%;
        }
        .main-exhibition .m-titlearea,
        .main-program .m-titlearea {
            position: relative;
        }
        .main-exhibition .btn-more,
        .main-program .btn-more {
            position: absolute;
            right: 5%;
            top: 4px;
            margin-top: 0;
        }
    }

/*-- 리스트 타입 */
.list .list-thumb {
    position: relative;
}
.list .list-thumb .category {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--font-15);
    font-weight: var(--fw-bold);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.list .list-thumb .thumb {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    display: block;
}
.list-exhibition .list .list-thumb .thumb {
    padding-bottom: 142%;
}
.list-program .list .list-thumb .thumb {
    padding-bottom: 100%;
}
.list .list-thumb .thumb img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: var(--transition);
}
.list a:hover .list-thumb .thumb img,
.list a:focus .list-thumb .thumb img {
    transform: scale(1.03);
}
.list .list-txtarea .list-date {
    display: flex;
    align-items: center;
    padding: var(--space-10) 0;
    border-bottom: var(--border-basic);
    margin-bottom: var(--space-15);
}
.list .list-txtarea .label,
.main-news .notice-list .list .topic {
    width: 34px;
    height: 23px;
    font-size: var(--font-13);
    display: flex;
    align-items: center;
    justify-content: center;
}
.list .list-txtarea .label {
    margin-right: var(--space-10);
}
.list .list-txtarea .label.progress {
    background-color: var(--color-green);
    color: var(--color-white)
}
.list .list-txtarea .label.receipt,
.main-news .notice-list .list .topic {
    background-color: var(--color-dark);
    color: var(--color-white)
}
.list .list-txtarea .label.scheduled {
    border:1px solid var(--color-yellow);
    color: var(--color-yellow);
    font-weight: var(--fw-medium);
}
.list .list-txtarea .label.guide {
    border:1px solid var(--color-green);
    color: var(--color-green);
    font-weight: var(--fw-medium);
}
.list .list-txtarea .label.done {
    background: var(--color-red);
    color: var(--color-white);
}
.list .list-txtarea .date {
    font-size: var(--font-16);
}
.list .list-txtarea .name {
    font-weight: var(--fw-black);
    font-size: var(--font-20);
    word-break: break-all;
}
.list a:focus .list-txtarea .name {
    text-decoration: underline;
}
    /* 리스트 타입 미디어쿼리 */
    @media all and (max-width:1200px) {
        .list .list-txtarea .name {
            font-size: var(--font-18);
        }
        .list .list-txtarea .date {
            font-size: var(--font-15);
        }
    }
    @media all and (max-width:1000px) {
        .list .list-txtarea .name {
            font-size: var(--font-16);
        }
        .list .list-txtarea .date {
            font-size: var(--font-14);
        }
        .list .list-txtarea .label,
        .main-news .notice-list .list .topic {
            width: 30px;
            height: 20px;
            font-size: var(--font-12);
        }
        .list .list-txtarea .label {
            margin-right: var(--space-5);
        }
        .list .list-thumb .category {
            width: 36px;
            height: 36px;
            font-size: var(--font-14);
        }
    }
    @media all and (max-width:640px) {
        .list .list-txtarea .name {
            font-size: var(--font-17);
        }
        .list .list-txtarea .list-date {
            flex-direction: column;
            align-items: flex-start;
            padding: var(--space-10) 0;
            margin-bottom: var(--space-10);
        }
        .list .list-txtarea .date {
            font-size: var(--font-15);
            margin-top: var(--space-5);
        }

    }

/* 도와드릴까요? */
.main-help {
    background-color: var(--color-dark);
    padding: var(--space-25) 0;
    color: var(--color-white)
}
.main-help .titlearea p {
    display: flex;
    align-items: center;
    font-size: var(--font-20);
    margin-bottom: var(--space-5);
}
.main-help .titlearea .txt30 {
    font-weight: var(--fw-bold);
}
.main-help .titlearea svg {
    width: 20px;
    margin-right: var(--space-7)
}
.main-help .titlearea a:hover {
    color: var(--color-orange);
}
.main-help .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 1px solid var(--color-white);
}
.main-help .content .help-list a {
    display: flex;
    align-items: center;
}
.main-help .content .help-list .title {
    font-weight: var(--fw-semibold);
    margin-left: var(--space-15);
    transition: var(--transition);
}
.main-help .content .help-list a:hover .title {
    font-weight: var(--fw-black);
}
    /* 도와드릴까요  미디어쿼리 */
    @media all and (max-width:1200px) {
        .main-help .content .help-list .icon {
            width: 38px;
        }
        .main-help .content .help-list a {
            flex-direction: column;
            justify-content: center;
        }
        .main-help .content .help-list .title {
            font-size: var(--font-18);
            margin: var(--space-7) 0 0 0
        }
        .main-help .main-flexbox .flexleft {
            justify-content: center;
        }
    }
    @media all and (max-width:1000px) {
        .main-help .titlearea p {
            font-size: var(--space-18);
        }
        .main-help .content .help-list .icon {
            width: 38px;
        }
        .main-help .content .help-list .title {
            font-size: var(--font-15);
            margin: var(--space-5) 0 0 0
        }
    }
    @media all and (max-width:640px) {
        .main-help {
            padding: var(--space-35) 0
        }
        .main-help .content {
            flex-wrap: wrap;
            border-left: 0
        }
        .main-help .titlearea {
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, .8);
            padding-bottom: var(--space-15)
        }
        .main-help .titlearea svg {
            width: 15px;
            margin-right: var(--space-5);
        }
        .main-help .titlearea .txt30 {
            font-size: var(--font-28);
        }
    }


/* 메인 뉴스 */
.main-news .main-flexbox.reverse .flexleft {
    justify-content: flex-start;
}
.main-news .m-titlearea {
    justify-content: space-between;
    margin-bottom: var(--space-25);
}
.main-notice .content {
    margin-top: 5%
}
.main-notice .notice-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0 var(--space-30);
}
.main-notice .notice-list .list .list-txtarea {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
}
.main-notice .notice-list .list .topic {
    margin-bottom: var(--space-15);
}
.main-notice .notice-list .list .subject {
    font-weight: var(--fw-bold);
    font-size: var(--font-20);
}
.main-notice .notice-list .list .date {
    display: block;
    border-top: var(--border-basic);
    font-size: var(--font-16);
    padding-top: var(--space-15);
}
.video {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
}
.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
    /* 메인 뉴스  미디어쿼리 */
    @media all and (max-width:1200px) {
        .main-notice .content {
            margin-top: 0;
        }
        .main-notice .notice-list {
            grid-template-columns: repeat(1, 1fr);
            grid-gap: var(--space-15) 0;
        }
        .main-notice .notice-list .list {
            padding-bottom: var(--space-10);
            border-bottom: var(--border-basic);
        }
        .main-notice .notice-list .list:last-of-type {
            border-bottom: 0;
            padding: 0
        }
        .main-notice .notice-list .list .subject {
            font-size: var(--font-18);
        }
        .main-notice .notice-list .list .list-txtarea {
            height: auto;
        }
        .main-notice .notice-list .list .topic {
            margin-bottom: var(--space-5);
        }
        .main-notice .notice-list .list .date {
            font-size: var(--font-15);
            padding-top: var(--space-10);
            border-top: 0;
        }
    }
    @media all and (max-width:1000px) {
        .main-news .main-flexbox.reverse .flexleft {
            margin-bottom: var(--space-50);
        }
        .main-notice .notice-list .list {
            padding-bottom: var(--space-15);
        }
        .main-notice .notice-list .list:last-of-type {
            padding-bottom: var(--space-15);
            border-bottom: var(--border-basic);
        }
    }
    @media all and (max-width:640px) {
        .main-news .main-flexbox.reverse .flexleft {
            margin-bottom: var(--space-80);
        }
        .main-news .m-titlearea {
            margin-bottom: var(--space-15)
        }
        .main-notice .content {
            margin-top: 5%;
        }
        .main-notice .notice-list .list {
            padding-bottom: var(--space-20);
        }
        .main-notice .notice-list .list:last-of-type {
            padding-bottom: var(--space-10);
        }
        .main-notice .notice-list .list .date {
            padding-top: var(--space-15);
        }
    }


/* 메인 파트너 */
.main-partner {
    border-top: var(--border-basic);
}
.main-partner .partnerarea {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0 var(--space-30);
}
    @media all and (max-width: 1200px) {
        .main-partner .partnerarea {
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-20);
        }
    }
    @media all and (max-width: 1000px) {
       
    }
    @media all and (max-width: 640px) {
        .main-partner .partnerarea {
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-20) 0;
        }
    }


/* 서브 공통 */
.sub-wrap {
    padding: var(--space-120) 0 var(--space-150) 0;
}
.section-title-area {
    text-align: center;
}
.section-title-area h3 {
    font-weight: var(--fw-black);
}
.input-style {
    padding: 0 var(--space-25);
    font-size: var(--font-18);
    font-weight: var(--fw-black);
}
.select-style {
    min-width: 0;
    padding: 0 var(--space-25);
    background: url("/public/images/icon-dropdown.svg") no-repeat right 25px center / 13px auto;
    font-size: var(--font-18);
    font-weight: var(--fw-bold);
}
.select-style:focus {
    outline: 3px solid #000;
}
.location1 .btnarea.pc,
.bi1 .btnarea.pc,
.rental-guide1 .btnarea.pc {
    display: flex;
    justify-content: flex-start;
    position: absolute;
    bottom: 0;
    left: 0
}
    @media all and (max-width: 1000px) {
        .sub-wrap {
            padding: var(--space-80) 0 var(--space-110) 0;
        }
        .input-style {
            padding: 0 var(--space-20);
            font-size: var(--font-16);
        }
        .select-style {
            min-width: 0;
            padding: 0 var(--space-15);
            background: url("/public/images/icon-dropdown.svg") no-repeat right 20px center / 11px auto;
            font-size: var(--font-16);
        }
        .location1 .btnarea.pc,
        .bi1 .btnarea.pc,
        .rental-guide1 .btnarea.pc,
        .rental-guide3 .btnarea.pc {
            display: none;
        }
        .location1 .btnarea.mobile,
        .bi1 .btnarea.mobile,
        .rental-guide1 .btnarea.mobile,
        .rental-guide3 .btnarea.mobile {
            display: flex;
            justify-content: center;
            position: relative;
            left: auto;
            right: auto;
            bottom: auto;
            margin-top: var(--space-20);
        }
    }
    @media all and (max-width: 640px) {
        .sub-wrap {
            padding: var(--space-60) 0 var(--space-80) 0;
        }
        .input-style {
            padding: 0 var(--space-10);
            font-size: var(--font-15);
        }
        .select-style {
            min-width: 0;
            padding: 0 var(--space-10);
            background: url("/public/images/icon-dropdown.svg") no-repeat right 15px center / 9px auto;
            font-size: var(--font-15);
        }
        
    }

/* 모두미술공간 */
.introduce1 .titlearea h3 {
    text-align: center;
}
.introduce1 .conarea {
    margin: 0 -60px
}
.introduce1 .flexbox3 .box-title {
    text-align: center;
    border-bottom: var(--border-basic);
    padding-top: 7px;
    padding-bottom: var(--space-40);
    margin-bottom: var(--space-30)
}
.introduce1 .flexbox3 .box-title .icon {
    display: block;
}
.introduce1 .flexbox3 .box-title .icon img,
.guide1 .flexbox4 .box-title .icon img {
    height: 73px;
}
.introduce1 .flexbox3 .box-title h4 {
    font-weight: var(--fw-black);
    margin: var(--space-30) 0 var(--space-15);
}
.introduce1 .flexbox3 .box-title strong {
    display: block;
    font-weight: var(--fw-semibold);
}
.introduce1 .flexbox3 p {
    line-height: 1.3;
    text-align: justify;
    word-break: normal;
}
.introduce2 .tab_con .txtarea {
    border-top: var(--border-basic);
}
.introduce2 .tab_con .txtarea .tabbox {
    display: flex;
}
.introduce2 .introduce2-1 .txtarea .dot-list {
    padding-left: var(--space-80);
}
.introduce2 .introduce2-1 .txtarea strong.txt20 {
    font-weight: var(--fw-bold);
}
.introduce2 .imgarea {
    display: flex;
    align-items: center;
    justify-content: center;
}
.introduce2 .imgarea img {
    width: 88%;
    max-width: 926px;
}
.introduce2 .introduce2-2 .txtarea {
    display: flex;
}
.introduce2 .introduce2-2 .txtarea .dot-list {
    width: 33.33%;
}
.introduce2 .introduce2-2 .txtarea .dot-list:not(:first-of-type) {
    padding-left: var(--space-60);
    border-left: var(--border-basic)
}
.introduce3 .box-con {
    border-top: var(--border-basic);
}
.introduce3 .icon-list > li,
.introduce3 .icon-list p {
    font-weight: var(--fw-bold);
}
.introduce3 .icon-list > li .dot-list,
.introduce3 .flexright .dot-list {
    margin-top: var(--space-20);
}
.introduce3 .icon-list > li .dot-list > li {
    font-weight: var(--fw-normal);
    font-size: var(--font-18);
}
.introduce3 .flexright .dot-list {
    padding-left: var(--space-24)
}
.introduce4 .flexleft {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.introduce4 .icon-list p {
    margin-bottom: 0
}
.introduce4 .flexleft .ci {
    display: flex;
    justify-content: flex-end;
}
.introduce4 .flexleft .ci img {
    width: auto;
}
.introduce4 .history-list li,
.guide2 ol > li,
.bus-list .list,
.subway-list .list,
.exhibition-view1 .exhibition-info-top .info-area li {
    display: flex;
    align-items: center;
    border-top: var(--border-basic);
}
.introduce4 .history-list li:first-child,
.guide2 ol > li:first-child,
.bus-list .list:first-of-type,
.subway-list .list:first-of-type,
.bi4 .bi-list .list:first-of-type,
.exhibition-view1 .exhibition-info-top .info-area li:first-child {
    border-top: 0;
    padding-top: 0;
}
.introduce4 .history-list li:last-of-type,
.guide2 ol > li:last-of-type,
.bus-list .list:last-of-type,
.subway-list .list:last-of-type,
.bi4 .bi-list .list:last-of-type,
.exhibition-view1 .exhibition-info-top .info-area li:last-child {
    padding-bottom: 0;
}
.introduce4 .history-list strong {
    width: 30%;
    max-width: 250px;
    font-weight: var(--fw-bold);
}
    /* 모두미술공간 미디어쿼리 */
    @media all and (max-width: 1600px) {
        .introduce1 .conarea {
            margin: 0 -30px
        }
        .introduce1 .flexbox3 .box-title .icon img,
        .guide1 .flexbox4 .box-title .icon img {
            height: 60px;
        }
        .introduce1 .flexbox3 .box-title strong br.reverse {
            display: block;
        }
        .introduce1 .flexbox3 .box-title {
            padding-top: 0;
            padding-bottom: var(--space-20);
            margin-bottom: var(--space-20);
        }
        .introduce1 .flexbox3 .box-title h4 {
            margin: var(--space-20) 0 var(--space-10)
        }
        .introduce2 .tab_con .flexbox-half {
            flex-wrap: nowrap;
        }
        .introduce2 .introduce2-1 .txtarea .dot-list {
            padding-left: var(--space-50);
        }
        .introduce3 .icon-list > li .dot-list > li {
            font-size: var(--font-16);
        }
    }
    @media all and (max-width: 1000px) {
        .introduce1 .flexbox3 {
            padding: 0 var(--space-60);
        }
        .introduce1 .conarea {
            margin: 0
        }
        .introduce1 .flexbox3 .box-title {
            padding-top: 0;
            padding-bottom: var(--space-20);
            margin-bottom: var(--space-20);
        }
        .introduce1 .flexbox3 .box-title h4 {
            margin: var(--space-20) 0 var(--space-10)
        }
        .introduce1 .flexbox3 .box-title strong br.reverse {
            display: none;
        }
        .introduce2 .introduce2-1 .flexbox-half .flexright  {
            margin-top: 0 !important
        }
        .introduce2 .introduce2-1 .flexbox-half .flexright {
            border-left: var(--border-basic);
            padding-left: var(--space-30);
        }
        .introduce3 .flexbox-half .flexright {
            padding-top: var(--space-40);
        }
        .introduce3 .icon-list > li .dot-list,
        .introduce3 .flexright .dot-list {
            margin-top: var(--space-10);
        }
        .introduce3 .box-con {
            border-top: 0;
            padding-top: 0
        }
        .introduce4 .flexleft .ci {
            display: none;
        }
        .introduce4 .history-list li:first-child,
        .guide2 ol > li:first-child,
        .bus-list .list:first-of-type,
        .subway-list .list:first-of-type,
        .bi4 .bi-list .list:first-of-type {
            margin-top: var(--space-20)
        }
        .introduce2 .introduce2-2 .txtarea .dot-list:not(:first-of-type) {
            padding-left: var(--space-30)
        }
    }
    @media all and (max-width: 640px) {
        .introduce1 .flexbox3 {
            padding: 0
        }
        .introduce1 .flexbox3 .box-title {
            padding-top: 0;
            padding-bottom: var(--space-20);
            margin-bottom: var(--space-20);
        }
        .introduce1 .flexbox3 .box-title h4 {
            margin: var(--space-20) 0 var(--space-10);
        }
        .introduce1 .flexbox3 .box-title .icon img,
        .guide1 .flexbox4 .box-title .icon img {
            height: 50px;
        }
        .introduce2 .flexbox-half {
            flex-wrap: wrap;
        }
        .introduce2 .imgarea img {
            width: 100%;
            max-width: 926px;
        }
        .introduce2 .introduce2-1 .tabbox {
            flex-direction: column;
        }
        .introduce2 .introduce2-1 .tabbox .dot-list {
            padding-left: 0
        }
        .introduce2 .introduce2-1 .txtarea strong.txt20 {
            margin-bottom: var(--space-15);
        }
        .introduce2 .introduce2-1 .flexbox-half .flexright {
            padding-left: var(--space-20);
        }
        .introduce2 .introduce2-2 .txtarea .dot-list:not(:first-of-type) {
            padding-left: var(--space-10);
        }
        .introduce3 .flexright {
            border-top: var(--border-basic);
        }
        .introduce3 .flexright .dot-list {
            padding-left: var(--space-22)
        }
        .introduce4 .history-list li {
            flex-wrap: wrap;
        }
        .introduce4 .history-list strong {
            width: 100%;
            max-width: 100%;
            margin-bottom: var(--space-5);
        }
        .introduce4 .history-list li p {
            padding-left: 0
        }
    }

/* 모두미술공간 */
.organization .conarea img.pc {
    max-width: 1304px;
    margin: 0 auto
}
    /* 모두미술공간 미디어쿼리 */
    @media all and (max-width: 1000px) {
        .organization .conarea img.mobile {
            max-width: 60%;
            margin: 0 auto
        }
    }
    @media all and (max-width: 640px) {
        .organization .conarea img.mobile {
            max-width: 90%;
            margin: 0 auto
        }
    }

/* BI소개 */
.bi .flexleft {
    position: relative;
}
.bi .logo-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bi2 .logo-wrap .bi-left,
.bi3 .logo-wrap .bi-left,
.bi2 .logo-wrap .bi-right,
.bi3 .logo-wrap .bi-right {
    width: 47.1%;
}
.bi .logo-wrap .dot-bg {
    width: 100%;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("/public/images/dot-bg.svg") repeat;
}
.bi1 .logo-wrap .bi-left {
    width: 58.5%;
}
.bi1 .logo-wrap .bi-right {
    width: 36%;
}
.bi1 .logo-wrap .dot-bg img {
    height: 122px;
}
.bi2 .logo-wrap .dot-bg img {
    width: 80%;
    max-width: 304px;
}
.bi3 .logo-wrap .dot-bg img {
    width: 80%;
    max-width: 438px;
}
.bi1 .btnarea.pc {
    display: flex;
    justify-content: flex-start;
    position: absolute;
    left: 0;
    bottom: 0
}
.bi1 .txtarea .txt25 {
    font-weight: var(--fw-semibold);
}
.bi1 .txtarea .txt-wrap {
    margin-top: var(--space-20);
}
.bi3 .logo-wrap strong {
    font-weight: var(--fw-bold);
    display: block;
    margin-top: var(--space-20)
}
.bi4 .bi-list .list {
    display: flex;
    align-items: center;
}
.bi4 .bi-list .list .list-con {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: var(--space-30)
}
.bi4 .bi-list .list .list-con strong {
    width: 185px;
    font-weight: var(--fw-bold);
}
.bi4 .bi-list .list .color {
    width: 50px;
    height: 50px;
    display: block;
}
.bi4 .bi-list .list:nth-child(1) .color {
    background-color: var(--color-blue);
}
.bi4 .bi-list .list:nth-child(2) .color {
    background-color: var(--color-orange);
}
.bi4 .bi-list .list:nth-child(3) .color {
    background-color: var(--color-dark);
}
.bi4 .bi-list .list:nth-child(4) .color {
    background-color: var(--color-white);
    border: 1px solid #E5E5E5
}
    /* BI소개 미디어쿼리 */
    @media all and (max-width: 1600px) {
        .bi1 .logo-wrap .dot-bg img {
            height: 100px;
        }
    }
    @media all and (max-width: 1200px) {
        .bi pre {
            white-space: normal;
        }
        .bi .logo-wrap .dot-bg {
            height: 230px;
        }
        .bi1 .logo-wrap .dot-bg img {
            height: 70px;
        }
        .bi2 .logo-wrap .dot-bg img {
            width: 70%;
        }
        .bi3 .logo-wrap strong {
            margin-top: var(--space-15);
        }
    }
    @media all and (max-width: 1000px) {
        .bi .flexbox2 .flexright {
            margin-top: var(--space-30);
            border-top: 0
        }
        .bi pre {
            white-space: normal;
        }
        .bi .logo-wrap {
            flex-wrap: wrap;
        }
        .bi .logo-wrap .dot-bg {
            height: 250px;
        }
        .bi1 .btnarea.pc {
            display: none;
        }
        .bi1 .logo-wrap .bi-left {
            width: 60%;
        }
        .bi1 .logo-wrap .bi-right {
            width: 37%;
        }
        .bi1 .logo-wrap .dot-bg img {
            height: 85px;
        }
        .bi2 .logo-wrap .bi-left,
        .bi3 .logo-wrap .bi-left,
        .bi2 .logo-wrap .bi-right,
        .bi3 .logo-wrap .bi-right {
            width: 48%;
        }
        .bi2 .logo-wrap .dot-bg img {
            width: 70%;
        }
        .bi3 .logo-wrap .dot-bg img {
            width: 90%;
        }
        .bi3 .logo-wrap strong {
            margin-top: var(--space-15);
        }
        .bi4 .bi-list .list .color{
            width: 45px;
            height: 45px;
        }
    }
    @media all and (max-width: 640px) {
        .bi .logo-wrap .dot-bg {
            height: 200px;
        }
        .bi .logo-wrap {
            flex-direction: column;
        }
        .bi .logo-wrap .bi-left,
        .bi .logo-wrap .bi-right{
            width: 100%;
        }
        .bi .logo-wrap .bi-right .dot-bg {
            margin-top: var(--space-15)
        }
        .bi .logo-wrap .dot-bg {
            border: var(--border-basic)
        }
        .bi1 .logo-wrap {
            padding-bottom: var(--space-30);
        }
        .bi1 .txtarea.mt30 {
            margin-top: var(--space-40);
        }
        .bi1 .logo-wrap .dot-bg img {
            height: 70px;
        }
        .bi2 .logo-wrap .dot-bg img {
            width: 65%;
        }
        .bi3 .logo-wrap strong {
            margin-top: var(--space-10);
        }
        .bi3 .logo-wrap .bi-right {
            margin-top: var(--space-10);
        }
        .bi4 .bi-list .list {
            padding: var(--space-20) 0
        }
        .bi4 .bi-list .list .list-con {
            display: flex;
            align-items: flex-start;
            position: relative;
            padding-left: var(--space-20);
            flex-direction: column;
        }
        .bi4 .bi-list .list .list-con strong {
            margin-bottom: 3px
        }
        .bi4 .bi-list .list .list-con span.pr80 {
            padding-left: 0
        }
        .bi4 .bi-list .list .color{
            width: 40px;
            height: 40px;
        }
        .bi4 .bi-list .list .list-con .pl80 {
            padding-left: 0
        }
    }

/* 전시안내 공통 */
.tab-area {
    margin-top: var(--space-50);
}
.tab-area ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.tab-area li {
    margin-right: var(--space-10);
}
.tab-area li:last-of-type {
    margin-right: 0;
}
.tab-area li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 0 var(--space-25);
    border: var(--border-basic);
}
.tab-area li.on a,
.tab-area li a:hover {
    background-color: var(--color-dark);
}
.tab-area li a span {
    font-size: var(--font-18);
}
.tab-area li.on a span,
.tab-area li a:hover span {
    color: var(--color-white);
    font-weight: var(--fw-semibold);
}
    @media all and (max-width: 1000px) {
        .tab-area {
            margin-top: var(--space-40);
        }
        .tab-area li a {
            height: 45px;
            padding: 0 var(--space-20);
        }
        .tab-area li a span {
            font-size: var(--font-16);
        }
    }
    @media all and (max-width: 640px) {
        .tab-area {
            margin-top: var(--space-30);
        }
        .tab-area li a {
            height: 40px;
            padding: 0 var(--space-15);
        }
        .tab-area li a span {
            font-size: var(--font-15);
        }
    }


/* 전시안내 - 전시일정 */
.exhibition .no-data {
    text-align: center;
    padding: var(--space-50);
}
.sub-search-area {
    width: 100%;
    height: 70px;
    margin-top: var(--space-60);
    border: var(--border-basic);
    border-width: 1px 0 1px 0;
}
.sub-search-area .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.sub-search-area .category-area ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub-search-area .category-area li {
    margin-right: var(--space-30);
}
.sub-search-area .category-area li:last-of-type {
    margin-right: 0;
}
.sub-search-area .category-area li a {
    position: relative;
    font-size: var(--font-18);
}
.sub-search-area .category-area li a::before {
    position: absolute;
    bottom: -24px;
    left: 0;
    content: "";
    display: none;
    width: 100%;
    height: 3px;
    background-color: var(--color-dark);
}
.sub-search-area .category-area li.on a,
.sub-search-area .category-area li a:hover {
    font-weight: var(--fw-black);
}
.sub-search-area .category-area li.on a::before,
.sub-search-area .category-area li a:hover::before {
    display: block;
}
.sub-search-area .classification-area {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 935px;
    width: 80%;
}
.sub-search-area .select-style {
    max-width: 140px;
    border-right: var(--border-basic);
}
.sub-search-area .select-style#pro_type {
    max-width: 175px;
}
.sub-search-area .classification-date {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--space-25);
    border-right: var(--border-basic);
}
.sub-search-area .classification-date strong {
    margin-right: var(--space-25);
    font-size: var(--font-18);
    font-weight: var(--fw-black);
}
.sub-search-area .classification-date .calendar-items {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub-search-area .classification-date .calendar-items .item {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.sub-search-area .classification-date .calendar-items .item i {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-search-area .classification-date .calendar-items .item input {
    margin-left: var(--space-10);
    font-size: var(--font-18);
    font-weight: var(--fw-bold);
    line-height: normal;
    cursor: pointer;
    min-width: 0;
    width: 110px;
}
/* .sub-search-area .classification-date .calendar-items .item p {
    margin-left: var(--space-10);
    font-size: var(--font-18);
    font-weight: var(--fw-bold);
    line-height: normal;
} */
.sub-search-area .classification-date .calendar-items .item svg {
    width: auto;
    height: 16px;
}
.sub-search-area .classification-date .calendar-items span {
    margin: 0 var(--space-15) 0 var(--space-5);
    font-size: var(--font-16);
    font-weight: var(--fw-bold);
}
.sub-search-area .classification-search {
    flex: 1 1 auto;
    max-width: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub-search-area .classification-search .input-style {
    width: 100%;
}
.sub-search-area .classification-search button {
    min-width: 0;
}
.list-exhibition-area,
.list-program-area {
    margin-top: var(--space-70);
}
.list-exhibition-area h4,
.list-program-area h4 {
    display: block;
    margin-bottom: var(--space-40);
    text-align: center;
    font-weight: var(--fw-black);
}
.list-exhibition-area .list-exhibition,
.list-program-area .list-program {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-80) var(--space-35);
}
    @media all and (max-width: 1200px) {
        .sub-search-area {
            height: 140px;
        }
        .sub-search-area .layout {
            flex-wrap: wrap;
            justify-content: center;
        }
        .sub-search-area .category-area li a::before {
            bottom: -13px;
        }
        .sub-search-area .classification-area {
            width: 100%;
            max-width: 100%;
        }
        .list-exhibition-area .list-exhibition {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    @media all and (max-width: 1000px) {
        .sub-search-area .layout {
            flex-direction: column-reverse
        }
        .sub-search-area {
            height: auto;
            margin-top: var(--space-40);
            padding: var(--space-25) 0 0;
        }
        .sub-search-area .classification-area {
            border-bottom: var(--border-basic);
            padding: 0 0 var(--space-20);
            flex-wrap: wrap;
        }
        .sub-search-area .category-area {
            width: 100%;
            margin-bottom: 0;
            padding: var(--space-25) 0 9px;
            border-bottom: 0;
        }
        .sub-search-area .category-area li {
            margin-right: var(--space-20);
        }
        .sub-search-area .category-area li a {
            font-size: var(--font-16);
        }
        .sub-search-area .category-area li a::before {
            bottom: -10px;
        }
        .sub-search-area .select-style{
            max-width: 115px;
        }
        .sub-search-area .select-style#pro_type {
            max-width: 145px;
        }
        .sub-search-area .select-style:first-of-type {
            border-left: 0;
        }
        .sub-search-area .classification-date {
            padding: 0 var(--space-15);
            border-right: 0;
            padding-right: 0;
        }
        .sub-search-area .classification-date strong {
            margin-right: var(--space-20);
            font-size: var(--font-16);
        }
        .sub-search-area .classification-date .calendar-items .item svg {
            width: 12px;
            height: 14px;
        }
        .sub-search-area .classification-date .calendar-items .item input {
            margin-left: var(--space-5);
            font-size: var(--font-16);
            width: 95px;
        }
        .sub-search-area .classification-date .calendar-items span {
            margin: 0 var(--space-10);
            font-size: var(--font-15)
        }
        .sub-search-area .classification-search {
            padding-left: var(--space-15);
            margin-top: var(--space-20);
        }
        .sub-search-area .classification-search .input-style {
            padding-left: 0;
        }
        .sub-search-area .classification-search button svg {
            width: 12px
        }
        .list-exhibition-area,
        .list-program-area {
            margin-top: var(--space-50);
        }
        .list-exhibition-area h4,
        .list-program-area h4 {
            margin-bottom: var(--space-30);
        }
        .list-exhibition-area .list-exhibition,
        .list-program-area .list-program {
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-60) var(--space-30);
        }
    }
    @media all and (max-width: 640px) {
        .sub-search-area {
            margin-top: var(--space-30);
            padding: var(--space-20) 0 0;
        }
        .sub-search-area .classification-area {
            flex-wrap: wrap;
            padding: 0
        }
        .sub-search-area .category-area {
            width: 100%;
            margin-bottom: 0;
            padding: var(--space-25) 0 var(--space-8);
            border-bottom: 0;
        }
        .sub-search-area .category-area li {
            margin-right: var(--space-10);
        }
        .sub-search-area .category-area li a::before {
            bottom: -9px;
        }
        .sub-search-area .select-style,
        .sub-search-area .select-style#pro_type {
            max-width: 50%;
        }
        .sub-search-area .select-style:last-of-type {
            border-right: 0;
            padding-right: 0;
            background-position: right 0 top auto;
        }
        .sub-search-area .classification-date {
            width: 100%;
            border: var(--border-basic);
            border-width: 1px 0;
            padding: var(--space-10) 0;
            margin-top: var(--space-10)
        }
        .sub-search-area .classification-date strong {
            width: 20%;
            margin-right: 0;
            font-size: var(--font-15);
        }
        .sub-search-area .classification-date .calendar-items {
            width: 80%;
            justify-content: flex-end;
        }
        .sub-search-area .classification-date .calendar-items .item img {
            width: 10px;
        }
        .sub-search-area .classification-date .calendar-items .item input {
            width: 90px;
            font-size: var(--font-15);
        }
        .sub-search-area .classification-date .calendar-items span {
            margin: 0 var(--space-5) 0 0;
            font-size: var(--font-14)
        }
        .sub-search-area .classification-search {
            max-width: 100%;
            margin-top:0;
            padding: var(--space-10) var(--space-5) var(--space-10) 0
        }
        .sub-search-area .classification-search button img {
            width: 10px
        }
        .list-exhibition-area,
        .list-program-area {
            margin-top: var(--space-40);
        }
        .list-exhibition-area h4,
        .list-program-area h4 {
            margin-bottom: var(--space-20);
        }
        .list-exhibition-area .list-exhibition,
        .list-program-area .list-program {
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-40) var(--space-10);
        }
    }

/* 전시안내 - 월간일정 */
.monthly-select-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    margin-top: var(--space-60);
    padding: 0 5%;
    border: var(--border-basic);
    border-width: 1px 0 1px 0;
}
.monthly-year-area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: var(--space-30);
    padding-right: var(--space-30);
    border-right: var(--border-basic);
}
.monthly-year-area a {
    display: flex;
    flex-shrink: 0;
}
.monthly-year-area span {
    margin: 0 var(--space-20);
    font-size: var(--font-20);
    font-weight: var(--fw-black);
}
.monthly-area ul {
    display: flex;
    align-items: center;
}
.monthly-area li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    padding: 0 var(--space-20);
    font-size: var(--font-18);
    font-weight: var(--fw-bold);
}
.monthly-area li.on a,
.monthly-area li a:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}
.calendar-area {
    margin-top: var(--space-70);
}
.calendar-area h4 {
    display: block;
    margin-bottom: var(--space-40);
    text-align: center;
    font-size: var(--font-30);
    font-weight: var(--fw-black);
}
/* 캘린더 */
.calen-table {
    width: 100%;
    padding: 0;
    border-collapse: collapse;
    border-top: 1px solid var(--color-dark);
}
.calen-table th,
.calen-table td {
    width: 14.3%;
    min-width: 14.3%;
    max-width: 14.3%;
    border-bottom: var(--border-basic);
}
.calen-table th:last-child span,
.calen-table td:last-child span {
    border-right:0
}
.calen-table th {
    padding: var(--space-15) 0;
}
.calen-table th span {
    display: block;
    width: 100%;
    border-right: 1px solid var(--color-dark);
    text-align: center;
    font-size: var(--font-16);
    font-weight: var(--fw-black);
}
.calen-table td {
    position: relative;
    padding: var(--space-10);
    border-top: none;
    text-align: left;
    vertical-align: top;
}
.calen-table td::after {
    position: absolute;
    top: 10px;
    right: 0;
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 20px);
    background-color: var(--color-dark);
}
.calen-table td:last-child::after {
    display: none;
}
.calen-table .dayinner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 140px;
}
.calen-table .check-mask {
    width: 100%;
    height: 29px;
    text-align: left;
}
.calen-table .check-mask:hover {
    background-color: var(--color-dark);
}
.calen-table .current .check-mask {
    background-color: var(--color-dark);
}
.calen-table .disabled .check-mask {
    cursor: not-allowed;
}
.calen-table .disabled .check-mask:hover {
    background-color: var(--color-white);
}
.calen-table .check-mask span {
    display: block;
    padding: 0 var(--space-5);
    font-size: var(--font-18);
    font-weight: var(--fw-black);
    transition: var(--transition);
}
.calen-table .current .check-mask span {
    color: var(--color-white);
}
.calen-table .check-mask:hover span {
    color: var(--color-white);
}
.calen-table .disabled .check-mask span {
    cursor: not-allowed;
}
.calen-table .disabled .check-mask:hover span {
    color: var(--color-dark);
}
.calen-table .day-event {
    width: 100%;
    padding-top: var(--space-10);
}
.calen-table .exhibition-item {
    margin-bottom: var(--space-5);
}
.calen-table .exhibition-item:last-of-type {
    margin-bottom: 0;
}
.calen-table .exhibition-item a {
    display: flex;
    align-items: flex-start;
}
.calen-table .disabled .exhibition-item a {
    cursor: not-allowed;
}
.calen-table .exhibition-item a .label {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 26px;
    height: 26px;
    margin-right: var(--space-10);
    color: var(--color-white);
    font-size: var(--font-10);
    font-weight: var(--fw-bold);
}
.label.exhibition,
.list .list-thumb .category.category-exhibition {
    background-color: var(--color-orange);
}
.label.event,
.list .list-thumb .category.category-event {
    background-color: var(--color-blue);
}
.label.lecture,
.list .list-thumb .category.category-lecture {
    background-color: var(--color-pink);
}
.label.etc,
.list .list-thumb .category.category-other {
    background-color: var(--color-yellow);
}

.calen-table .disabled .exhibition-item a .label.exhibition,
.calen-table .disabled .exhibition-item a .label.event,
.calen-table .disabled .exhibition-item a .label.etc,
.calen-table .disabled .exhibition-item a .label.lecture {
    background-color: var(--color-dark);
}
.calen-table .disabled .exhibition-item a .label.event {
    background-color: var(--color-dark);
}
.calen-table .disabled .exhibition-item a .label.etc {
    background-color: var(--color-dark);
}
.calen-table .disabled .exhibition-item a .label.lecture {
    background-color: var(--color-dark);
}
.calen-table .disabled {
    opacity: 0.25;
}
.calen-table .exhibition-item a p {
    flex: 1 1 auto;
    padding-top: var(--space-4);
    color: var(--color-basic);
    font-size: var(--font-16);
    font-weight: var(--fw-medium);
    transition: var(--transition);
}
.calen-table .exhibition-item a:hover p {
    font-weight: var(--fw-bold);
}
.calen-table .closure-day .exhibition-item .label.closure {
    color: #f21a1a !important
}
caption,
legend,
.hidden,
.hide {
    position: absolute;
    left: -9999px;
    font-size: 1px;
    width: 1px;
    height: 1px;
    line-height: 0;
}
    @media all and (max-width: 1200px) {
        .monthly-year-area {
            justify-content: flex-start;
        }
        .monthly-area {
            display: flex;
            flex-wrap: nowrap;
            flex: 1 1 100%;
            overflow-x: scroll;
            overflow-y: hidden;
        }
    }
    @media all and (max-width: 1000px) {
        .monthly-select-area {
            height: 65px;
            margin-top: var(--space-40);
        }
        .monthly-year-area {
            margin-right: var(--space-25);
            padding-right: var(--space-25);
        }
        .monthly-year-area a img {
            width: 12px;
        }
        .monthly-year-area span {
            margin: 0 var(--space-15);
            font-size: var(--font-18);
        }
        .monthly-area li a {
            height: 65px;
            padding: 0 var(--space-15);
            font-size: var(--font-16);
        }
        .calendar-area {
            margin-top: var(--space-50);
        }
        .calendar-area h4 {
            margin-bottom: var(--space-30);
            font-size: var(--font-25);
        }
        .calen-table th {
            display: none;
        }
        .calen-table td {
            display: block;
            width: 100%;
            min-width: 100%;
            max-width: 100%;
            padding-left: 0
        }
        .calen-table td::after {
            display: none;
        }
        .calen-table .check-mask {
            width: unset;
            flex: 0 0 30px;
            height: 30px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .calen-table .check-mask span {
            padding: 0;
        }
        .calen-table .dayinner {
            min-height: auto;
            flex-direction: row;
        }
        .calen-table .exhibition-item a p {
            font-size: var(--font-17);
            padding-top: 3px;
        }
        .calen-table .day-event {
            padding: 0 0 var(--space-10) var(--space-30);
            margin-left: var(--space-25);
            width: unset;
            flex: 1 1 auto;
            border-left: 1px solid #333333;
        }
        .calen-table .day-event:first-of-type {
            padding-bottom: 0
        }
        .calen-table .dayinner.disabled .day-event {
            min-height: 30px;
        }
    }
    @media all and (max-width: 640px) {
        .monthly-select-area {
            height: 50px;
            margin-top: var(--space-30);
        }
        .monthly-year-area {
            margin-right: var(--space-10);
            padding-right: var(--space-20);
        }
        .monthly-year-area a img {
            width: 10px;
        }
        .monthly-year-area span {
            margin: 0 var(--space-10);
            font-size: var(--font-16);
        }
        .monthly-area li a {
            height: 50px;
            padding: 0 var(--space-10);
            font-size: var(--font-15);
        }
        .calendar-area {
            margin-top: var(--space-30);
        }
        .calendar-area h4 {
            margin-bottom: var(--space-20);
            font-size: var(--font-20);
        }
        .calen-table .day-event {
            padding: 0 0 var(--space-10) var(--space-25);
            margin-left: var(--space-20);
        }
        .calen-table .dayinner.disabled .day-event {
            min-height: 26px;
        }
        .calen-table .check-mask {
            flex: 0 0 26px;
            height: 26px;
        }
        .calen-table .check-mask span {
            font-size: var(--font-16);
        }
        .calen-table .exhibition-item a p {
            font-size: var(--font-16);
        }
    }


/* 전시안내 - 연간일정 */
.year-select-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    margin-top: var(--space-60);
    padding: 0 5%;
    border: var(--border-basic);
    border-width: 1px 0 1px 0;
}
.year-area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.year-area a {
    display: flex;
    flex-shrink: 0;
}
.year-area span {
    margin: 0 var(--space-20);
    font-size: var(--font-30);
    font-weight: var(--fw-black);
}
.year-exhibition-area .list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-60) 5%;
    border-bottom: var(--border-basic);
}
.year-exhibition-area .list:last-of-type {
    border-bottom: 0;
}
.year-exhibition-area .tit-area h4 {
    font-size: var(--font-25);
    font-weight: var(--fw-black);
}
.year-exhibition-area .info-area {
    width: 68%;
    max-width: 1114px;
    padding-left: var(--space-60);
    border-left: var(--border-basic);
}
.year-exhibition-area .info-area .item {
    /* height: 35px; */
    padding: var(--space-20) 0;
    border-bottom: var(--border-basic);
    display: flex;
    align-items: stretch;
    width: 100%;
}
.year-exhibition-area .info-area .item:first-of-type {
    padding-top: 0;
}
.year-exhibition-area .info-area .item:last-of-type {
    padding-bottom: 0;
    border-bottom: 0;
}
.year-exhibition-area .info-area .item .label {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 35px;
    height: 35px;
    color: var(--color-white);
    font-size: var(--font-13);
    font-weight: var(--fw-bold);
}
/* .year-exhibition-area .info-area .item .label.exhibition {
    background-color: var(--color-orange);
}
.year-exhibition-area .info-area .item .label.event {
    background-color: var(--color-pink);
}
.year-exhibition-area .info-area .item .label.lecture {
    background-color: var(--color-blue);
}
.year-exhibition-area .info-area .item .label.etc {
    background-color: var(--color-yellow);
} */
.year-exhibition-area .info-area .item .date {
    flex-shrink: 0;
    margin: 0 var(--space-30);
    padding: 0 var(--space-30);
    border: var(--border-basic);
    border-width: 0 1px 0 1px;
    font-size: var(--font-20);
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
}
.year-exhibition-area .info-area .item .exhibition-name {
    font-size: var(--font-20);
    font-weight: var(--fw-medium);
    display: flex;
    align-items: center;
}
.year-exhibition-area .info-area .item .exhibition-name a:hover {
    font-weight: var(--fw-bold);
}
    @media all and (max-width: 1200px) {
        .year-exhibition-area .info-area {
            width: 80%;
        }
    }
    @media all and (max-width: 1000px) {
        .year-select-area {
            height: 65px;
            margin-top: var(--space-40);
        }
        .year-area span {
            margin: 0 var(--space-15);
            font-size: var(--font-25);
        }
        .year-exhibition-area .list {
            padding: var(--space-40) 5%;
        }
        .year-exhibition-area .tit-area h4 {
            font-size: var(--font-20);
        }
        .year-exhibition-area .info-area {
            padding-left: var(--space-40);
        }
        .year-exhibition-area .info-area .item {
            padding: var(--space-20) 0;
            /* flex-wrap: wrap; */
        }
        .year-exhibition-area .info-area .item .label {
            flex-basis: 30px;
            height: 30px;
            font-size: var(--font-12);
        }
        .year-exhibition-area .info-area .item .date {
            margin: 0 var(--space-20);
            padding: 0 var(--space-20);
            font-size: var(--font-16);
        }
        .year-exhibition-area .info-area .item .exhibition-name {
            font-size: var(--font-18);
        }
    }
    @media all and (max-width: 640px) {
        .year-select-area {
            height: 60px;
            margin-top: var(--space-30);
        }
        .year-area span {
            margin: 0 var(--space-10);
            font-size: var(--font-20);
        }
        .year-exhibition-area .list {
            flex-wrap: wrap;
            padding: var(--space-30) 5%;
        }
        .year-exhibition-area .tit-area h4 {
            font-size: var(--font-18);
        }
        .year-exhibition-area .info-area {
            width: 100%;
            margin-top: var(--space-20);
            padding-left: 0;
            border-left: 0;
        }
        .year-exhibition-area .info-area .item {
            padding: var(--space-10) 0;
        }
        .year-exhibition-area .info-area .item .date {
            margin: 0 var(--space-15);
            padding: 0 var(--space-15);
            /* padding-right: 0; */
            /* border-right: 0; */
        }
        .year-exhibition-area .info-area .item .exhibition-name {
            /* width: 100%; */
            /* margin-left: 45px;
            border-left: var(--border-basic);
            padding: 0 var(--space-15);
            padding-right: 0; */ 
            font-size: var(--font-17);
        }
    }

/* 전시안내 - 전시일정 상세보기 */
.exhibition-view1 .exhibition-info-top .layout {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.exhibition-view1 .exhibition-info-top .img-area {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.exhibition-view1 .exhibition-info-top .img-area img {
    width: auto;
    height: 500px;
}
.exhibition-view1 .exhibition-info-top .icon-list li {
    padding-top: var(--space-25);
    padding-bottom: var(--space-25);
    margin-bottom: 0
}
.exhibition-view1 .exhibition-info-top .icon-list li:not(:first-child)::before {
    top: auto;
    margin-top: -1px
}
.exhibition-view1 .exhibition-info-top .icon-list li:last-child::before {
    top: 32px
}
.exhibition-view1 .exhibition-info-top .info-area li:last-child {
    align-items: flex-start;
}
.exhibition-view1 .exhibition-info-top .info-area li:last-child {
    align-items: flex-start;
}
.exhibition-view1 .exhibition-info-top .info-area li:last-child span {
    font-size: var(--font-18);
}
.exhibition-view1 .exhibition-info-top .info-area li strong {
    flex: 0 0 130px;
    font-weight: var(--fw-bold);
}
.exhibition-view1 .exhibition-info-top .info-area .btn-area {
    flex-wrap: wrap;
    width: 100%;
    margin-top: 0;
    gap: var(--space-10) 0;
}
.exhibition-view1 .exhibition-info-top .info-area .btn-area a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    background-color: var(--color-dark);
    color: var(--color-white);
    font-size: var(--font-16);
    font-weight: var(--fw-bold);
}
.exhibition-view1 .exhibition-info-top .info-area .btn-area a:hover {
    background-color: var(--color-orange);
}
.exhibition-view1 .exhibition-info-top .info-area .related-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
.exhibition-view1 .exhibition-info-top .info-area .related-area .item {
    width: 49%;
}
.exhibition-view1 .exhibition-info-top .info-area .related-area .tit {
    font-size: var(--font-16);
    font-weight: var(--fw-bold);
}
.exhibition-view1 .exhibition-info-top .reservation-btn-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-40);
}
.exhibition-view1 .exhibition-info-top .reservation-btn-area .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 49.5%;
    height: 64px;
    border: var(--border-basic);
}
.exhibition-view1 .exhibition-info-top .reservation-btn-area .btn:hover {
    background-color: var(--color-dark);
}
.exhibition-view1 .exhibition-info-top .reservation-btn-area .btn.black {
    background-color: var(--color-dark);
}
.exhibition-view1 .exhibition-info-top .reservation-btn-area .btn.black:hover {
    background-color: transparent
}
.exhibition-view1 .exhibition-info-top .reservation-btn-area .btn .svg {
    width: 16px;
    margin-right: var(--space-10);
}
.exhibition-view1 .exhibition-info-top .reservation-btn-area .btn .svg path,
.exhibition-view1 .exhibition-info-top .reservation-btn-area .btn .svg line {
    transition: var(--transition);
}
.exhibition-view1 .exhibition-info-top .reservation-btn-area .btn.black:hover .svg path,
.exhibition-view1 .exhibition-info-top .reservation-btn-area .btn.black:hover .svg line {
    stroke: var(--color-dark);
}
.exhibition-view1 .exhibition-info-top .reservation-btn-area .btn span {
    font-size: var(--font-20);
}
.exhibition-view1 .exhibition-info-top .reservation-btn-area .btn:hover span {
    color: var(--color-white);
    font-weight: var(--fw-black);
}
.exhibition-view1 .exhibition-info-top .reservation-btn-area .btn.black span {
    color: var(--color-white);
    font-weight: var(--fw-black);
}
.exhibition-view1 .exhibition-info-top .reservation-btn-area .btn.black:hover span {
    color: var(--color-dark);
    font-weight: var(--fw-regular);
}
.exhibition-view2{
    margin-top: var(--space-80);
    padding-top: var(--space-80);
    border-top: var(--border-basic);
}
.exhibition-view2 h4 {
    display: block;
    margin-bottom: var(--space-40);
    text-align: center;
    font-weight: var(--fw-black);
}
.exhibition-view2 .exhibition-info-bot .exhibition-content {
    /* text-align: center; */
}
.exhibition-view2 .exhibition-info-bot .exhibition-content * {
    font-family: "Pretendard Variable", Pretendard !important;
    /* font-size: var(--font-18) !important; */
    /* font-weight: unset; */
    /* color: unset; */
    line-height: 1.4;
}
.exhibition-view2 .exhibition-info-bot .exhibition-content  div {
    max-width: 1000px;
    margin: 0 auto;
}
.exhibition-view2 .exhibition-info-bot .exhibition-content b,
.exhibition-view2 .exhibition-info-bot .exhibition-content strong {
    font-weight: var(--fw-bold);
}
.exhibition-view2 .exhibition-info-bot .exhibition-content img {
    width: auto !important;
    max-width: 1000px;
    margin: 0 auto;
}
.exhibition-view2 .exhibition-info-bot .exhibition-content a {
    text-decoration: underline;
}
.exhibition-view2 .exhibition-info-bot .btn-area {
    margin-top: var(--space-80);
}
.exhibition-view .btn-area {
    margin-top: var(--space-80)
}
    @media all and (max-width: 1800px) {
        .exhibition-view1 .exhibition-info-top .img-area img {
            width: 100%;
            height: auto;
        }
        .exhibition-view1 .exhibition-info-top .icon-list li {
            padding-top: var(--space-20);
            padding-bottom: var(--space-20);
        }
        .exhibition-view2 .exhibition-info-bot .exhibition-content img {
            width: 60% !important;
            height: auto !important;
        }
    }
    @media all and (max-width: 1000px) {
        .exhibition-view1 .exhibition-info-top .layout {
            flex-wrap: wrap;
        }
        .exhibition-view1 .exhibition-info-top .img-area {
            width: 100%;
            max-width: 100%;
            margin-right: 0;
            padding-right: 0;
            border-right: 0;
        }
        .exhibition-view1 .exhibition-info-top .info-area li strong {
            flex: 0 0 110px;
        }
        .exhibition-view1 .exhibition-info-top .reservation-btn-area {
            margin-top: var(--space-30);
        }
        .exhibition-view1 .exhibition-info-top .reservation-btn-area .btn {
            height: 60px;
        }
        .exhibition-view1 .exhibition-info-top .reservation-btn-area .btn .svg {
            width: 14px;
            margin-right: var(--space-5);
        }
        .exhibition-view1 .exhibition-info-top .reservation-btn-area .btn span {
            font-size: var(--font-18);
        }
        .exhibition-view2 {
            margin-top: var(--space-60);
            padding-top: var(--space-60);
        }
        .exhibition-view2 h4 {
            margin-bottom: var(--space-30);
        }
        .exhibition-view .btn-area {
            margin-top: var(--space-60);
        }  
        .exhibition-view2 .exhibition-info-bot .exhibition-content img {
            width: 80% !important;
        }
    }
    @media all and (max-width: 640px) {
        .exhibition-view1 .exhibition-info-top .info-area li strong {
            flex: 0 0 90px;
        }
        .exhibition-view1 .exhibition-info-top .icon-list li {
            padding-top: var(--space-15);
            padding-bottom: var(--space-15);
        }
        .exhibition-view1 .exhibition-info-top .icon-list li:last-child {
            padding-bottom: var(--space-20);
            align-items: flex-start;
        }
        .exhibition-view1 .exhibition-info-top .icon-list li:last-child::before {
            top: 22px
        }
        .exhibition-view1 .exhibition-info-top .info-area .btn-area {
            flex-wrap: wrap;
        }
        .exhibition-view1 .exhibition-info-top .info-area .btn-area a {
            width: 100%;
            height: 35px;
            font-size: var(--font-14);
        }
        .exhibition-view1 .exhibition-info-top .info-area .btn-area a:first-of-type {
            margin-bottom: var(--space-5);
        }
        .exhibition-view1 .exhibition-info-top .info-area .related-area {
            flex-wrap: wrap;
        }
        .exhibition-view1 .exhibition-info-top .info-area .related-area .item {
            width: 100%
        }
        .exhibition-view1 .exhibition-info-top .info-area .related-area .item:first-of-type {
            margin-bottom: var(--space-20);
        }
        .exhibition-view1 .exhibition-info-top .info-area .related-area .tit {
            font-size: var(--font-14);
        }
        .exhibition-view1 .exhibition-info-top .icon-list li:last-child
        .exhibition-view1 .exhibition-info-top .reservation-btn-area {
            margin-top: var(--space-20);
        }
        .exhibition-view1 .exhibition-info-top .reservation-btn-area .btn {
            height: 60px;
        }
        .exhibition-view1 .exhibition-info-top .reservation-btn-area .btn .svg {
            width: 12px;
        }
        .exhibition-view1 .exhibition-info-top .reservation-btn-area .btn span {
            font-size: var(--font-16);
        }
        .exhibition-view2 {
            margin-top: 0;
            padding-top: var(--space-40);
        }
        .exhibition-view2 h4 {
            margin-bottom: var(--space-25);
        }
        .exhibition-view2 .exhibition-info-bot .exhibition-content img {
            width: 100% !important;
        }
        .exhibition-view .btn-area {
            margin-top: var(--space-40);
        }
    }


/* 전시안내 - 예매안내 */




/* 대관안내 - 공간안내 */
.space .flexright ul {
    margin-bottom: var(--space-30);
    padding-bottom: var(--space-30);
    border-bottom: var(--border-basic);
}
.space .flexright li {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-20);
}
.space .flexright li:last-of-type {
    margin-bottom: 0;
}
.space .flexright li img {
    width: 19px;
    margin-right: var(--space-10);
}
.space .flexright li img.white {
    display: none;
}
[data-theme="dark"] .space .flexright li img.dark {
    display: none;
}
[data-theme="dark"] .space .flexright li img.white {
    display: block;
}
.space .flexright li strong {
    font-size: var(--font-20);
    font-weight: var(--fw-black);
}
.space .flexright li span {
    margin-left: var(--space-30);
    font-size: var(--font-20);
}
.space .space-img-area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.space .space-img-area2,
.space .space-img-area4,
.space .space-img-area5,
.space .space-img-area7,
.space .space-img-area8 {
    margin-top: 4%;
}
.space .space-img-area .item {
    width: 48%;
}
.space .space-img-area strong {
    display: block;
    width: 100%;
    margin-top: var(--space-20);
    text-align: center;
    font-weight: var(--fw-bold);
}
.space .swiper-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-30);
}
.space1 .txt-area {
    margin-top: var(--space-60);
    margin-bottom: var(--space-30);
    padding-top: var(--space-60);
    border-top: var(--border-basic);
}
.space1 .txt-area h4 {
    display: block;
    margin-bottom: var(--space-30);
    font-weight: var(--fw-black);
}
/* 오버레이 스타일 */
.zoomOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* 반투명 검정 배경 */
    display: none; /* 초기에는 숨김 */
    /* Flexbox를 사용하여 자식 요소(확대된 이미지)를 화면 중앙에 배치 */
    justify-content: center;
    align-items: center;
    z-index: 100000000001; /* 다른 요소 위에 표시 */
    backdrop-filter: blur(5px); /* 배경 블러 효과 */
    animation: fadeIn 0.3s ease-out forwards; /* 나타날 때 애니메이션 */
}
/* 확대된 이미지 스타일 */
.zoomed-image {
    /* 원본 이미지 크기 100%를 위해 max-width와 max-height를 제거 */
    width: 90%; /* 원본 너비 유지 */
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); /* 그림자 효과 */
    animation: zoomIn 0.3s ease-out forwards; /* 나타날 때 확대 애니메이션 */
}
/* 닫기 버튼 스타일 */
.close-button-zoom {
    position: absolute;
    top: 1.25rem; /* 20px */
    right: 1.25rem; /* 20px */
    color: white;
    font-size: 2.5rem; /* 40px */
    cursor: pointer;
    line-height: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease-in-out;
}
.close-button-zoom:hover {
    transform: scale(1.1);
}

/* 애니메이션 키프레임 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
    @media all and (max-width: 1600px) {
    }
    @media all and (max-width: 1200px) {
        
    }
    @media all and (max-width: 1000px) {
        .space .flexright ul {
            margin-bottom: var(--space-25);
            padding-top: var(--space-25);
            padding-bottom: 0;
            border-bottom: 0;
            border-top: var(--border-basic)
        }
        .space .flexright li {
            margin-bottom: var(--space-15);
        }
        .space .flexright li img {
            width: 17px;
        }
        .space .flexright li strong {
            font-size: var(--font-18);
        }
        .space .flexright li span {
            margin-left: var(--space-25);
            font-size: var(--font-18);
        }
        .space .swiper-bottom {
            margin-top: var(--space-25);
        }
        .space1 .txt-area {
            margin-top: var(--space-40);
            margin-bottom: var(--space-25);
            padding-top: var(--space-40);
        }
        .space1 .txt-area h4 {
            margin-bottom: var(--space-25);
        }
        .space1 .btnarea {
            text-align: center
        }
    }
    @media all and (max-width: 640px) {
        .space .flexright ul {
            margin-bottom: var(--space-20);
            padding-top: var(--space-20);
        }
        .space .flexright li {
            margin-bottom: var(--space-10);
        }
        .space .flexright li img {
            width: 15px;
        }
        .space .flexright li strong {
            font-size: var(--font-16);
        }
        .space .flexright li span {
            margin-left: var(--space-20);
            font-size: var(--font-16);
        }
        .space .space-img-area2,
        .space .space-img-area4,
        .space .space-img-area5,
        .space .space-img-area7,
        .space .space-img-area8 {
            margin-top: var(--space-30)
        }
        .space .space-img-area .item {
            width: 100%;
            margin-bottom: var(--space-20);
        }
        .space .space-img-area5 .item {
            margin-bottom: var(--space-30);
        }
        .space .space-img-area5 .item:last-of-type {
            margin-bottom: 0;
        }
        .space .space-img-area strong {
            margin-top: 0;
        }
        .space .space-img-area5 strong {
            margin-top: var(--space-20);
        }
        .space .swiper-bottom {
            margin-top: var(--space-20);
        }
        .space1 .txt-area {
            margin-top: var(--space-30);
            margin-bottom: var(--space-20);
            padding-top: var(--space-30);
        }
        .space1 .txt-area h4 {
            margin-bottom: var(--space-20);
        }
        .space1 .btnarea svg {
            width: 30px;
        }
    }


/* 대관안내 - 대관안내 */
.rental-guide .flexright .txt25 {
    display: block;
    margin-bottom: var(--space-50);
    font-weight: var(--fw-bold);
}
.rental-guide1 .flexleft {
    position: relative;
}
.rental-guide1 .flexleft li strong {
    display: block;
    align-items: flex-start;
    margin-bottom: var(--space-10);
    font-weight: var(--fw-bold);
}
.rental-guide1 .flexright .txt-row {
    position: relative;
    margin-bottom: var(--space-30);
    padding-bottom: var(--space-30);
    border-bottom: var(--border-basic);   
}
.rental-guide1 .flexright .txt-row2 {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.rental-guide1 .flexright .txt-row strong {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: var(--fw-bold);
}
.rental-guide1 .flexright .txt-row p {
    padding-left: 184px;
}
.rental-guide1 .flexright .txt-row2 p:first-of-type {
    margin-bottom: var(--space-30);
}
.rental-guide1 .flexright .txt-row2 p:nth-of-type(2) {
    margin-bottom: var(--space-15);
}
.rental-guide1 .flexright .txt-row2 p:nth-of-type(3) {
    margin-bottom: var(--space-30);
}
.rental-guide1 .flexright .txt-row2 p:last-of-type {
    font-size: var(--font-18);
}
.sub-wrap .rental-guide2 .flexbox2 .titlearea {
    margin-bottom: 0;
}
.rental-guide2 .flexright {
    display: flex;
    align-items: center;
}
.rental-guide3 .btnDownload:last-of-type {
    margin-top: var(--space-20);
}
.rental-guide3 .table2 {
    width: 100%;
    border-top: var(--border-basic);
}
.rental-guide3 .table2 th {
    padding: var(--space-15) 0;
    border: var(--border-basic);
    border-width: 0 1px 1px 0;
    font-size: var(--font-18);
    font-weight: var(--fw-bold);
}
.rental-guide3 .table2 td {
    text-align: center;
    padding: var(--space-15) var(--space-25);
    border: var(--border-basic);
    border-width: 0 1px 1px 0;
    font-size: var(--font-18);
}
.rental-guide3 .table2 tbody tr:last-of-type th,
.rental-guide3 .table2 tbody tr:last-of-type td {
    border-bottom: 0;
}
.rental-guide3 .table2 thead tr:first-of-type th:last-of-type,
.rental-guide3 .table2 tbody td:last-of-type {
    border-right: 0;
}
.rental-guide5 .txtarea1 {
    margin-bottom: var(--space-60);
    padding-bottom: var(--space-60);
    border-bottom: var(--border-basic);
}
.rental-guide5 .tabletitarea {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-30);
}
.rental-guide5 .tabletitarea .txt25 {
    margin-bottom: 0 !important
}
.rental-guide5 .tabletitarea span {
    color: var(--color-basic);
    font-size: var(--font-15);
}
.rental-guide5 .table1 {
    width: 100%;
    border-top: var(--border-basic)
}
.rental-guide5 .table1 th {
    padding: var(--space-15) 0;
    border: var(--border-basic);
    border-width: 0 1px 1px 0;
    font-size: var(--font-18);
    font-weight: var(--fw-bold);
}
.rental-guide5 .table1 thead th:last-of-type {
    border-right: 0;
}
.rental-guide5 .table1 td {
    text-align: center;
    padding: var(--space-15) var(--space-25);
    border: var(--border-basic);
    border-width: 0 1px 1px 0;
    font-size: var(--font-18);
}
.rental-guide5 .table1 tr:first-of-type td:nth-of-type(3),
.rental-guide5 .table1 tr:nth-of-type(2) td:first-of-type,
.rental-guide5 .table1 td:last-of-type {
    border-right: 0;
}
.rental-guide5 .table1 tr:first-of-type td:nth-of-type(3),
.rental-guide5 .table1 tr:nth-of-type(2) td:first-of-type {
    text-align: left;
}
.rental-guide5 .table1 tr:first-of-type td:first-of-type,
.rental-guide5 .table1 tr:first-of-type td:nth-of-type(2),
.rental-guide5 .table1 tr:nth-of-type(2) td {
    border-bottom: 0;
}
.rental-guide5 .table1 td:last-of-type {
    text-align: right;
}
.rental-guide6 .flexleft li strong {
    display: block;
    align-items: flex-start;
    margin-bottom: var(--space-10);
    font-weight: var(--fw-bold);
}
.rental-guide6 .txtarea1 {
    margin-bottom: var(--space-60);
    padding-bottom: var(--space-60);
    border-bottom: var(--border-basic);
}
.rental-guide6 .application-process {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.rental-guide6 .application-process .item {
    position: relative;
    width: 22%;
    min-height: 154px;
    margin-right: 4%;
    padding: var(--space-35) var(--space-25) var(--space-20) var(--space-25);
    border: var(--border-basic);
}
.rental-guide6 .application-process .item:nth-of-type(4n) {
    margin-right: 0;
}
.rental-guide6 .application-process .item:nth-of-type(n+5) {
    margin-top: var(--space-40);
}
.rental-guide6 .application-process .item::after {
    position: absolute;
    top: 50%;
    right: -11%;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 7px;
    height: 13px;
    background: url("/public/images/icon-process.svg") no-repeat center / 7px auto;
}
.rental-guide6 .application-process .item:nth-of-type(4n)::after,
.rental-guide6 .application-process .item:last-of-type::after {
    display: none;
}
.rental-guide6 .application-process .item .step-num {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: var(--color-dark);
    color: var(--color-white);
    font-weight: var(--fw-bold);
}
.rental-guide6 .application-process .item h5 {
    display: block;
    margin-bottom: var(--space-15);
    padding-bottom: var(--space-15);
    border-bottom: var(--border-basic);
    font-weight: var(--fw-bold);
}
    @media all and (max-width: 1600px) {
        .rental-guide3 .flexbox-half .flexleft,
        .rental-guide3 .flexbox-half .flexright,
        .rental-guide5 .flexbox-half .flexleft,
        .rental-guide5 .flexbox-half .flexright {
            width: 50%;
        }
    }
    @media all and (max-width: 1400px) {
        .rental-guide3 .flexbox-half .flexleft,
        .rental-guide3 .flexbox-half .flexright,
        .rental-guide5 .flexbox-half .flexleft,
        .rental-guide5 .flexbox-half .flexright {
            width: 100%;
        }
        .rental-guide3 .flexbox-half .flexleft,
        .rental-guide5 .flexbox-half .flexleft {
            padding-right: 0;
            margin-bottom: var(--space-40);
            padding-bottom: var(--space-40);
            border-bottom: var(--border-basic);
        }
        .rental-guide3 .flexbox-half .flexright,
        .rental-guide5 .flexbox-half .flexright {
            padding-left: 0;
            border-left: 0;
        }
    }
    @media all and (max-width: 1000px) {
        .rental-guide .flexright .txt25 {
            margin-bottom: var(--space-25);
        }
        .rental-guide2 .flexbox2 > .flexright,
        .rental-guide3 .flexbox2 > .flexright,
        .rental-guide4 .flexbox2 > .flexright,
        .rental-guide5 .flexbox2 > .flexright {
            margin-top: 0;
        }
        .rental-guide3 .flexbox-half .flexleft,
        .rental-guide5 .flexbox-half .flexleft {
            margin-bottom: var(--space-30);
            padding-bottom: var(--space-30);
        }
        .rental-guide3 .flexbox-half .flexright,
        .rental-guide5 .flexbox-half .flexright {
            margin-top: 0;
        }
        .rental-guide1 .flexright .txt25 {
            padding-top: var(--space-30);
            border-top: var(--border-basic);
        }
        .rental-guide1 .flexright .txt-row {
            margin-bottom: var(--space-25);
            padding-bottom: var(--space-25);
        }
        .rental-guide1 .flexright .txt-row p {
            padding-left: 140px;
        }
        .rental-guide1 .flexright .txt-row2 p:first-of-type {
            margin-bottom: var(--space-25);
        }
        .rental-guide1 .flexright .txt-row2 p:nth-of-type(2) {
            margin-bottom: var(--space-10);
        }
        .rental-guide1 .flexright .txt-row2 p:nth-of-type(3) {
            margin-bottom: var(--space-25);
        }
        .rental-guide1 .flexright .txt-row2 p:last-of-type {
            font-size: var(--font-16);
        }
        .sub-wrap .rental-guide2 .flexbox2 .titlearea {
            margin-bottom: var(--space-40);
        }
        .rental-guide3 .btnDownload:last-of-type {
            margin-top: 0;
            margin-left: var(--space-10);
        }
        .rental-guide3 .table2 th {
            font-size: var(--font-16);
        }
        .rental-guide3 .table2 td {
            padding: var(--space-15) var(--space-20);
            font-size: var(--font-16);
        }
        .rental-guide5 .txtarea1 {
            margin-bottom: var(--space-40);
            padding-bottom: var(--space-40);
        }
        .rental-guide5 .tabletitarea span {
            font-size: var(--font-13);
        }
        .rental-guide5 .table1 th {
            font-size: var(--font-16);
        }
        .rental-guide5 .table1 td {
            padding: var(--space-15) var(--space-20);
            font-size: var(--font-16);
        }
        .rental-guide6 .txtarea1 {
            margin-bottom: var(--space-40);
            padding-bottom: var(--space-40);
        }
        .rental-guide6 .flexright .txtarea1 .txt25 {
            padding-top: var(--space-30);
            border-top: var(--border-basic);
        }
        .rental-guide6 .application-process .item .step-num {
            width: 30px;
            height: 30px;
        }
        .rental-guide6 .application-process .item h5 {
            margin-bottom: var(--space-10);
            padding-bottom: var(--space-10);
        }
    }
    @media all and (max-width: 640px) {
        .rental-guide .flexright .txt25 {
            margin-bottom: var(--space-20);
        }
        .rental-guide1 .flexright .txt25 {
            padding-top: var(--space-25);
        }
        .rental-guide1 .flexright .txt-row {
            margin-bottom: var(--space-20);
            padding-bottom: var(--space-20);
        }
        .rental-guide1 .flexright .txt-row strong {
            position: static;
        }
        .rental-guide1 .flexright .txt-row p {
            padding-left: 0;
        }
        .rental-guide1 .flexright .txt-row p:first-of-type {
            margin-top: var(--space-15);
        }
        .rental-guide1 .flexright .txt-row2 p:first-of-type {
            margin-bottom: var(--space-20);
        }
        .rental-guide1 .flexright .txt-row2 p:nth-of-type(2) {
            margin-bottom: var(--space-15);
        }
        .rental-guide1 .flexright .txt-row2 p:nth-of-type(3) {
            margin-bottom: var(--space-20);
        }
        .sub-wrap .rental-guide2 .flexbox2 .titlearea {
            margin-bottom: var(--space-35);
        }
        .rental-guide3 .table2 td {
            padding: var(--space-15);
        }
        .rental-guide5 .txtarea1 {
            margin-bottom: var(--space-30);
            padding-bottom: var(--space-30);
        }
        .rental-guide5 .table1 td {
            padding: var(--space-15);
        }
        .rental-guide6 .txtarea1 {
            margin-bottom: var(--space-30);
            padding-bottom: var(--space-30);
        }
        .rental-guide6 .flexright .txtarea1 .txt25 {
            padding-top: var(--space-25);
        }
        .rental-guide6 .application-process .item {
            width: 48.5%;
            margin-right: 3%;
        }
        .rental-guide6 .application-process .item:nth-of-type(2n) {
            margin-right: 0;
        }
        .rental-guide6 .application-process .item:nth-of-type(3),
        .rental-guide6 .application-process .item:nth-of-type(4) {
            margin-top: 3%;
        }
        .rental-guide6 .application-process .item:nth-of-type(n+5) {
            margin-top: 3%;
        }
        .rental-guide6 .application-process .item::after {
            display: none;
        }
        .rental-guide6 .application-process .item .step-num {
            width: 30px;
            height: 30px;
        }
        .rental-guide6 .application-process .item h5 {
            margin-bottom: var(--space-10);
            padding-bottom: var(--space-10);
        }
    }

/* 장애인 이용안내 */
.guide1 .titlearea h3,
.location2 .titlearea h3 {
    margin-bottom: var(--space-40)
}
.guide1 .flexbox4 .box-title {
    text-align: center;
    padding-top: 7px;
}
.guide1 .flexbox4 .box-title .icon {
    display: block;
}
.guide1 .flexbox4 .box-title h4 {
    font-weight: var(--fw-black);
    margin: var(--space-30) 0 var(--space-15)
}
.guide2 ol > li {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: var(--space-65)
}
.guide2 ol > li::before {
    width: 35px;
    height: 35px;
    background-color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: var(--fw-bold);
    position: absolute;
    left: 0;
}
.guide2 ol > li:nth-child(1)::before {
    content:"1";
}
.guide2 ol > li:nth-child(2)::before {
    content:"2";
}
.guide2 ol > li:nth-child(3)::before {
    content:"3";
}
.guide2 ol > li:nth-child(4)::before {
    content:"4";
}
.guide2 ol > li:nth-child(5)::before {
    content:"5";
}
.guide3 .guide3-list .txt25 {
    font-weight: var(--fw-bold);
    text-align: center;
}
    /* 장애인 이용안내 미디어쿼리 */
    @media all and (max-width: 1200px) {
        .guide1 .flexbox4 h4 br.reverse {
            display: block;
        }
    }
    @media all and (max-width: 1000px) {
        .guide1 .titlearea h3,
        .location2 .titlearea h3 {
            margin-bottom: var(--space-30);
        }
        .guide1 p.txt20 br.reverse {
            display: block;
        }
        .guide1 .flexbox4 .box-title h4 {
            margin: var(--space-20) 0 var(--space-10)
        }
        .guide1 .flexbox4 h4 br.reverse {
            display: none;
        }
        .guide2 .flexbox2 .flexright {
            margin-top: 0
        }
        .guide2 ol > li {
            padding-left: var(--space-40)
        }
        .guide2 ol > li::before {
            width: 25px;
            height: 25px;
            margin-right: var(--space-20);
            font-size: var(--font-16);
        }
        .guide1 .flexbox4 .box-title {
            padding-top: 0
        }
        .guide3 .flexbox2 .flexright {
            border-top: 0;
            margin-top: 0
        }
    }
    @media all and (max-width: 640px) {
        .guide1 .titlearea p {
            font-size: var(--font-16);
        }
        .guide1 .titlearea h3,
        .location2 .titlearea h3 {
            margin-bottom: var(--space-20);
        }
        .guide1 p.txt20 br.reverse {
            display: none;
        }
        .guide2 ol > li:first-child {
            align-items: flex-start;
        }
        .guide2 ol > li::before {
            font-size: var(--font-15);
        }
        .guide2 ol > li {
            padding-left: var(--space-35)
        }
        .guide2 ol > li::before {
            width: 23px;
            height: 23px;
        }
        .guide3 .txt25 {
            font-size: var(--font-18);
        }
        .guide3 .txt25.ptpb30 {
            padding-top: var(--space-10)
        }
    }

/* 오시는 길 */
.location1 .flexleft {
    position:relative;
}
.location1 .icon-list {
    border-top: var(--border-basic);
}
.location1 .icon-list p,
.location5 .icon-list p:first-of-type {
    font-weight: var(--fw-bold);
}
.location1 .icon-list p:nth-of-type(2),
.location1 .icon-list p:last-of-type,
.location5 .icon-list p:last-of-type {
    margin-top: var(--space-20)
}
.location1 .icon-list p span {
    font-weight: var(--fw-normal);
}
.location1 .map {
    height: 400px;
}
.location3 .bus-list2 {
    margin-top: var(--space-60);
    padding-top: var(--space-60);
    border-top: var(--border-basic);
}
.location3 .bus-list h4 {
    display: block;
    margin-bottom: var(--space-40);
    font-weight: var(--fw-black);
}
.location3 .bus-list .list {
    display: flex;
    align-items: flex-start;
    position: relative;
}
.location3 .bus-list .list strong {
    flex: 0 0 35%;
    display: block;
    font-weight: var(--fw-bold);
}
.location3 .bus-list .list-con {
    display: flex;
    align-items: center;
    position: relative;
}
.location3 .bus-list .list-con:not(:last-of-type) {
    margin-bottom: var(--space-10);
}
.location3 .bus-list .list-con p {
    flex: 1 1 auto;
    padding-left: var(--space-35);
}
.location3 .bus-list .list-con .icon-bus {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--font-14);
    position: absolute;
    left: 0;
    top: 2px
}
.location3 .bus-list .list-con .icon-bus.green {
    background-color: #5CBA24
}
.location3 .bus-list .list-con .icon-bus.blue {
    background-color: #3053A8
}
.location3 .bus-list .list-con .icon-bus.red {
    background-color: #F0110D
}
.location3 .bus-list .list-con .icon-bus.red {
    background-color: #F0110D
}
.location4 .subway-list .list {
    display: flex;
    align-items: center;
    position: relative;
}
.location4 .subway-list .list:nth-of-type(2) {
    align-items: flex-start;
}
.location4 .subway-list .list-tit {
    display: flex;
    align-items: center;
    flex: 0 0 35%;
}
.location4 .subway-list .list-tit strong {
    font-weight: var(--fw-bold);
}
.location4 .subway-list .list-con p {
    display: flex;
    align-items: center;
}
.location4 .subway-list .list:nth-of-type(2) .list-con p {
    margin-bottom: 5px;
}
.location4 .subway-list .list:nth-of-type(2) .list-con p:first-of-type {
    margin-bottom: var(--space-20);
}
.location4 .subway-list .list:nth-of-type(2) .list-con p:last-of-type {
    margin-bottom: 0;
}
.location4 .subway-list .icon-subway.blue {
    background-color: #08308F
}
.location4 .subway-list .icon-subway.skyblue {
    background-color: #00A5DF
}
.location4 .subway-list .icon-subway.purple {
    background-color: #9A6192
}
.location4 .subway-list .icon-subway {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-right: var(--space-15);
    font-size: var(--font-14);
    border-radius: 10000000000px;
}
.location5 .flexright .icon-list > li {
    font-weight: var(--fw-bold);
}
.location5 .flexright .icon-list .dot-list {
    margin-top: var(--space-10);
}
.location5 .flexright .icon-list .dot-list li {
    font-weight: var(--fw-normal);
}
    /* 오시는 길 미디어쿼리 */
    @media all and (max-width: 1200px) {
        .location1 .map {
            height: 350px;
        }
        .location3 .bus-list .list {
            flex-direction: column;
        }
        .location3 .bus-list .list:nth-of-type(1) {
            align-items: flex-start;
        }
        .location3 .bus-list .list .pr80 {
            padding-right: 0
        }
        .location3 .bus-list .list strong {
            width: 100%;
            max-width: 100%;
            margin-bottom: var(--space-20);
        }
        .location3 .bus-list .list-con {
            padding-left: 0
        }
        .location4 .subway-list .list {
            flex-direction: column;
            align-items: flex-start;
        }
        .location4 .subway-list .list-tit {
            width: 100%;
            max-width: 100%;
            margin-bottom: var(--space-20);
        }
        .location4 .subway-list .list .pr80 {
            padding-right: 0
        }
    }
    @media all and (max-width: 1000px) {
        .location1 .flexbox2 .flexright {
            border-top: 0;
            margin-top: 0;
        }
        .location1 .map {
            height: 300px;
        }
        .location1 .icon-list p {
            margin-bottom: 0;
        }
        .location1 .icon-list p:last-of-type,
        .location5 .icon-list p:last-of-type {
            margin-top: var(--space-10);
        }
        .location2 .box-title.line {
            border-bottom: 0
        }
        .location2 .box-con .video {
            margin-top: 0
        }
        .location3 .flexright,
        .location4 .flexright {
            margin-top: 0
        }
        .location3 .bus-list2 {
            margin-top: var(--space-40);
            padding-top: var(--space-40)
        }
        .location4 .subway-list .list:nth-of-type(2) .list-con p:first-of-type {
            margin-bottom: var(--space-15);
        }
    }
    @media all and (max-width: 640px) {
        .location1 .map {
            height: 250px;
        }
        .guide1 .titlearea p,
        .location2 .titlearea p {
            text-align: left;
        }
        .location3 .bus-list2 {
            margin-top: var(--space-30);
            padding-top: var(--space-30);
        }
        .location3 .bus-list .list-con p {
            padding-left: var(--space-30);
        }
        .location3 .bus-list .list:nth-of-type(5) .list-con:nth-of-type(2) {
            align-items: flex-start;
        }
        .location3 .bus-list .list-con:not(:last-of-type) {
            margin-bottom: var(--space-8);
        }
        .location4 .subway-list .icon-subway {
            margin-right: var(--space-10);
        }
    }

/*개인정보 약관*/
.privacy h2 {
    font-size: 28px;
    text-align: center;
    border-bottom: 1px solid #D8DDE6;
    font-weight: 500;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.privacy p,
.privacy th,
.privacy td,
.privacy li,
.privacy .content a,
.privacy strong {
    line-height: 1.4;
    font-size: 14px;
}
.privacy ul,
.privacy ol,
.privacy p.column-frst {
    margin-top: 8px;
}
.privacy li>ul,
.privacy li>ol {
    margin-bottom: 1rem
}
.privacy li {
    position: relative;
    margin-bottom: 4px;
}

.privacy p {
    margin-top: 5px;
    margin-bottom: 2px;
}

.privacy h3 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 30px;
    padding: 30px 0 0 0;
    border-top: 1px solid #D8DDE6;
}

.agree-list .privacy h2 {
    font-size: 20px;
}

.agree-list .privacy h3 {
    font-size: 16px;
}

.privacy h3.bb0 {
    border-top: 0;
    margin-top: 0;
    padding: 0;
}

.privacy .number-list>li {
    padding-left: 20px
}

.privacy .circle-list>li,
.privacy .kr-list>li,
.privacy .brace-list>li,
.privacy .kor-list>li {
    padding-left: 26px
}

.privacy .kor-list.double-menu {
    padding-left: 20px;
}

.privacy .line-list>li {
    padding-left: 0.8rem
}

.privacy .number-list>li::before,
.privacy .circle-list>li::before,
.privacy .kr-list>li::before,
.privacy .brace-list>li::before,
.privacy .line-list>li::before,
.privacy .kor-list>li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1.4
}

.privacy .number-list>li:nth-child(1)::before {
    content: "1."
}

.privacy .number-list>li:nth-child(2)::before {
    content: "2."
}

.privacy .number-list>li:nth-child(3)::before {
    content: "3."
}

.privacy .number-list>li:nth-child(4)::before {
    content: "4."
}

.privacy .number-list>li:nth-child(5)::before {
    content: "5."
}

.privacy .number-list>li:nth-child(6)::before {
    content: "6."
}

.privacy .number-list>li:nth-child(7)::before {
    content: "7."
}

.privacy .number-list>li:nth-child(8)::before {
    content: "8."
}

.privacy .number-list>li:nth-child(9)::before {
    content: "9."
}

.privacy .number-list>li:nth-child(10)::before {
    content: "10."
}

.privacy .circle-list>li:nth-child(1)::before {
    content: "①"
}

.privacy .circle-list>li:nth-child(2)::before {
    content: "②"
}

.privacy .circle-list>li:nth-child(3)::before {
    content: "③"
}

.privacy .circle-list>li:nth-child(4)::before {
    content: "④"
}

.privacy .circle-list>li:nth-child(5)::before {
    content: "⑤"
}

.privacy .kr-list>li:nth-child(1)::before {
    content: "가."
}

.privacy .kr-list>li:nth-child(2)::before {
    content: "나."
}

.privacy .kr-list>li:nth-child(3)::before {
    content: "다."
}

.privacy .kr-list>li:nth-child(4)::before {
    content: "라."
}

.privacy .kr-list>li:nth-child(5)::before {
    content: "마."
}

.privacy .brace-list>li:nth-child(1)::before {
    content: "⑴"
}

.privacy .brace-list>li:nth-child(2)::before {
    content: "⑵"
}

.privacy .brace-list>li:nth-child(3)::before {
    content: "⑶"
}

.privacy .brace-list>li:nth-child(4)::before {
    content: "⑷"
}

.privacy .brace-list>li:nth-child(5)::before {
    content: "⑸"
}

.privacy .kor-list>li:nth-child(1)::before {
    content: "가."
}

.privacy .kor-list>li:nth-child(2)::before {
    content: "나."
}

.privacy .kor-list>li:nth-child(3)::before {
    content: "다."
}

.privacy .kor-list>li:nth-child(4)::before {
    content: "라."
}

.privacy .line-list>li::before {
    content: "-"
}

.privacy table {
    position: relative;
    width: 100%;
    margin: 29px 0;
    background-color: #fff;
    text-align: center;
}

.privacy table th,
.privacy table td {
    border: 1px solid #dedede;
    letter-spacing: -0.035em
}

.privacy table thead th {
    padding: 12px 10px;
    background-color: #f7f9fc;
    border-top-width: 1px;
    border-right-width: 1px;
    border-left-width: 1px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.025em;
    font-weight: 500;
    word-break: keep-all;
}

.privacy table tbody th {
    padding: 13px 10px;
    background-color: #fbfdfd;
    border-bottom-width: 1px;
    border-right-width: 1px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.privacy td {
    padding: 13px 10px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    font-size: 15px;
    line-height: 22px;
}

@media all and (max-width:1280px) {
    .privacy h2 {
        font-size: 20px;
    }

    .privacy h3 {
        font-size: 16px;
    }

    .agree-list .privacy h2 {
        font-size: 18px;
    }

    .agree-list .privacy h3 {
        font-size: 14px;
    }
}

@media all and (max-width:640px) {
    .privacy .sub-main-title {
        line-height: 1.1
    }

    .privacy .sub-main-title br {
        display: block
    }

    .privacy h2 {
        font-size: 18px;
        padding-bottom: 14px;
        margin-bottom: 20px;
    }

    .privacy h3 {
        font-size: 15px;
        margin-top: 20px;
        padding: 20px 0 0 0;
    }

    .privacy p,
    .privacy th,
    .privacy td,
    .privacy li,
    .privacy .content a,
    .privacy td,
    .privacy table tbody th,
    .privacy strong {
        font-size: 12px
    }

    .agree-list .privacy h2 {
        font-size: 14px;
    }

    .privacy table thead th {
        font-size: 14px;
    }
}

/* 페이징 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 65px
}

.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 12px
}

.pagination ul li {
    cursor: pointer;
    margin: 0 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination ul li a {
    position: relative;
    min-width: 25px;
    line-height: 24px;
    color: #D8DDE6;
    font-size: 18px;
    text-align: center;
}

.pagination ul li a:hover {
    color: #444C56;
    font-weight: bold;
}

.pagination ul li.on a {
    font-weight: bold;
    color: #444C56;
}

.pagination ul li.on a::after {
    content: "";
    display: inline-block;
    width: 48%;
    height: 2px;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: #444c56;
}

.pagination .paging-prev,
.pagination .paging-next {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .paging-prev svg,
.pagination .paging-next svg {
    width: 8px
}

/* 페이징 미디어쿼리 */
@media all and (max-width:640px) {
    .pagination {
        margin-top: 10px
    }

    .pagination ul {
        margin: 0 5px
    }

    .pagination ul li {
        margin: 0 3px;
    }

    .pagination ul li a {
        font-size: 14px;
    }

    .pagination .paging-prev svg,
    .pagination .paging-next svg {
        width: 5px
    }
}

/* 사이트맵 */
.sitemap .sub-wrap {
    background: #f8fafb;
}

.sitemap .contarea {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0 2%;
}

.sitemap .sitemap-box {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    border-radius: 20px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background-color: #FFFFFF;
    border: 1px solid #D8DDE6;
    overflow: hidden;
}

.sitemap .sitemap-box h4 {
    width: 100%;
    text-align: center;
    color: #489BD7;
    border-bottom: 1px solid #489BD7;
    padding-bottom: 12px;
    background-color: #f0f5f8;
    padding: 20px 30px 15px;
}

.sitemap .sitemap-box h4 a,
.sitemap .sitemap-box h4 button {
    font-size: 20px;
    font-weight: 500;
}

.sitemap .sitemap-box ul {
    width: 100%;
    padding: 0 30px 10px;
}

.sitemap .sitemap-box ul li {
    border-bottom: 1px dashed #d9d9d9;
    padding: 15px 0;
    text-align: center;
}

.sitemap .sitemap-box ul li:last-child {
    border-bottom: 0
}

.sitemap .sitemap-box ul li a,
.sitemap .sitemap-box ul li button {
    color: #4E4E4E;
    font-size: 18px
}

.sitemap .sitemap-box ul li a:hover,
.sitemap .sitemap-box ul li button:hover {
    color: #489BD7;
}

/* 사이트맵 미디어쿼리 */
@media all and (max-width:1000px) {
    .sitemap .contarea {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 0 3%;
    }

    .sitemap .sitemap-box {
        margin-bottom: 30px;
    }

    .sitemap .sitemap-box h4 {
        padding: 15px 15px 10px;
    }

    .sitemap .sitemap-box ul {
        padding: 0 15px 10px;
    }
}

@media all and (max-width:640px) {
    .sitemap .contarea {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0 4%;
    }

    .sitemap .sitemap-box {
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .sitemap .sitemap-box h4 {
        padding: 10px 15px 10px;
    }

    .sitemap .sitemap-box h4 a,
    .sitemap .sitemap-box h4 button {
        font-size: 16px
    }

    .sitemap .sitemap-box ul li {
        padding: 10px 0;
    }

    .sitemap .sitemap-box ul li a,
    .sitemap .sitemap-box ul li button {
        font-size: 14px
    }
}