﻿@charset "utf-8";

/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background: #fff;
}

    header.separate {
        border-bottom: 1px solid #dadada;
    }

    header .header-line {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        width: 66.67vw;
        height: 70px;
        margin: 0 auto;
    }

        header .header-line h1 {
            display: flex;
            align-items: center;
            width: 180px;
        }

        header .header-line nav {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 0 2.13vw;
        }

            header .header-line nav ul {
                display: flex;
                justify-content: center;
            }

                header .header-line nav ul li {
                    position: relative;
                    margin: 0 0.93vw;
                }

                    header .header-line nav ul li a {
                        display: block;
                        padding: 5px;
                    }

                    header .header-line nav ul li.on a::before {
                        content: "";
                        position: absolute;
                        top: 0;
                        right: 0;
                        z-index: -10;
                        width: 14px;
                        height: 14px;
                        border-radius: 50%;
                        background: #fff739;
                    }

    /* header - 검색, 햄버거 메뉴 공통 */
    header .header-line {
        display: flex;
        align-items: center;
        position: relative;
    }

        header .header-line .btn {
            display: block;
            position: relative;
        }

            header .header-line .btn + .btn {
                margin-left: 27px;
            }

        /* header - 검색 */
        header .header-line .btn-search {
            width: 20px;
            height: 20px;
            text-indent: -9999px;
        }

            header .header-line .btn-search.dp-none {
                width: 0;
                height: 0;
            }

            header .header-line .btn-search span {
                display: block;
                transition: all 0.3s;
            }

                header .header-line .btn-search span:first-child {
                    position: absolute;
                    top: 0;
                    right: 0;
                    width: 20px;
                    height: 20px;
                    border: 2px solid #000;
                    border-radius: 50%;
                }

                header .header-line .btn-search span:last-child {
                    position: absolute;
                    bottom: 0;
                    right: -2px;
                    width: 8px;
                    height: 2px;
                    border-radius: 2px;
                    background: #000;
                    transform: rotate(45deg);
                    -webkit-transform: rotate(45deg);
                }

            header .header-line .btn-search.on {
                z-index: 110;
                width: 25px;
                height: 25px;
            }

                header .header-line .btn-search.on span:first-child {
                    right: 12px;
                    width: 0;
                    height: 25px;
                    border-width: 1px;
                    border-radius: 2px;
                    background: #000;
                    transform: rotate(45deg);
                    -webkit-transform: rotate(45deg);
                }

                header .header-line .btn-search.on span:last-child {
                    right: 0;
                    bottom: 11px;
                    width: 25px;
                    height: 2px;
                }

        /* header - 햄버거메뉴 */
        header .header-line .btn-hamburger {
            display: none;
            padding: 2px;
            text-indent: 9999px;
        }

            header .header-line .btn-hamburger span {
                position: absolute;
                width: 15px;
                height: 2px;
                background: #000;
                transition: all 0.5s;
                -webkit-transition: all 0.5s;
            }

                header .header-line .btn-hamburger span:nth-child(1) {
                    top: 0;
                }

                header .header-line .btn-hamburger span:nth-child(2) {
                    top: 50%;
                    opacity: 1;
                    transform: translateY(-50%);
                    -webkit-transform: translateY(-50%);
                }

                header .header-line .btn-hamburger span:nth-child(3) {
                    bottom: 0;
                }

            header .header-line .btn-hamburger.on {
                z-index: 110;
                height: 25px;
            }

                header .header-line .btn-hamburger.on span {
                    width: 25px;
                    border-radius: 2px;
                }

                    header .header-line .btn-hamburger.on span:nth-child(1) {
                        top: 50%;
                        transform: translateY(-50%) rotate(-45deg);
                        -webkit-transform: translateY(-50%) rotate(-45deg);
                    }

                    header .header-line .btn-hamburger.on span:nth-child(2) {
                        top: 50%;
                        opacity: 0;
                        transform: translateY(-50%);
                        -webkit-transform: translateY(-50%);
                    }

                    header .header-line .btn-hamburger.on span:nth-child(3) {
                        top: 50%;
                        bottom: auto;
                        transform: translateY(-50%) rotate(45deg);
                        -webkit-transform: translateY(-50%) rotate(45deg);
                    }

    /* header - 검색영역 */
    header .search-wrap {
        position: fixed;
        top: -320px;
        left: 0;
        z-index: 100;
        width: 100%;
        height: 320px;
        background: #fff739;
        transition: all 0.24s;
        -webkit-transition: all 0.24s;
    }

        header .search-wrap.on {
            top: 0;
        }

        header .search-wrap .search-box {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            width: 1224px;
            height: 100%;
            margin: 0 auto;
        }

            header .search-wrap .search-box .btn-close {
                display: block;
                position: absolute;
                top: 40px;
                right: 16px;
                width: 30px;
                height: 30px;
                padding: 5px;
            }

                header .search-wrap .search-box .btn-close span {
                    display: block;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 25px;
                    height: 2px;
                    border-radius: 2px;
                    background: #000;
                    text-indent: -9999px;
                    transform: translate(-50%, -50%) rotate(45deg);
                    -webkit-transform: translate(-50%, -50%) rotate(45deg);
                }

                    header .search-wrap .search-box .btn-close span::before {
                        content: "";
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        width: 25px;
                        height: 2px;
                        border-radius: 2px;
                        background: #000;
                        transform: translate(-50%, -50%) rotate(270deg);
                        -webkit-transform: translate(-50%, -50%) rotate(270deg);
                    }

            header .search-wrap .search-box .search {
                position: relative;
                width: 800px;
                border-bottom: 4px solid #000;
            }

                header .search-wrap .search-box .search .ipt {
                    width: 95%;
                    padding: 9px 13px 8px;
                    background: none;
                    font-size: 26px;
                }

                    header .search-wrap .search-box .search .ipt::placeholder {
                        color: #aaa628;
                        font-size: 26px;
                        font-weight: 700;
                    }

                header .search-wrap .search-box .search .btn-search {
                    position: absolute;
                    top: 50%;
                    right: 21px;
                    width: 29px;
                    height: 34px;
                    padding: 5px;
                    text-indent: -9999px;
                    transform: translateY(-50%);
                    -webkit-transform: translateY(-50%);
                }

                    header .search-wrap .search-box .search .btn-search span {
                        display: block;
                        position: absolute;
                    }

                        header .search-wrap .search-box .search .btn-search span:first-child {
                            top: 5px;
                            left: 5px;
                            width: 20px;
                            height: 20px;
                            border: 4px solid #000;
                            border-radius: 50%;
                        }

                        header .search-wrap .search-box .search .btn-search span:last-child {
                            right: 2px;
                            bottom: 8px;
                            width: 8px;
                            height: 4px;
                            border-radius: 2px;
                            background: #000;
                            transform: rotate(45deg);
                            -webkit-transform: rotate(45deg);
                        }

#content.dim::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
    width: 100%;
    height: 200%;
    background: rgba(0,0,0,0.3);
}

/* header - 햄버거 메뉴 영역 */
header .hamburger-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    width: 100%;
    height: 100vh;
    background: #fff739;
    opacity: 0;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
}

    header .hamburger-wrap.on {
        visibility: visible;
        z-index: 100;
        opacity: 1;
    }

    header .hamburger-wrap .menu-list {
        width: 65.21vw;
        padding-left: 4.583vw;
    }

        header .hamburger-wrap .menu-list li {
            display: flex;
            align-items: center;
            position: relative;
            height: 58px;
            transition: all 0.8s;
            -webkit-transition: all 0.8s;
        }

            header .hamburger-wrap .menu-list li.company {
                margin-top: 60px;
            }

            header .hamburger-wrap .menu-list li a {
                display: flex;
                align-items: flex-end;
                width: 100%;
                color: #000;
                font-size: 22px;
                font-weight: 700;
            }

            header .hamburger-wrap .menu-list li:hover::before {
                content: "";
                position: absolute;
                top: 0;
                left: -50%;
                z-index: -1;
                width: 200%;
                height: 100%;
                background: #fff;
                transition: all 0.8s;
                -webkit-transition: all 0.8s;
            }

            header .hamburger-wrap .menu-list li.on:hover a {
                color: #000;
            }

            header .hamburger-wrap .menu-list li.on a {
                color: #1a88cd;
            }

            header .hamburger-wrap .menu-list li a span {
                padding-left: 8px;
                color: #aaa628;
                font-size: 12px;
            }

            header .hamburger-wrap .menu-list li:hover a span {
                visibility: hidden;
            }

/* header - sns */
header .sns {
    display: flex;
    align-items: center;
    position: absolute;
    right: 21.98vw;
    bottom: 5.313vw;
}

    header .sns li a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 86px;
        height: 86px;
        border-radius: 50%;
        background: #000;
    }

        header .sns li a img {
            width: 32px;
        }

/* content */
#wrap {
    overflow: hidden;
    min-height: 100vh;
}

#container #content {
    position: relative;
}

/* .pagination */
ul.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 102px;
}

    ul.pagination li {
        border: 0;
    }

        ul.pagination li a {
            display: block;
            margin: 0 4px;
            padding: 4px;
            color: #888;
        }

        ul.pagination li.active a {
            color: #000;
        }

        ul.pagination li:first-child {
            margin-right: 10px;
        }

        ul.pagination li:last-child {
            margin-left: 10px;
        }

        ul.pagination li:first-child a {
            width: 26px;
            height: 26px;
            margin: 0;
            padding: 0;
            background: url('../images/common/btn_prev.png') no-repeat 0 0/26px;
            text-indent: -9999px;
        }

        ul.pagination li:last-child a {
            width: 26px;
            height: 26px;
            margin: 0;
            padding: 0;
            background: url('../images/common/btn_next.png') no-repeat 0 0/26px;
            text-indent: -9999px;
        }

        ul.pagination li:first-child:hover a {
            background: url('../images/common/btn_prev_on.png') no-repeat 0 0/26px;
        }

        ul.pagination li:last-child:hover a {
            background: url('../images/common/btn_next_on.png') no-repeat 0 0/26px;
        }

        ul.pagination li:first-child.disabled a {
            background: url('../images/common/btn_prev_disable.png') no-repeat 0 0/26px;
            cursor: initial;
        }

        ul.pagination li:last-child.disabled a {
            background: url('../images/common/btn_next_disable.png') no-repeat 0 0/26px;
            cursor: initial;
        }

    /* .pagination - type1 */
    ul.pagination.type01 {
        justify-content: center;
        padding-top: 65px;
    }

        ul.pagination.type01 li a {
            padding: 0 8px;
        }

        ul.pagination.type01 li.prev {
            margin: 0 10px 0 0;
        }

            ul.pagination.type01 li.prev a {
                text-indent: -9999px;
            }

        ul.pagination.type01 li.next {
            margin: 0 0 0 10px;
        }

            ul.pagination.type01 li.next a {
                text-indent: -9999px;
            }

    /* .pagination - type2 */
    ul.pagination.type02 {
        justify-content: space-between;
        -webkit-justify-content: space-between;
        margin-top: 0;
        padding-top: 17px;
    }

        ul.pagination.type02 li a {
            display: flex;
            display: -webkit-flex;
            width: 62px;
            align-items: center;
            -webkit-align-items: center;
            color: #000;
            font-size: 12px;
            text-indent: 0;
        }

        ul.pagination.type02 li.prev a {
            justify-content: flex-end;
            -webkit-justify-content: flex-end;
            padding-left: 21px;
        }

        ul.pagination.type02 li.prev:hover a {
            background: url('../images/common/btn_prev_on.png') no-repeat 0 0/26px;
        }

        ul.pagination.type02 li.next a {
            padding-right: 21px;
            background: url('../images/common/btn_next.png') no-repeat 100% 0/26px;
        }

        ul.pagination.type02 li.next:hover a {
            background: url('../images/common/btn_next_on.png') no-repeat 100% 0/26px;
        }

/* 작품 리스트 */
.art-list {
    display: flex;
    flex-wrap: wrap;
    user-select: none;
}

    .art-list li {
        margin: 0.573vw;
        text-align: center;
    }

        .art-list li .frame {
            position: relative;
            overflow: hidden;
            width: 21.458vw;
            height: 21.458vw;
        }

            .art-list li .frame span {
                position: absolute;
                top: 50%;
                left: 50%;
                overflow: hidden;
                width: inherit;
                max-width: 17.46vw;
                height: inherit;
                max-height: 17.46vw;
                transform: translate(-50%, -50%);
                transition: all 0.9s;
                -webkit-transition: all 0.9s;
                cursor: pointer;
            }

                .art-list li .frame span img {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }

            .art-list li .frame:hover span {
                transform: translate(-50%, -50%) scale(2.4);
                -webkit-transform: translate(-50%, -50%) scale(2.4);
            }

                .art-list li .frame:hover span .ic {
                    transform: translate(-50%, -50%) scale(1);
                    -webkit-transform: translate(-50%, -50%) scale(1);
                }

                .art-list li .frame:hover span img {
                    transition: all 0.9s;
                }

            .art-list li .frame.horizon span {
                max-width: 17.46vw;
                height: inherit;
                max-height: inherit;
            }

                .art-list li .frame.horizon span img {
                    max-width: 17.46vw;
                    height: auto;
                }

            .art-list li .frame.vertical span {
                width: inherit;
                max-width: inherit;
                max-height: 17.46vw;
            }

                .art-list li .frame.vertical span img {
                    width: auto;
                    max-height: 17.46vw;
                }

        .art-list li dl dt {
            width: 21.458vw;
            padding: 22px 0 8px;
            font-size: 18px;
            font-weight: 700;
        }

        .art-list li dl dd {
            color: #424242;
            font-size: 15px;
        }

