@charset "utf-8";

/*
 * File       : story.css
 * Author     : SMART GEO
 * Guideline  : -
 * Update : 2021-10-01
 *
 * Dependency : 청맥이야기 스타일
 *
 * SUMMARY:
 * 01) 전역 스타일
 * 02) 리스트 스타일 및 애니메이션
 * 03) 페이징 스타일
 * 04) 뉴아이콘 스타일
 * 05) 모달뷰 스타일 및 애니메이션
 * 06) 로딩 스타일 및 애니메이션
 * 07) 모달책 스타일 및 애니메이션
 * 08) 루트페이지 스타일 및 애니메이션
 * 08) 나뭇잎 스타일
 * 09) 에디터내부 스타일
 */

/* **************************************** *
 * 01) 전역 스타일
 * **************************************** */

.notiBox {box-sizing: border-box; width: 25%; float: left}
.notiBox .box {box-sizing: border-box; border: 1px solid #eee; margin: 10px}
.notiBox .box:hover {border: 1px solid #333}
.notiBox .box:hover h2 a {color: #1a829c; font-weight: bold !important;}
.notiBox .cont {padding: 15px 30px}
.notiBox .cont a {cursor: pointer}
.notiBox .cont h2 {display: block; margin: 5px 0 0; line-height: 1.7em; height: 80px}
.notiBox .cont h2 a {font-size:20px; color: #333; font-weight: 500}
.notiBox .cont .name {color: #1E5290; font-size: 14px; font-weight: 500}

.btn_search {display: inline-block; text-align: center; font-size: 14px; min-width: 60px; height: 34px; line-height: 34px; border-color: #113a6b; background-color: #113a6b; color: #fff;}
.paging{padding:40px 0 30px;text-align:center;}
.paging span{display:inline-block; height:20px;margin:0 8px;text-align:center;line-height:20px; vertical-align: top}
.paging span a:link, .paging span a:visited{color:#777;font-size:13px;}
.paging span.on{}
.paging span.on a{color:#113a6b;font-weight:bold;}
.paging .pre{margin:0 9px 0 3px;}
.paging .next{margin:0 3px 0 12px;}

.editor-custom-image{
    width: calc(100% - 40px)!important;
    max-width: 450px!important;
    height: auto!important;
}

.text_patientName{
    background-color: transparent;
    width: 100%;
    border-radius: 15px;
    display: inline-block;
    font-family: 'Pretendard';
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    padding: 0;
    margin: 10px 0;
}

@media screen and (max-width: 1140px) {
    .wrap {
        background: #FAFAFA;
    }
    #text_img_pc .text_patientName{
        display: none;
    }
    #text_img_mobile .text_patientName{
        display: block;
        position: relative;
        top: 0;
        font-size: 12px;
        margin: 10px 0;
    }
}

/* **************************************** *
 * 02) 리스트 스타일 및 애니메이션
 * **************************************** */
@keyframes fadeInUp_1 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInUp_2 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }
    10% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInUp_3 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }
    20% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInUp_4 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }
    30% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes opacity_delay1 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#story_list {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

#story_list .no_search{
    width: 100%;
    height: 150px;
    line-height: 150px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: black;
}
#story_list .notiBox{
    width: 300px;
    text-align: center;
    animation: fadeInUp_1 0.6s ease-out;
}
#story_list .notiBox:nth-child(4n - 2){
    animation: fadeInUp_2 0.8s ease-out;
}
#story_list .notiBox:nth-child(4n - 1){
    animation: fadeInUp_3 1s ease-out;
}
#story_list .notiBox:nth-child(4n){
    animation: fadeInUp_4 1.2s ease-out;
}
#story_list .notiBox .box{
    border: none;
    margin: 0;
}
#story_list .notiBox .cont{
    position: relative;
    padding: 0;
    margin: 0;
}
#story_list .thumbnail{
    position: relative;
    margin: 0;
    padding: 0;
}

#story_list .frame{
    width: 100%;
    height: 248px;
    overflow: hidden;
    margin: 0;
    padding: 0 50px;
    border-radius: 0;
    position: relative;
}
#story_list .notiBox .cont img {
    padding: 0;
    margin: 0;
    width: 200px;
    height: 248px;
    max-height:unset;
    object-fit: cover;
    object-position: 50% 0;
}
#story_list  .thumbnail > a:hover > .frame > img{
    transform: scale(1.1);
    transition: transform .3s ease;
}
#story_list .textnail{
    position: relative;
    margin: 14px 10px 30px;
    padding: 0;
}
#story_list .textnail .s_data{
    padding-left: 0;
    color: #ACACAC;
    font-size: 12px;
}
#story_list .notiBox .cont h2{
    padding: 0;
    margin: 0;
    height: 60px;
}
#story_list .notiBox .box:hover h2 a p{
    color: #e05f2d;
    font-weight: bold;
}
#story_list .notiBox .cont h2 a p{
    display: -webkit-box;
    overflow: hidden;
    vertical-align: top;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-weight: 700;
    font-size: 16px;
    color: #333333;
    margin-left: 0;
    padding: 0 30px;
}
#story_list .list_title span:before{
    content: '';
    position: relative;
    display: inline-block;
    top: 2px;
    left: 0;
    width: 18px;
    height: 18px;
    margin-right: 6px;
}
#story_list .list_title .ic_color1_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top1_1.png') center center/cover no-repeat;
}
#story_list .list_title .ic_color1_2:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top1_2.png') center center/cover no-repeat;
}
#story_list .list_title .ic_color2_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top2_1.png') center center/cover no-repeat;
}
#story_list .list_title .ic_color2_2:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top2_2.png') center center/cover no-repeat;
}
#story_list .list_title .ic_color2_3:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top2_3.png') center center/cover no-repeat;
}
#story_list .list_title .ic_color3_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top3_2.png') center center/cover no-repeat;
}
#story_list .list_title .ic_color3_2:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top3_1.png') center center/cover no-repeat;
}
#story_list .list_title .ic_color4_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top4_1.png') center center/cover no-repeat;
}
#story_list .list_title .ic_color4_2:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top4_2.png') center center/cover no-repeat;
}
#story_list .notiBox .cont {
    padding: 0;
}

