/**
 * Sticky Contact Buttons Component
 *
 * 画面右下に固定表示される予約・相談ボタン
 */

#con-btn {
    position: fixed;
    bottom: 10px;
    right: 0;
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#con-btn.visible {
    opacity: 1;
    transform: translateX(0);
}

#con-btn a {
    text-decoration: none;
    width: 28px;
    text-align: center;
    display: block;
    border-radius: 5px;
    margin-top: 10px;
    transition: transform 0.2s ease;
}

#con-btn a:hover {
    text-decoration: none;
    transform: scale(1.05);
}

#con-btn a img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
}
