#sticky {
    position: fixed;
    /* フッターを固定する */
    bottom: 0;
    /* 上部から配置の基準位置を決める */
    left: 0;
    /* 左から配置の基準位置を決める */
    width: 100%;
    /* フッターの横幅を指定する */
    height: 100px;
    /* フッターの高さを指定する */
    padding: 10px;
    /* フッター内側の余白を指定する(上下左右) */
    background-color: #ffffff;
    /* フッターの背景色を指定する */
    text-align: center;
    /* 画像をセンターへ */
}

@media only screen and (max-width: 750px) {
    #sticky {
        position: fixed;
        /* フッターを固定する */
        bottom: 0;
        /* 上部から配置の基準位置を決める */
        left: 0;
        /* 左から配置の基準位置を決める */
        width: 100%;
        /* フッターの横幅を指定する */
        height: 60px;
        /* フッターの高さを指定する */
        padding: 5px;
        text-align: center;
        /* 画像をセンターへ */
        z-index: 9999;
    }
}

#footer_fix_btn {
    position: fixed;
    z-index: 999999;
    bottom: 0;
    width: 100%;
    padding: 5px 0 5px 0;
    text-align: center;
    background: #ffffff; // 背景色
    font-size: 16px; // テキストの大きさ
    color: #000000; // 文字色
    border-top: 2px solid #ffffff; // ボタン上部の縁取りの色
}

#footer_fix_btn a {
    display: block;
    width: 100%;
    text-decoration: none;
}

#footer_fix_btn a:hover {
    opacity: 0.8;
}

@media only screen and (max-width: 750px) {
    #footer_fix_btn img {
        width: 80%;
    }
}