@charset "UTF-8";
@keyframes bounce {
  0%, 20%, 40%, 100% {
    transform: translateY(0px);
  }
  10%, 30% {
    transform: translateY(-10px);
  }
}
video {
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.bold {
  font-weight: bold;
}

small {
  font-size: 11px;
}
@media screen and (max-width: 414px) {
  small {
    font-size: 9px;
  }
}
small.sup {
  vertical-align: super;
}

.footnote {
  font-size: 11px;
}
@media screen and (max-width: 414px) {
  .footnote {
    font-size: 9px;
  }
}
.footnote.right {
  text-align: right;
}

ul.footnote, ul.footnote {
  list-style-type: none;
  font-size: 11px;
}
@media screen and (max-width: 414px) {
  ul.footnote, ul.footnote {
    font-size: 9px;
  }
}

ul.footnote li::before {
  content: "※";
}

ol.footnote {
  margin-top: 10px;
  padding-left: 0;
  display: table;
  text-align: left;
}
ol.footnote.right {
  margin-left: auto;
}
ol.footnote li {
  display: table-row;
  counter-increment: table-ol;
}
ol.footnote li:before {
  content: "*" counter(table-ol);
  display: table-cell;
  padding-right: 1em;
  width: 1em; /*Firefox用*/
}
ol.footnote li:after {
  content: "";
  display: block;
  margin-bottom: 0.5em;
}

html {
  font-size: 22px;
}
@media screen and (max-width: 414px) {
  html {
    font-size: 20px;
  }
}

body, html {
  height: 100%;
}

body {
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 750px;
  margin: 0 auto;
}
.container img, .container video {
  display: block; /* 縦配置画像の隙間対策 */
  width: 100%;
}
.container > img {
  margin: min(10vw, 60px) 0;
}
.container p {
  text-align: center;
  line-height: 1.5;
}
.container .txtC-BL {
  color: #00a7cd;
}
.container .txtC-PK {
  color: #e64168;
}
.container .underline {
  text-decoration: underline;
}
.container .marker-YL {
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #ffec8b 50%, #ffec8b 100%);
}
.container .marker-BL {
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #b1f1ff 50%, #b1f1ff 100%);
}
.container .imgWrap .footnote {
  margin-top: 0.5em;
}
.container .btn_ani {
  animation: bounce 2s infinite;
}
.container footer {
  background-color: #eee;
  padding: 20px 10px;
  font-size: 11px;
}
@media screen and (max-width: 414px) {
  .container footer {
    font-size: 9px;
  }
}
.container footer ul.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
  margin-bottom: 20px;
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */