.custom-floating-button {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: center;
    padding: .5rem;
	transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.custom-floating-button .floating-button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e60039;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.custom-floating-button .floating-button-link:hover {
    background-color: #d00033;
}

.custom-floating-button.slide-out {
    transform: translateX(-50%) translateY(100px); /* ボタンを下にスライド */
    opacity: 0; /* フェードアウト */
}

.custom-floating-button.slide-in {
    transform: translateX(-50%) translateY(0); /* ボタンを元の位置に戻す */
    opacity: 1; /* フェードイン */
}
