/* operation.css: 運営情報ページ専用 */

.operatorCard {
  margin: 18px 0 34px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.operatorText {
  min-width: 0;
}

.operatorLabel {
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
  opacity: 0.72;
}

.operatorName {
  display: block;
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.3;
}

.operatorText p {
  margin: 0;
}

.operatorLinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  margin-top: 28px;
}

.xProfileLink {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  text-decoration: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.xProfileLink:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.xProfileLink:focus-visible,
.contactLink:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

.xProfileLink img {
  width: 23px;
  height: 24px;
  object-fit: contain;
}

.contactLink {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}

.contactLink:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 640px) {
  .operatorCard {
    padding: 20px;
  }

  .operatorLinks {
    flex-direction: column;
    gap: 30px;
    margin-top: 26px;
  }
}
