/*------------------------------
    scroll top
  -------------------------------*/
/*リンクの形状*/
#ticket-wrapper #page-top {
    border: solid 1px #000;
    border-radius: 50%;
    width: 6rem;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ticket-wrapper #page-top a {
    border: 0.1em solid var(--black);
    border-left: 0;
    border-bottom: 0;
    display: inline-block;
    transform: translateY(25%) rotate(-45deg);
    width: 2rem;
    height: 2rem;
}

#ticket-wrapper  #page-top:hover {
    background: var(--black-a010);
}


/*リンクを右下に固定*/
#ticket-wrapper #page-top {
    position: fixed;
    right: 10px;
    bottom: 4%;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
}

/*　上に上がる動き @keyframe　*/
#ticket-wrapper #page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

/*　下に下がる動き　@keyframe */
#ticket-wrapper #page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@media screen and (max-width: 768px) { 
    #ticket-wrapper #page-top {
        display: none;
    }
}
