/* ===============================
   フッター全体のスタイル
   =============================== */
#footer-container {
  background-color: #002f6c;
  color: white;
  text-align: center;
  padding: 10px 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   フッター内テキストの色補強
   =============================== */
#footer-container p,
footer#footer-container p {
  font-size: var(--font-sm);
  color: white;
  margin: 0;
}

/* ===============================
   レスポンシブ対応
   =============================== */
@media (max-width: 600px) {
  #footer-container {
    height: 56px;
  }
}