/* 251010: 予約・アクセスの追尾ボタン（右下に固定、コンパクト表示） */
.sm-fixed-actions {
  position: fixed;
  right: 100px;
  bottom: 5%;
  left: auto;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: auto;
}

.sm-fixed-actions__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  width: fit-content;
  margin-left: auto;
}

.sm-fixed-actions__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.sm-fixed-actions__btn--tel {
  background: #1b1b1b;
  color: #fff;
}

.sm-fixed-actions__btn--access {
  background: #fff;
  color: #1b1b1b;
  border: 2px solid #1b1b1b;
}

.sm-fixed-actions__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sm-fixed-actions__label {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: left;
}

.sm-fixed-actions__label strong {
  font-size: 13px;
  font-weight: bold;
}

.sm-fixed-actions__label small {
  font-size: 10px;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .sm-fixed-actions {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    flex-direction: row;
    gap: 0;
  }
  .sm-fixed-actions__btn {
    flex: 1 1 50%;
    padding: 8px 12px;
    border-radius: 0;
    justify-content: center;
  }
  .sm-fixed-actions__label strong {
    font-size: 12px;
  }
  .sm-fixed-actions__label small {
    font-size: 9px;
  }
}
