/**
 * TOPへ戻るボタン用のCSS
 * ---------------------------
 * 2025.11.13 created gritサイトパーツから流用し、調整
 * **/
 #page_top {
    width: 85px;
    height: 85px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: #666;
    opacity: 0.8;
    z-index: 10000;/* サイドCTAボタンと重なるので注意 */
    border-radius: 50%;
}
#page_top::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f0d8';
    font-size: 55px;
    color: #ffffff;
    position: absolute;
    top: 15px;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}
#page_top::after {
    content: 'PAGE TOP';
    font-size: 14px;
    color: #fff;
    position: absolute;
    top: 45px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    font-weight: normal;
}
