@charset "UTF-8";
@import url(../settings/settings.scss);
@font-face {
  font-family: 'dash-digital';
  src: url("../../fonts/dash_digital-7.ttf") format("truetype");
}

@-webkit-keyframes anima_slide_8 {
  0% {
    top: 0;
  }
  100% {
    top: -100%;
  }
}

@keyframes anima_slide_8 {
  0% {
    top: 0;
  }
  100% {
    top: -100%;
  }
}

@-webkit-keyframes border_anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes border_anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes border_anime2 {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes border_anime2 {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes fadeInText {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInText {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.count2 {
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  /*この数字を必要回数分に変更*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  /*この数字を変化させたい時間に変更*/
}

.content_title_anime {
  -webkit-animation: fadeUpAnime 1s 0.2s ease-out forwards;
          animation: fadeUpAnime 1s 0.2s ease-out forwards;
}

.fadeInUpTriggerOnce {
  opacity: 0;
}

body {
  width: 100vw;
  font-family: 'dash-digital';
  background-color: #000;
}

body main {
  width: 100%;
  margin: 17vh auto 0 auto;
}

@media screen and (max-width: 1024px) {
  body main {
    width: 100%;
    margin: 10vh auto 0 auto;
  }
}

body main .title_wrapper {
  width: 100%;
  position: relative;
}

body main .title_wrapper .title {
  width: calc(clamp(24px, 5vw, 75px)*10);
  color: #4ff907;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin: 0 auto;
  font-weight: bolder;
}

@media screen and (max-width: 599px) {
  body main .title_wrapper .title {
    width: calc(clamp(21px, 5vw, 75px)*10);
  }
}

body main .title_wrapper .title span {
  display: inline-block;
  font-size: clamp(24px, 5vw, 75px);
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
  margin: 0 auto;
  padding: 10px 0;
}

body main .title_wrapper .title span:nth-child(1) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.1s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.1s forwards;
}

body main .title_wrapper .title span:nth-child(2) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.2s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.2s forwards;
}

body main .title_wrapper .title span:nth-child(3) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.3s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.3s forwards;
}

body main .title_wrapper .title span:nth-child(4) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.4s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.4s forwards;
}

body main .title_wrapper .title span:nth-child(5) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.5s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.5s forwards;
}

body main .title_wrapper .title span:nth-child(6) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.6s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.6s forwards;
}

body main .title_wrapper .title span:nth-child(7) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.7s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.7s forwards;
}

body main .title_wrapper .title span:nth-child(8) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.8s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.8s forwards;
}

body main .title_wrapper .title span:nth-child(9) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.9s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.9s forwards;
}

body main .title_wrapper .title span:nth-child(10) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 1s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 1s forwards;
}

@media screen and (max-width: 599px) {
  body main .title_wrapper .title span {
    font-size: clamp(21px, 5vw, 75px);
  }
}

body main .title_wrapper .border_wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body main .title_wrapper .border_wrapper .left_border {
  width: 50%;
  position: relative;
}

body main .title_wrapper .border_wrapper .left_border::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: solid 1px #4ff907;
  -webkit-animation: border_anime 1s 0.6s cubic-bezier(0.8, 0, 0.5, 1) forwards;
          animation: border_anime 1s 0.6s cubic-bezier(0.8, 0, 0.5, 1) forwards;
}

body main .title_wrapper .border_wrapper .right_border {
  width: 50%;
  position: relative;
}

body main .title_wrapper .border_wrapper .right_border::before {
  content: '';
  position: absolute;
  left: 100%;
  bottom: 0;
  width: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  border-bottom: solid 1px #4ff907;
  -webkit-animation: border_anime2 1s 0.6s cubic-bezier(0.8, 0, 0.5, 1) forwards;
          animation: border_anime2 1s 0.6s cubic-bezier(0.8, 0, 0.5, 1) forwards;
}

body .supporters {
  width: 100%;
  margin: 50px auto 100px auto;
}

@media screen and (max-width: 599px) {
  body .supporters {
    margin: 25px auto 50px auto;
  }
}

body .supporters .content_title {
  width: 100%;
}

body .supporters .content_title h2 {
  font-size: clamp(16px, 5vw, 24px);
  margin: 0 auto;
  color: #4ff907;
  text-align: center;
}

body .supporters .icon_wrap01 {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 15% 15% 15% 15% 15%;
      grid-template-columns: 15% 15% 15% 15% 15%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 50px auto;
}

@media screen and (max-width: 1024px) {
  body .supporters .icon_wrap01 {
    -ms-grid-columns: 30% 30%;
        grid-template-columns: 30% 30%;
  }
}

@media screen and (max-width: 599px) {
  body .supporters .icon_wrap01 {
    -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
    margin: 5px auto;
  }
}

body .supporters .icon_wrap01 .supporter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px 0 40px 0;
}

@media screen and (max-width: 599px) {
  body .supporters .icon_wrap01 .supporter {
    margin: 30px 20px;
  }
}

body .supporters .icon_wrap01 .supporter img {
  width: 60%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 599px) {
  body .supporters .icon_wrap01 .supporter img {
    width: 50%;
  }
}

body .supporters .icon_wrap01 .long_width_logo img {
  width: 100%;
}

@media screen and (max-width: 599px) {
  body .supporters .icon_wrap01 .long_width_logo img {
    width: 100%;
  }
}

body .supporters .icon_wrap01 .square_logo img {
  width: 70%;
}

@media screen and (max-width: 599px) {
  body .supporters .icon_wrap01 .square_logo img {
    width: 60%;
  }
}

body .supporters .icon_wrap01 .supporter05 img {
  width: 80%;
}

@media screen and (max-width: 599px) {
  body .supporters .icon_wrap01 .supporter05 img {
    width: 70%;
  }
}

body .supporters .icon_wrap01 .supporter13 img {
  width: 80%;
}

@media screen and (max-width: 599px) {
  body .supporters .icon_wrap01 .supporter13 img {
    width: 70%;
  }
}
/*# sourceMappingURL=supporters.css.map */