/* REMOTE SUPPORT フローティングチップ
   tysons の ty-EcLink（position:fixed の固定チップ）パターン。右上固定・濃いグレー透過50%。
   押し先は TeamViewer カスタムQS（OS自動判定）: https://898.tv/teqinc */

.RemoteSupport {
  position: fixed;
  top: 0;
  right: 12px;
  z-index: 50;
}

@media (min-width: 768px) {
  .RemoteSupport {
    right: 5%;
  }
}

.RemoteSupport > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #f7f7f4;
  background-color: rgba(45, 45, 45, 0.5);
  text-decoration: none;
  transition: background-color 0.15s ease;
}

@media (min-width: 768px) {
  .RemoteSupport > a {
    font-size: 11px;
    padding: 4px 12px;
  }
}

.RemoteSupport > a:hover {
  background-color: rgba(45, 45, 45, 0.75);
}

.RemoteSupport .icon {
  width: 1em;
  height: 1em;
  flex: none;
}
