#slide-footer-bar {
  position: fixed;
  bottom: -999px; /* 初期位置は画面外 */
  left: 0;
  width: 100%;
  padding: 0 8px 8px;
  transition: bottom .5s; /* スライドインのアニメーション */
  z-index: 999;
  /*background-color: rgba(0, 0, 0, 0.6);*/
  /*border-radius: 6px 6px 0 0;*/
}

#slide-footer-bar .slide-footer-bar-text {
  position: relative;
  top: .5rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: auto;
  max-width: 90%; /* 必要に応じて調整 */
  min-width: 100px; /* 最低限の幅 */
  color: var(--jlink-footer-text-color);
  padding: 8px 20px;
  border: 2px solid var(--jlink-footer-border-color);
  border-radius: 1.5em;
  line-height: 1.0em;
  background-color: var(--jlink-footer-bg-color);
  text-align: center;
}

#slide-footer-bar .j-link {
  display: block;
  width: 100%;
  padding: 18px 0 18px;
  text-align: center;
  cursor: pointer;
  color: var(--jlink-text-color);
  text-decoration: none;
  background-color: var(--jlink-bg-color);
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.0em;
}

@media (min-width: 960px) {

  #slide-footer-bar {
    width: 680px;
    left: 50%;
    padding: 0 12px 16px;
    transform: translate(-50%, 0);
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 6px 6px 0 0;
  }

}