.gap16 {
    gap: 16px;
}

.art-list .frame2 {
    flex: 1 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    margin-bottom: clamp(120px, 11.98vw, 230px);
}

        .art-list .frame2.now {
            flex: 1 1 calc(100% - 16px);
            max-width: calc(100% - 16px);
            max-height: 654px;
        }

.art-list .frame2-img-div {
    width: 100%;
    height: clamp(250px, 21.46vw, 412px);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .art-list .frame2-img-div.now {
        height: 100%;
    }

.art-list .frame2 img {
    /*max-height: clamp(300px, 34vw, 654px);
            width: auto;*/
    height: 100%;
    object-fit: contain;
}


.frame2_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .frame2_box .title {
        font-size: clamp(16px, 1.667vw, 32px);
        margin-top: clamp(12px, 1.458vw, 28px);
        color: #000000;
        font-weight: 700;
        line-height: clamp(24px, 2.414vw, 46px);
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }

    .frame2_box .name {
        font-size: clamp(14px, 1.354vw, 26px);
        color: #424242;
        font-weight: 400;
        line-height: clamp(20px, 1.961vw, 38px);
    }


    .frame2_box .desc {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .frame2_box .desc .desc_1 {
            margin: clamp(4px, 0.417vw, 8px) 0;
            font-size: clamp(14px, 1.354vw, 26px);
            color: #424242;
            line-height: clamp(20px, 1.961vw, 38px);
        }

        .frame2_box .desc .bar {
            width: clamp(2px, 0.186vw, 4px);
            height: clamp(6px, 0.839vw, 16px);
            background-color: #CFCFCF;
            margin-left: clamp(6px, 0.802vw, 15px);
            margin-right: clamp(6px, 0.802vw, 15px);
            margin-top: clamp(2px, 0.15vw, 3px);
        }


.category-div {
    width: 100%;
    display: flex;
    gap: clamp(16px, 2.292vw, 44px);
}

    .category-div .left-div {
        width: 100%;
        display: flex;
    }

        .category-div .left-div .img-div {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .category-div .left-div .img-div img {
                width: auto;
                height: clamp(200px, 32.604vw, 625px);
                max-width: clamp(200px, 32.604vw, 625px);
            }


    .category-div .right-div {
        width: 100%;
        display: flex;
        flex-direction:column;
        justify-content: center;
        align-items: flex-start;
    }

    .category-div .title {
        font-size: clamp(18px, 2.396vw, 46px);
        line-height: clamp(30px, 3.469vw, 67px);
        font-weight: 700;
        text-align: left;
    }

    .category-div .nm {
        font-size: clamp(12px, 1.667vw, 32px);
        font-weight: 400;
        line-height: clamp(20px, 2.414vw, 46px);
        color: #424242;
        margin-top: clamp(4px, 0.417vw, 8px);
        text-align: left;
    }

    .category-div .perid {
        margin-top: clamp(20px, 3.229vw, 62px);
        font-size: clamp(12px, 1.667vw, 32px);
        font-weight: 400;
        line-height: clamp(20px, 2.414vw, 46px);
        color: #424242;
        text-align: left;
    }


.tab-div {
    width: 100%;
    margin-top: 45px;
    border-bottom: solid 1px;
    border-bottom-color: #EBEBEB;
    display: flex;
    justify-content: center;
    gap: 4.896vw;
    margin-bottom: 37px;
}

    .tab-div .tab-intro {
        font-size: clamp(14px, 1.146vw, 22px);
        line-height: clamp(20px, 1.816vw, 35px);
        font-weight: 500;
        color: #000000;
        border-bottom: solid clamp(2px, 0.208vw, 4px);
        border-bottom-color: #000000;
        cursor: pointer;
    }

    .tab-div .tab-works {
        font-size: clamp(14px, 1.146vw, 22px);
        line-height: clamp(20px, 1.816vw, 35px);
        font-weight: 500;
        color: #909090;
        border-bottom: solid clamp(2px, 0.208vw, 4px);
        border-bottom-color: transparent;
        cursor: pointer;
    }


.tab-content-introduction {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items:flex-start;
}

    .tab-content-introduction .title {
        font-size: clamp(16px, 1.667vw, 32px);
        font-weight: 700;
        line-height: 2.414vw;
        margin-bottom: clamp(12px, 0.938vw, 18px);
    }

    .tab-content-introduction .txt-desc {
        display: flex;
        justify-content:flex-start;
        flex-direction:column;
    }

        .tab-content-introduction .txt-desc p {
            text-align: left;
            font-size: clamp(12px, 0.781vw, 15px);
            font-weight: 400;
            line-height: clamp(15px, 1.563vw, 30px);
            color: #424242;
        }

.tab-content-works {
    width: 100%;
    margin-top: clamp(64px, 5.417vw, 104px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

    .tab-content-works .between {
        width: 100%;
        display: flex;
        justify-content: space-between;
        position: sticky;
        top: 0;
        left: 0;
    }

    .tab-content-works .between .title {
        font-size: clamp(16px, 1.667vw, 32px);
        font-weight: 700;
        line-height: 2.414vw;
    }

        .tab-content-works .between .allview {
            font-size: clamp(12px, 0.781vw, 15px);
            font-weight: 400;
            line-height: clamp(14px, 0.915vw, 17.58px);
            cursor: pointer;
        }

    .tab-content-works .work-item {
        display: flex;
        position: relative;
        margin-bottom: 20px;
    }

        .tab-content-works .work-item .work-img {
            width: clamp(200px, 14.5vw, 278.42px);
            height: clamp(240px, 17.22vw, 330.7px);
            justify-content: center;
            align-items: center;
            display: flex;
            cursor: pointer;
        }


            .tab-content-works .work-item .work-img img {
                max-width: 60%;
                max-height: 60%;
                object-fit: contain;
            }

            .tab-content-works .work-item .work-img .work-desc-div {
                position: absolute;
                bottom: 0;
                display: flex;
                flex-direction: column;
                width: clamp(200px, 14.5vw, 278.42px);
                padding-left: 10px;
                padding-right: 10px;
            }

                .tab-content-works .work-item .work-img .work-desc-div .work-title {
                    font-size: clamp(10px, 0.677vw, 13px);
                    line-height: clamp(14px, 0.98vw, 18.82px);
                    font-weight: 700;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: block;
                }

                .tab-content-works .work-item .work-img .work-desc-div .work-artist {
                    font-size: clamp(9px, 0.573vw, 11px);
                    line-height: clamp(10px, 0.671vw, 12.89px);
                    font-weight: 400;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: block;
                }


        /* 리스트 */
        .list {
            display: flex;
        }

    .list li + li {
        margin-left: 1.667vw;
    }

    .list li a {
        display: block;
        position: relative;
        padding: 3px 0;
        font-size: 16px;
    }

    .list li.on a::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #000;
    }

/* 이력없음 */
.no-data {
    margin-top: 20px;
    padding-top: 312px;
    background: url('../images/sub/no_data.png') no-repeat 50% 0/402px;
    font-size: 22px;
    text-align: center;
}

    .no-data span {
        display: block;
        padding-top: 6px;
        color: #989898;
        font-size: 16px;
    }

/* footer */
footer {
    border-top: 1px solid #dadada;
}

    footer .footer-area {
        display: flex;
        justify-content: space-between;
        position: relative;
        width: 66.41vw;
        margin: 0 auto;
        padding: 56px 0 68px;
    }

        footer .footer-area .info01 .fnb {
            display: flex;
        }

            footer .footer-area .info01 .fnb li + li {
                margin-left: 2.4vw;
            }

            footer .footer-area .info01 .fnb li a {
                font-weight: 700;
            }

        footer .footer-area .info01 address {
            display: block;
            padding: 32px 0 5px;
            font-size: 13px;
            font-style: initial;
        }

        footer .footer-area .info01 p {
            font-size: 13px;
            font-weight: 700;
        }

        footer .footer-area .info02 dl + dl {
            padding-top: 16px;
        }

        footer .footer-area .info02 dl dt {
            font-weight: 400;
            letter-spacing: 1px;
        }

        footer .footer-area .info02 dl dd {
            font-weight: 700;
        }

        footer .footer-area .info03 {
            padding-right: 81px;
        }

            footer .footer-area .info03 select {
                background: #fff url('../images/common/bg_select.png') no-repeat 100% 40%/12px;
                font-weight: 100;
            }

        footer .footer-area .sns {
            position: absolute;
            top: 38px;
            right: 0;
        }

            footer .footer-area .sns li a {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 48px;
                height: 48px;
                border-radius: 50%;
                background: #000;
            }

                footer .footer-area .sns li a img {
                    width: 20px;
                }

    footer.main {
        display: none;
    }

@media (max-width:319px) {
    #container #content section {
        min-width: 320px;
    }
}



/* Mobile */
@media (min-width:1px) and (max-width:1080px) {
    /* Mobile header */
    header .header-line {
        width: calc(100% - 12.5vw);
        height: 62px;
    }

        header .header-line h1 {
            width: 108px;
        }

        header .header-line nav {
            gap: 0 19px;
            margin-right: -5px;
        }

            header .header-line nav ul {
                display: none;
            }

        /* Mobile header - 검색, 햄버거 메뉴 공통 */
        header .header-line .btn + .btn {
            margin-left: 0;
        }


    .art-list .frame2 {
        flex: 1 1 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }

    
    /* Mobile header - 검색 */
    header .header-line {
        position: relative;
    }

        header .header-line .btn-search {
            width: 26px;
            height: 17px;
            padding: 0 2px;
        }

            header .header-line .btn-search span:first-child {
                width: 16px;
                height: 16px;
            }

            header .header-line .btn-search span:last-child {
                width: 6px;
            }

            header .header-line .btn-search.on {
                position: absolute;
                top: 18px;
                right: -3px;
                width: 26px;
                height: 26px;
            }

                header .header-line .btn-search.on span:first-child {
                    top: 2px;
                    right: 12px;
                    height: 22px;
                }

                header .header-line .btn-search.on span:last-child {
                    right: auto;
                    bottom: 12px;
                    left: 2px;
                    width: 22px;
                }

        /* Mobile header - 햄버거 메뉴 */
        header .header-line .btn-hamburger {
            display: block;
            width: 26px;
            height: 13px;
            padding: 0 5px;
        }

            header .header-line .btn-hamburger.on {
                width: 26px;
                height: 26px;
            }

                header .header-line .btn-hamburger.on span {
                    left: 0;
                    width: 22px;
                }

    /* Mobile header - 검색영역 */
    header .search-wrap {
        height: 200px;
    }

        header .search-wrap .search-box {
            align-items: start;
            width: 100%;
        }

            header .search-wrap .search-box .search {
                margin: 121px 6.25vw 0;
            }

                header .search-wrap .search-box .search .ipt {
                    width: 90%;
                    padding: 8px 10px 7px;
                    border-width: 3px;
                    font-size: 1.6rem;
                }

                    header .search-wrap .search-box .search .ipt::placeholder {
                        color: #aaa628;
                        font-size: 1.6rem;
                    }

                header .search-wrap .search-box .search .btn-search {
                    right: 12px;
                    width: 25px;
                    height: 25px;
                }

                    header .search-wrap .search-box .search .btn-search span:first-child {
                        width: 14px;
                        height: 14px;
                        border-width: 2px;
                    }

                    header .search-wrap .search-box .search .btn-search span:last-child {
                        right: 4px;
                        bottom: 6px;
                        width: 6px;
                        height: 2px;
                    }

    /* Mobile header - 햄버거 메뉴 영역 */
    header .hamburger-wrap {
        padding-bottom: 160px;
    }

        header .hamburger-wrap .menu-list {
            padding-left: 0;
        }

            header .hamburger-wrap .menu-list li {
                height: 49px;
            }

                header .hamburger-wrap .menu-list li:hover a span {
                    visibility: visible;
                }

                header .hamburger-wrap .menu-list li.on::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: -50%;
                    z-index: -1;
                    width: 200%;
                    height: 100%;
                    background: #fff;
                    transition: all 0.8s;
                    -webkit-transition: all 0.8s;
                }

                header .hamburger-wrap .menu-list li.on a {
                    color: #1a88cd;
                }

                    header .hamburger-wrap .menu-list li.on a span {
                        color: #1a88cd;
                    }

    .art-list .frame2 img {
        max-height: 100%;
        width: 100%;
    }

    .art-list .frame2 {
        margin-bottom: 50px;
    }

    /* Mobile header - sns */
    header .sns {
        right: 6.25vw;
        bottom: 30.5vw;
    }

        header .sns li a {
            width: 50px;
            height: 50px;
        }

            header .sns li a img {
                width: 20px;
            }

    /* Mobile .pagination */
    ul.pagination {
        padding-top: 59px;
    }

    .pagination li a {
        font-size: 1.1rem;
    }

    /* Mobile 작품 리스트 */
    .art-list {
        justify-content: center;
    }

        .art-list li {
            margin: 1.25vw;
        }

            .art-list li:nth-child(1n+3) {
                margin: 5.313vw 1.25vw 1.25vw;
            }

            .art-list li .frame {
                width: 42.5vw;
                height: 42.5vw;
            }

                .art-list li .frame span {
                    width: inherit;
                    max-width: 42.5vw;
                    height: inherit;
                    max-height: 32.5vw;
                }

                .art-list li .frame:hover span {
                    transform: translate(-50%, -50%);
                    -webkit-transform: translate(-50%, -50%);
                }

                    .art-list li .frame:hover span::before {
                        content: "";
                    }

                .art-list li .frame.horizon span {
                    max-width: 42.5vw;
                    height: inherit;
                    max-height: inherit;
                }

                .art-list li .frame.vertical span {
                    width: inherit;
                    max-width: inherit;
                    max-height: 32.5vw;
                }

                .art-list li .frame.horizon span img {
                    max-width: 42.5vw;
                    height: auto;
                }

                .art-list li .frame.vertical span img {
                    width: auto;
                    max-height: 32.5vw;
                }

            .art-list li dl dt {
                width: 42.5vw;
                padding: 14px 0 2px;
                font-size: 1.0rem;
            }

            .art-list li dl dd {
                font-size: 0.9rem;
            }

    /* Mobile 리스트 */
    .list li + li {
        margin-left: 6.875vw;
    }

    /* Mobile 이력없음 */
    .no-data {
        margin-top: 20px;
        padding-top: 197px;
        background: url('../images/sub/no_data.png') no-repeat 50% 0/250px;
        font-size: 1.4rem;
        text-align: center;
    }

        .no-data span {
            display: block;
            padding-top: 6px;
            color: #989898;
            font-size: 1.2rem;
        }

    /* Mobile footer */
    footer .footer-area {
        flex-direction: column;
        width: calc(100% - 12.5vw);
        padding: 36px 0 46px;
    }

        footer .footer-area .info01 .fnb li + li {
            margin-left: 24px;
        }

        footer .footer-area .info01 .fnb li a {
            font-size: 1.0rem;
        }

        footer .footer-area .info01 address {
            font-size: 1.0rem;
        }

        footer .footer-area .info01 p {
            font-size: 0.8rem;
        }

        footer .footer-area .info02 dl {
            padding-top: 25px;
        }

            footer .footer-area .info02 dl + dl {
                padding-top: 12px;
            }

            footer .footer-area .info02 dl dt {
                padding-bottom: 2px;
                font-size: 1.0rem;
            }

            footer .footer-area .info02 dl dd {
                font-size: 1.1rem;
            }

        footer .footer-area .info03 {
            padding-top: 60px;
            padding-right: 0;
        }

        footer .footer-area .sns {
            top: auto;
            right: 20px;
            bottom: 36px;
        }
}

/* Tablet */
@media (min-width:768px) and (max-width:1080px) {
    /* Tablet header */
    header .header-line {
        width: calc(100% - 10.42vw);
        height: 70px;
        padding-right: 0.78vw;
    }

        header .header-line nav {
            gap: 0 22px;
        }

            header .header-line nav ul {
                display: flex;
            }

                header .header-line nav ul li {
                    margin: 0 16px;
                }

                    header .header-line nav ul li a {
                        font-size: 1.1rem;
                    }

    


    /* Tablet header - sns */
    header .sns {
        bottom: 10.5vw;
    }

    /* Tablet .pagination */
    .pagination li.prev a {
        width: 21px;
        height: 21px;
        background: url('../images/common/btn_prev.png') no-repeat 0 0/21px;
    }

    .pagination li.next a {
        width: 21px;
        height: 21px;
        background: url('../images/common/btn_next.png') no-repeat 0 0/21px;
    }

    .pagination li.prev:hover a {
        background: url('../images/common/btn_prev_on.png') no-repeat 0 0/21px;
    }

    .pagination li.next:hover a {
        background: url('../images/common/btn_next_on.png') no-repeat 0 0/21px;
    }

    .pagination li.prev.disable a {
        background: url('../images/common/btn_prev_disable.png') no-repeat 0 0/21px;
    }

    .pagination li.next.disable a {
        background: url('../images/common/btn_next_disable.png') no-repeat 0 0/21px;
    }

    /* Tablet .pagination - type1 */
    .pagination.type01 {
        padding-top: 52px;
    }

    /* Tablet 작품 리스트 */
    .art-list {
        justify-content: start;
    }

        .art-list li {
            margin: 1.888vw;
        }

            .art-list li:nth-child(1n+3) {
                margin: 1.888vw;
            }

            .art-list li:nth-child(1n+4) {
                margin: 1.69vw 1.888vw 1.888vw;
            }

            .art-list li .frame {
                width: 27.34vw;
                height: 27.34vw;
            }

                .art-list li .frame span {
                    max-width: 27.34vw;
                    max-height: 27.34vw;
                }

                .art-list li .frame.horizon span {
                    max-width: 27.34vw;
                    height: inherit;
                    max-height: inherit;
                }

                .art-list li .frame.vertical span {
                    width: inherit;
                    max-width: 27.34vw;
                    max-height: 27.34vw;
                }

                .art-list li .frame.horizon span img {
                    max-width: 27.34vw;
                    height: auto;
                }

                .art-list li .frame.vertical span img {
                    width: auto;
                    max-height: 27.34vw;
                }

            .art-list li dl dt {
                width: 27.34vw;
                padding: 18px 0 4px;
                font-size: 1.3rem;
            }

            .art-list li dl dd {
                font-size: 1.1rem;
            }

    /* Tablet 리스트 */
    .list li + li {
        margin-left: 4.167vw;
    }

    /* Tablet footer */
    footer .footer-area {
        flex-direction: initial;
        width: 89.583vw;
        margin: 0 auto;
        padding: 20px 0 25px;
    }

        footer .footer-area .info02 dl {
            padding-top: 0;
        }

        footer .footer-area .info03 {
            margin-right: 83px;
            padding-top: 0;
        }

        footer .footer-area .sns {
            top: 20px;
            right: 0;
            bottom: auto;
        }
}

/* PC 1921 이상 */
@media (min-width:1921px) {
    /* PC 1921 header */
    header .header-line {
        width: 1280px;
    }

        header .header-line nav ul li {
            margin: 0 14px;
        }

    /* PC 1921 header - 햄버거 메뉴 영역 */
    header .hamburger-wrap .menu-list {
        width: 1252px;
        padding-left: 88px;
    }

    /* PC 1921 header - sns */
    header .sns {
        right: 422px;
        bottom: 102px;
    }

    /* PC 1921 작품 리스트 */
    .art-list li {
        margin: 11px;
    }

        .art-list li .frame {
            width: 412px;
            height: 412px;
        }

            .art-list li .frame span {
                max-width: 328px;
                height: 328px;
                max-height: 328px;
            }

            .art-list li .frame.horizon span {
                max-width: 328px;
            }

            .art-list li .frame.vertical span {
                max-height: 328px;
            }

            .art-list li .frame.horizon span img {
                max-width: 328px;
            }

            .art-list li .frame.vertical span img {
                max-height: 328px;
            }

        .art-list li dl dt {
            width: 412px;
        }

    /* PC 1921 리스트 */
    .list li + li {
        margin-left: 32px;
    }

    /* PC 1921 footer */
    footer .footer-area {
        width: 1275px;
    }

        footer .footer-area .info01 .fnb li + li {
            margin-left: 46px;
        }
}

@media (max-width:767px) {
    .art-list .frame2 {
        flex: 1 1 calc(100% - 16px);
        max-width: calc(100% - 16px);
    }
}
option {
    text-align:center;
}

.category-list-wrapper {
    margin-top: 128px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

    .category-list-wrapper .category-list-div {
        width: 67.813vw;
    }

        .category-list-wrapper .category-list-div .title-div {
            width: 100%;
            display: flex;
            flex-direction:column;
            justify-content:center;
            align-items:center;
            margin-bottom:72px;
        }

            .category-list-wrapper .category-list-div .title-div .title {
                font-size: clamp(28px, 2.396vw, 46px);
                font-weight: 700;
                line-height: clamp(40px, 3.469vw, 66.61px);
                margin-bottom: clamp(6px, 0.417vw, 8px);
                text-align: center;
            }

            .category-list-wrapper .category-list-div .title-div .visual-name {
                color: #424242;
                font-size: clamp(20px, 1.667vw, 32px);
                font-weight: 400;
                line-height: clamp(30px, 2.414vw, 46.34px);
                text-align: center;
            }

        .category-list-wrapper .category-list-div .category-tot {
            margin-bottom: clamp(16px, 1.25vw, 24px);
            font-size: clamp(14px, 0.833vw, 16px);
            font-weight: 400;
            line-height: clamp(20px, 1.206vw, 23.17px);
        }


    .category-list-wrapper .pagination {
        margin-top: clamp(-120px, -8.33vw, -160px);
        margin-bottom: clamp(60px, 5.21vw, 100px);
    }
