/* ------hint page -------- */

@charset "utf-8";

body{
  margin: 0;
  padding: 0;

  background-color: black;
  min-height: 100vh;
  display: flex;
  justify-content: center; /* 横中央寄せ */
  z-index: 0;
}

.hint-container {
  width: 90%;
  margin: 0 auto;
  font-family: "Yu Gothic", sans-serif;
  color: white;
  padding-bottom: 50px;
}

.hint-container h1 {
  max-width: 800px;
  margin: 0 auto; /* 中央寄せ */
  padding: 20px;
  font-family: "Yu Gothic", sans-serif;
  font-weight: 1000;
  color: white;
  box-sizing: border-box;

  text-align: center;

}

.hint-section {
  /* max-width: 400px; */
  border-top: 1px solid white;
  padding: 1em 0;
}

.hint-section h2 {
  font-size: 1.5em;
  margin-bottom: 0.5em;

  text-align: center;

  font-family: "Yu Gothic", "ヒラギノ角ゴ ProN", "メイリオ", sans-serif;
  font-weight: 1000;
}

.hidden {
  display: none;
}

.hint-step {
  margin: 2rem;

  font-family: 'Times New Roman', Times, serif;
}
.hint-step > p{
  text-align: center;
}

button {
  width: 70%;
  height: 50px;

  display: block;
  margin: 0.5em auto;
  padding: 0.5em 1em;
  background-color: transparent;
  color: white;
  font-size: 20px;
  border: 1px solid white;
  border-radius: 4px;
  cursor: pointer;

}

button:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.hint-start{
  font-weight: 1000;
  font-family: "Yu Gothic", "ヒラギノ角ゴ ProN", "メイリオ", sans-serif;
}
.hint-next {
  margin-top: 0.5em;

  font-weight: 1000;
  font-family: "Yu Gothic", "ヒラギノ角ゴ ProN", "メイリオ", sans-serif;
}