*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--gx-navy);
  background: var(--gx-bg-pc);
  font-family: var(--gx-font-family);
  font-size: 13px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

a {
  color: var(--gx-primary);
  text-decoration: none;
}

a:hover {
  color: var(--gx-primary-hover);
}

:focus-visible {
  outline: 2px solid rgba(0, 77, 254, 0.5);
  outline-offset: 2px;
}

.gx-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gx-muted {
  color: var(--gx-text-secondary);
}

.gx-tertiary {
  color: var(--gx-text-tertiary);
}

.gx-link {
  padding: 0;
  color: var(--gx-primary);
  background: none;
  border: 0;
  font-weight: 500;
}

.gx-link:hover {
  color: var(--gx-primary-hover);
}

.gx-divider {
  height: 1px;
  background: var(--gx-border);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

