body { font-family: 'Noto Sans JP', sans-serif; }


/* Bootstrap拡張: 追加の文字サイズ */
.fs-7 { font-size: 0.9rem !important; }
.fs-8 { font-size: 0.8rem !important; }
.fs-9 { font-size: 0.7rem !important; }
.fs-10 { font-size: 0.6rem !important; }


/* Bootstrap拡張: 追加のrounded */
.rounded-4 { border-radius: 1.5rem !important; }
.rounded-5 { border-radius: 2rem !important; }
.rounded-6 { border-radius: 3rem !important; }
.rounded-7 { border-radius: 4rem !important; }
.rounded-8 { border-radius: 5rem !important; }
.rounded-9 { border-radius: 9999px !important; }


/* 複数行テキストのスタイル */
.justified {
  text-align: justify;
  }


/* 長文改行防止 */
.break-all {
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word; /* 古いブラウザ対応 */
}




/* サイドバー */
.sidebar {
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
/* モバイル用固定メニュー */
.mobile-fixed-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #343a40;
  z-index: 1030;
}
@media (max-width: 768px) {
  .mobile-fixed-menu {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
  }
}