@media screen and (max-width: 1140px) {
    #story_list .notiBox .cont {
        padding: 0;
    }
    #story_list {
        flex-direction: column;
        margin: 30px auto 0;
    }

    #story_list .notiBox {
        width: 100%;
        height: 140px;
        padding: 0;
        margin: 0;
        text-align: left;
    }

    #story_list .notiBox .box {
        margin: 0;
        padding: 0;
    }

    #story_list .notiBox .copt {
        margin: 10px;
        padding: 0;
    }

    #story_list .thumbnail{
        position: absolute;
        top: -30px;
        left: 10px;
        z-index: 2;
    }

    #story_list .frame{
        width: 120px;
        height: 110px;
        top: 0;
        left: 0;
        border-radius: 16px;
        padding: 0;
    }
    #story_list .notiBox .cont img {
        width: 120px;
        height: 110px;
        object-fit: cover;
        object-position: 50% 0;
    }
    #story_list .textnail {
        padding-left: 120px;
        width: 100%;
        background: white;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin: 0;
    }

    #story_list .notiBox .cont:hover .textnail {
        position: unset;
        height: unset;
        bottom: unset;
        transition: unset;
    }
    #story_list .notiBox .cont h2{
        padding: 10px;
        height: 70px;
    }
    #story_list .notiBox .cont h2 a p{
        font-size: 14px;
        margin-left: 40px;
        line-height: 1.2;
        margin-top: 4px;
        padding: 0;
    }
    #story_list .list_title span:before {
        content: '';
        left: 140px;
        top: 12px;
        position: absolute;
    }
    #story_list .notiBox .cont .s_data{
        padding: 0 0 12px 50px;
        font-size: 12px;
        line-height: 16px;
        color: #ACACAC;
    }
}

/* **************************************** *
 * 03) 페이징 스타일
 * **************************************** */
.paging{
     padding: 40px 0 18%;
}
.paging span{
    width: 30px;
    height: 30px;
}
.paging a {
    width: 30px;
    height: 30px;
}
.paging span a{
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #777777;
    justify-content: center;
    cursor: pointer;
}
.paging span.on{
    background: #777777;
    border-radius: 3px;
}
.paging span.on a {
    color: white;
}
.paging .pre, .paging .next {
    margin: 7px 12px 0 12px;
}

@media screen and (max-width: 1140px){
    .paging span a{
        font-size: 15px;
    }
}

/* **************************************** *
 * 04) 뉴아이콘 스타일
 * **************************************** */
.thumbnail_new{
 width: 24px;
 height: 26px;
 background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_page_list_new_pc.png') center center/cover no-repeat;
 position: absolute;
 top: 0;
 left: -90px;
 z-index: 2;
}

@media screen and (max-width: 1140px){
    .thumbnail_new{
        left: 10px;
        width: 16px;
        height: 18px;
        top: 0;
    }
}

/* **************************************** *
 * 05) 모달뷰 스타일 및 애니메이션
 * **************************************** */
@keyframes opacity_rotale1 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
        transform: rotate(-325deg);
    }
    100% {
        opacity: 1;
        transform: rotate(0);
    }
}

#story_modal_wrap {
    display: none;
    position: fixed;
    z-index: 50001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    font-family: 'NanumSquare', 'Noto Sans KR', sans-serif;
    color: #414144;
    background: rgba(0, 0, 0, 0.5);

}
#story_modal_wrap .story_modal_inner {
    position: absolute;
    background-color: white;
    border: none;
    width: 80%;
    height: 90%;
    max-width: 1200px;
    max-height: 1080px;
    top: 50%;
    left: 50%;
    border-radius: 40px;
    filter: drop-shadow(2px 2px 5px rgba(209, 209, 209, 0.35));
    overflow: hidden;
    transform: translate(-1320px, -50%);
    transition: transform 0.3s ease-out;
}
#story_modal_wrap.on .story_modal_inner {
    transform: translate(-50%, -50%);
}
#story_modal_wrap .story_close {
    position: absolute;
    top: 50px;
    right: 70px;
    font-size: 24px;
    font-weight: bold;
    z-index: 100;
    color: black;
    cursor: pointer;
    width: 24px;
    height: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}
