@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  touch-action: manipulation;
}
body{
  background: #fff;
}
h2 {
  margin: 50px 0 20px 0;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
}
main .content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 150px auto;
  padding: 15px;
  counter-reset: number 0;
}
main .content h3 {
  border-left: 10px red solid;
  border-bottom: 2px #333 dotted;
  margin: 50px 0 20px;
  padding: 20px;
}
main .content h3:hover {
  color: #333;
}
.counter {
  position: relative;
  padding-left: 30px;
  font-size: 1.3em;
  line-height: 1.5em;
}
.counter::before {
  counter-increment: number 1; /*ポイント*/
  content: counter(number) ")"; /*ポイント*/
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 1.3em;
}
.content ul {
  margin: 20px 30px;
}
main .content ul li {
  position: relative;
  margin: 20px 0;
}
main .content p {
  margin: 10px;
}
main .content ol {
  margin: 30px 0;
  padding: 15px;
  padding-left: 40px;
  border-radius: 8px;
}
.wrapper,
.wrapper2 {
  width: 98%;
  text-align: center;
  margin: 0 auto;
}
.text,
.text2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  background: #fff;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 10px;
  font-size: 3em;
  box-shadow: 0 0 10px #333;
}
button {
  padding: 10px;
  font-weight: bold;
  font-size: 1.5em;
}

.TorF {
  width: 100px;
  margin: 0 auto;
}
.TorF img {
  width: 100%;
}
.batu,
.maru {
  position: relative;
}
.batu::before {
  content: "";
  background-image: url(./img/batu.png);
}
.maru::before {
  content: "";
  background-image: url(./img/maru.png);
}
.maru::before,
.batu::before {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  width: 40px;
  height: 40px;
}
.red{
  color: red;
  font-weight: bold;
}
main .audio-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  h2{
    font-size: 1.5rem;
  }
  .text,
  .text2 {
    font-size: 1.3em;
    height: 150px;
  }
}
