@charset "UTF-8";

/* ==========================================================================
   旧 ../../css/style.css の <footer> / <header> 直接定義をリセット
   --------------------------------------------------------------------------
   45 変換PHP（history.php / plan_*.php / philosophy.php 等）は旧サイトCSS
   ../../css/style.css をそのまま読み込んでおり、行754〜の `footer { ... }`
   定義（旧フッター背景・両端40px padding・負マージン）が柏平 footer.php に
   干渉する。これを `!important` で打ち消す。
   柏平 assets/css/* の直後に読み込むこと。
   ========================================================================== */

footer {
  background: none !important;
  background-image: none !important;
  padding: 0 !important;
  margin: 0 !important;
  color: inherit !important;
  position: static !important;
}
footer::before,
footer::after {
  display: none !important;
  content: none !important;
}

/* SP メディアクエリ内の旧 footer 定義もリセット */
@media (max-width: 768px) {
  footer {
    background: none !important;
    background-image: none !important;
    padding: 0 !important;
  }
  footer::before {
    display: none !important;
  }
}
