/* CSS Document 
Theme Name: Fullpage Card Animation
Description: 
*/

/*--------------------------------------------------------------------------------*/
/*--------------------------------- FONT STYLES ----------------------------------*/
/*--------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------*/
/*------------------------------------ Basic -------------------------------------*/
/*--------------------------------------------------------------------------------*/

html {
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}
body {
    background-color: #fff;
    letter-spacing: -0.5px;
}

body,
td,
form,
input,
select,
textarea {
    font-size: 16px;
    font-family: 'NanumSquare', '돋움', 'Open Sans', sans-serif;
}

a:link {
    color: #333;
    text-decoration: none;
}
a:visited {
    color: #333;
    text-decoration: none;
}
a:hover {
    color: #333;
    text-decoration: none;
}
a:active {
    color: #333;
    text-decoration: none;
}
ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}
img {
    max-width: 100%;
}

body {
    font-family: 'NanumSquare', '돋움', Dotum, '돋움체';
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/*--------------------------------------------------------------------------------*/
/*----------------------------------- ANIMATION ----------------------------------*/
/*--------------------------------------------------------------------------------*/

.blinking {
    -webkit-animation: blink 0.8s ease-in-out infinite alternate;
    -moz-animation: blink 0.8s ease-in-out infinite alternate;
    animation: blink 0.8 ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}
@keyframes blink {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

.blinking50 {
    -webkit-animation: blink 0.8s ease-in-out infinite alternate;
    -moz-animation: blink 0.8s ease-in-out infinite alternate;
    animation: blink 0.8 ease-in-out infinite alternate;
}
@-webkit-keyframes blink50 {
    0% {
        opacity: 0.9;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink50 {
    0% {
        opacity: 0.9;
    }
    100% {
        opacity: 1;
    }
}
@keyframes blink50 {
    0% {
        opacity: 0.9;
    }
    100% {
        opacity: 1;
    }
}

.flash {
    animation-name: flash;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
@keyframes flash {
    0% {
        filter: brightness(1.1);
        -webkit-filter: brightness(1.1);
    }
    100% {
        filter: brightness(1);
        -webkit-filter: brightness(1);
    }
}

@keyframes slide {
    0% {
        left: 30%;
    }
    100% {
        left: 36%;
    }
}
.slide {
    animation: slide;
    animation-duration: 1s;
}

.zoomInCustom {
    animation-name: zoomInCustom;
    animation-duration: 0.5s;
}
@keyframes zoomInCustom {
    0% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.zoomInCustom50 {
    animation-name: zoomInCustom;
    animation-duration: 0.5s;
}
@keyframes zoomInCustom {
    0% {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }
    50% {
        transform: scale(1.025);
        -webkit-transform: scale(1.025);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.zoomOutCustom {
    animation-name: zoomOutCustom;
    animation-duration: 0.5s;
}
@keyframes zoomOutCustom {
    0% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

@keyframes bottomToTop {
    0% {
        bottom: -100px;
        height: 0%;
    }
    100% {
        bottom: 0;
        height: 100%;
    }
}
.bottomToTop {
    animation: bottomToTop;
    animation-duration: 1s;
}

@keyframes leftToRight {
    0% {
        width: 0%;
    }
    100% {
        width: 92%;
    }
}
.leftToRight {
    animation: leftToRight;
    animation-duration: 1s;
}

@keyframes topToBottom {
    0% {
        top: 7%;
        height: 0%;
    }
    100% {
        top: 7%;
        height: 88%;
    }
}
.topToBottom {
    animation: topToBottom;
    animation-duration: 1.5s;
}

@keyframes bobble {
    0% {
        transform: translateY(8%);
        animation-timing-function: ease-out;
    }
    50% {
        transform: translateY(11%);
        animation-timing-function: ease-out;
    }
    100% {
        transform: translateY(8%);
    }
}
.bobble {
    -webkit-animation: bobble 0.8s ease-in-out infinite alternate;
    -moz-animation: bobble 0.8s ease-in-out infinite alternate;
    animation: bobble 0.8 ease-in-out infinite alternate;
}

/*--------------------------------------------------------------------------------*/
/*------------------------------------ LOADING -----------------------------------*/
/*--------------------------------------------------------------------------------*/

.not-mobile {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #ffffff;
    font-size: 24px;
    line-height: 1.5;
    left: 0;
    top: 0;
    display: none;
    font-family: 'Hana';
    text-align: center;
    font-weight: 300;
}
.not-mobile .not-mobile-wrap {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.not-mobile .not-mobile-wrap p {
    margin-bottom: 30px;
}
html,
body {
    position: fixed;
    width: 100vw;
    height: 100%;
}
.loading-screen {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    background-color: #fff;
    width: 100%;
    height: 100%;
    z-index: 99;
}
.legal {
    font-family: 'Hana';
    font-weight: 700;
    font-size: 2vw;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 20px;
    left: 0;
}
.legal > * {
    display: inline-block;
    vertical-align: middle;
}
.legal > span {
    margin-right: 1vw;
}
.legal img {
    width: 9vw;
}
.loading-screen .loading {
    position: relative;
    top: 40%;
    transform: translateY(-50%);
    text-align: center;
    font-family: 'Hana';
    font-size: 5vw;
    font-weight: 900;
    letter-spacing: 1px;
}
.loading-screen .loading .number {
    margin-top: 10px;
    color: #0d796c;
}
.progress-outer {
    position: relative;
    top: 40%;
    transform: translateY(-50%);
    text-align: center;
}
.progress {
    width: 50%;
    height: 100%;
    background-color: #0d796c;
}
.loading .img-area {
    position: relative;
    margin: 0 auto;
    margin-bottom: 20px;
    background-repeat: no-repeat;
    animation: loadingAnim 10s 1s infinite;
    background-size: cover;
}
.loading .img-area > img:not(:last-child) {
    width: 100%;
    position: absolute;
    opacity: 0;
    left: -9999px;
}
.loading .img-area > img:last-child {
    width: 100%;
    position: static;
}
@keyframes loadingAnim {
    /* 100% {background-image: url('./images/logo.png');} */
}

.not-vert {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #ffffff;
    z-index: 999;
    display: none;
}
.not-vert .not-vert-wrap {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Hana';
    line-height: 1.5;
    font-size: 3.5vw;
    font-weight: 300;
}
.not-vert .not-vert-wrap p {
    margin-bottom: 20px;
}
.not-vert .not-vert-wrap img {
    width: 20vw;
}

/*--------------------------------------------------------------------------------*/
/*----------------------------------- CONTENTS -----------------------------------*/
/*--------------------------------------------------------------------------------*/

#fullpage {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    visibility: visible;
}
.anim_init {
    visibility: hidden;
}
#page_base {
    height: 100vh;
    width: 100vw;
}
#page_inner_base {
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    text-align: center;
}
.header_bgcolor {
    background-color: #ffffff;
}
.page_main {
    width: 100%;
    height: 100vh;
}
.page_main_sub {
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
}
.page_inner_size {
    width: 100%;
    height: 100%;
    position: relative;
    margin: auto;
}
.page_inner_size > img {
    display: block;
    width: 100%;
    height: 100%;
}

.popup_close {
    width: 10%;
    height: 10%;
    margin-left: 1%;
    margin-top: 0.8%;
    cursor: pointer;
}
.popup_close_btn {
    height: 90%;
}

/* 26.02월호에 적용된 내용 Start */

/* DEBUG: 클릭 영역 시각화 (작업 완료 후 삭제) */
/* [id$='_click_div_1'],
[id$='_click_div_2'],
[id$='_click_div_3'],
[id$='_click_div_4'],
[id$='_click_div_5'] {
    border: 2px solid red;
    background-color: rgba(255, 0, 0, 0.15);
} */

/* p02: "지역/섹터별 비중 보기" 버튼 */
#p02_click_div_1 {
    height: 5.2%;
    width: 54%;
    position: absolute;
    right: 22.5%;
    top: 88%;
    z-index: 9999;
}

/* p03: "더보기 >" 버튼 x4 */
#p03_click_div_1 {
    height: 2.5%;
    width: 10%;
    position: absolute;
    right: 4%;
    top: 16.9%;
    z-index: 9999;
}
#p03_click_div_2 {
    height: 2.5%;
    width: 10%;
    position: absolute;
    right: 4%;
    top: 35.7%;
    z-index: 9999;
}
#p03_click_div_3 {
    height: 2.5%;
    width: 10%;
    position: absolute;
    right: 4%;
    top: 54.5%;
    z-index: 9999;
}
#p03_click_div_4 {
    height: 2.5%;
    width: 10%;
    position: absolute;
    right: 4%;
    top: 73.4%;
    z-index: 9999;
}

/* p04: "더보기" 버튼 x3 */
#p04_click_div_1 {
    height: 2.5%;
    width: 10%;
    position: absolute;
    right: 4%;
    top: 22.6%;
    z-index: 9999;
}
#p04_click_div_2 {
    height: 2.5%;
    width: 10%;
    position: absolute;
    right: 4%;
    top: 38%;
    z-index: 9999;
}
#p04_click_div_3 {
    height: 2.5%;
    width: 10%;
    position: absolute;
    right: 4%;
    top: 53.6%;
    z-index: 9999;
}