#story_modal_wrap.on .story_close {
    opacity: 1;
    animation: opacity_rotale1 1.4s;
}
#story_modal_wrap .story_close:before {
    content: '';
    width: 24px;
    height: 2px;
    background: #333333;
    transform: rotate(
            225deg
    );
    top: 12px;
    left: 2px;
    position: absolute;
    transition: transform 2s;
}
#story_modal_wrap .story_close:hover:before{
    transform: rotate(
            540deg
    );
    transition: transform 2s;
}
#story_modal_wrap .story_close:after {
    content: '';
    width: 24px;
    height: 2px;
    background: #333333;
    transform: rotate(
            -225deg
    );
    top: 12px;
    left: 2px;
    position: absolute;
    transition: transform 2s;
}
#story_modal_wrap .story_close:hover:after{
    transform: rotate(
            90deg
    );
    transition: transform 2s;
}
#story_modal_wrap #story_view{
    position: relative;
    overflow: hidden;
    background: white;
}
#story_modal_wrap .view_bar{
    position: relative;
    height: 102px;
}
#story_modal_wrap .bar_menu {
    width: 100%;
    padding: 42px 70px 32px;
}
#story_modal_wrap .view_text{
    position: relative;
    overflow-y: scroll;
    opacity: 0;
    margin: 20px 70px;
    background: white;
    border-radius: 15px;
    height: calc(100% - 180px);
}
#story_modal_wrap.on .view_text {
    opacity: 1;
    animation: opacity_delay1 0.8s;
}
#story_modal_wrap .view_text::-webkit-scrollbar { display: none;}
#story_modal_wrap .view_text::-webkit-scrollbar-track { display: none; }
#story_modal_wrap .view_text::-webkit-scrollbar-thumb {
    display: none;
}
#story_modal_wrap .view_text::-webkit-scrollbar-button { display: none; }
#story_modal_wrap .text_title{
    font-family: 'Noto Sans KR';
    font-weight: 600;
    font-size: 22px;
    line-height: 33px;
    color: #414144;
    padding-bottom: 8px;
    padding-left: 10px;
}
#story_modal_wrap .text_line{
    border-top: 1px solid #c4c4c4;
    margin: 0;
    position: relative;
}
#story_modal_wrap .text_data{
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    text-align: right;
    color: #929292;
    padding-top: 12px;
    position: relative;
    letter-spacing: 1px;
}
#story_modal_wrap .data_bar{
    padding-left: 10px;
    margin-left: 9px;
    color: #7c7c7c;
    font-weight: normal;
    position: relative;
    display: inline-block;
}
#story_modal_wrap .data_bar:after {
    content: "";
    width: 1px;
    height: 12px;
    background-color: #ddd;
    position: absolute;
    left: 0;
    top: -12px;
}
#story_modal_wrap .text_cont{
    position: relative;
    padding: 0 45px;
    word-break: break-all;
}
#story_modal_wrap .page_prev_next{
    width: 100%;
    height: auto;
    margin-top: 50px;
    border-top: 1px solid #909090;
    padding-bottom: 90px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    bottom: 0;
}
#story_modal_wrap .prev_title,
#story_modal_wrap .next_title{
    font-family: "Noto Sans KR";
    font-weight: bold;
    padding: 5px 10px;
    font-size: 16px;
    width: 100px;
    height: 50px;
    line-height: 36px;
    border-bottom: 1px solid #ddd;
}
#story_modal_wrap .next_title{
    border-bottom: 1px solid #909090;
}
#story_modal_wrap .prev_subject,
#story_modal_wrap .next_subject{
    float: left;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    width: calc(100% - 100px);
    display: -webkit-box;
    overflow: hidden;
    vertical-align: top;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}
#story_modal_wrap .next_subject{
    border-bottom: 1px solid #909090;
}
#story_modal_wrap .prev_subject:hover a,
#story_modal_wrap .next_subject:hover a{
    color: #ff8000;
}
#story_modal_wrap .menu_title{
    font-family: "Noto Sans KR";
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #333333;
    padding: 0;
    display: flex;
    align-items: center;
}
#story_modal_wrap .menu_title span{
    margin-right: 6px;
}
#story_modal_wrap .menu_title span:before{
    content: '';
    position: relative;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    display: inline-block;
}
#story_modal_wrap .menu_title .ic_color1_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top1_1.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_modal_wrap .menu_title .ic_color1_2:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top1_2.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_modal_wrap .menu_title .ic_color2_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top2_1.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_modal_wrap .menu_title .ic_color2_2:before {
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top2_2.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_modal_wrap .menu_title .ic_color2_3:before {
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top2_3.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_modal_wrap .menu_title .ic_color3_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top3_1.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_modal_wrap .menu_title .ic_color3_2:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top3_2.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_modal_wrap .menu_title .ic_color4_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top4_1.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_modal_wrap .menu_title .ic_color4_2:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top4_2.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_modal_wrap .text_img{
    position: relative;
    width: 100%;
    margin-top: 44px;
    margin-bottom: 20px;
    background: #f3f3f3;
    padding: 0;
}
#story_modal_wrap .text_img#text_img_mobile{
    display: none;
}
#story_modal_wrap .text_img#text_img_pc{
    display: block;
}
#story_modal_wrap .img_thumbnail{
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 30px;
    height: 100%;
    width: 100%;
    object-fit: contain;
}
#story_modal_wrap.on .view_title{
    margin: 0 70px;
}

@media screen and (max-width: 1140px) {
    #story_modal_wrap .story_modal_inner {
        width: 0;
        height: 100%;
        max-width: none;
        max-height: none;
        transform: none;
        top: 0;
        left: 0;
        border-radius: 0;
        transition: width 0.3s ease-out;
    }

    #story_modal_wrap.on .story_modal_inner {
        width: 100%;
        height: 100%;
        transform: none;
    }

    #story_modal_wrap #story_view {
        background: #f3f3f3;
    }

    #story_modal_wrap .story_close {
        top: 22px;
        right: 20px;
    }

    #story_modal_wrap .story_close:before,
    #story_modal_wrap .story_close:after {
        width: 20px;
    }

    #story_modal_wrap .view_bar {
        height: 70px;
    }

    #story_modal_wrap .bar_menu {
        padding: 0;
        background: #FFFFFF;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    }

    #story_modal_wrap .menu_title {
        padding: 20px;
        font-size: 20px;
    }

    #care_modal_wrap .menu_title span {
        width: 30px;
        height: 26px;
        margin-right: 4px;
    }

    #story_modal_wrap .menu_title span:before {
        width: 30px;
        height: 26px;
    }

    #story_modal_wrap .menu_title .ic_color1_1:before,
    #story_modal_wrap .menu_title .ic_color1_2:before,
    #story_modal_wrap .menu_title .ic_color3_1:before,
    #story_modal_wrap .menu_title .ic_color4_1:before,
    #story_modal_wrap .menu_title .ic_color4_2:before {
        height: 30px;
    }

    #story_modal_wrap .view_text {
        margin: 34px;
    }

    #story_modal_wrap.on .view_text {
        height: calc(100% - 70px);
        margin: 0;
        background: unset;
        box-shadow: unset;
        border-radius: unset;
    }

    #story_modal_wrap .text_img {
        margin: 0;
        width: 100%;
        padding: 0;
    }

    #story_modal_wrap .text_img#text_img_mobile {
        display: block;
    }

    #story_modal_wrap .text_img#text_img_pc {
        display: none;
    }

    #story_modal_wrap.on .wrap_text {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        background: white;
        border-radius: 15px;
        margin: 20px;
    }

    #story_modal_wrap .text_title {
        display: -webkit-box;
        overflow: hidden;
        vertical-align: top;
        text-overflow: ellipsis;
        word-break: break-all;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        font-size: 18px;
        color: #333333;
        font-weight: 600;
        padding: 30px 20px 8px;
    }

    #story_modal_wrap .text_line {
        margin: 0 20px;
        width: calc(100% - 40px);
        position: relative;
    }

    #story_modal_wrap .title_pc {
        display: none;
    }

    #story_modal_wrap .text_data {
        padding: 10px 20px 10px;
        font-size: 14px;
        line-height: 19px;
    }

    #story_modal_wrap .view_cont {
        position: relative;
        margin: 0;
    }

    #story_modal_wrap .img_thumbnail {
        object-fit: cover;
        max-height: 370px;
        height: 100%;
        width: auto;
        padding: 10px 30px;
    }

    #story_modal_wrap .text_cont {
        padding: 30px 20px;
        overflow: hidden;
    }

    #story_modal_wrap .prev_subject,
    #story_modal_wrap .next_subject {
        height: 40px;
        line-height: 40px;
    }

    #story_modal_wrap .prev_title,
    #story_modal_wrap .next_title {
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
    }

    #story_modal_wrap.on .view_title {
        margin: 0;
    }

    #story_modal_wrap .page_prev_next {
        padding-bottom: 180px;
    }
    a:link, a:visited, a:focus, a:active{

    }
}

