:root {
  --brand-pink: #e31782;
  --text-color: #333333;
  --disabled-bg: #d1cfcf;
  --page-bg: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page-bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text-color);
  background: var(--page-bg);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
}

.gate {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  padding: 28vh 20px 56px;
}

.gate__inner {
  width: min(100%, 296px);
  text-align: center;
}

.brand {
  margin: 0;
}

.brand__logo {
  display: block;
  width: 205px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.gate__message {
  margin: 36px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0;
}

.gate__actions {
  display: grid;
  gap: 24px;
  width: 264px;
  margin: 76px auto 0;
}

.gate-button {
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.gate-button--primary {
  background: var(--brand-pink);
}

.gate-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgb(0 0 0 / 12%);
  filter: brightness(1.04);
}

.gate-button:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgb(0 0 0 / 10%);
}

.gate-button--primary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand-pink), white 45%);
  outline-offset: 4px;
}

.gate-button--secondary {
  background: var(--disabled-bg);
  opacity: 1;
}

.gate-button--secondary:focus-visible {
  outline: 3px solid #e8e6e6;
  outline-offset: 4px;
}
