/* story */
.story {}
.story .content {
    position: relative;
}
.story .content .bg {
    display: flex;
    height: 100%;
}
.story .content .bg > div {
    height: 100%;
}
.story .content .bg .bg01 {
    width: calc(100% - 270px);
    background: url("/images/common/bg01.jpg") no-repeat center;
}
.story .content .bg .bg02 {
    width: 270px;
    background: url("/images/common/bg04.png") no-repeat center;
}
.story .content .bg .bg02 .title {
    display: none;
    height: 100%;
    margin: 0 auto;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: upright;
}
.story .content .main_cont {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}
.story .content .main_cont {
    height: 100%;
}
.story .content .main_cont .img01 {
    height: 100%;
}
.story .content .main_cont .img01 img {
    height: 100%;
    object-fit: cover;
}

.story .content .main_cont .main_txt {
    align-self: baseline;
    margin-top: 170px;
    text-align: center;
    color: #fff !important;
    text-shadow: 2px 2px 2px #061624;
}
.story .content .main_cont .main_txt .txt {
    margin: 140px 0;
    font-size: 1.3em;
}
/* story end */


/* 모바일 */
@media (max-width: 768px) {
   /* story */
    .story {}
    .story .content {
        position: relative;
        display: flex;
    }
    .story .content .bg {
        flex: 0.2;
        display: block;
        height: 100%;
    }
    .story .content .bg .bg01 {
        display: none;
    }
    .story .content .bg .bg02 {
        display: flex;
        width: 100%;
        height: 600px;
        justify-content: center;
        align-items: center;
        background-size: cover;
    }
    .story .content .bg .bg02 .title {
        display: block;
        margin: 0;
    }
    .story .content .main_cont {
        position: relative;
        display: block;
        flex: 0.8;
        height: 600px;
    }
    .story .content .main_cont .img02 {
        display: none;
    }
    .story .content .main_cont .main_txt {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: max-content;
        max-width: 90%;
        margin-top: 0;
        color: #061624;
    }
    .story .content .main_cont .title {
        display: none;
    }
    .story .content .main_cont .main_txt .txt {
        margin: 0;
        font-size: 1.1em;
    }
    /* story end */
}