/* pageTop */

#pageTop {
    position: fixed;
    bottom: 20px;
    right: 75px;
    z-index: 999;
}

#pageTop i {
    padding-top: 6px;
}

#pageTop i::after {
    content: 'TOP';
    bottom: 10px;
    left: 0;
}

#pageTop a {
    display: block;
    z-index: 999;
    padding: 10px 0 0 0;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}

#pageTop a:hover {
    text-decoration: none;
    color: #e47412;
}

@media screen and (max-width:768px) {
    #pageTop {
        position: fixed;
        bottom: 70px;
        right: 6.5%;
        z-index: 999;
    }
}


/* Movie */

#Movie {
    position: fixed;
    bottom: 70px;
    right: 10px;
    z-index: 99999;
}

#Movie .modal_btn {
    display: block;
    z-index: 999;
    transition: 0.3s;
}

.modal_btn {
    width: 164.31px;
    position: fixed;
    bottom: 70px;
    right: 10px;
    z-index: 99999;
    cursor: pointer;
    transition: .2s;
}

.modal_btn:hover {
    bottom: 75px;
}

.modal_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
    z-index: 99999;
}

.modal_wrap.show {
    opacity: 1;
    visibility: visible;
}

.modal_content {
    overflow-y: auto;
    max-width: 70%;
    max-height: 80vh;
    background: #fff;
    margin: 0 auto;
    position: relative;
    z-index: 99999999;
}

.modal_wrap::after {
    content: '';
    position: absolute;
    right: 10%;
    top: 12vh;
    width: 50px;
    height: 50px;
    background: url(../img/icon04.svg) no-repeat center top / auto 50px;
    /* background-color: #ccc; */
}


@media screen and (max-width:768px) {
    .modal_btn {
        width: 100px;
        position: fixed;
        bottom: 120px;
        right: 2%;
    }
}


/* Movie */

#CTA_fixed {
    display: none;
}


@media screen and (max-width:768px) {
    #CTA_fixed {
        display: block;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        z-index: 99999;
        /* background-image: linear-gradient(90deg, #f66409 0%, #fca510); */
    }

    #CTA_fixed a {
        display: block;
        width: 100%;
        border-radius: 0;
        border-top: 1.5px solid #fff;
        position: relative;
        transition: all 0.2s ease-in-out;
    }

    #CTA_fixed a::after {
        content: '';
        position: absolute;
        width: 6px;
        height: 6px;
        border: 1.5px solid;
        border-color: #ffffff #ffffff transparent transparent;
        transform: rotate(45deg);
        top: 43%;
        right: 20px;
        transition: all 0.2s ease-in-out;
    }

    #CTA_fixed a.moreview.contact {
        height: 60px;
        font-size: 18px;
        padding-top: 6px;
        line-height: 1.3;
    }

}