/* **************************************** *
* 06) 로딩 스타일 및 애니메이션
 * **************************************** */
#wrap_loading {
    width: 100%;
    height: 100%;
}
#wrap_loading #loading_img{
    position: absolute;
    width: 72%;
    height: 72%;
    max-width: 500px;
    max-height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: url('https://cheongmac.blob.core.windows.net/common/img_root05_story_loading.gif') center center/cover no-repeat;
}

@media screen and (max-width: 1140px){
    #story_modal_wrap.loading #story_view{
        background: white;
    }
    #wrap_loading #loading_img{
        width: 30%;
        height: 30%;
    }
}

/* **************************************** *
 * 07) 모달책 스타일 및 애니메이션
 * **************************************** */
@keyframes leftRightWave {
    0% {
        transform:translateX(10%);
    }
    50% {
        transform:translateX(50%);
    }
    100% {
        transform:translateX(10%);
    }
}
@keyframes RightGetOut {
    0% {
        left: 210px;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}
@keyframes opacity_rotale1 {
    0% {
        opacity: 0;
        transform: scale(1)rotate(0);
    }
    50% {
        opacity: 0;
        transform: scale(1)rotate(-325deg);
    }
    100% {
        opacity: 1;
        transform: scale(1)rotate(0);
    }
}

#story_root_modal_wrap {
    display: none;
    position: fixed;
    z-index: 50001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    font-family: 'NanumSquare', 'Noto Sans KR', sans-serif;
    color: #414144;
    background: rgba(119, 119, 119, 0.3);
}
#story_root_modal_wrap .story_modal_inner {
    position: absolute;
    border: none;
    width: 80%;
    height: 80%;
    max-width: 1140px;
    max-height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 800px);
    border-radius: 40px;
    filter: drop-shadow(2px 2px 5px rgba(209, 209, 209, 0.35));
    overflow: hidden;
    transition: transform 0.4s ease-out 0.4s;

}
#story_root_modal_wrap .story_close {
    position: absolute;
    top: 40px;
    right: 140px;
    font-size: 24px;
    font-weight: bold;
    z-index: 100;
    color: #333333;
    cursor: pointer;
    width: 34px;
    height: 34px;
    opacity: 0;
    transition: opacity 0.3s;
}
#story_root_modal_wrap .story_close:before {
    content: '';
    width: 34px;
    height: 2px;
    background: #333333;
    transform: rotate(
            225deg
    );
    top: 17px;
    left: 0;
    position: absolute;
    transition: transform 2s;
}
#story_root_modal_wrap .story_close:hover:before{
    transform: rotate(
            540deg
    );
    transition: transform 2s;
}
#story_root_modal_wrap .story_close:after {
    content: '';
    width: 34px;
    height: 2px;
    background: #333333;
    transform: rotate(
            -225deg
    );
    top: 17px;
    left: 0;
    position: absolute;
    transition: transform 2s;
}
#story_root_modal_wrap .story_close:hover:after{
    transform: rotate(
            90deg
    );
    transition: transform 2s;
}
#story_root_modal_wrap.on .story_close {
    opacity: 1;
    animation: opacity_rotale1 1.4s;
}
#story_root_modal_wrap .story_close:hover{
    transform: rotate(
            540deg
    );
    transition: transform 2s;
}
#story_root_modal_wrap .bb-item{
    width: 1040px;
    height: 700px;
    background:transparent;
    margin: 0 auto;
}
#story_root_modal_wrap .open_book_left{
    width: 50%;
    height: 100%;
    float: left;
}
#story_root_modal_wrap .bg_list_left_1{
    background:url("https://cheongmac.blob.core.windows.net/common/bg_root05_open_book_list_1.svg") -16% center/cover no-repeat;
}
#story_root_modal_wrap .bg_list_left_2{
    background:url("https://cheongmac.blob.core.windows.net/common/bg_root05_open_book_list_2.svg") -16% center/cover no-repeat;
}
#story_root_modal_wrap .bg_list_left_3{
    background:url("https://cheongmac.blob.core.windows.net/common/bg_root05_open_book_list_3.svg") -16% center/cover no-repeat;
}
#story_root_modal_wrap .bg_list_left_4{
    background:url("https://cheongmac.blob.core.windows.net/common/bg_root05_open_book_list_4.svg") -16% center/cover no-repeat;
}
#story_root_modal_wrap .open_book_right{
    width: 50%;
    height: 100%;
    float: left;
    padding: 94px 84px 50px 20px;
}
#story_root_modal_wrap .bg_list_right_1{
    background:url("https://cheongmac.blob.core.windows.net/common/bg_root05_open_book_list_1.svg") 116% center/cover no-repeat;
}
#story_root_modal_wrap .bg_list_right_2{
    background:url("https://cheongmac.blob.core.windows.net/common/bg_root05_open_book_list_2.svg") 116%  center/cover no-repeat;
}
#story_root_modal_wrap .bg_list_right_3{
    background:url("https://cheongmac.blob.core.windows.net/common/bg_root05_open_book_list_3.svg") 116% center/cover no-repeat;
}
#story_root_modal_wrap .bg_list_right_4{
    background:url("https://cheongmac.blob.core.windows.net/common/bg_root05_open_book_list_4.svg") 116% center/cover no-repeat;
}
#story_root_modal_wrap .bb-item > button{
    width: 300px;
    height: 40px;
    position: absolute;
    bottom: 15%;
    left: 50%;
    z-index: 2;
    border-radius: 20px;
    font-weight: bold;
    font-size: 17px;
    transform: translateX( calc(-50% + 210px));
}
#story_root_modal_wrap .move_leftRight{
    width: 16px;
    height: 16px;
    animation-name:leftRightWave;
    animation-duration:2s;
    animation-iteration-count:infinite;
    animation-timing-function : linear;
    position: relative;
    display: inline-block;
    left: 10px;
    top: 2px;
}
#story_root_modal_wrap .arrow_3_0{
    background:url("https://cheongmac.blob.core.windows.net/common/ic_root05_arrow_3_0.svg") center center/cover;
    z-index: 2;
}
#story_root_modal_wrap .arrow_3_1{
    background:url("https://cheongmac.blob.core.windows.net/common/ic_root05_arrow_3_1.svg") center center/cover;
    z-index: 2;
}
#story_root_modal_wrap .arrow_3_2{
    background:url("https://cheongmac.blob.core.windows.net/common/ic_root05_arrow_3_2.svg") center center/cover;
    z-index: 2;
}
#story_root_modal_wrap .arrow_3_3{
    background:url("https://cheongmac.blob.core.windows.net/common/ic_root05_arrow_3_3.svg") center center/cover;
    z-index: 2;
}
#story_root_modal_wrap .arrow_3_4{
    background:url("https://cheongmac.blob.core.windows.net/common/ic_root05_arrow_3_4.svg") center center/cover;
    z-index: 2;
}
#story_root_modal_wrap .bb-item > button:hover > .move_leftRight{
    animation-name:RightGetOut;
    animation-duration:0.5s;
    animation-timing-function : ease-in-out;
    animation-iteration-count:unset;
    opacity: 0;
    transition: all 0.6s;
}
#story_root_modal_wrap .jt_btn {
    display: inline-block;
    width: 100%;
    height: 50px;
    margin-top: 20px;
    position: relative;
    vertical-align: middle;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: 80px;
    background: transparent;
    overflow: hidden;
    -webkit-transition: color 1s cubic-bezier(.52, .08, .18, 1);
    transition: color 1s cubic-bezier(.52, .08, .18, 1);
}

