/* temple専用：Q1 4×5文字マス */
.temple-grid-area {
  display: none;
  margin: 0 auto 22px;
  text-align: center;
}

.temple-grid-area.is-visible {
  display: block;
}

.temple-letter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 80px));
  width: min(320px, 100%);
  margin: 0 auto;
  border-top: 2px solid #111;
  border-left: 2px solid #111;
}

.temple-letter-cell {
  aspect-ratio: 1 / 1;
  min-width: 0;
  border: 0;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  border-radius: 0;
  padding: 0;
  background: #fff;
  color: #111;
  font: 700 clamp(24px, 7vw, 36px) / 1 system-ui, "Yu Gothic", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.temple-letter-cell.is-unlocked {
  cursor: pointer;
}

.temple-letter-cell.is-filled {
  background: #111;
  color: #111;
}

.temple-letter-cell .temple-letter {
  opacity: 1;
  transition: opacity 0.12s ease;
}

.temple-letter-cell.is-soul-match .temple-letter {
  opacity: 0.1;
}

.temple-grid-reset {
  display: none;
  min-height: 44px;
  margin: 14px auto 0;
}

.temple-grid-reset.is-visible {
  display: inline-flex;
}

@media (max-width: 420px) {
  .temple-letter-grid {
    width: min(320px, calc(100vw - 64px));
  }
}
