  /* ページトップに戻る */
  #page_top{
    width: 36px;
    height: 36px;
    position: fixed;
    bottom: 12px;
    left: 50%;
    /* max-w-xl (576px) の半分の位置から、少し右にずらす */
    transform: translateX(calc(576px / 2 + 16px)); 
    background: rgba(255,255,255,0.9);
    border-radius: 6px;
    border: 1px solid #fafafa;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  }
  
/* ▼ スマホ画面用のレスポンシブ対応 ▼ */
@media screen and (max-width: 640px) {
   #page_top{
    left: auto;
    right: 12px;
    transform: none;
   }
}

#page_top:hover{
  background: rgb(235, 235, 235);
}

  #page_top a{
    position: relative;
    display: block;
    width: 36px;
    height: 36px;
    text-decoration: none;
  }
  #page_top a::before{
    font-family: sans-serif; /* または "Yu Gothic", "Meiryo", sans-serif */
    font-weight: 900;
    content: '▲';
    font-size: 18px;
    color: #999999;
    position: absolute;
    width: 18px;
    height: 18px;
    top: -11px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
   /* ページトップに戻る（終わり） */