
* {
    margin: 0;
    padding: 0;
    word-break: keep-all;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

b,
strong {
    font-weight: inherit;
}

i,
em,
address {
    font-style: inherit;
}

img {
    max-width: 100%;
    height: auto;
}


/* common */
html {
    font-family: 'Paperlogy';
    font-weight: 400;
    font-size: 10px;
    background: #fff;
    color: #000000;
    line-height: 1.5;
    letter-spacing: -0.072em;
}

.content_inner14{
    margin: 0 auto;
    max-width: 1400px;
    width: 95%;
}
.content_inner12{
    margin: 0 auto;
    max-width: 1280px;
    width: 95%;
}

.page {
    overflow: hidden;
    width: 100%;
}

.innertop {
    padding-top: 14rem;
}

.innerbottom {
    padding-bottom: 14rem;
}

.innertop1 {
    padding-top: 12rem;
}

.innerbottom1 {
    padding-bottom: 12rem;
}

p {
    font-size: 20px;
    line-height: 2;
}
*.m200 {
    margin-bottom: 20rem;
}
*.m100 {
    margin-bottom: 10rem;
}

*.m80 {
    margin-bottom: 8rem;
}

*.m50 {
    margin-bottom: 5rem;
}
*.m40 {
    margin-bottom: 4rem;
}
*.m30 {
    margin-bottom: 3rem;
}
*.m20 {
    margin-bottom: 2rem;
}

*.m10 {
    margin-bottom: 1rem;
}

*.c {
    text-align: center;
}


/* header */

/* #top_btn {
    cursor: pointer;
} */

/* popup */
.popups {
    position: absolute;
    z-index: 9999999;
}

#popup_10 {
    z-index: 99999101;
}

#popup_9 {
    z-index: 99999102;
}

#popup_8 {
    z-index: 99999103;
}

#popup_7 {
    z-index: 99999104;
}

#popup_6 {
    z-index: 99999105;
}

#popup_5 {
    z-index: 99999106;
}

#popup_4 {
    z-index: 99999107;
}

#popup_3 {
    z-index: 99999108;
}

#popup_2 {
    z-index: 99999109;
}

#popup_1 {
    z-index: 99999110;
}

.popup_wrap {
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.popup_foot {
    padding: 10px;
    font-size: 1.5rem;
}

.popup_foot>div {
    display: flex;
    justify-content: space-between;
}

.popup_foot label span {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.popup_close {
    cursor: pointer;
}

.popup_wrap.introani {
    animation: introanimation .8s forwards ease;
}

.screen_out{
    position: absolute;
    top: -9999em;
}

.ir_pm{
    text-indent: -9999em;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0;
}
/* quick menu */
.quick {
    position: fixed;
    bottom: 30px;
    right: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.gooey-menu ul{
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.img_wrap {
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.gooey-menu ul li:last-of-type{
    margin-bottom: 30px;
}
.img_wrap img {
    width: auto;
    height: 27px;
    object-fit: contain;
}
.quick_logo {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #001F60;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    cursor: pointer;
    z-index: 2;
}
.quick_logo img{
    width: 23px;
    height: 19px;
    object-fit: contain;
}
.quick_logo .ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%) scale(1);
    border-radius: 50%;
    background-color: rgba(0, 31, 96, 0.3);
    animation: rippleEffect 2.5s infinite;
    z-index: 0;
}

.quick_logo .ripple:nth-child(3) {
    animation-delay: 1.25s;
}

.quick_logo img{
    width: 100%;
    margin: 0 auto;
}

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.quick_logo span {
    position: relative;
    z-index: 1;
}
.quick_logo:hover span{
    animation: bounceImage 0.4s ease-in-out;
}

@keyframes bounceImage {
    0%{
        transform: translateY(0);
    }
    30%{
        transform: translateY(-5px);
    }
    60%{
        transform: translateY(2px);
    }
    100%{
        transform: translateY(0);
    }
}

@media (min-width:0px) and (max-width:1520px){
    .innertop {
        padding-top: 11rem;
    }

    .innerbottom {
        padding-bottom: 11rem;
    }
     .innertop1 {
        padding-top: 9rem;
    }

    .innerbottom1 {
        padding-bottom: 9rem;
    }
}
@media (min-width:0px) and (max-width:1280px){

    .innertop {
        padding-top: 7rem;
    }

    .innerbottom {
        padding-bottom: 7rem;
    }
     .innertop1 {
        padding-top: 5rem;
    }

    .innerbottom1 {
        padding-bottom: 5rem;
    }
    *.m200 {
        margin-bottom: 18rem;
    }
    *.m100 {
        margin-bottom: 8rem;
    }

    *.m80 {
        margin-bottom: 5rem;
    }

    *.m50 {
        margin-bottom: 3.5rem;
    }
    *.m40 {
        margin-bottom: 2.5rem;
    }
    *.m30 {
        margin-bottom: 2rem;
    }
    *.m20 {
        margin-bottom: 2rem;
    }

    *.m10 {
        margin-bottom: 1rem;
    }
    p{font-size: 1.8rem;}
}

@media (min-width:0px) and (max-width:900px){
    *.m200 {
        margin-bottom: 16rem;
    }
    *.m100 {
        margin-bottom: 6rem;
    }

    *.m80 {
        margin-bottom: 4rem;
    }

    *.m50 {
        margin-bottom: 3rem;
    }

    *.m20 {
        margin-bottom: 1.5rem;
    }

    *.m10 {
        margin-bottom: 1rem;
    }

    p {
        font-size: 18px;
    }

    /* popup */
    .popup_wrap {
        top: 65px !important;
        left: 0 !important;
    }

    /*  */
    .innertop {
        padding-top: 5rem;
    }

    .innerbottom {
        padding-bottom: 5rem;
    }

}
@media (min-width:0px) and (max-width:600px){
    *.m200 {
        margin-bottom: 10rem;
    }

    p {
        font-size: 4.3vw;
    }

    .quick_logo .ripple {
        width: 40px;
        height: 40px;
    }
    .img_wrap{
        width: 50px;
        height: 50px;
    }
    .img_wrap img{
        width: 21px;
    }
    .quick.on .gooey-menu li {
        transform: translateY(calc(var(--i) * -60px));
    }
    .gooey-menu li {
        bottom: 20px;
        left: 25px;
    }
}
