﻿@charset "utf-8";
    body {
      height: 2000px; /* スクロールを確認しやすくするために高さを設定 */
      font-family: sans-serif;
      padding: 20px;
    }

    #topBtn {
      position: fixed;
      bottom: 20px;  /* 下から20px */
      right: 20px;   /* 右から20px */
      /*background-color: #333;*/
      color: white;
      border: none;
      border-radius: 8px;
      padding: 10px 15px;
      cursor: pointer;
      font-size: 14px;
      z-index: 1000;
      opacity: 0.7;
      transition: opacity 0.3s;
    }

    #topBtn:hover {
      opacity: 1;
    }