#view_today {
  color: thistle;
  font-size: large;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.box {
  position: relative;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 50.5%;
}

p {
  font-family: serif;
  text-align: center;
  font-size: 90px;
  font-weight: bold;
}
.text-focus-in {
  font-size: medium;
  -webkit-animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53)
    both;
  animation: text-focus-in 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
/* ----------------------------------------------
     * Generated by Animista on 2018-11-27 15:52:19
     * w: http://animista.net, t: @cssanimista
     * ---------------------------------------------- */

/**
     * ----------------------------------------
     * animation text-focus-in
     * ----------------------------------------
     */
@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

.btnn {
  position: absolute;
  margin-top: 70rem;
}

.btn,
a.btn,
button.btn {
  position: absolute;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

/*背景*/

.btn-border-gradient-wrap {
  padding: 0.2rem;

  border-radius: 0.5rem;
}

.btn-border-gradient-wrap--silver {
  background-image: -webkit-linear-gradient(
    315deg,
    #333 0%,
    #868888 20%,
    #d8dcdc 34%,
    #999a9c 35%,
    #cccdce 43%,
    white 53%,
    #d1d6d7 68%,
    #9b9d9f 84%,
    #666 100%
  );
  background-image: linear-gradient(
    135deg,
    #333 0%,
    #868888 20%,
    #d8dcdc 34%,
    #999a9c 35%,
    #cccdce 43%,
    white 53%,
    #d1d6d7 68%,
    #9b9d9f 84%,
    #666 100%
  );
}

a.btn-border-gradient {
  font-size: 2rem;
  background: #000;
}

.btn-text-gradient--silver {
  display: flex;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#fff),
    to(#999)
  );
  background: -webkit-linear-gradient(bottom, #fff, #999);
  background: linear-gradient(to top, #fff, #999);
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.btn-border-gradient-wrap--silver:hover a.btn {
  text-shadow: 0 0 15px rgba(209, 214, 215, 0.5),
    0 0 15px rgba(209, 214, 215, 0.5), 0 0 15px rgba(209, 214, 215, 0.5),
    0 0 15px rgba(209, 214, 215, 0.5);
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
  background: #0c0c33;
  overflow: hidden;
}
.container p {
  padding: 20px;
  margin: 0;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}

.stars {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.stars span {
  position: relative;
}

.stars span:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;

  /*星のサイズ調節*/
  transform: scale(0.2);
}

.stars span.s:before {
  /*20px 20pxが中央*/
  box-shadow: 20px 20px #ffffff;
}

.stars span.m:before {
  box-shadow: 
        /*1段目*/ 20px 10px #fff176, /*2段目*/ 10px 20px #fff176,
    20px 20px #ffffff, 30px 20px #fff176, /*3段目*/ 20px 30px #fff176;
}

.stars span.l:before {
  box-shadow: 
        /*0段目*/ 20px 0px #fdd835, /*1段目*/ 20px 10px #fff176,
    /*2段目*/ 0px 20px #fdd835, 10px 20px #fff176, 20px 20px #ffffff,
    30px 20px #fff176, 40px 20px #fdd835, /*3段目*/ 20px 30px #fff176,
    /*4段目*/ 20px 40px #fdd835;
}

/*
    星の位置とアニメーション指定
    最初の秒はアニメーション時間、2つ目は開始までの時間
    */
.stars span:nth-child(1) {
  left: 10%;
  top: 10%;
  animation: star-anim 8s 0s infinite;
}
.stars span:nth-child(2) {
  left: 80%;
  top: 20%;
  animation: star-anim 6s 1s infinite;
}
.stars span:nth-child(3) {
  left: 60%;
  top: 40%;
  animation: star-anim 5s 2s infinite;
}
.stars span:nth-child(4) {
  left: 20%;
  top: 70%;
  animation: star-anim 7s 3s infinite;
}
.stars span:nth-child(5) {
  left: 80%;
  top: 80%;
  animation: star-anim 7s 4s infinite;
}

.stars span:nth-child(6) {
  left: 40%;
  top: 10%;
  animation: star-anim 4s 0s infinite;
}
.stars span:nth-child(7) {
  left: 10%;
  top: 50%;
  animation: star-anim 7s 1s infinite;
}
.stars span:nth-child(8) {
  left: 50%;
  top: 50%;
  animation: star-anim 8s 2s infinite;
}
.stars span:nth-child(9) {
  left: 90%;
  top: 90%;
  animation: star-anim 5s 3s infinite;
}
.stars span:nth-child(10) {
  left: 80%;
  top: 50%;
  animation: star-anim 7s 4s infinite;
}

.stars span:nth-child(11) {
  left: 90%;
  top: 10%;
  animation: star-anim 5s 0s infinite;
}
.stars span:nth-child(12) {
  left: 10%;
  top: 80%;
  animation: star-anim 6s 1s infinite;
}
.stars span:nth-child(13) {
  left: 30%;
  top: 20%;
  animation: star-anim 7s 2s infinite;
}
.stars span:nth-child(14) {
  left: 60%;
  top: 90%;
  animation: star-anim 8s 3s infinite;
}
.stars span:nth-child(15) {
  left: 80%;
  top: 50%;
  animation: star-anim 7s 4s infinite;
}
@media screen and (max-width: 680px) {
  #js-visual_txt {
    font-size: 20px;
  }
  #view_today {
    color: thistle;
    font-size: 20px;

    word-break: keep-all;
  }
  p {
    color: thistle;
    font-size: 10px;
  }

  .visual_cursor {
    width: 1px;
    height: 20px;
  }
}

@keyframes cursor {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/*アニメーションキーフレーム*/
@keyframes star-anim {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  55% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.visual_txt {
  font-family: "游ゴシック";
  font-size: 33x;
  display: flex;
  align-items: center;
  justify-content: top;
  opacity: 0;
}
.visual_txt.isLoaded {
  opacity: 1;
}
.visual_txt > b {
  display: flex;
  align-items: center;
}
.visual_txt > b > [data-char] {
  display: block;
  width: 0;
  overflow: hidden;
  transition-property: width;
  transition-duration: 0s;
}
.visual_txt > b > [data-char="load"] {
  width: 1em;
}
.visual_cursor {
  display: block;
  width: 2px;
  height: 40px;
  background: #000;
  animation-name: cursor;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-timing-function: steps(1);
  animation-fill-mode: backwards;
  animation-direction: alternate;
}

/* リスト */
.count_7 {
  counter-reset: chapter;
}

.count_7 li {
  margin-bottom: 20px;
  border-radius: 10px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #cde2e8;
  font-size: 20px;
  margin-right: 30px;
}

.count_7 li:before {
  content: " " counter(chapter) " 位";
  counter-increment: chapter;
  margin: 0 30px 0 0;
  padding: 10px;
  border-radius: 50px;
  background: goldenrod;
  color: #fff;
  text-align: center;
}

.count_7 li:nth-child(2n):before {
  background: silver;
}

.count_7 li:nth-child(3n):before {
  background: brown;
}

.count_7 li:nth-child(4n):before {
  background: grey;
}
.count_7 li:nth-child(5n):before {
  background: grey;
}
.count_7 li:nth-child(6n):before {
  background: grey;
}
.count_7 li:nth-child(7n):before {
  background: grey;
}
.count_7 li:nth-child(8n):before {
  background: grey;
}
.count_7 li:nth-child(9n):before {
  background: grey;
}
.count_7 li:nth-child(10n):before {
  background: grey;
}
.count_7 li:nth-child(11n):before {
  background: grey;
}
.count_7 li:nth-child(12n):before {
  background: grey;
}

li {
  color: silver;
  list-style: none;
}
