/* develop 環境で結合テスト環境ラベルを固定表示する */
body::after {
  content: "DEVELOP / 結合テスト環境";
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2147483647;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(0, 123, 255, 0.55);
  color: #fff;
  font-family: system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  pointer-events: none;
}