/* p05: 설명 영상 + 팝업 화살표 x3 + 디폴트옵션 설정 바로가기 */
#p05_click_div_1 {
    height: 6%;
    width: 10%;
    position: absolute;
    right: 6%;
    top: 42%;
    z-index: 9999;
}
#p05_click_div_2 {
    height: 6%;
    width: 10%;
    position: absolute;
    right: 6%;
    top: 55.1%;
    z-index: 9999;
}
#p05_click_div_3 {
    height: 6%;
    width: 10%;
    position: absolute;
    right: 6%;
    top: 68.3%;
    z-index: 9999;
}
#p05_click_div_4 {
    height: 6%;
    width: 60%;
    position: absolute;
    right: 19.5%;
    top: 84.1%;
    z-index: 9999;
}
#p05_click_div_5 {
    height: 3.5%;
    width: 15%;
    position: absolute;
    right: 6.9%;
    top: 17.7%;
    z-index: 9999;
}

/* p12: "상품보러가기" 버튼 */
#p12_click_div_1 {
    height: 5.5%;
    width: 58%;
    position: absolute;
    right: 20.8%;
    top: 86.7%;
    z-index: 9999;
}
/* p18: "상품보러가기" 버튼 */
#p18_click_div_1 {
    height: 5.7%;
    width: 58%;
    position: absolute;
    right: 20.8%;
    top: 83.7%;
    z-index: 9999;
}
/* p21: "상품보러가기" 버튼 */
#p21_click_div_1 {
    height: 5.7%;
    width: 58%;
    position: absolute;
    right: 20.8%;
    top: 90.5%;
    z-index: 9999;
}

