@charset "UTF-8";
html {
  margin: 0;
  padding: 0;
}

body {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  width: 100%;
  max-width: 900px;
  margin: auto;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 200px 0px #cccccc;
          box-shadow: 0 0 200px 0px #cccccc;
  background: #0140c7;
}

body img {
  width: 100%;
}

.date {
  text-align: center;
  font-weight: bold;
  padding: 0.5em 0 0 0;
  color: #fffa21;
}

.ranking .rank_box {
  background-color: #ffffff;
  padding: 0.5em 0.5em;
  margin: 0.5em 0.3em;
  position: relative;
  -webkit-box-shadow: #a1a1a1 0px 5px 5px -5px;
          box-shadow: #a1a1a1 0px 5px 5px -5px;
  border-radius: 5px;
}

.ranking .rank_box .rank_label {
  font-weight: bold;
  position: absolute;
  left: -0.3em;
  top: -1em;
  padding: 5px 0.5em;
}

.ranking .rank_box .label--red {
  background: #ff0000;
  color: white;
}

.ranking .rank_box .name {
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  padding: 0.2em 0 0.5em;
  font-size: large;
}

.ranking .rank_box .name p {
  color: #ff0000;
  font-weight: bold;
  display: inline;
  padding-right: 0.5em;
}

.ranking .rank_box .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ranking .rank_box .desc .img {
  width: 30vw;
  max-width: 50%;
}

.ranking .rank_box .desc .img img {
  width: 100%;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
}

.ranking .rank_box .desc .com {
  padding: 0 0.5em;
}

.ranking .rank_box .desc .com .weight {
  display: inline-block;
  font-weight: bold;
  margin: 0;
}

.ranking .rank_box .desc .com .red {
  display: inline-block;
  color: #ff0000;
  font-weight: bold;
  margin: 0;
  padding-right: 0.5em;
}

.ranking .rank_box .desc .com .orange {
  display: inline-block;
  color: #ff7e00;
  font-weight: bold;
  margin: 0;
}

.ranking .rank_box .rank_btn {
  margin-top: 0.5em;
  margin: 0.5em auto auto auto;
  display: block;
  width: 80vw;
  max-width: 100%;
}

.ranking .rank_box .rank_btn p {
  color: #ff0000;
  text-align: center;
  font-weight: bold;
  font-size: large;
  margin: 0.5em 0;
}

.comment {
  margin: 0.5em 0 0 0;
  padding: 0 0.5em;
  background-color: #fff;
}

.comment .comment_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1em;
}

.comment .comment_box .img {
  width: 15vw;
  max-width: 200px;
}

.comment .comment_box .name {
  font-weight: bold;
}

.comment .txt {
  padding-top: 1em;
  font-size: small;
}

.comment hr {
  margin: 1em 0 0 0;
  padding: 1em 0 0 0;
}

footer {
  background-color: #fff;
}

footer ul {
  list-style-type: disclosure-closed;
  list-style-position: inside;
  margin: 0 0 1em 0;
  padding: 0;
  border-top: 1px solid;
}

footer ul li {
  color: #777777;
  border-bottom: 1px dashed;
  padding: 0.8em 1em;
}

footer ul li a {
  color: #777777;
}

footer p {
  font-size: small;
  text-align: center;
  margin: 0;
  padding-bottom: 1rem;
}

h2 {
  background: #fff;
  text-align: center;
  padding: 0.5em 0;
}

.waku {
  background: #fff;
  padding: 1em;
  font-size: small;
  line-height: 1.3em;
}

/*その他と主な共通部分は省略*/
a.btn--blue {
  color: #fff;
  background-color: #4fa4ff;
  width: 100%;
}

a.btn--blue:hover {
  color: #fff;
  background: #4fa4ff;
}

a.btn--blue.btn--cubic {
  border-bottom: 5px solid #3179c7;
}

a.btn--blue.btn--cubic:hover {
  margin-top: 3px;
  border-bottom: 2px solid #3179c7;
}

a.btn-c {
  font-size: 1em;
  padding: 0.5em 0.5em;
  border-radius: 100vh;
  font-weight: bold;
}

a.btn-c i.fa {
  margin-right: 1rem;
}

.fwrapper {
  position: relative;
  width: 100%;
}

.fmeter {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 0;
  height: 10px;
  background-color: #00c1ff;
  -webkit-animation: meter linear;
          animation: meter linear;
  animation-timeline: scroll();
}

@-webkit-keyframes meter {
  0% {
    background-color: #00c1ff;
    width: 0;
  }
  100% {
    background-color: #ab00ff;
    width: 100%;
  }
}

@keyframes meter {
  0% {
    background-color: #00c1ff;
    width: 0;
  }
  100% {
    background-color: #ab00ff;
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */