/* 20241126　依頼（SR-W202411-010-00）によりトップページにボタン追加 */

.top-mv__btn_addtop {
    position: absolute;
    bottom: 160px;
    right: 80px;
    width: 250px;
    height: 65px;
    font-size: 1.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #053C7E;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1)
}

@media screen and (max-width: 767px) {
    .top-mv__btn_addtop {
        width: 210px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 190px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

.top-mv__btn_addtop span {
    background: url(/assets/images/ico_cardboard.svg) no-repeat left center;
    background-size: 28px 28px;
    padding-left: 40px
}

@media screen and (max-width: 767px) {
    .top-mv__btn_addtop span {
        background-size: 23px;
        padding-left: 33px
    }
}

@media print,
screen and (min-width: 768px) {
    .is-view-pc .top-mv__btn_addtop:hover {
        background-color: #032349
    }
}