/* reset */
* {
    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;
    width: 100%;
    height: 100%;
}

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%;
    display: block;
}
span{
    display: block;
}

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

html *.Paperlogy {
    font-family: 'Paperlogy';
}

.container {
    max-width: 1280px;
    width: 95%;
    margin: 0 auto;
}
.container-inner12{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
.container14 {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.page {
    overflow: hidden;
    width: 100%;
}
.innertop10 {
    padding-top: 10rem;
}
.innertop8 {
    padding-top: 8rem;
}
.innerbottom8 {
    padding-bottom: 8rem;
}
.innertop {
    padding-top: 14rem;
}
.innerbottom {
    padding-bottom: 14rem;
}

p {
    font-size: 20px;
    line-height: 1.7;
}

*.m200 {
    margin-bottom: 20rem;
}
*.m100 {
    margin-bottom: 10rem;
}
*.m80 {
    margin-bottom: 8rem;
}
*.m70 {
    margin-bottom: 7rem;
}
*.m60 {
    margin-bottom: 6rem;
}
*.m50 {
    margin-bottom: 5rem;
}
*.m40 {
    margin-bottom: 4rem;
}
*.m30 {
    margin-bottom: 3rem;
}
*.m20 {
    margin-bottom: 2rem;
}
*.m10 {
    margin-bottom: 1rem;
}
*.m5 {
    margin-bottom: 0.5rem;
}

*.c {
    text-align: center;
}

* b {
    font-weight: 700;
}

/* 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;
}
.wrap{
    overflow: hidden;
}

/* 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: 10px;
    flex-direction: column;
}
.img_wrap {
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
    background: linear-gradient(0deg, #00419D 0%, #00419D 100%, #003668);
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.25));
    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: 10px;
}
.img_wrap img {
    width: auto;
    height: 27px;
    object-fit: contain;
}
.quick_logo {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #3A3A3A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.25));
    cursor: pointer;
    z-index: 2;
}
.quick_logo img{
    width: 23px;
    height: 19px;
    object-fit: contain;
}

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

.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;
    }
    .innertop8 {
        padding-top: 8rem;
    }
    .innerbottom8 {
        padding-bottom: 8rem;
    }
     .innertop10 {
        padding-top: 7rem;
    }
}
@media (min-width:0px) and (max-width:1280px){
    
    .innertop {
        padding-top: 8rem;
    }
    .innertop10 {
        padding-top: 4rem;
    }
    .innerbottom {
        padding-bottom: 8rem;
    }
     .innertop8 {
        padding-top: 5rem;
    }
    .innerbottom8 {
        padding-bottom: 5rem;
    }
    
    *.m200 {
        margin-bottom: 18rem;
    }
    *.m100 {
        margin-bottom: 8rem;
    }
    
    *.m80 {
        margin-bottom: 5rem;
    }
    *.m70 {
        margin-bottom: 4.5rem;
    }
    *.m60 {
        margin-bottom: 4rem;
    }
    *.m50 {
        margin-bottom: 3.5rem;
    }
    *.m40 {
        margin-bottom: 2.5rem;
    }
    *.m30 {
        margin-bottom: 2rem;
    }
    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;
    }
    *.m70 {
        margin-bottom: 4rem;
    }
    *.m60 {
        margin-bottom: 4.5rem;
    }
    *.m50 {
        margin-bottom: 3rem;
    }
    *.m20 {
        margin-bottom: 1.5rem;
    }
    
    
    p {
        font-size: 18px;
    }
    
    /* popup */
    .popup_wrap {
        top: 65px !important;
        left: 0 !important;
    }
    
    /*  */
    .innertop {
        padding-top: 6rem;
    }
    .innertop10 {
        padding-top: 5rem;
    }
    .innerbottom {
        padding-bottom: 6rem;
    }
     .innertop8 {
        padding-top: 3rem;
    }
    .innerbottom8 {
        padding-bottom: 3rem;
    }
    
}
@media (min-width:0px) and (max-width:600px){
    *.m200 {
        margin-bottom: 10rem;
    }
    *.m100 {
        margin-bottom: 4rem;
    }
    *.m60 {
        margin-bottom: 2.5rem;
    }
    *.m50 {
        margin-bottom: 1.5rem;
    }
    *.m20 {
        margin-bottom: 1rem;
    }
    /* common */
    .innertop {
        padding-top: 4rem;
    }
        .innertop10 {
        padding-top: 4rem;
    }
    .innerbottom {
        padding-bottom: 4rem;
    }
     .innertop8 {
        padding-top: 4rem;
    }
    .innerbottom8 {
        padding-bottom: 4rem;
    }
    .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;
    }
    .quick_logo{
        width: 55px;
        height: 55px;
    }
    
}