#story_root_modal_wrap .jt_btn:after {
    content: '';
    display: block;
    width: 120%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: translateX(-110%) skewX(0);
    -ms-transform: translateX(-110%) skewX(0);
    transform: translateX(-110%) skewX(0);
    -webkit-transition: -webkit-transform 1s cubic-bezier(.52, .08, .18, 1);
    transition: transform 1s cubic-bezier(.52, .08, .18, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
#story_root_modal_wrap .jt_btn:hover:after {
    -webkit-transform: translateX(110%) skewX(0);
    -ms-transform: translateX(110%) skewX(0);
    transform: translateX(110%) skewX(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}
#story_root_modal_wrap .jt_btn.secondary:after {
    background: #fff;
}
#story_root_modal_wrap .jt_btn.secondary:hover {
    transition: all 3s;
}
#story_root_modal_wrap .open_btn_font{
    font-size: 20px;
    font-weight: 500;
    z-index: 2;
    position: relative;
}
#story_root_modal_wrap .jt_btn.secondary:hover > .open_btn_font{
    color: white;
}
#story_root_modal_wrap .border_0{
    border: unset;
}
#story_root_modal_wrap .border_1{
    border: 1px solid #E0543C;
}
#story_root_modal_wrap .border_2{
    border: 1px solid #4884D3;
}
#story_root_modal_wrap .border_3{
    border: 1px solid #F5B226;
}
#story_root_modal_wrap .border_4{
    border: 1px solid #33B595;
}
#story_root_modal_wrap .color_0{
    color: white;
}
#story_root_modal_wrap .color_1{
    color: #E0543C;
}
#story_root_modal_wrap .color_2{
    color: #4884D3;
}
#story_root_modal_wrap .color_3{
    color: #F5B226;
}
#story_root_modal_wrap .color_4{
    color: #33B595;
}
#story_root_modal_wrap .bg_0{
    background: white;
}
#story_root_modal_wrap .bg_1{
    background: #E0543C;
}
#story_root_modal_wrap .bg_2{
    background: #4884D3;
}
#story_root_modal_wrap .bg_3{
    background: #F5B226;
}
#story_root_modal_wrap .bg_4{
    background: #33B595;
}
#story_root_modal_wrap .bg_color1{
    background: #E0543C;
}
#story_root_modal_wrap .bg_color2{
    background: #4884D3;
}
#story_root_modal_wrap .bg_color3{
    background: #F5B226;
}
#story_root_modal_wrap .bg_color4{
    background: #33B595;
}
#story_root_modal_wrap .bb-page{
    background:transparent;
}
#story_root_modal_wrap .jt_btn.secondary:after {
    color: white;
}
#story_root_modal_wrap .effect_1.jt_btn.secondary:after{
    /*animation: sparkle 4s infinite linear;*/
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, rgba(224, 84, 60, 0) 24.97%, #B3331C 34.3%, #B3331C 68.15%, rgba(224, 84, 60, 0) 78.57%);
    background-size: 100% 100%;
    border: 0;
}
#story_root_modal_wrap .effect_2.jt_btn.secondary:after{
    /*animation: sparkle 4s infinite linear;*/
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, rgba(72, 132, 211, 0) 24.97%, #2259A0 34.3%, #2259A0 68.15%, rgba(72, 132, 211, 0) 78.57%);
    background-size: 100% 100%;
    border: 0;
}
#story_root_modal_wrap .effect_3.jt_btn.secondary:after{
    /*animation: sparkle 4s infinite linear;*/
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, rgba(245, 178, 38, 0) 24.97%, #D69000 34.3%, #D69000 68.15%, rgba(245, 178, 38, 0) 78.57%);
    background-size: 100% 100%;
    border: 0;
}
#story_root_modal_wrap .effect_4.jt_btn.secondary:after{
    /*animation: sparkle 4s infinite linear;*/
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, rgba(51, 181, 149, 0) 24.97%, #1F866D 34.3%, #1F866D 68.15%, rgba(51, 181, 149, 0) 78.57%);
    background-size: 100% 100%;
    border: 0;
}

