/* 固定最下部共通設定 */
.ma-fixed-bottom {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 80px !important;               /* PC標準高さ */
  background-color: #f0f0f0 !important;  /* 背景色 */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1) !important;
  z-index: 9999 !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  color: #000 !important;
  font-size: 18px !important;            /* PC文字サイズ */
  text-align: center !important;
}

/* スマホ用設定 */
@media screen and (max-width: 768px) {
  .ma-fixed-bottom {
    height: 60px !important;             /* スマホ用高さ */
    font-size: 14px !important;          /* スマホ文字サイズ */
  }
}
