/*
 Theme Name: JIN Child
 Template: jin
*/

/* 全体の余白調整：footer + breadcrumb分だけ確保 */
body {
  margin: 0;
  padding-bottom: 60px;
  box-sizing: border-box;
}

/* breadcrumbを固定（フッターの上に配置） */
#breadcrumb {
  position: fixed;
  bottom: 0px;  /* footerの高さ分上 */
  left: 0;
  height: 0;
  width: 100%;
  z-index: 1000;
  padding: 0  /* 横だけ残す */
}

#breadcrumb ul {
  margin-top: 0 !important;
  padding: 0 !important;
  list-style: none; /* ついでにリストマーカー消す */
}

/* footerを固定 */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 15px !important;
  width: 100%;
  z-index: 999;
  height: 30px; /* 高さを明示的に決めておくと安定する */
  display: flex;
  align-items: center;
  justify-content: center;
}