#story_root_modal_wrap .notiBox{
    width:100%;
    float: none;
}
#story_root_modal_wrap .notiBox .box {
    border:0;
}
#story_root_modal_wrap .notiBox .box:hover{
    border:0
}
#story_root_modal_wrap .notiBox .cont {
    padding:0;
}
#story_root_modal_wrap .notiBox .cont a {
    position: relative;
}
#story_root_modal_wrap .notiBox .cont img {
    float: left;
    padding: 0;
    margin: 0 20px 0 0;
    width: 150px;
    height: 90px;
}
#story_root_modal_wrap .notiBox .cont img:hover a {
    color: #e05f2d;
}
#story_root_modal_wrap .notiBox .cont h2{
    margin:0;
    height:100px;
}
#story_root_modal_wrap .notiBox .cont h2 a{
    font-size: 16px;
    color: black;
    font-weight: 700;
    position: relative;
    line-height: 1.2;
    top: 16px;
    display: -webkit-box;
    overflow: hidden;
    vertical-align: top;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
#story_root_modal_wrap .notiBox .cont h2:hover > a{
    color:#e05f2d;
}
#story_root_modal_wrap .notiBox .cont .name{
    color: #333;
    font-size: 14px;
    font-weight: 500;
}
#story_root_modal_wrap .open_book_mark{
    width:26px;
    height:30px;
    position:absolute;
    left: -170px;
    top:0;
    padding-top: 2px;
    color: white;
    text-align: center;
}
#story_root_modal_wrap .open_book_mark.bg_1{
    background: url("https://cheongmac.blob.core.windows.net/common/ic_root05_open_book_mark_1.svg") center center/cover no-repeat;
}
#story_root_modal_wrap .open_book_mark.bg_2{
    background: url("https://cheongmac.blob.core.windows.net/common/ic_root05_open_book_mark_2.svg") center center/cover no-repeat;
}
#story_root_modal_wrap .open_book_mark.bg_3{
    background: url("https://cheongmac.blob.core.windows.net/common/ic_root05_open_book_mark_3.svg") center center/cover no-repeat;
}
#story_root_modal_wrap .open_book_mark.bg_4{
    background: url("https://cheongmac.blob.core.windows.net/common/ic_root05_open_book_mark_4.svg") center center/cover no-repeat;
}
#story_root_modal_wrap .open_book_label{
    left:0;
    top:0;
    color: white;
    text-align: center;
    padding: 5px 10px;
    font-size: 13px;
}
#story_root_modal_wrap .open_book_label:after {
    content: "";
    width: 0;
    height: 0;
    left: 11px;
    top: 21px;
    border-right: 16px solid white;
    border-top: 27px solid transparent;
    position: relative;
}

#story_root_modal_wrap .notiBox .box:hover h2 a {
    color: #e05f2d;
    font-weight: bold !important;
}

#story_root_modal_wrap .data_title span:before{
    content: '';
    position: relative;
    display: inline-block;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
}
#story_root_modal_wrap .data_title span.ic_color1_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top1_1.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_root_modal_wrap .data_title span.ic_color1_2:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top1_2.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_root_modal_wrap .data_title span.ic_color2_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top2_1.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_root_modal_wrap .data_title span.ic_color2_2:before {
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top2_2.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_root_modal_wrap .data_title span.ic_color2_3:before {
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top_3.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_root_modal_wrap .data_title span.ic_color3_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top3_1.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_root_modal_wrap .data_title span.ic_color3_2:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top3_2.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_root_modal_wrap .data_title span.ic_color4_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top4_1.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_root_modal_wrap .data_title span.ic_color4_2:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top4_2.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_root_modal_wrap.on .story_modal_inner {
    transform: translate(-50%, -50%);
    transition: transform 0.5s ease-out;
}
#story_root_modal_wrap #story_book_view{
    position: relative;
    overflow: hidden;
    background: transparent;
}
#story_root_modal_wrap .view_bar{
    position: relative;
}
#story_root_modal_wrap .bar_menu {
    width: 100%;
    background-color: #f5f5f5;
}
#story_root_modal_wrap .view_text{
    position: relative;
    overflow-y: scroll;
    opacity: 0;
    margin: 40px;
    background: white;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    border-radius: 15px;
    height: calc(100% - 180px);
}
#story_root_modal_wrap.on .view_text {
    opacity: 1;
    animation: opacity_delay1 0.8s;
}
#story_root_modal_wrap .view_text::-webkit-scrollbar { display: none;}
#story_root_modal_wrap .view_text::-webkit-scrollbar-track { display: none; }
#story_root_modal_wrap .view_text::-webkit-scrollbar-thumb {
    display: none;
}
#story_root_modal_wrap .view_text::-webkit-scrollbar-button { display: none; }
#story_root_modal_wrap .text_title{
    font-family: 'Noto Sans KR';
    font-weight: 500;
    font-size: 24px;
    line-height: 33px;
    color: #333333;
    padding: 30px 20px;
    position: relative;
}
#story_root_modal_wrap .text_line{
    border-top: 1px solid #888888;
    margin: 0 20px;
    position: relative;
}
#story_root_modal_wrap .text_data{
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    text-align: right;
    color: #929292;
    padding: 10px 20px;
    position: relative;
}
#story_root_modal_wrap .text_cont{
    position: relative;
    padding: 0 20px;
    word-break: break-all;
}
#story_root_modal_wrap .menu_title{
    font-family: "Noto Sans KR";
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #333333;
    padding: 36px 54px 36px 90px;
}
#story_root_modal_wrap .list_title span:before{
    content: '';
    position: absolute;
    top: 32px;
    left: 40px;
    width: 38px;
    height: 34px;
}
#story_root_modal_wrap .list_title .ic_color1_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top1_1.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_root_modal_wrap .list_title .ic_color2_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top2_1.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_root_modal_wrap .list_title .ic_color3_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top3_1.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_root_modal_wrap .list_title .ic_color4_1:before{
    background: url('https://cheongmac.blob.core.windows.net/common/ic_root05_top4_1.png') center center/cover no-repeat;
    mix-blend-mode: multiply;
}
#story_root_modal_wrap .text_img{
    position: relative;
    width: 100%;
}
#story_root_modal_wrap .img_thumbnail{
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 28px 0;
}
#story_root_modal_wrap .care_prev_next{
    width: 100%;
    height: auto;
    margin-top: 50px;
    border-top: 1px solid #909090;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    bottom: 0;
}

