<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 固定フッタスタイル
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}
body {
  /* フッタの下側マージンの高さ */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* ここでフッタの固定高さを設定 */
  height: 60px;
  line-height: 60px; /* ここでテキストを垂直に中央に配置 */
  background-color: #3E3F3A;
}

/* ページのカスタムCSS
-------------------------------------------------- */
/* フッタを画面下部に固定の設定とは無関係 */

body &gt; .container {
  padding: 60px 15px 0;
}

.footer &gt; .container {
  padding-right: 15px;
  padding-left: 15px;
}</pre></body></html>