/* main */
.section01 { position: relative; width: 100%; height: 100%; max-height: 979px; display: flex; flex-wrap: nowrap; }
.scroll_box { position: relative; width: 15%; background: url('/images/common/bg01.jpg');}
.scroll_box > span::before { content: ''; display: block; width: 2px; height: 200px; background: #bababa; margin: 0 auto; position: absolute; bottom: 0; left: 0; right: 0; }
.scroll_box > span::after { content: ''; display: block; width: 10px; height: 10px; background: #50504f; border-radius: 100%; margin: 0 auto; position: absolute; bottom: 200px; left: 0; right: 0; animation: scroll 3s ease-in-out infinite  }
@keyframes scroll {
    0% { bottom: 200px; opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { bottom: 0px; opacity: 0; }
}
.video{
    width:100%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
video{
    margin: none;
}
.main_slide { position: relative; width: 100%; /*max-width: 1650px;*/ overflow: hidden; }
.main_slide .swiper-wrapper .swiper-slide img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 1.5s ease-in-out;
    transform: scale(1.2);
}
.main_slide .swiper-wrapper .swiper-slide-active img {
    transform: scale(1);
}
.main_slide .swiper-slide > .txt { position: absolute; display: block; z-index: 100; width: 440px; height: 130px; background: url('/images/common/bg01.jpg'); right: 0; bottom: 0; text-align: center; }
.main_slide .swiper-slide > .txt span { display: block; margin-top: 25px; font-size: 0.9em; color: #243933; text-transform: uppercase; font-family: "El Messiri", sans-serif; }
.main_slide .swiper-slide > .txt p { font-size: 1.1em; line-height: 2em; color: #313131; text-transform: uppercase; font-family: "El Messiri", sans-serif;}
pre{font-family: 'Arita-dotum-Medium'; font-weight: 500;}
.main_button { position: absolute; display: block; z-index: 100; width: 440px; height: 130px; right: 0; bottom: 0; text-align: center; }
.main_button > .scroll { position: absolute; width: 100px; bottom: 25px; right: 210px; z-index:100000; }
.main_button > .scroll .main-scrollbar { height: 3px; opacity: 1 !important; }

.main_button > .current { color: #414241; font-size: 0.8em; font-style: italic; }
.main_button > .current .main-pagination{ bottom: 20px !important; left: unset !important; right: 130px !important; width: 80px !important; }

.main_button > .move { position: absolute; width: 80%; left:50%; top: 50%; transform: translate(-50%,-50%); }
.main_button > .move .visual_prev { float: left; cursor: pointer; }
.main_button > .move .visual_next { float: right; cursor: pointer; }
.main_button > .move i > img {width: 13px;}
/* @media (max-width: 900px) {
.main_slide .swiper-slide > .txt { position: absolute; display: block; z-index: 100; width: 200px; height: 130px; background: white; right: 0; bottom: 0; text-align: center; }
.main_button { position: absolute; display: block; z-index: 100; width: 200px; height: 130px; right: 0; bottom: 0; text-align: center; }
} */
 @media(max-width:800px){
    .main_button {width: 100%;}
    .main_button > .scroll {width: 50%; right: 50%; transform: translateX(50%);}
    .main_slide .swiper-slide > .txt { width: 100%; height: 70px; }
 }
@media (max-width: 800px) {
    .section01 { position: relative; width: 100%; height: calc(75% - 60px); max-height: 550px; display: flex; flex-wrap: nowrap; }
    .main_slide .swiper-slide > .txt span { display: block; margin-top: 15px; font-size: 0.6em; color: #243933; text-transform: uppercase;  }
    .main_slide .swiper-slide > .txt p { font-size: 0.88em; line-height: 2em; color: #313131; text-transform: uppercase;  }
    .main_slide .swiper-wrapper .swiper-slide img { object-position: 50% 75%; }

    .main_button { width: 100%; height: 70px; }
    .main_button > .move { 
        width: 87%;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%); 
    }
    /* .main_button > .move i > img { width: 13px; } */
    .main_button > .scroll, .main_button > .current { display: none; }

    .scroll_box > span::before { content: ''; display: block; width: 2px; height: 100px; background: #bababa; margin: 0 auto; position: absolute; bottom: 0; left: 0; right: 0; }
    .scroll_box > span::after { content: ''; display: block; width: 10px; height: 10px; background: #50504f; border-radius: 100%; margin: 0 auto; position: absolute; bottom: 100px; left: 0; right: 0; animation: scroll 3s ease-in-out infinite  }
    @keyframes scroll {
        0% { bottom: 100px; opacity: 0; }
        30% { opacity: 1; }
        70% { opacity: 1; }
        100% { bottom: 0px; opacity: 0; }
    }
}

.section .main_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 170px;
    background-color: #202C4D;
}
.section .main_logo img {
    width: 414px;
}

@media(max-width:500px) {
    .section .main_logo {
        height: 76px;
    }
    .section .main_logo img {
        width: 186px;
    }
}


.section02 {position: relative; width: 100%; height: 100%; max-height: 979px; 
    
    /* background: url(/images/common/bg_shuttle_pc.png) no-repeat 50% 50%;
    background-size: cover; */
}
.section02::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/images/common/bg_shuttle_pc.png) no-repeat 50% 50%;
    background-size: cover;
    filter: hue-rotate(0deg);
    animation: bgFilterAnimation 8s infinite normal;
}
@keyframes bgFilterAnimation {
    0% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(360deg);
    }
    100% {
        filter: hue-rotate(0deg);
    }
}
.section02 .roomlist.swiper-wrapper, .section02 .roomlist_m > .swiper-wrapper { 
    z-index: -1 !important;
    /* opacity: 0;
    transition: opacity 0.5s ease-in-out;  */
}
.section02 .roomlist.swiper-wrapper img, .section02 .roomlist_m > .swiper-wrapper img{ 
    /* opacity: 0;
    transition: opacity 0.5s ease-in-out;  */
}

.section02 > .title { width: 100%; text-align: center; color: #000000; padding: 5% 0 2.5% 0; }
.section02 > .title h1 {
    position: relative; 
    text-transform: uppercase; 
    font-size: 2.7em; 
    letter-spacing: 1.5px; 
    color: #1A2A58;
}
.section02 > .title h1:after { 
    content: ''; display: block; position: absolute;
    top: 90px; left: 50%; transform: translateX(-50%);
    width: 46px; height: 2px; 
    background-color: #1A2A58;
}
.section02 > .title p {margin-top: 70px; font-weight: 500; font-size: 0.9em; opacity: 0;}

.btn_slide {
    position: absolute;
    z-index: 1;
    top: 34%;
    left: 39%;
    width: 34%;
    height: 45%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.btn_slide .more_box {
    display: inline-block;
    width: 100%;
    height: 100%;
}
.room_slide {
    position: relative;
    width: 1000px;
    margin: 0 auto;
    padding-top: 10px;
    padding-right: 37px;
}
.room_slide .roomlist_move {
    position: absolute;
    top: 25%;
    right: 29%;
    width: 44vw;
    height: 1px;
    z-index: 10;
}
.room_slide .roomlist_move li {
    display: flex;
    justify-content: space-between;
}
.room_slide .roomlist_move .visual_prev { cursor: pointer; }
.room_slide .roomlist_move .visual_next { cursor: pointer; }
.room_slide .roomlist_move img {width: 140%;} 

@media(max-width:1700px){
    .room_slide .roomlist_move {
        top: 29%;
        right: 32%;
    }
}
@media(max-width:1500px){
    .room_slide .roomlist_move {
        top: 29%;
        right: 32%;
        width: 688px;
    }
}
@media(max-width:1200px){
    .room_slide .roomlist_move {
        top: 36%;
        right: 32%;
        width: 688px;
    }
}

.roomlist { width: 100%; max-width: 100%; margin: 0 auto; 
    /* background: url('/images/common/bg_shuttle_pc.png') no-repeat top center ; 
    background-size: 1000px 373px; */
    
}
.roomlist .bg_box {
    
}
.roomlist li { margin: 0 auto !important; }
.roomlist li a { display: flex; margin: 0 auto !important; justify-content: center; cursor: default;}
.roomlist li a > .name { writing-mode: vertical-rl; color: #393d3c; font-family: 'Arita-dotum-Medium'; font-weight: 500; }
.roomlist li a > .name span{writing-mode:horizontal-tb }
.roomlist li a > .box { 
    position: relative; width: 1000px; color: #fff; cursor: pointer; 
    width: 100%;
    height: 100%;
    text-align: right;
}
.roomlist li a > .box img {max-height: 482px; position: relative;}
.roomlist li a > .box > .hover { position: absolute;  width: 100%; top: 65.5%; left: 0;  box-sizing: border-box; padding: 4% 8%; opacity: 1; transition: all 0.3s; }
.roomlist li a > .box > .hover h1 {
    font-size: 1.8em; 
    padding-right: 42%;
    text-shadow: 2px 2px 1px #333;
}
.section02 .more_view {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38px;
    height: 38px;
    margin: 14px 0 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    text-align: center;
    background: #fff;
}
.section02 .more_view img {
    display: inline-block;
    transition: 0.5s;
    width: 28px;
    filter: invert(1);
}

.roomlist_m { position: relative; touch-action: auto !important;}
.roomlist_m > .swiper-wrapper { height: unset !important; }
.roomlist_m ul li > .img {width: 100%; margin: 0 auto; box-sizing: border-box;  }
.roomlist_m ul li > .img .room_img { width: 100%; }
.roomlist_m ul li > .img .txt { padding-bottom: 8%; background-color: #799afa; }
.roomlist_m ul li > .img .txt h1 {margin-top: 7%; font-size: 1.2em; font-weight: 500; }
.roomlist_m ul li > .img .txt span:nth-of-type(1) { float: left; font-size: 0.8em; font-family: 'Arita-dotum-Medium'; }
.roomlist_m ul li > .img .txt span:nth-of-type(2) { float: right; vertical-align: middle; }
.roomlist_m ul li > .img .txt span:nth-of-type(2) img { width: 50px; max-width: 100%; }
.roomlist_btn { position: absolute; left: 50%; top: 45%; transform: translate(-50%, -50%); z-index: 10; width: 90%; display: flex; justify-content: space-between; }
.roomlist_btn i { cursor: pointer; }

@media (max-width: 1200px) {
    .section02 > .title { width: 100%; text-align: center; padding: 0 0 2.5% 0; }
    .btn_slide {
        top: 33%;
        left: 39%;
        width: 39%;
        height: 45%;
    }
}
@media (max-width: 900px) {
    .section02 { 
        width: 100%; height: unset; max-height: unset; padding-top: 8%; 
        /* background: url('/images/common/bg_shuttle_mo.png') no-repeat; 
        background-size: 128% auto;
        background-position: 56% 71%; */
    }
    .section02::before {
        background: url('/images/common/bg_shuttle_mo.png') no-repeat; 
        background-size: 128% auto;
        background-position: 56% 71%;
    }
    .section02 > .title h1 {margin-bottom: 15px; text-transform: uppercase; font-size: 1.2em; letter-spacing: 1.5px; }
    .section02 > .title h1:after{
        top: 45px; left: 50%; transform: translateX(-50%);
        width: 46px; height: 2px; 
    }
    .section02 > .title p {position: relative; font-size: 0.8em; margin-top: 30px; opacity: 1;}
    .roomlist_m ul li > .img .txt span:nth-of-type(2) img { width: 45px; }
    .roomlist_btn { left: 50%; top: -6%; transform: translate(-50%, -50%); z-index: 10; width: 50%; display: flex; justify-content: space-between; }

    .btn_slide {
        top: 46%;
        left: 36%;
        width: 62%;
        height: 34%;
    }
    .section02 .more_view {
        width: 25px;
        height: 25px;
        margin: 10px;
    }
    .section02 .more_view img {
        width: 19px;
    }
    .roomlist_m ul li .room_name {
        position: absolute;
        top: 66%;
        right: 43%;
        width: max-content;
        color: #fff;
        font-size: 16px;
        text-shadow: 2px 2px 1px #333;
    }

}
@media (max-width: 670px) {
    .section02 { padding: 12% 0 0 0;}
    /* .roomlist_m { padding-bottom: 15%; } */
}
@media (max-width: 570px) {
    .section02 { padding: 15% 0 0 0;}
    .section02 > .title h1:after{
        
    }
    .main_slide .swiper-slide > .txt {opacity:70%;}
    .scroll_box{
        display:none;
    }
}
@media (max-width:768px){
    .roomlist_m ul li .room_name {
        top: 66%;
        right: 43%;
    }
}
@media (max-width:500px){
    .roomlist_m ul li .room_name {
        top: 60%;
        right: 45%;
    }
}
@media (max-width:430px){
    .roomlist_m ul li .room_name {
        top: 59%;
        right: 47%;
    }
}
@media (max-width:399px){
    .roomlist_m ul li .room_name {
        top: 58%;
        right: 47%;
    }
}

@media (max-width:370px){
    .roomlist_m ul li .room_name {
        top: 57%;
        right: 47%;
    }
}

.section03 { 
    position: relative; width: 100%; 
    background: url('/images/common/bg04.jpg');
    background-size: cover; 
    background-position: top right;
    box-sizing: border-box; padding-top: 10%; 
    color: #fff; 
}

.section03 .bg_container {
    position: absolute;
    top: 0; right: 0; 
    width: 100%; height: 100%;
    overflow: hidden;
}
.section03 .bg_container::before {
    content: "";
    position: absolute;
    top: 0; right: 0; 
    width: 1340px; height: 400%;
    background: url('/images/common/bg04_line.png');
    opacity: 0.3; 
    pointer-events: none; 
    animation: moveBackground 20s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
} 
@keyframes moveBackground { 
    0% {
        background-position: 0 0%;
        opacity: 0.3;
        filter: brightness(0.6) hue-rotate(180deg);
    }
    25% {
        filter: brightness(1) hue-rotate(90deg);
    }
    50% {
        background-position: 0 60%;
        opacity: 0.8;
        filter: brightness(1) hue-rotate(0);
    }
    75% {
        filter: brightness(1) hue-rotate(90deg);
    }
    100% {
        background-position: 0 100%;
        opacity: 0.3;
        filter: brightness(0.6) hue-rotate(180deg);
    }
}
.section03 > .inner { position: relative; display: flex; flex-wrap: wrap; }
.section03 > .inner > .left { width: 100%; max-height: 100vh; position: sticky; top: 22%; }
.section03 > .inner > .left > h1 {letter-spacing: 3; text-indent: 2%; font-size: 2.3em; padding-bottom: 15%; }
.section03 > .inner > .left > .txt { width: 35%; text-align: right; }
.section03 > .inner > .left > .txt p { font-size: 1.3em; font-family: "El Messiri", sans-serif; letter-spacing: 2px; font-weight: bold;}
.section03 > .inner > .left > .txt p::after { content: ''; display: block; width: 100%; height: 1px; background: #ffffff; margin: 0 auto; margin: 4% 0; }
.section03 > .inner > .left > .txt span { display: block; font-size: 0.95em; line-height: 1.7em; padding-bottom: 20%; }
.section03 > .inner .left > .txt > a:hover { opacity: 0.4; transition: all 0.3s; } 
.section03 > .inner .right { display: flex; justify-content: flex-end; width: 55vw; margin-left: -55vw; margin-top: 5vw; margin-bottom: 5vw;  } 
.section03 > .inner .right .img .img_list {gap: 8%; width: 55vw; margin-right: 1.5vw; }
.section03 > .inner .right .img .img_list .img_mo {display: none;}
.section03 > .inner .right .img_list {display: flex; flex-wrap: wrap; justify-content: flex-end; }
.section03 > .inner .right .img_list li { z-index: 50; position: relative; }
.section03 > .inner .right .img_list li.img_pc { max-width: 46%; }
.section03 > .inner .right .img_list li:nth-of-type(2n) {margin: 10% 0 4% 0; }
.section03 > .inner .right .img_list h3 { margin: 7px 0; font-size: 25px;}

.section03 > .inner .right .img_list li .more_view {  /*이동 화살표 감싸는 박스*/
    position: absolute;
    bottom: 11px;
    right: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
}
.section03 > .inner .right .img_list li .more_view img {
    width: 70%;
    margin-left: -3px;
    transition: all 0.3s ease;
}
.section03 > .inner .right .img_list li .circle { /* 겹치는 원 박스 */
    position: absolute;
    bottom: 11px;
    right: 15px;
    display: block;
    width: 34px;
    height: 34px;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
} 
.section03 > .inner .right .img_list li.img_pc:nth-of-type(2n-1) .more_view, .section03 > .inner .right .img_list li.img_pc:nth-of-type(2n-1) .circle {
    bottom: 158px;
}
.section03 > .inner .right .img_list li.img_pc:nth-of-type(7) .more_view, .section03 > .inner .right .img_list li.img_pc:nth-of-type(7) .circle {
    bottom: 208px;
}
.section03 > .inner .right .img_list li.img_pc:nth-of-type(8) .more_view, .section03 > .inner .right .img_list li.img_pc:nth-of-type(8) .circle {
    bottom: 61px;
}
.section03 > .inner .right .img_list li:hover .more_view {
    right: 13px;
    background: #fff;
}
.section03 > .inner .right .img_list li:hover .more_view img {
    /* margin-left: 0; */
    filter: invert(1);
}
.section03 > .inner .right .img_list li:hover .circle {
    right: 13px;
}
.section03 > .inner .right .img_list li:hover img.list_pic {
    filter: brightness(0.7);
}
@media(max-width:1800px){
    .section03 > .inner .right .img_list li .more_view {
        opacity: 0;
    }
    .section03 > .inner .right .img_list li .circle {
        opacity: 0;
    }
}
@media(max-width:900px){
    .section03 > .inner .right .img_list li .more_view {
        opacity: 1;
        width: 27px;
        height: 27px;
        bottom: 47px;
        right: 8px;
        background: #ffffff;
    }
    .section03 > .inner .right .img_list li .more_view img {
        filter: invert(1);
    }
    .section03 > .inner .right .img_list li .circle {
        opacity: 1;
        display: none;
    }
}
@media(max-width:768px){
    
    
}


.pc_only { display: block; }
.mo_only { display: none; }

.section03 .inner_m { width: 100%; }
.section03 > .inner_m img { width: 100%; max-width: 100%; margin: 0; }
.section03 .inner_m > .txt { width: 90%; text-align: right; padding-bottom: 6%; }
.section03 .inner_m > .txt h1 { text-align: left; font-size: 2em; letter-spacing: 2.3px; opacity: 0.8; color: white; padding: 0 0 5% 3%; box-sizing: border-box; }
.section03 .inner_m > .txt p { font-size: 1em; font-weight: bold; }
.section03 .inner_m > .txt p::after { display: block; content: ''; width: 100%; height: 1px; background: #393d3c; margin: 1.5% auto; }
.section03 .inner_m > .txt span { font-size: 0.7em; }
.section03 .inner_m > .img01 { display: flex; width: 100%; align-items: flex-end; justify-content: space-between; }
.section03 .inner_m > .img01 > img { width: 65%; max-width: 100%; }
.section03 .inner_m > .img01 > .btn { width: 35%; margin: 5% 3%; text-align: center; }
.section03 .inner_m > .img01 > .btn:hover { opacity: 0.5; transition: all 0.3s; }
.section03 .inner_m > .img02 { width: 100%; display: flex; justify-content: flex-end; box-sizing: border-box; padding: 5% 0 0 20%; }

@media (max-width: 900px) {
    body {overflow-x: hidden; overscroll-behavior: none; touch-action: pan-y;}
    .section03 { width: 100%; background: url('/images/common/m/bg04.jpg'); box-sizing: border-box; padding: 5% 0 !important; }
    .section03 .bg_container::before {
        content: "";
        position: absolute;
        top: 19%; right: 0; 
        width: 100%; height: 400%;
        background: url('/images/common/m/bg04_line.png');
        background-size: 100% auto;
        opacity: 0.3; 
        pointer-events: none; 
        animation: moveBackground 20s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
    } 
    .section03 > .inner {
        display: block;
    }
    .section03 > .inner > .left {
        position: static;
    }
    .section03 > .inner > .left > h1 {
        padding-top: 10%;
        padding-left: 10px;
        font-size: 1.4em;
        letter-spacing: 1.4px;
    }
    .section03 > .inner > .left > .txt p {
        font-size: 1.2em;
    }
    .section03 > .inner > .left > .txt span {
        padding-left: 10px;
        font-size: 0.75em;
    }
    .section03 > .inner > .left > .txt {
        width: 100%;
        padding-right: 10%;
        box-sizing: border-box;
    }
    .section03 > .inner .right .img .img_list {
        justify-content: flex-start;
        width: auto;
        margin-right: 0;
    }
    .section03 > .inner .right .img_list li {
        width: 70%;
    }
    .section03 > .inner .right .img_list li:nth-of-type(2n) {
        margin-left: 30%;
    }
    .section03 > .inner .right .img .img_list .img_mo {display: block;}
    .section03 > .inner .right .img .img_list .img_pc {display: none;}
    .section03 > .inner .right {
        width: 100%;
        margin-left: 0;
    }

    .pc_only { display: none; }
    .mo_only { display: block; }
    .section03 > .inner .right .img_list h3 {
        font-size: 18px;
        text-align: right;
        padding-right: 8px;
    }
}

.section04 { width: 100vw; overflow: hidden; position: relative; }
.section04 > .inner { position: relative; width: 100%; }
.section04 > .inner > .zoom { position: sticky; top: 0; width: 100%; vertical-align: top; transition: all 2s; /*transition-timing-function: ease-in-out;*/}
.section04 > .inner > .inner_img > .fixed_img {height: auto; position: absolute; top: 0; width: 100%; z-index: 9000; }
.section04 > .inner > .inner_img > .fake { }
.section04 > .inner > .inner_img > .img_txt {z-index:10000; text-shadow: -65px -65px 65px #fff,65px 65px 65px #fff,-85px -85px 85px #fff,85px 85px 85px #fff,-85px 85px 85px #fff, 85px -85px 85px #fff, -55px 55px 65px #fff, 55px -55px 65px #fff; display: inline; position: absolute; top: 50%; left: 50%; right: 0; transform:translate(-50%,-50%); width: 20%; font-size: 1.1em; line-height: 1.5em; text-align: center; color: #fff;  transition: all 0.2s; }
/* #trigger1 { position: absolute; top: 45%; opacity: 0; } */
#trigger2 { position: absolute; top: 32%; opacity: 0; }

footer { width: 100vw; background: url('/images/common/bg05.jpg'); text-align: center; padding: 4% 0; color: #fff; font-size: 0.9em; overflow: hidden; font-weight: normal !important;}
footer .footer_inner > h3 { padding: 1.7% 0 1.3% 0; }
footer .footer_info li { line-height: 1.6em; }
footer .footer_info02 li { display: inline-block; padding: 1% 0; }
footer .footer_info02 li:nth-of-type(1):hover, footer .footer_info02 li:nth-of-type(2):hover { opacity: 0.5; transition: all 0.3s; }
footer .footer_info02 li b:hover { opacity: 0.5; transition: all 0.3s; }
footer .footer_info02 li+li:before { content: '|'; display: inline-block; margin: auto 5px; }
footer .footer_info02 li img { vertical-align: middle; }

@media (max-width: 900px) {
    footer {font-size: 0.73em;}
    footer .footer_logo a { display: block; width: 100px; margin: 0 auto; }
    footer .footer_logo a img { width: 100%; }
    footer .footer_inner > h3 { padding: 3% 0; font-size: 1em; }
    /* footer .footer_inner .footer_info01 { font-size: 0.8em; } */
    footer .footer_inner .footer_info02 { width: 100% !important; font-size: 0.6em; }
    footer .footer_info02 li+li:before { content: '|'; display: inline-block; margin: auto 1px; }
    footer .footer_info02 li img { width: 15px; vertical-align: middle; }
}

.section.story {position: relative;}
.section.story img {width: 100%;}
.section.story a.story_more {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 197px;
}
a.story_more span {
    font-size: 21px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}
a.story_more .more_view {  /*이동 화살표 감싸는 박스*/
    position: absolute;
    bottom: -3px;
    right: -52px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #333;
    border-radius: 50%;
    transition: all 0.3s;
}
a.story_more .more_view img {
    width: 70%;
    margin-left: -3px;
    transition: all 0.3s ease;
    filter: invert(1);
}
a.story_more .circle { /* 겹치는 원 박스 */
    position: absolute;
    bottom: -3px;
    right: -48px;
    display: block;
    width: 34px;
    height: 34px;
    border: 1px solid #333;
    border-radius: 50%;
    transition: all 0.3s;
} 
a.story_more:hover .more_view {
    right: -50px;
    background: #333;
}
a.story_more:hover .more_view img {
    /* margin-left: 0; */
    filter: invert(0);
}
a.story_more:hover .circle {
    right: -50px;
}
a.story_more:hover img.list_pic {
    filter: brightness(0.7);
}
@media(max-width:900px){
    a.story_more .more_view {
        background: #333;
    }
    a.story_more .more_view img {
        filter: invert(0);
    }
    a.story_more .circle {
        display: none;
    }
}
@media(max-width:768px){
    .section.story a.story_more {
        bottom: 15px;
    }
    a.story_more span {
        font-size: 16px;
    }
    a.story_more .more_view {
        right: -48px;
    }
}
/* 어바웃 : 메인 스페셜미리보기 템플릿*/

.section03.about { 
    background: url('/images/about/bg04.jpg');
    background-size: cover; 
    background-position: top right;
    color: #1A2A58;
}

.section03.about > .inner > .left > .txt {
    color: #232323;
}
.section03.about > .inner > .left > .txt p::after {
    background: #232323;
}
@media(max-width:900px){
    .section03 > .inner > .left > .txt span {
        padding-bottom: 6%;
    }
    .section03.about > .inner .right .img_list li {
        margin-top: 5%;
        margin-bottom: 5%;
    }
    .section03.about > .inner .right .img_list li:nth-of-type(n+5) {
        display: none;
    }
    
}