@media screen and (max-width:1140px){

    #story_root_modal_wrap .bb-item{
        width: 100%;
        max-width: unset;
        height: 100%;
        background: #f6f7f9;
    }
    #story_root_modal_wrap .open_book_left{
        display: none;
    }
    #story_root_modal_wrap .bb-item > button{
        left: -440px;
        top: 625px;
    }
    #story_root_modal_wrap .notiBox .cont img{
        float: left;
        padding: 0;
        margin: 0 20px 0 0;
        width: 130px;
        height: 80px;
    }
    #story_root_modal_wrap .open_book_right{
        width: 100%;
    }
    #story_root_modal_wrap .bg_list_right_1 {
        padding: 60px 20px;
        background: url('https://cheongmac.blob.core.windows.net/common/bg_root05_open_book_list_1.svg') 100% center/cover no-repeat;
    }
    #story_root_modal_wrap .bg_list_right_2 {
        padding: 60px 20px;
        background: url('https://cheongmac.blob.core.windows.net/common/bg_root05_open_book_list_2.svg') 100% center/cover no-repeat;
    }
    #story_root_modal_wrap .bg_list_right_3 {
        padding: 60px 20px;
        background: url('https://cheongmac.blob.core.windows.net/common/bg_root05_open_book_list_3.svg') 100% center/cover no-repeat;
    }
    #story_root_modal_wrap .bg_list_right_4 {
        padding: 60px 20px;
        background: url('https://cheongmac.blob.core.windows.net/common/bg_root05_open_book_list_4.svg') 100% center/cover no-repeat;
    }
    #story_root_modal_wrap .open_book_mark{
        width: 26px;
        height: 30px;
        position: absolute;
        left: -144px;
        top: 0;
        color: white;
        text-align: center;
    }
    #story_root_modal_wrap .notiBox .cont h2{
        padding-right: 0;
    }
    #story_root_modal_wrap .notiBox .cont h2 a {
        font-size: 16px;
    }
    #story_root_modal_wrap.on .story_close {
        right: 20px;
    }
    #story_root_modal_wrap .story_modal_inner {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        transform: none;
        top: 0;
        left: 0;
        border-radius: 0;
        transform: translateY(100%);
        transition: transform 0.4s ease-out 0.4s;
    }
    #story_root_modal_wrap.on .story_modal_inner {
        transform: translateY(0);
        transition: transform 0.5s ease-out;
    }
    #story_root_modal_wrap .page_title{
        display: block;
    }

    #story_root_modal_wrap .view_text{
        margin: 34px;
    }
    #story_root_modal_wrap.on .view_text{
        height: calc(100% - 200px);
        background: white;
        margin: 20px;
    }
    #story_root_modal_wrap .text_title{
        font-size: 20px;
        color: #333333;
        font-weight: 600;
        padding: 20px;
    }
    #story_root_modal_wrap .title_pc{
        display: none;
    }

    #story_root_modal_wrap .text_data{
        font-size: 16px;
        text-align: left;
        font-size: 14px;
        line-height: 19px;
        color: #BABABA;
    }
    #story_root_modal_wrap .view_cont{
        position: relative;
        margin: 0;

    }
    #story_root_modal_wrap .page_btn{
        text-align: center;
        padding-bottom: 40px;
    }

    #story_root_modal_wrap .img_thumbnail{
        padding: 20px;
    }
}

/* **************************************** *
 * 08) 루트페이지 스타일 및 애니메이션
 * **************************************** */
@keyframes upDownWave {
    0% {
        transform:translateY(0);
    }
    50% {
        transform:translateY(-20%);
    }
    100% {
        transform:translateY(0);
    }
}
@keyframes upDownScale {
    0% {
        transform:scale(1.3)translateY(30px);
    }
    50% {
        transform:scale(1.4)translateY(30px);
    }
    100% {
        transform:scale(1.3)translateY(30px);
    }
}

