.p-footer__contents.fixed-float {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #000;
  z-index: 9999;
  padding: 12px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
}

.p-footer__contents.fixed-float .p-footer__right {
  flex: 8;
  text-align: center;
}

.p-footer__contents.fixed-float .p-push-btn {
  display: inline-block;
  width: 100%;
  background: #f47b20;
  color: #fff;
  font-size: 0.95rem;
  font-weight: bold;
  padding: 10px 8px;
  border-radius: 6px;
  text-decoration: none;
}

.p-footer__contents.fixed-float .p-footer__tel-sp {
  flex: 2;
  text-align: center;
}

.p-footer__contents.fixed-float .p-btn-tel {
  display: inline-block;
  width: 100%;
  background: #117a39;
  color: #fff;
  font-size: 0.95rem;
  font-weight: bold;
  padding: 10px 8px;
  border-radius: 6px;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  /* 通常のfooterを非表示にするが、.fixed-float付きは表示する */
  .p-footer__contents {
    display: none;
  }
  .p-footer__contents.fixed-float {
    display: flex;
  }
  body {
    padding-bottom: 0 !important;
  }
}

body {
  padding-bottom: 0;
}