
/* 固定フッター */
.div_fixed_footer {
    height: 30px;
    background-color: #f8fafc;
}

/* フッター内の文字列要素 */
.p_footer {
    white-space: nowrap;            /* 改行させない */
    text-align: right;              /* 文字列を右寄せ */
    padding-right: 20px;
    margin-bottom: 0 !important;    /* footerの高さを30pxにするため<p>に設定されている"margin-bottom: 1rem"の設定を無効化する必要があるため */
}