@charset "utf-8";
/*----------------------------------------
  Yoursite Style
----------------------------------------*/
#back-top.back-to-top {
    line-height: 1.1;
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    overflow: hidden;
    transition-duration: 250ms;
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-property: opacity, top, bottom;
}

    #back-top.back-to-top button {
        width: auto;
        min-width: 110px;
        height: 40px;
        border: none;
        border-radius: 40px;
        background-color: #004280;
        color: #fff;
        font-size: 16px;
        padding: 0 15px;
        -webkit-appearance: none;
        appearance: none;
        display: flex;
        justify-content: center;
        column-gap: 10px;
        align-items: center;
        /*display: grid;
  place-items: center;
  align-content: center;*/
        box-sizing: border-box;
        opacity: 0.8;
        cursor: pointer;
        text-align: center;
        line-height: 1;
    }

        #back-top.back-to-top button:hover {
            opacity: 1;
        }

        #back-top.back-to-top button:focus {
            outline: none;
        }

@media screen and (max-width: 768px) {
    #back-top.back-to-top {
        bottom: 95px;
    }

        #back-top.back-to-top button {
            flex-direction: column;
            min-width: 50px;
            height: auto;
            aspect-ratio: 1;
        }
}
