footer {
    position: relative;
    padding: 35px 30px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.footerlogo {
    position: absolute;
    width: 140px;
    height: 40px;
    top: 26px;
    left: calc(50% - 70px);
    background: url(../../images/common_icon/logo.svg) center no-repeat;
}

.footerCopyright {
    font-size: 15px;
    color: rgba(255, 255, 255, .3);
}

/* Follow */
.footerFollow {
    position: absolute;
    right: 105px;
    top: 35px;
    z-index: 1;
    color: rgba(255, 255, 255, .3);
}

.footerFollow_link {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-left: 12px;
}

.footerFollow_link .footerFollow_link_svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    transition: all .2s ease-in-out;
}

.lineqr {
    position: absolute;
    right: -20px;
    top: -85px;
    padding: 3px;
    background: #fff;
    border-radius: 10px;
    opacity: 0;
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.5);
}

.lineqr:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 8px 0 8px;
    border-color: #fff transparent transparent transparent;
    right: calc(50% - 8px);
    bottom: -10px;
}

/* hover */
.footerFollow_link:hover .footerFollow_link_svg {
    opacity: 0.4;
}

.footerFollow_link.line:hover .lineqr {
    opacity: 1;
}


.totop {
    position: absolute;
    right: 0;
    bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, .2);
    width: 79px;
    height: 100%;
    color: #fff;
    text-align: center;
    font-family: 'calibri', sans-serif;
    font-size: 15px;
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    cursor: pointer;
    background: #021d49;
    transition: opacity .2s ease-in-out;
}

.totop:hover {
    opacity: .7;
}

.totop img {
    position: relative;
    display: block;
    margin: 0 calc(50% - 13.25px) 7px calc(50% - 13.25px);
    width: 35%;
}

.ssl_logo {
    position: absolute;
    width: 40px;
    top: calc(50% - 28px);
    right: 410px;
    display: none;
}

.ssl_logo img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1280px) {
    footer {
        text-align: center;
        padding: 55px 30px 35px 30px;
    }

    .footerCopyright {
        margin-top: 5px;
    }

    .footerlogo {
        display: inline-block;
        position: static;
    }

    .footerFollow {
        position: relative;
        top: 10px;
        right: 0;
        font-size: 0;
    }

    .totop {
        position: absolute;
        right: calc(50% - 30px);
        bottom: auto;
        top: -30px;
        border: 1px solid rgba(255, 255, 255, .2);
        width: 60px;
        height: 60px;
    }

    .ssl_logo {
        top: 10px;
        right: 30px;
    }
}
@media screen and (min-width: 1281px) {
    .totop.active {
        position: fixed;
        border: none;
        background: none;
        height: 93px;
        z-index: 10;
    }
}
@media screen and (max-width: 767px) {
    footer:before {
        left: 15px;
        width: calc(100% - 30px);
        padding: 20px 15px;
    }


}