#topbutton {
    /* ←右端からの距離 */
    width: 4em;
    /* ←横幅 */
    /* ▼最初は非表示にしておく */
    display: none;
    /* ←文字サイズ */
    /*font-weight: bold;      ←文字の太さ */
    margin: 0px;
    /* ←外側の余白 */
    padding: 8px;
    /* ←文字の位置 */
    font-size: 100%;
    /* ←内側の余白 */
    line-height: 1.3em;
    /* ←角丸の半径 */
    text-align: center;
    /* ←透明度 */
    border-radius: 5px;
    /* ▼配色・配置・文字の装飾など */
    background-color: #151515;
    /* ←背景色 */
    opacity: 0.75;
    /* ▼表示位置を画面の右下に固定 */
    position: fixed;
    /* ←表示場所を固定 */
    bottom: 18px;
    /* ←下端からの距離 */
    right: 18px;
}

#topbutton a {
    /* ▼リンクの装飾 */
    color: white;
    /* ←文字色 */
    text-decoration: none;
    /* ←下線なし */
}

#topbutton a:hover {
    /* ▼マウスが載ったときの装飾 */
    color: white;
    /* ←文字色 */
    text-decoration: none;
    /* ←下線あり */
}
