#sp-fcta {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999999;
  transform: translateY(110%);
  transition: transform .35s ease, opacity .35s ease;
  opacity: 0;
  box-shadow: 0 -2px 12px rgba(0,0,0,.15);
}
#sp-fcta.sp-fcta-top {
  top: 0;
  bottom: auto;
  transform: translateY(-110%);
}
#sp-fcta.sp-fcta-bottom {
  bottom: 0;
  top: auto;
}
#sp-fcta.sp-fcta-visible {
  transform: translateY(0);
  opacity: 1;
}

#sp-fcta .sp-fcta-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 auto;
  padding: 10px 14px;
  box-sizing: border-box;
  width: 100%;
}

/* ✅ 中身が空のときは非表示（ズレ防止） */
#sp-fcta .sp-fcta-left:empty {
  display: none;
}

#sp-fcta .sp-fcta-left {
  flex: 1;
  min-width: 0;
}

#sp-fcta .sp-fcta-btn {
  display: inline-block;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 4px;
  background: #fff;
  color: #111;
  font-weight: 600;
  white-space: nowrap;
}

/* 画像ボタンだけ中央揃え */
#sp-fcta .sp-fcta-btn-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}
#sp-fcta .sp-fcta-btn-image img {
  display: block;
  max-height: 44px;
  height: auto;
  width: auto;
}

/* SWELL等のショートコードボタンだけ中央揃え */
#sp-fcta .sp-fcta-right.sc {
  margin-left: auto;
  margin-right: auto;
  align-self: center;
  display: flex;
}
#sp-fcta .sp-fcta-right.sc > * {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  #sp-fcta .sp-fcta-inner {
    padding: 8px 10px;
  }
  #sp-fcta .sp-fcta-btn {
    padding: 10px 12px;
  }
  #sp-fcta .sp-fcta-btn-image img {
    max-height: 38px;
  }
}
