body {
    background: linear-gradient(0deg, rgba(5,0,87,1) 0%, rgba(10,65,236,1) 32%, rgba(0,212,255,1) 100%);
    color: #0f0f0f;
    font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 500;
    padding: 0;
    margin: 0;
    position: relative;
}

.postbutton {
    display: inline-block;
    background: rgb(0, 0, 0);
    /* 背景色 */
    color: white;
    /* 文字色 */
    font-size: 1rem;
    /* 文字サイズ */
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: bold;
    /* 太字 */
    text-decoration: none;
    /* 下線を消す */
    border: none;
    padding: 5px 14px;
    border-radius: 0;
    /* 枠の角丸 */
    cursor: pointer;
    transition: 0.3s;
  }

  .postbutton:hover {
    background-color: #2fd635;
}

body:not(.onelog) .forOnePost { display: none; }  /* 単独表示ではない状況なら、単独表示用要素は見えなくする */

body.onelog .forPostList { display: none; }        /* 単独表示なら、一覧表示用要素を見えなくする */

