@charset "UTF-8";

.cssskin-_block_footer {
    background-color: #009fe3;
    position: relative; /* フッターは相対位置に設定 */
    width: 100%; /* ページ幅全体に設定 */
    height: 40px !important; /* 高さを40pxに設定 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-sizing: border-box; /* 境界線やパディングを含めて高さと幅を計算 */
}

.cssskin-_block_footer p {
    color: #ffffff; /* 文字色を白に設定 */
    background-color: #009fe3; /* 背景色を#009fe3に設定 */
    width: 100%; /* 幅を100%に設定 */
    text-align: center; /* テキストを中央揃えに */
    white-space: nowrap;
    margin: 0; /* マージンを削除 */
    line-height: 40px; /* テキストを上下中央に揃える */
    box-sizing: border-box; /* 境界線やパディングを含めて高さと幅を計算 */
    position: fixed; /* p要素を固定位置に設定 */
    left: 0; /* 左端から始める */
    bottom: 0; /* 下端から始める */

	    padding-bottom: 0px;
}


