html {
  touch-action: manipulation;
}

body {
  background: rgb(250, 250, 250);
}
body h1 {
  text-align: center;
}
body h2 {
  text-align: center;
  padding: 1rem;
}
body section {
  width: 98%;
  margin: 100px auto;
  border: 1px solid #555;
}
body section ol {
  margin: 8px;
  counter-reset: num;
}
body section ol li {
  list-style: none;
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
body section ol li::before {
  counter-increment: num;
  content: counter(num);
  position: absolute;
  top: 3px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #555;
  color: #fff;
  line-height: 30px;
  text-align: center;
}
body section ol li p {
  margin-bottom: 15px;
}
body section .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgb(253, 246, 235);
  margin: 10px auto;
  padding: 10px;
  width: 97%;
  border: 1px double #333;
  border-radius: 5px;
}
body section .content .text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 1.5em;
}
body section .content button {
  padding: 0.3rem 1rem;
  font-size: 1.3rem;
}

.red {
  color: red;
  font-weight: bold;
}

.teisei {
  text-decoration: line-through;
}

mark {
  display: block;
  max-width: 350px;
  margin-bottom: 15px;
  padding: 7px;
  font-weight: bold;
}

.marker-yellow {
  background: yellow;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

@media (max-width: 480px) {
  body section ol li {
    font-size: 1rem;
  }
  body section .content .text {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */