/* 追従バーのベーススタイル */
.floating-bar {
    position: fixed;
    bottom: 0;           /* 画面の一番下に密着 */
    left: 0;
    width: 100%;        /* 横幅いっぱい */
    height: 60px;       /* バーの高さ */
    background-color:#6eb92b;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    
    /* アニメーション用：最初は下に隠しておく */
    transition: transform 0.4s ease-in-out;
    transform: translateY(100%); 
}

/* 表示状態 */
.floating-bar.is-visible {
    transform: translateY(0);
}

/* リンクエリアの装飾 */
.bar-content {
    display: flex;
    justify-content: center; /* 中央揃え */
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    gap: 15px; /* テキスト間の隙間 */
}

/* 強調文字（ボタンっぽく見せる） */
.bar-content strong {
    background: #fff;
    color: #6eb92b;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 14px;
}

/* PCなどで横に広がりすぎるのを防ぎたい場合 */
@media (min-width: 768px) {
    .bar-content {
        font-size: 18px;
    }
}

#float_margin{
    height: 0px;
}