@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Sawarabi+Mincho&family=Zen+Old+Mincho:wght@400;900&display=swap');

html {
  font-size: 62.5%;
}

#info {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  line-height: 1.7;
}

#info * {
  box-sizing: border-box;
}

#info>p {
  margin: 2.0rem auto 0;
  width: 90%;
}

#info p strong {
  background-color: gold;
}

#info a {
  text-decoration: underline;
  color: blue;
}

#info a:hover {
  text-decoration: none;
}

@media screen and (max-width:768px) {
  #info .howto ul li {
    width: 100%;
    margin-top: 4rem;
  }

  #info .howto ul li::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 2.0rem solid transparent;
    border-top: 1.5rem solid #fff;
    position: absolute;
    top: calc(100% + 1.0rem);
    right: 50%;
    transform: translate(50%, 0);
  }

}