.p02_popup_all {
    width: 90%;
    position: absolute;
    top: 17%;
    left: 5%;
    display: none;
    background-color: #ffffff;
    border-radius: 16px;
}
#p02_popup_control {
    width: 90%;
    height: 40%;
    position: absolute;
    top: 17%;
    left: 85%;
    display: none;
    z-index: 9999;
}

.p03_popup_all {
    width: 90%;
    position: absolute;
    top: 17%;
    left: 5%;
    display: none;
    background-color: #ffffff;
    border-radius: 16px;
}
#p03_popup_control {
    width: 90%;
    height: 40%;
    position: absolute;
    top: 17%;
    left: 85%;
    display: none;
    z-index: 9999;
}

.p04_popup_all {
    width: 90%;
    position: absolute;
    top: 17%;
    left: 5%;
    display: none;
    background-color: #ffffff;
    border-radius: 16px;
}
#p04_popup_control {
    width: 90%;
    height: 40%;
    position: absolute;
    top: 17%;
    left: 85%;
    display: none;
    z-index: 9999;
}

.p05_popup_all {
    width: 90%;
    position: absolute;
    top: 17%;
    left: 5%;
    display: none;
    background-color: #ffffff;
    border-radius: 16px;
}
#p05_popup_control {
    width: 90%;
    height: 40%;
    position: absolute;
    top: 17%;
    left: 85%;
    display: none;
    z-index: 9999;
}
/* 26.02월호에 적용된 내용 End */
