.line-height-ys {
line-height:1.65;
}

#scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    opacity: 0.7;

    color: #fff; /* テキスト色 */
    text-align: center;
    padding: 10px 20px; /* 上下左右のパディング */
    border-radius: 5px; /* 角丸 */

    background-color: #007bff; /* 背景色 */
    transition: background-color 0.3s ease-in-out; /* ホバー時のアニメーション */
}

/* アンカーリンクのホバースタイル */
a.scroll-to-top:hover {
    background-color: #0056b3; /* ホバー時の背景色 */
}

/* アンカーリンクのクリックスタイル */
a.scroll-to-top:active {
    background-color: #003570; /* クリック時の背景色 */
}