.box {
    cursor: pointer;
}

.reserve {
    opacity: 0;
    transition: 0.3s;
}

.box:hover .reserve {
    opacity: 1;
}