.root_05{
    width: auto;
    max-width: unset;
    margin: 0;
    padding: 0;
    position: static;
}
.root_05 .root_05_t{
    width: 520px;
    height: auto;
    margin: 0 auto;
    position: relative;
}
.root_05 .root_05_t > .title{
    max-width: 1200px;
    font-family: NanumSquare;
    font-size: 30px;
    color: black;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    line-height: 1.5;
}
.root_05 .title_s{
    max-width: 1200px;
    font-family: NanumSquare;
    font-size:18px;
    color: black;
    margin: 50px auto 0;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    animation-name:upDownWave;
    animation-duration:2s;
    animation-iteration-count:infinite;
    animation-timing-function : linear;
    position: relative;
}
.root_05 .bold{
    font-weight: bold;
}
.root_05 .card_table{
    height: 450px;
    position: relative;
    margin-top: 20px;
}
.root_05 .card_table > .cards{
    max-width: 1200px;
    width: 100%;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 2;
}
.root_05 .card_table > .table{
    width: 100%;
    height: 250px;
    background:#f9f9f9;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 200px;
}
.root_05 .card_table > .cards > div{
    float:left;
    width: 25%;
    height: 450px;
    padding: 10px;
}
.root_05 .card_table > .cards > div:hover{
    cursor: pointer;
}
.root_05 .card_table > .cards > div:hover > .img{
    filter: drop-shadow(2px 2px 7px rgba(176,176,176,0.75));
    animation-name:upDownScale;
    animation-duration:2s;
    animation-iteration-count:infinite;
    animation-timing-function : linear;
}
.root_05 .card_table > .cards > div > .img{
    width: 100%;
    height: 60%;
    transform: scale(1.3)translateY(30px);
    transform-origin: center bottom;
}
.root_05 .card_table > .cards > div > .txt{
    width: 100%;
    height: auto;
    margin-top:20px;
    display:inline-block;
    text-align: center;
}
.root_05 .card_table > .cards > div > .txt > div > .txt_label{
    background:#c03f26;
    color: white;
    font-family: NanumSquare;
    font-size:18px;
    width: 75px;
    margin: 10px;
    text-align: center;
    float:left;
}
.root_05 .card_table > .cards > div > .txt > div > .txt_label .label_p{
    padding-top:3px;
}
.root_05 .card_table > .cards > div > .txt > div > .txt_title{
    font-family: NanumSquare;
    font-size:24px;
    color: black;
    margin: 12px 0 0;
    display: inline-block;
}
.root_05 .card_table > .cards > div > .txt > .txt_info{
    font-family: NanumSquare;
    font-size:18px;
    color: black;
    text-align: center;
}
.root_05 .card_table > .cards > div > .txt > .txt_wrap{
    display:inline-block;
}
.root_05 .card_table > .cards > .card1 > .img{
    background:url("https://cheongmac.blob.core.windows.net/common/img_root05_book1.png") no-repeat center center/cover;
    background-size: 55%;
}
.root_05 .card_table > .cards > .card2 > .img{
    background:url("https://cheongmac.blob.core.windows.net/common/img_root05_book2.png") no-repeat center center/cover;
    background-size: 55%;
}
.root_05 .card_table > .cards > .card3 > .img{
    background:url("https://cheongmac.blob.core.windows.net/common/img_root05_book3.png") no-repeat center center/cover;
    background-size: 55%;
}
.root_05 .card_table > .cards > .card4 > .img{
    background:url("https://cheongmac.blob.core.windows.net/common/img_root05_book4.png") no-repeat center center/cover;
    background-size: 55%;
}
.root_05 .root_05_t > .title:before {
    content: "";
    position: absolute;
    top: 45px;
    left: -40px;
    width: 50px;
    height: 50px;
    background:url("https://cheongmac.blob.core.windows.net/common/ic_root05_first_comma.svg") no-repeat center center/cover;
    background-size:60% 84%;
    opacity: 0.5;
}
.root_05 .root_05_t > .title:after {
    content: "";
    position: absolute;
    top: 55px;
    right: -40px;
    width: 50px;
    height: 50px;
    background:url("https://cheongmac.blob.core.windows.net/common/ic_root05_last_comma.svg") no-repeat center center/cover;
    background-size:60% 84%;
    opacity: 0.5;
}

@media screen and (max-width:1140px){
    .root_05 .root_05_t{
        width: 350px;
        height: auto;
    }
    .root_05 .root_05_t > .title{
        max-width: 350px;
    }
    .root_05 .root_05_t > .title:before {
        left: -30px;
    }
    .root_05 .root_05_t > .title:after {
        top: 100px;
        right: 45px;
    }
    .root_05 .card_table{
        height: 1300px;
    }
    .root_05 .card_table > .cards{
        top:10%
    }
    .root_05 .card_table > .cards > div{
        width: 50%;
        height: 550px;
    }
    .root_05 .card_table > .table{
        display: none;
    }
    .root_05 .card_table > .cards > div > .img {
        width: 100%;
        height: 80%;
    }
}
@media screen and (max-width:574px){
    .root_05 .card_table{
        height: 1100px;
    }
    .root_05 .card_table > .cards > div{
        height: 450px;
    }
    .root_05 .card_table > .cards > div > .txt > div > .txt_title{
        font-size:18px;
    }
    .root_05 .card_table > .cards > div > .img {
        width: 100%;
        height: 50%;
    }
}

/* **************************************** *
 * 08) 나뭇잎 스타일 및 애니메이션
 * **************************************** */
.root_wrap{
    position: relative;
}
#root_contents{
    background: url('https://cheongmac.blob.core.windows.net/common/bg_root05_cardtable.png') center bottom/cover no-repeat;
}
#root_contents:before{
    content: '';
    background: url('https://cheongmac.blob.core.windows.net/common/bg_root05_contants.png') center bottom/cover no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    mix-blend-mode: darken;
}
#root_contents .card_table > .table{
    display: none;
}
#root_contents .left_tree{
    background: url('https://cheongmac.blob.core.windows.net/common/bg_root05_lefttree.png') center center/cover no-repeat;
    width: 100%;
    height: 100%;
    max-width:685px;
    max-height:475px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    mix-blend-mode: multiply;
}
#root_contents .left_tree:before{
    content: '';
    background: url('https://cheongmac.blob.core.windows.net/common/bg_root05_lefttree_shadow.png') center center/cover no-repeat;
    width: 100%;
    height: 100%;
    max-width:685px;
    max-height:475px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    mix-blend-mode: multiply;
}
#root_contents .right_tree{
    background: url('https://cheongmac.blob.core.windows.net/common/bg_root05_righttree.png') center center/cover no-repeat;
    width: 100%;
    height: 100%;
    max-width:685px;
    max-height:475px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    mix-blend-mode: multiply;
}
#root_contents .right_tree:before{
    content: '';
    background: url('https://cheongmac.blob.core.windows.net/common/bg_root05_righttree_shadow.png') center center/cover no-repeat;
    width: 100%;
    height: 100%;
    max-width:685px;
    max-height:475px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    mix-blend-mode: multiply;
}

/* **************************************** *
* 09) 에디터내부 스타일
 * **************************************** */
.cont_scroll{
    font-family: 'Pretendard';
}

.cont_scroll p span { word-break: normal; }
