        .fixed-btn {
            position: fixed;
            bottom: 20px;
            /* ↓ 最初のボタンのデフォルト位置（左側） */
            right: 60px; 
            padding: 10px 15px;
            background-color: #7d7d7d;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            transition: background 0.3s;
            z-index: 10; /* 他の要素より手前に表示されるように念のため指定 */
        }

        .fixed-btn:hover {
            background-color: #717171;
        }

        /* 2つ目以降の .fixed-btn の位置を調整（右側） */
        .fixed-btn + .fixed-btn {
            right: 5px; 
        }

        .bp_icon_i{
          width: 15px;
          height: auto;
        }