@charset "UTF-8";

.main_wrap {
    background-color: #f9f9f9;
}

.main_size {
    width: 100%;
    height: auto;
    position: relative;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.main_size .full_item {
    width: 100%;
    height: auto;
    position: relative;
}

.main_size .full_item.sec_8 {
    height: auto !important;
}

/* SLIDER BOX */
.sd_con {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 130px 30px 30px;
}

.sd_con .mainslider_box {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.sd_con .mainslider_box .slide_item {
    width: 100%;
    height: 100%;
    position: relative;
}

.sd_con .mainslider_box .slide_item .sec_bg::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(../img/bg_dim.png);
    background-position: center;
    background-repeat: repeat;
    -webkit-background-size: auto auto;
    background-size: auto;
    opacity: 0.2;
    top: 0;
    left: 0;
    display: none;
}

.sd_con .mainslider_box .slide_item.slick-active .sec_bg::after {
    display: block;
}

.sd_con .mainslider_box .slide_item .sec_titbox > h3 {
    -webkit-animation: fadeOutLeft 1s both;
    -moz-animation: fadeOutLeft 1s both;
    -o-animation: fadeOutLeft 1s both;
    animation: fadeOutLeft 1s both;
}

.sd_con .mainslider_box .slide_item .sec_p > p {
    -webkit-animation: fadeOutLeft 1s both;
    -moz-animation: fadeOutLeft 1s both;
    -o-animation: fadeOutLeft 1s both;
    animation: fadeOutLeft 1s both;
}

.sd_con .mainslider_box .slide_item.slick-active .sec_titbox > h3 {
    -webkit-animation: fadeInLeft 1.6s both 0.4s;
    -moz-animation: fadeInLeft 1.6s both 0.4s;
    -o-animation: fadeInLeft 1.6s both 0.4s;
    animation: fadeInLeft 1.6s both 0.4s;
}

.sd_con .mainslider_box .slide_item.slick-active .sec_p > p {
    -webkit-animation: fadeInLeft 2s both 0.4s;
    -moz-animation: fadeInLeft 2s both 0.4s;
    -o-animation: fadeInLeft 2s both 0.4s;
    animation: fadeInLeft 2s both 0.4s;
}

@media all and (max-width: 1025px) {
    .sd_con {
        padding: 110px 30px 30px;
    }

    .sd_con .mainslider_box {
        border-radius: 30px;
    }
}

@media all and (max-width: 481px) {
    .sd_con {
        padding: 75px 15px 15px;
    }

    .sd_con .mainslider_box {
        border-radius: 20px;
    }
}

/* SLIDER BOX END */

/* SLIDER STAT */
.mainslider_stat {
    position: absolute;
    bottom: 500px;
    left: 130px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.mainslider_stat .page_numberbox {
    width: auto;
    height: auto;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.mainslider_stat .page_numberbox .page_number {
    width: 28px;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.5px;
    color: #fff;
}

.mainslider_stat .page_numberbox .slider_dots {
    width: auto;
    height: auto;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mainslider_stat .page_numberbox .slider_dots .dots_item {
    width: 40px;
    height: 4px;
    position: relative;
}

.mainslider_stat .page_numberbox .slider_dots .dots_item > button {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
    border: none;
}

.mainslider_stat .page_numberbox .slider_dots .dots_item > button .inProgress {
    height: 100%;
    background-color: #fff;
}

.mainslider_stat .page_arrowbox {
    width: auto;
    height: auto;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.mainslider_stat .page_arrowbox .arrow_item {
    width: 24px;
    height: 24px;
    position: relative;
}

.mainslider_stat .page_arrowbox .arrow_item > button {
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-color: transparent;
    border: 0;
}

.mainslider_stat .page_arrowbox .arrow_item.prev_arrow > button {
    background-image: url(../img/slide_prev.svg);
}

.mainslider_stat .page_arrowbox .arrow_item.next_arrow > button {
    background-image: url(../img/slide_next.svg);
}

@media all and (max-width: 1441px) {
    .mainslider_stat {
        left: 60px;
        top: 250px;
        bottom: auto;
    }

    .mainslider_stat .page_arrowbox {
        gap: 15px;
    }
}

@media all and (max-width: 1025px) {
    .mainslider_stat .page_numberbox .page_number {
        width: 17px;
        font-size: 1rem;
    }

    .mainslider_stat .page_arrowbox {
        gap: 10px;
    }
}

@media all and (max-width: 481px) {
    .mainslider_stat {
        left: 30px;
        top: 210px;
    }

    .mainslider_stat .page_arrowbox {
        gap: 5px;
    }
}

/* SLIDER STAT END */

/* FULLPAGE_00 */
.sec_0 .sec_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.sec_0 .sec_bg.sec_video > video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* .sec_0 .sec_bg.slide_bg_01 {
    background-image: url(../img/slide_bg_01.png);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.sec_0 .sec_bg.slide_bg_02 {
    background-image: url(../img/slide_bg_02.png);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.sec_0 .sec_bg.slide_bg_03 {
    background-image: url(../img/slide_bg_03.png);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
} */

.sec_0 .sec_txtbox {
    width: 100%;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    padding: 0 100px 80px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.sec_0 .sec_txtcon {
    width: 100%;
    height: auto;
    position: relative;
}

.sec_0 .sec_titbox {
    font-family: 'Paperlogy', sans-serif;
    width: auto;
    height: auto;
    position: relative;
}

.sec_0 .sec_titbox > h3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
    word-break: keep-all;
}

.sec_0 .sec_titbox > h3 > span.logo_1 {
    width: 320px;
    height: 55px;
    background-image: url(../img/npasszta_logo.svg);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

.sec_0 .sec_titbox > h3 > span.color_r {
    color: #ec0000;
}

.sec_0 .sec_titbtnbox {
    width: 100%;
    height: auto;
    position: relative;
}

.sec_0 .sec_txtcon {
    width: 100%;
    height: auto;
    position: relative;
}

.sec_0 .slide_item_01 .sec_txtcon {
    margin-bottom: 188px;
}

.sec_0 .slide_item_02 .sec_txtcon {
    margin-bottom: 116px;
}

.sec_0 .slide_item_03 .sec_txtcon {
    margin-bottom: 129px;
}

.sec_0 .sec_txtcon .sec_p {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 30px;
}

.sec_0 .sec_txtcon .sec_p > p {
    font-family: 'Paperlogy', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 1.6;
    color: #fff;
}

.sec_0 .sec_txtcon .sec_p > p > span.size_up {
    font-size: 1.5rem;
    font-weight: 800;
}

.sec_0 .sec_titbtnbox > li {
    width: 220px;
    height: 45px;
    position: relative;
}

.sec_0 .sec_titbtnbox > li > a {
    display: block;
    width: 100%;
    height: 100%;
    font-family: 'Paperlogy', sans-serif;
    background-color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #181818;
    border-radius: 8px;
    text-align: center;
    line-height: 45px;
}

@media all and (max-width: 1441px) {
    .sec_0 .sec_txtbox {
        padding: 170px 30px 30px;
        -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
        align-content: flex-start;
    }

    .sec_0 .sec_txtcon {
        margin-bottom: 40px !important;
    }

    .sec_0 .sec_titbox > h3 {
        font-size: 3.25rem;
    }

    .sec_0 .sec_titbox > h3 > span.logo_1 {
        width: 260px;
        height: 45px;
    }
}

@media all and (max-width: 1025px) {
    .sec_0 .sec_txtbox {
        padding: 180px 30px 30px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .sec_0 .sec_titbox > h3 {
        font-size: 3rem;
    }

    .sec_0 .sec_titbox > h3 > span.logo_1 {
        width: 270px;
        height: 46px;
    }

    .sec_0 .sec_txtcon .sec_p > p {
        font-size: 1rem;
    }

    .sec_0 .sec_txtcon .sec_p > p > span.size_up {
        font-size: 1.25rem;
    }

    .sec_0 .sec_titbtnbox > li {
        width: 180px;
        height: 40px;
    }

    .sec_0 .sec_titbtnbox > li > a {
        font-size: 1rem;
        line-height: 40px;
    }
}

@media all and (max-width: 885px) {
    .sec_0 .sec_titbox > h3 {
        font-size: 2.5rem;
    }

    .sec_0 .sec_titbox > h3 > span.logo_1 {
        width: 226px;
        height: 38px;
    }
}

@media all and (max-width: 481px) {
    .sec_0 .sec_txtbox {
        padding: 180px 15px 15px;
    }

    .sec_0 .sec_titbox > h3 {
        font-size: 1.75rem;
        gap: 15px;
    }

    .sec_0 .sec_titbox > h3 > span.logo_1 {
        width: 151px;
        height: 24px;
    }

    .sec_0 .sec_txtcon .sec_p > p {
        font-size: .875rem;
    }

    .sec_0 .sec_txtcon .sec_p > p > span.size_up {
        font-size: 1.125rem;
    }

    .sec_0 .sec_titbtnbox > li {
        width: 160px;
    }

    .sec_0 .sec_titbtnbox > li > a {
        font-size: .875rem;
    }
}

/* FULLPAGE_00 END */

/* FULLPAGE_01 */
.sec_1 .sec_txtbox {
    width: 100%;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 100px 220px;
}

.sec_1 .sec_titbox {
    font-family: 'Paperlogy', sans-serif;
    width: auto;
    height: auto;
    position: relative;
}

.sec_1 .sec_titbox > h3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.4;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
    word-break: keep-all;
}

.sec_1 .sec_titbox > h3.heading[data-aos='color-fill'] {
    color: transparent;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #d0d0d0), color-stop(50%, #456eff));
    background: -webkit-linear-gradient(left, #d0d0d0 50%, #456eff 50%);
    background: -moz-linear-gradient(left, #d0d0d0 50%, #456eff 50%);
    background: -o-linear-gradient(left, #d0d0d0 50%, #456eff 50%);
    background: linear-gradient(to right, #d0d0d0 50%, #456eff 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-background-size: 200% 100%;
    background-size: 200% 100%;
    background-position: 0% 0%;
    -webkit-transition: background-position 1.5s ease-in-out;
    -o-transition: background-position 1.5s ease-in-out;
    -moz-transition: background-position 1.5s ease-in-out;
    transition: background-position 1.5s ease-in-out;
}

.sec_1 .sec_titbox > h3.heading[data-aos='color-fill'].aos-animate {
    background-position: -100% 0%;
}

.sec_1 .sec_titbox > h3.heading[data-aos='color-fill'][data-aos-delay='300'] {
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

@media all and (max-width: 1441px) {
    .sec_1 .sec_txtbox {
        padding: 0 30px 10vw;
    }

    .sec_1 .sec_titbox > h3 {
        font-size: 3.25rem;
    }
}

@media all and (max-width: 1025px) {
    .sec_1 .sec_txtbox {
        padding: 30px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .sec_1 .sec_titbox > h3 {
        font-size: 3rem;
    }
}

@media all and (max-width: 885px) {
    .sec_1 .sec_titbox > h3 {
        font-size: 2.5rem;
    }
}

@media all and (max-width: 481px) {
    .sec_1 .sec_txtbox {
        padding: 30px 15px;
    }

    .sec_1 .sec_titbox > h3 {
        font-size: 1.75rem;
    }
}

/* FULLPAGE_01 END */

/* FULLPAGE_02 */
.sec_2 .sec_flexbox {
    width: 100%;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sec_2 .sec_flexbox .sec_bg_02 {
    width: -webkit-calc(100% - 480px);
    width: -moz-calc(100% - 480px);
    width: calc(100% - 480px);
    height: 100%;
    position: relative;
    background-image: url(../img/sec_bg_02.png);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
}

.sec_2 .sec_flexbox .sec_bg_02[data-aos='circle-reveal'] {
    -webkit-clip-path: circle(0% at 0% 0%);
    clip-path: circle(0% at 0% 0%);
    -webkit-transition: -webkit-clip-path 1.5s ease-in-out;
    transition: -webkit-clip-path 1.5s ease-in-out;
    -o-transition: clip-path 1.5s ease-in-out;
    -moz-transition: clip-path 1.5s ease-in-out;
    transition: clip-path 1.5s ease-in-out;
    transition: clip-path 1.5s ease-in-out, -webkit-clip-path 1.5s ease-in-out;
    transition:
        clip-path 1.5s ease-in-out,
        -webkit-clip-path 1.5s ease-in-out;
}

.sec_2 .sec_flexbox .sec_bg_02[data-aos='circle-reveal'].aos-animate {
    -webkit-clip-path: circle(100% at 50% 50%);
    clip-path: circle(100% at 50% 50%);
}

.sec_2 .sec_flexbox .sec_ltbox {
    width: 480px;
    height: auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.sec_2 .sec_flexbox .sec_ltbox > p {
    font-family: 'Paperlogy', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #181818;
    word-break: keep-all;
}

@media all and (max-width: 1025px) {
    .sec_2 {
        padding: 30px;
    }

    .sec_2 .sec_flexbox {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px;
    }

    .sec_2 .sec_flexbox .sec_bg_02 {
        width: 100%;
        height: -webkit-calc((100% - 20px) - 50%) !important;
        height: -moz-calc((100% - 20px) - 50%) !important;
        height: calc((100% - 20px) - 50%) !important;
        border-radius: 12px;
        overflow: hidden;
    }

    .sec_2 .sec_flexbox .sec_ltbox {
        width: 100%;
        height: -webkit-calc((100% - 20px) - 50%);
        height: -moz-calc((100% - 20px) - 50%);
        height: calc((100% - 20px) - 50%);
        text-align: left;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        overflow: hidden;
        padding: 40px;
    }

    .sec_2 .sec_flexbox .sec_ltbox > p {
        font-size: 1.75rem;
    }
}

@media all and (max-width: 885px) {
    .sec_2 .sec_flexbox .sec_ltbox {
        padding: 30px;
    }
}

@media all and (max-width: 481px) {
    .sec_2 {
        padding: 30px 15px;
    }

    .sec_2 .sec_flexbox {
        gap: 10px;
    }

    .sec_2 .sec_flexbox .sec_bg_02 {
        height: -webkit-calc((100% - 10px) - 50%) !important;
        height: -moz-calc((100% - 10px) - 50%) !important;
        height: calc((100% - 10px) - 50%) !important;
    }

    .sec_2 .sec_flexbox .sec_ltbox {
        height: -webkit-calc((100% - 10px) - 50%);
        height: -moz-calc((100% - 10px) - 50%);
        height: calc((100% - 10px) - 50%);
        padding: 20px;
    }

    .sec_2 .sec_flexbox .sec_ltbox > p {
        font-size: 1.75rem;
    }
}

/* FULLPAGE_02 END */

/* FULLPAGE_03 */
.sec_3 .sec_txtbox {
    width: 100%;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 100px 220px;
}

.sec_3 .sec_titbox {
    font-family: 'Paperlogy', sans-serif;
    width: auto;
    height: auto;
    position: relative;
}

.sec_3 .sec_titbox > h3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.4;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
    word-break: keep-all;
}

.sec_3 .sec_titbox > h3.heading[data-aos='color-fill'] {
    color: transparent;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #d0d0d0), color-stop(50%, #456eff));
    background: -webkit-linear-gradient(left, #d0d0d0 50%, #456eff 50%);
    background: -moz-linear-gradient(left, #d0d0d0 50%, #456eff 50%);
    background: -o-linear-gradient(left, #d0d0d0 50%, #456eff 50%);
    background: linear-gradient(to right, #d0d0d0 50%, #456eff 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-background-size: 200% 100%;
    background-size: 200% 100%;
    background-position: 0% 0%;
    -webkit-transition: background-position 1.5s ease-in-out;
    -o-transition: background-position 1.5s ease-in-out;
    -moz-transition: background-position 1.5s ease-in-out;
    transition: background-position 1.5s ease-in-out;
}

.sec_3 .sec_titbox > h3.heading[data-aos='color-fill'].aos-animate {
    background-position: -100% 0%;
}

.sec_3 .sec_titbox > h3.heading[data-aos='color-fill'][data-aos-delay='300'] {
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.sec_3 .sec_titbox > h3.heading[data-aos='color-fill'][data-aos-delay='600'] {
    -webkit-transition-delay: 0.6s;
    -moz-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.sec_3 .sec_titbox > h3.heading[data-aos='color-fill'][data-aos-delay='900'] {
    -webkit-transition-delay: 0.9s;
    -moz-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

@media all and (max-width: 1441px) {
    .sec_3 .sec_txtbox {
        padding: 0 30px 10vw;
    }

    .sec_3 .sec_titbox > h3 {
        font-size: 3.25rem;
    }
}

@media all and (max-width: 1025px) {
    .sec_3 .sec_txtbox {
        padding: 30px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .sec_3 .sec_titbox > h3 {
        font-size: 3rem;
    }
}

@media all and (max-width: 885px) {
    .sec_3 .sec_titbox > h3 {
        font-size: 2.5rem;
    }
}

@media all and (max-width: 481px) {
    .sec_3 .sec_txtbox {
        padding: 30px 15px;
    }

    .sec_3 .sec_titbox > h3 {
        font-size: 1.75rem;
    }
}

/* FULLPAGE_03 END */

/* FULLPAGE_04 */
.sec_4 .sec_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.sec_4 .sec_bg::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(../img/bg_dim.png);
    background-position: center;
    background-repeat: repeat;
    -webkit-background-size: auto auto;
    background-size: auto;
    opacity: 0.2;
    top: 0;
    left: 0;
    display: block;
}

.sec_0 .sec_bg.sec_video > video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sec_4 .sec_txtbox {
    width: 100%;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sec_4 .sec_txtbox .sec_pbox {
    font-family: 'Paperlogy', sans-serif;
    width: auto;
    height: auto;
    position: relative;
    text-align: center;
}

.sec_4 .sec_txtbox .sec_pbox > p {
    font-size: 2.375rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.4;
    word-break: keep-all;
}

.sec_4 .sec_txtbox .sec_pbox > p.mo_txt {
    display: none;
}

@media all and (max-width: 1441px) {
    .sec_4 .sec_txtbox .sec_pbox > p {
        font-size: 2rem;
    }
}

@media all and (max-width: 1025px) {
    .sec_4 .sec_txtbox .sec_pbox > p {
        font-size: 2.125rem;
    }
}

@media all and (max-width: 885px) {
    .sec_4 .sec_txtbox {
        padding: 30px;
    }

    .sec_4 .sec_txtbox .sec_pbox > p {
        font-size: 1.75rem;
    }
}

@media all and (max-width: 481px) {
    .sec_4 .sec_txtbox .sec_pbox > p {
        font-size: 1.75rem;
    }

    .sec_4 .sec_txtbox .sec_pbox > p.pc_txt {
        display: none;
    }

    .sec_4 .sec_txtbox .sec_pbox > p.mo_txt {
        display: block;
    }
}

/* FULLPAGE_04 END */

/* FULLPAGE_05 */
.sec_5 .npass_itembox {
    width: 100%;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 160px;
}

.sec_5 .npass_itembox .npass_thumb {
    width: 450px;
    height: 530px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    border-radius: 12px;
    overflow: hidden;
}

.sec_5 .npass_itembox .npass_thumb.npass_thumb_01 {
    background-image: url(../img/npass_item_01.png);
}

.sec_5 .npass_itembox .npass_thumb.npass_thumb_02 {
    background-image: url(../img/npass_item_02.png);
}

.sec_5 .npass_itembox .npass_thumb[data-aos='circle-reveal'] {
    -webkit-clip-path: circle(0% at 0% 0%);
    clip-path: circle(0% at 0% 0%);
    -webkit-transition: -webkit-clip-path 1.5s ease-in-out;
    transition: -webkit-clip-path 1.5s ease-in-out;
    -o-transition: clip-path 1.5s ease-in-out;
    -moz-transition: clip-path 1.5s ease-in-out;
    transition: clip-path 1.5s ease-in-out;
    transition: clip-path 1.5s ease-in-out, -webkit-clip-path 1.5s ease-in-out;
    transition:
        clip-path 1.5s ease-in-out,
        -webkit-clip-path 1.5s ease-in-out;
}

.sec_5 .npass_itembox .npass_thumb[data-aos='circle-reveal'].aos-animate {
    -webkit-clip-path: circle(100% at 50% 50%);
    clip-path: circle(100% at 50% 50%);
}

.sec_5 .npass_itembox .npass_txtbox {
    width: auto;
    height: auto;
    position: relative;
    overflow: hidden;
}

.sec_5 .npass_itembox .npass_txtbox .item_titbox {
    font-family: 'Paperlogy', sans-serif;
    width: auto;
    height: auto;
    position: relative;
    margin-bottom: 50px;
}

.sec_5 .npass_itembox .npass_txtbox .item_titbox > h4 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #456eff;
    margin-bottom: 20px;
}

.sec_5 .npass_itembox .npass_txtbox .item_titbox > p {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #181818;
    word-break: keep-all;
}

.sec_5 .npass_itembox .npass_txtbox .optionbox {
    width: auto;
    height: auto;
    position: relative;
}

.sec_5 .npass_itembox .npass_txtbox .optionbox .option_item {
    font-family: 'Paperlogy', sans-serif;
    width: auto;
    height: auto;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.sec_5 .npass_itembox .npass_txtbox .optionbox .option_item.flex_wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.sec_5 .npass_itembox .npass_txtbox .optionbox .option_item:last-of-type {
    margin-bottom: 0;
}

.sec_5 .npass_itembox .npass_txtbox .optionbox .option_item .opt_th {
    width: auto;
    min-width: 90px;
    height: auto;
    position: relative;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #181818;
}

.sec_5 .npass_itembox .npass_txtbox .optionbox .option_item.flex_wrap .opt_th {
    width: 100%;
}

.sec_5 .npass_itembox .npass_txtbox .optionbox .option_item .opt_td {
    width: auto;
    height: auto;
    position: relative;
}

.sec_5 .npass_itembox .npass_txtbox .optionbox .option_item .opt_td > p {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #181818;
}

@media all and (max-width: 1441px) {
    .sec_5 .npass_itembox {
        padding: 0 30px;
        gap: 7vw;
    }

    .sec_5 .npass_itembox .npass_thumb {
        width: 430px;
        height: 530px;
    }

    .sec_5 .npass_itembox .npass_txtbox .optionbox .option_item {
        margin-bottom: 25px;
    }
}

@media all and (max-width: 1281px) {
    .sec_5 .npass_itembox .npass_thumb {
        width: 400px;
        height: 470px;
    }
}

@media all and (max-width: 1025px) {
    .sec_5 .npass_itembox {
        gap: 4vw;
    }

    .sec_5 .npass_itembox .npass_thumb {
        width: 350px;
    }

    .sec_5 .npass_itembox .npass_txtbox .item_titbox {
        margin-bottom: 30px;
    }

    .sec_5 .npass_itembox .npass_txtbox .item_titbox > h4 {
        font-size: 1.625rem;
    }

    .sec_5 .npass_itembox .npass_txtbox .item_titbox > p {
        font-size: 1.125rem;
    }

    .sec_5 .npass_itembox .npass_txtbox .optionbox .option_item {
        margin-bottom: 15px;
    }

    .sec_5 .npass_itembox .npass_txtbox .optionbox .option_item .opt_th,
    .sec_5 .npass_itembox .npass_txtbox .optionbox .option_item .opt_td > p {
        font-size: 1.125rem;
    }
}

@media all and (max-width: 885px) {
    .sec_5 .npass_itembox .npass_thumb {
        display: none;
    }

    .sec_5 .npass_itembox .npass_txtbox {
        width: 100%;
        height: 65%;
        position: relative;
        overflow: hidden;
        padding: 30px 30px;
        max-width: 470px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-position: center;
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        background-size: cover;
        border-radius: 12px;
    }

    .sec_5 .npass_itembox .npass_txtbox.npass_txtbox_01 {
        background-image: url(../img/npass_item_01_bg.png);
    }

    .sec_5 .npass_itembox .npass_txtbox.npass_txtbox_02 {
        background-image: url(../img/npass_item_02_bg.png);
    }

    .sec_5 .npass_itembox .npass_txtbox .item_titbox > h4 {
        text-align: center;
    }

    .sec_5 .npass_itembox .npass_txtbox .optionbox .option_item.flex_wrap {
        display: block;
    }

    .sec_5 .npass_itembox .npass_txtbox .optionbox .option_item.flex_wrap .opt_th {
        margin-bottom: 10px;
    }
}

@media all and (max-width: 481px) {
    .sec_5 .npass_itembox {
        padding: 30px 15px;
    }

    .sec_5 .npass_itembox .npass_txtbox {
        padding: 30px 33px;
        max-width: 340px;
    }

    .sec_5 .npass_itembox .npass_txtbox .item_titbox > h4 {
        font-size: 1.25rem;
    }

    .sec_5 .npass_itembox .npass_txtbox .item_titbox > p {
        font-size: 0.9375rem;
    }

    .sec_5 .npass_itembox .npass_txtbox .item_titbox > p > br {
        display: none;
    }

    .sec_5 .npass_itembox .npass_txtbox .optionbox {
        width: 100%;
    }

    .sec_5 .npass_itembox .npass_txtbox .optionbox .option_item {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 0;
    }

    .sec_5 .npass_itembox .npass_txtbox .optionbox .option_item .opt_th,
    .sec_5 .npass_itembox .npass_txtbox .optionbox .option_item .opt_td {
        width: 100%;
    }

    .sec_5 .npass_itembox .npass_txtbox .optionbox .option_item .opt_th {
        font-size: 1.125rem;
    }

    .sec_5 .npass_itembox .npass_txtbox .optionbox .option_item .opt_td > p {
        font-size: 0.9375rem;
    }

    .sec_5 .npass_itembox .npass_txtbox .optionbox .option_item.flex_wrap .opt_th {
        margin-bottom: 4px;
    }
}

/* FULLPAGE_05 END */

/* FULLPAGE_07 */
.sec_7 .sec_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    top: 0;
    left: 0;
}

.sec_7 .sec_bg.sec_bg_04 {
    background-image: url(../img/sec_bg_04.png);
}

.sec_7 .sec_txtbox {
    width: 100%;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sec_7 .sec_txtbox.flex_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.sec_7 .sec_txtbox .sec_pbox {
    font-family: 'Paperlogy', sans-serif;
    width: auto;
    height: auto;
    position: relative;
    text-align: center;
}

.sec_7 .sec_txtbox .sec_pbox > p {
    font-size: 2.375rem;
    font-weight: 300;
    color: #535353;
    letter-spacing: -0.5px;
    line-height: 1.4;
    word-break: keep-all;
}

.sec_7 .sec_txtbox .sec_pbox > p.mo_txt {
    display: none;
}

.sec_slider {
    width: 100%;
    max-width: 550px;
    height: auto;
    position: relative;
    margin-bottom: 100px;
    overflow: hidden;
}

.sec_slider .slider_box {
    width: 100%;
    height: auto;
    position: relative;
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(10%, black), color-stop(90%, black), to(transparent));
    -webkit-mask-image: -webkit-linear-gradient(left, transparent, black 10%, black 90%, transparent 100%);
    mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(10%, black), color-stop(90%, black), to(transparent));
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent 100%);
}

.sec_slider .slick-list {
    height: 40px;
}

.sec_slider .slick-track {
    height: 40px;
}

.sec_slider .slider_box {
    width: 100%;
}

.sec_slider .slider_box .slider_item {
    width: auto !important;
    margin: 0 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sec_slider .slider_box .slider_item > img {
    width: auto;
    max-width: 100%;
}

@media all and (max-width: 1441px) {
    .sec_7 .sec_txtbox .sec_pbox > p {
        font-size: 2rem;
    }
}

@media all and (max-width: 1025px) {
    .sec_7 .sec_txtbox .sec_pbox > p {
        font-size: 2.125rem;
    }
}

@media all and (max-width: 885px) {
    .sec_7 .sec_txtbox {
        padding: 30px;
    }

    .sec_7 .sec_txtbox .sec_pbox > p {
        font-size: 1.75rem;
    }
}

@media all and (max-width: 481px) {
    .sec_7 .sec_txtbox {
        padding: 30px 15px;
    }

    .sec_7 .sec_txtbox .sec_pbox > p {
        font-size: 1.25rem;
    }

    .sec_7 .sec_txtbox .sec_pbox > p.pc_txt {
        display: none;
    }

    .sec_7 .sec_txtbox .sec_pbox > p.mo_txt {
        display: block;
    }

    .sec_slider {
        margin-bottom: 40px;
    }

    .sec_slider .slider_box .slider_item {
        margin: 0;
    }

    .sec_slider .slider_box .slider_item > img {
        max-width: 80%;
    }
}

/* FULLPAGE_07 END */

/* BAANER BOX */
.banner_box {
    width: 200px;
    height: auto;
    position: fixed;
    right: 80px;
    bottom: 3%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 999;
}

.banner_box .banner_item {
    width: 100%;
    height: auto;
    position: relative;
}

.banner_box .banner_item > a {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    font-size: 0;
}

.banner_box .banner_item > a > img {
    width: auto;
    max-width: 100%;
}

@media all and (max-width: 1441px) {
    .banner_box {
        right: 30px;
        bottom: -47px;
    }
}

@media all and (max-width: 885px) {
    .banner_box {
        width: 160px;
        bottom: -20px;
    }
}

@media all and (max-width: 481px) {
    .banner_box {
        width: 160px;
        right: 15px;
        bottom: -43px;
    }
}

/* BAANER BOX END */

/* GDPR */
.cc-link {
    display: none !important;
}
/* GDPR END */
