@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8em;
  line-height: 2.4rem;
  text-align: center;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
h2 {
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.2rem;
  padding: 20px 0;
  background: linear-gradient(transparent 65%, #e4e865 65%);
  margin: 10px;
}
.m-only {
  display: none;
}
.pc-only {
  display: block;
}
@media(max-width:769px) {
  h2 {
    font-size: 1.8rem;
    padding: 8px 10px;
  }
  .m-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}