@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  letter-spacing: 0.1em;
  position: relative;
  background-color: #fff;
  background-repeat: repeat-y;
  background-position: top;
  background-size: 100%;
  background-size: min(100%, auto);
  background-image: url("../img/main/bg_main_pc.jpg");
  background-attachment: fixed;
  overflow-x: hidden;
  margin-inline: auto;
}
body.show {
  overflow: hidden;
}
@media (width < 1440px) {
  body {
    background-size: 1440px;
    background-position: top left;
  }
}
@media (width < 769px) {
  body {
    background-image: url("../img/main/bg_main_sp.jpg");
    background-size: 100%;
    min-width: 100%;
  }
}

a {
  text-decoration: none;
  transition: all 0.5s ease;
}
a:hover {
  opacity: 0.5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

img {
  width: 100%;
}

.onlyPC {
  display: block !important;
}

.onlySP {
  display: none !important;
}

@media (width < 769px) {
  .onlyPC {
    display: none !important;
  }
  .onlySP {
    display: block !important;
  }
}
.scroll-target {
  position: absolute;
  top: -60px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
}
.scroll-target__wrap {
  position: relative;
}

.headline {
  position: relative;
  z-index: 1;
}
.headline__main, .headline__sub {
  display: block;
}
.headline__main {
  position: relative;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 1;
  color: #000;
  padding-left: 31px;
}
.headline__main::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #e75e02;
  position: absolute;
  left: 0;
  top: 16px;
}
.headline__sub {
  padding-left: 33px;
  font-size: 14px;
  font-weight: 500;
  color: #e75e02;
  line-height: 1.86;
  margin-top: 5px;
}
@media (width < 769px) {
  .headline__main {
    font-size: 36px;
    line-height: 0.9;
  }
  .headline__main::before {
    top: 16px;
  }
  .headline__sub {
    margin-top: 0;
  }
}

.entry__btn {
  margin-inline: auto;
  max-width: 500px;
  height: 73px;
  border-radius: 40px;
  background-color: #e75e02;
}
.entry__btn-link {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.5s ease;
}
.entry__btn-link:hover {
  opacity: 1;
}
.entry__btn-link:hover .entry__btn-circle {
  background-color: #fff;
}
.entry__btn-link:hover .entry__btn-icon {
  fill: #000;
}
.entry__btn-link:hover .entry__btn-text:nth-child(1) {
  left: 100%;
}
.entry__btn-link:hover .entry__btn-text:nth-child(2) {
  left: 0;
}
.entry__btn-text-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.entry__btn-text {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  transition: all 0.5s ease;
  text-align: center;
  padding-right: 9px;
}
.entry__btn-text:nth-child(1) {
  left: 0;
}
.entry__btn-text:nth-child(2) {
  left: -100%;
}
.entry__btn-circle, .entry__btn-icon {
  transition: all 0.5s ease;
}
.entry__btn-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  background-color: #000;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.entry__btn-icon {
  fill: #fff;
  width: 14px;
  height: 14px;
}
@media (width < 769px) {
  .entry__btn {
    max-width: 335px;
    height: 64px;
  }
  .entry__btn-text {
    font-size: 18px;
  }
  .entry__btn-circle {
    width: 40px;
    height: 40px;
  }
}

.bnr {
  padding: 72px 25px 124px;
}
.bnr__link {
  width: 845px;
  height: 290px;
  position: relative;
  margin-inline: auto;
  display: block;
}
.bnr__link::after {
  content: "";
  width: 845px;
  height: 239px;
  background-color: #000;
  position: absolute;
  bottom: -8px;
  right: -8px;
  z-index: -1;
}
.bnr__link:hover {
  opacity: 1;
}
.bnr__link:hover .bnr__image {
  transform: translate(8px, 8px);
}
.bnr__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 845px;
  height: 290px;
  transition: 0.3s;
}
@media (width < 769px) {
  .bnr {
    padding: 52px 25px 68px;
  }
  .bnr__link {
    width: 320px;
    height: 155px;
  }
  .bnr__link::after {
    content: "";
    width: 320px;
    height: 139px;
  }
  .bnr__image {
    width: 320px;
    height: 155px;
  }
}

.info {
  background-color: #fff;
  padding: 14px;
}
.info__inner {
  width: 984px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.info__text {
  font-size: 16px;
  margin-left: 16px;
  margin-right: 4px;
}
.info__catch {
  display: inline-block;
  width: 103px;
  height: 27px;
  border: 1px solid #000;
  text-align: center;
  align-content: center;
  line-height: 1;
  margin-right: 9px;
  margin-bottom: 2px;
}
.info__icon--stop {
  width: 49.73px;
  height: 72.76px;
}
.info__icon--recycle, .info__icon--alcohol {
  width: 42px;
  height: 42px;
}
.info__icons {
  display: flex;
  gap: 6px;
}
@media (width < 769px) {
  .info__inner {
    width: 100%;
  }
  .info__text {
    font-size: 10px;
    margin-left: 10px;
    margin-right: 9px;
  }
  .info__catch {
    width: 64px;
    height: 20px;
    display: block;
  }
  .info__icons {
    flex-direction: column-reverse;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.text-animation span {
  opacity: 0;
}
.text-animation.show span {
  animation: textanimation 0.5s ease-out forwards;
}
.text-animation.show .delay1 {
  animation-delay: 0.04s;
}
.text-animation.show .delay2 {
  animation-delay: 0.08s;
}
.text-animation.show .delay3 {
  animation-delay: 0.12s;
}
.text-animation.show .delay4 {
  animation-delay: 0.16s;
}
.text-animation.show .delay5 {
  animation-delay: 0.2s;
}
.text-animation.show .delay6 {
  animation-delay: 0.24s;
}
.text-animation.show .delay7 {
  animation-delay: 0.28s;
}
.text-animation.show .delay8 {
  animation-delay: 0.32s;
}
.text-animation.show .delay9 {
  animation-delay: 0.36s;
}
.text-animation.show .delay10 {
  animation-delay: 0.4s;
}
.text-animation.show .delay11 {
  animation-delay: 0.44s;
}
.text-animation.show .delay12 {
  animation-delay: 0.48s;
}
.text-animation.show .delay13 {
  animation-delay: 0.52s;
}
.text-animation.show .delay14 {
  animation-delay: 0.56s;
}
.text-animation.show .delay15 {
  animation-delay: 0.6s;
}
.text-animation.show .delay16 {
  animation-delay: 0.64s;
}
.text-animation.show .delay17 {
  animation-delay: 0.68s;
}
.text-animation.show .delay18 {
  animation-delay: 0.72s;
}
.text-animation.show .delay19 {
  animation-delay: 0.76s;
}
.text-animation.show .delay20 {
  animation-delay: 0.8s;
}
.text-animation.show .delay21 {
  animation-delay: 0.84s;
}
.text-animation.show .delay22 {
  animation-delay: 0.88s;
}
.text-animation.show .delay23 {
  animation-delay: 0.92s;
}
.text-animation.show .delay24 {
  animation-delay: 0.96s;
}
.text-animation.show .delay25 {
  animation-delay: 1s;
}
.text-animation.show .delay26 {
  animation-delay: 1.04s;
}
.text-animation.show .delay27 {
  animation-delay: 1.08s;
}
.text-animation.show .delay28 {
  animation-delay: 1.12s;
}
.text-animation.show .delay29 {
  animation-delay: 1.16s;
}
.text-animation.show .delay30 {
  animation-delay: 1.2s;
}
.text-animation.show .delay31 {
  animation-delay: 1.24s;
}
.text-animation.show .delay32 {
  animation-delay: 1.28s;
}
.text-animation.show .delay33 {
  animation-delay: 1.32s;
}
.text-animation.show .delay34 {
  animation-delay: 1.36s;
}
.text-animation.show .delay35 {
  animation-delay: 1.4s;
}
.text-animation.show .delay36 {
  animation-delay: 1.44s;
}
.text-animation.show .delay37 {
  animation-delay: 1.48s;
}
.text-animation.show .delay38 {
  animation-delay: 1.52s;
}
.text-animation.show .delay39 {
  animation-delay: 1.56s;
}
.text-animation.show .delay40 {
  animation-delay: 1.6s;
}
.text-animation.show .delay41 {
  animation-delay: 1.64s;
}
.text-animation.show .delay42 {
  animation-delay: 1.68s;
}
.text-animation.show .delay43 {
  animation-delay: 1.72s;
}
.text-animation.show .delay44 {
  animation-delay: 1.76s;
}
.text-animation.show .delay45 {
  animation-delay: 1.8s;
}
.text-animation.show .delay46 {
  animation-delay: 1.84s;
}
.text-animation.show .delay47 {
  animation-delay: 1.88s;
}
.text-animation.show .delay48 {
  animation-delay: 1.92s;
}
.text-animation.show .delay49 {
  animation-delay: 1.96s;
}
.text-animation.show .delay50 {
  animation-delay: 2s;
}
.text-animation.show .delay51 {
  animation-delay: 2.04s;
}
.text-animation.show .delay52 {
  animation-delay: 2.08s;
}
.text-animation.show .delay53 {
  animation-delay: 2.12s;
}
.text-animation.show .delay54 {
  animation-delay: 2.16s;
}
.text-animation.show .delay55 {
  animation-delay: 2.2s;
}
.text-animation.show .delay56 {
  animation-delay: 2.24s;
}
.text-animation.show .delay57 {
  animation-delay: 2.28s;
}
.text-animation.show .delay58 {
  animation-delay: 2.32s;
}
.text-animation.show .delay59 {
  animation-delay: 2.36s;
}
.text-animation.show .delay60 {
  animation-delay: 2.4s;
}
.text-animation.show .delay61 {
  animation-delay: 2.44s;
}
.text-animation.show .delay62 {
  animation-delay: 2.48s;
}
.text-animation.show .delay63 {
  animation-delay: 2.52s;
}
.text-animation.show .delay64 {
  animation-delay: 2.56s;
}
.text-animation.show .delay65 {
  animation-delay: 2.6s;
}
.text-animation.show .delay66 {
  animation-delay: 2.64s;
}
.text-animation.show .delay67 {
  animation-delay: 2.68s;
}
.text-animation.show .delay68 {
  animation-delay: 2.72s;
}
.text-animation.show .delay69 {
  animation-delay: 2.76s;
}
.text-animation.show .delay70 {
  animation-delay: 2.8s;
}
.text-animation.show .delay71 {
  animation-delay: 2.84s;
}
.text-animation.show .delay72 {
  animation-delay: 2.88s;
}
.text-animation.show .delay73 {
  animation-delay: 2.92s;
}
.text-animation.show .delay74 {
  animation-delay: 2.96s;
}
.text-animation.show .delay75 {
  animation-delay: 3s;
}
.text-animation.show .delay76 {
  animation-delay: 3.04s;
}
.text-animation.show .delay77 {
  animation-delay: 3.08s;
}
.text-animation.show .delay78 {
  animation-delay: 3.12s;
}
.text-animation.show .delay79 {
  animation-delay: 3.16s;
}
.text-animation.show .delay80 {
  animation-delay: 3.2s;
}
.text-animation.show .delay81 {
  animation-delay: 3.24s;
}
.text-animation.show .delay82 {
  animation-delay: 3.28s;
}
.text-animation.show .delay83 {
  animation-delay: 3.32s;
}
.text-animation.show .delay84 {
  animation-delay: 3.36s;
}
.text-animation.show .delay85 {
  animation-delay: 3.4s;
}
.text-animation.show .delay86 {
  animation-delay: 3.44s;
}
.text-animation.show .delay87 {
  animation-delay: 3.48s;
}
.text-animation.show .delay88 {
  animation-delay: 3.52s;
}
.text-animation.show .delay89 {
  animation-delay: 3.56s;
}
.text-animation.show .delay90 {
  animation-delay: 3.6s;
}
.text-animation.show .delay91 {
  animation-delay: 3.64s;
}
.text-animation.show .delay92 {
  animation-delay: 3.68s;
}
.text-animation.show .delay93 {
  animation-delay: 3.72s;
}
.text-animation.show .delay94 {
  animation-delay: 3.76s;
}
.text-animation.show .delay95 {
  animation-delay: 3.8s;
}
.text-animation.show .delay96 {
  animation-delay: 3.84s;
}
.text-animation.show .delay97 {
  animation-delay: 3.88s;
}
.text-animation.show .delay98 {
  animation-delay: 3.92s;
}
.text-animation.show .delay99 {
  animation-delay: 3.96s;
}
.text-animation.show .delay100 {
  animation-delay: 4s;
}
.text-animation.delay1.show span {
  animation-delay: 1s, 0.04s;
}
.text-animation.delay1.show .delay1 {
  animation-delay: 1.04s;
}
.text-animation.delay1.show .delay2 {
  animation-delay: 1.08s;
}
.text-animation.delay1.show .delay3 {
  animation-delay: 1.12s;
}
.text-animation.delay1.show .delay4 {
  animation-delay: 1.16s;
}
.text-animation.delay1.show .delay5 {
  animation-delay: 1.2s;
}
.text-animation.delay1.show .delay6 {
  animation-delay: 1.24s;
}
.text-animation.delay1.show .delay7 {
  animation-delay: 1.28s;
}
.text-animation.delay1.show .delay8 {
  animation-delay: 1.32s;
}
.text-animation.delay1.show .delay9 {
  animation-delay: 1.36s;
}
.text-animation.delay1.show .delay10 {
  animation-delay: 1.4s;
}
.text-animation.delay1.show .delay11 {
  animation-delay: 1.44s;
}
.text-animation.delay1.show .delay12 {
  animation-delay: 1.48s;
}
.text-animation.delay1.show .delay13 {
  animation-delay: 1.52s;
}
.text-animation.delay1.show .delay14 {
  animation-delay: 1.56s;
}
.text-animation.delay1.show .delay15 {
  animation-delay: 1.6s;
}
.text-animation.delay1.show .delay16 {
  animation-delay: 1.64s;
}
.text-animation.delay1.show .delay17 {
  animation-delay: 1.68s;
}
.text-animation.delay1.show .delay18 {
  animation-delay: 1.72s;
}
.text-animation.delay1.show .delay19 {
  animation-delay: 1.76s;
}
.text-animation.delay1.show .delay20 {
  animation-delay: 1.8s;
}
.text-animation.delay1.show .delay21 {
  animation-delay: 1.84s;
}
.text-animation.delay1.show .delay22 {
  animation-delay: 1.88s;
}
.text-animation.delay1.show .delay23 {
  animation-delay: 1.92s;
}
.text-animation.delay1.show .delay24 {
  animation-delay: 1.96s;
}
.text-animation.delay1.show .delay25 {
  animation-delay: 2s;
}
.text-animation.delay1.show .delay26 {
  animation-delay: 2.04s;
}
.text-animation.delay1.show .delay27 {
  animation-delay: 2.08s;
}
.text-animation.delay1.show .delay28 {
  animation-delay: 2.12s;
}
.text-animation.delay1.show .delay29 {
  animation-delay: 2.16s;
}
.text-animation.delay1.show .delay30 {
  animation-delay: 2.2s;
}
.text-animation.delay1.show .delay31 {
  animation-delay: 2.24s;
}
.text-animation.delay1.show .delay32 {
  animation-delay: 2.28s;
}
.text-animation.delay1.show .delay33 {
  animation-delay: 2.32s;
}
.text-animation.delay1.show .delay34 {
  animation-delay: 2.36s;
}
.text-animation.delay1.show .delay35 {
  animation-delay: 2.4s;
}
.text-animation.delay1.show .delay36 {
  animation-delay: 2.44s;
}
.text-animation.delay1.show .delay37 {
  animation-delay: 2.48s;
}
.text-animation.delay1.show .delay38 {
  animation-delay: 2.52s;
}
.text-animation.delay1.show .delay39 {
  animation-delay: 2.56s;
}
.text-animation.delay1.show .delay40 {
  animation-delay: 2.6s;
}
.text-animation.delay1.show .delay41 {
  animation-delay: 2.64s;
}
.text-animation.delay1.show .delay42 {
  animation-delay: 2.68s;
}
.text-animation.delay1.show .delay43 {
  animation-delay: 2.72s;
}
.text-animation.delay1.show .delay44 {
  animation-delay: 2.76s;
}
.text-animation.delay1.show .delay45 {
  animation-delay: 2.8s;
}
.text-animation.delay1.show .delay46 {
  animation-delay: 2.84s;
}
.text-animation.delay1.show .delay47 {
  animation-delay: 2.88s;
}
.text-animation.delay1.show .delay48 {
  animation-delay: 2.92s;
}
.text-animation.delay1.show .delay49 {
  animation-delay: 2.96s;
}
.text-animation.delay1.show .delay50 {
  animation-delay: 3s;
}
.text-animation.delay1.show .delay51 {
  animation-delay: 3.04s;
}
.text-animation.delay1.show .delay52 {
  animation-delay: 3.08s;
}
.text-animation.delay1.show .delay53 {
  animation-delay: 3.12s;
}
.text-animation.delay1.show .delay54 {
  animation-delay: 3.16s;
}
.text-animation.delay1.show .delay55 {
  animation-delay: 3.2s;
}
.text-animation.delay1.show .delay56 {
  animation-delay: 3.24s;
}
.text-animation.delay1.show .delay57 {
  animation-delay: 3.28s;
}
.text-animation.delay1.show .delay58 {
  animation-delay: 3.32s;
}
.text-animation.delay1.show .delay59 {
  animation-delay: 3.36s;
}
.text-animation.delay1.show .delay60 {
  animation-delay: 3.4s;
}
.text-animation.delay1.show .delay61 {
  animation-delay: 3.44s;
}
.text-animation.delay1.show .delay62 {
  animation-delay: 3.48s;
}
.text-animation.delay1.show .delay63 {
  animation-delay: 3.52s;
}
.text-animation.delay1.show .delay64 {
  animation-delay: 3.56s;
}
.text-animation.delay1.show .delay65 {
  animation-delay: 3.6s;
}
.text-animation.delay1.show .delay66 {
  animation-delay: 3.64s;
}
.text-animation.delay1.show .delay67 {
  animation-delay: 3.68s;
}
.text-animation.delay1.show .delay68 {
  animation-delay: 3.72s;
}
.text-animation.delay1.show .delay69 {
  animation-delay: 3.76s;
}
.text-animation.delay1.show .delay70 {
  animation-delay: 3.8s;
}
.text-animation.delay1.show .delay71 {
  animation-delay: 3.84s;
}
.text-animation.delay1.show .delay72 {
  animation-delay: 3.88s;
}
.text-animation.delay1.show .delay73 {
  animation-delay: 3.92s;
}
.text-animation.delay1.show .delay74 {
  animation-delay: 3.96s;
}
.text-animation.delay1.show .delay75 {
  animation-delay: 4s;
}
.text-animation.delay1.show .delay76 {
  animation-delay: 4.04s;
}
.text-animation.delay1.show .delay77 {
  animation-delay: 4.08s;
}
.text-animation.delay1.show .delay78 {
  animation-delay: 4.12s;
}
.text-animation.delay1.show .delay79 {
  animation-delay: 4.16s;
}
.text-animation.delay1.show .delay80 {
  animation-delay: 4.2s;
}
.text-animation.delay1.show .delay81 {
  animation-delay: 4.24s;
}
.text-animation.delay1.show .delay82 {
  animation-delay: 4.28s;
}
.text-animation.delay1.show .delay83 {
  animation-delay: 4.32s;
}
.text-animation.delay1.show .delay84 {
  animation-delay: 4.36s;
}
.text-animation.delay1.show .delay85 {
  animation-delay: 4.4s;
}
.text-animation.delay1.show .delay86 {
  animation-delay: 4.44s;
}
.text-animation.delay1.show .delay87 {
  animation-delay: 4.48s;
}
.text-animation.delay1.show .delay88 {
  animation-delay: 4.52s;
}
.text-animation.delay1.show .delay89 {
  animation-delay: 4.56s;
}
.text-animation.delay1.show .delay90 {
  animation-delay: 4.6s;
}
.text-animation.delay1.show .delay91 {
  animation-delay: 4.64s;
}
.text-animation.delay1.show .delay92 {
  animation-delay: 4.68s;
}
.text-animation.delay1.show .delay93 {
  animation-delay: 4.72s;
}
.text-animation.delay1.show .delay94 {
  animation-delay: 4.76s;
}
.text-animation.delay1.show .delay95 {
  animation-delay: 4.8s;
}
.text-animation.delay1.show .delay96 {
  animation-delay: 4.84s;
}
.text-animation.delay1.show .delay97 {
  animation-delay: 4.88s;
}
.text-animation.delay1.show .delay98 {
  animation-delay: 4.92s;
}
.text-animation.delay1.show .delay99 {
  animation-delay: 4.96s;
}
.text-animation.delay1.show .delay100 {
  animation-delay: 5s;
}
.text-animation.delay2.show span {
  animation-delay: 2s, 0.08s;
}
.text-animation.delay2.show .delay1 {
  animation-delay: 2.04s;
}
.text-animation.delay2.show .delay2 {
  animation-delay: 2.08s;
}
.text-animation.delay2.show .delay3 {
  animation-delay: 2.12s;
}
.text-animation.delay2.show .delay4 {
  animation-delay: 2.16s;
}
.text-animation.delay2.show .delay5 {
  animation-delay: 2.2s;
}
.text-animation.delay2.show .delay6 {
  animation-delay: 2.24s;
}
.text-animation.delay2.show .delay7 {
  animation-delay: 2.28s;
}
.text-animation.delay2.show .delay8 {
  animation-delay: 2.32s;
}
.text-animation.delay2.show .delay9 {
  animation-delay: 2.36s;
}
.text-animation.delay2.show .delay10 {
  animation-delay: 2.4s;
}
.text-animation.delay2.show .delay11 {
  animation-delay: 2.44s;
}
.text-animation.delay2.show .delay12 {
  animation-delay: 2.48s;
}
.text-animation.delay2.show .delay13 {
  animation-delay: 2.52s;
}
.text-animation.delay2.show .delay14 {
  animation-delay: 2.56s;
}
.text-animation.delay2.show .delay15 {
  animation-delay: 2.6s;
}
.text-animation.delay2.show .delay16 {
  animation-delay: 2.64s;
}
.text-animation.delay2.show .delay17 {
  animation-delay: 2.68s;
}
.text-animation.delay2.show .delay18 {
  animation-delay: 2.72s;
}
.text-animation.delay2.show .delay19 {
  animation-delay: 2.76s;
}
.text-animation.delay2.show .delay20 {
  animation-delay: 2.8s;
}
.text-animation.delay2.show .delay21 {
  animation-delay: 2.84s;
}
.text-animation.delay2.show .delay22 {
  animation-delay: 2.88s;
}
.text-animation.delay2.show .delay23 {
  animation-delay: 2.92s;
}
.text-animation.delay2.show .delay24 {
  animation-delay: 2.96s;
}
.text-animation.delay2.show .delay25 {
  animation-delay: 3s;
}
.text-animation.delay2.show .delay26 {
  animation-delay: 3.04s;
}
.text-animation.delay2.show .delay27 {
  animation-delay: 3.08s;
}
.text-animation.delay2.show .delay28 {
  animation-delay: 3.12s;
}
.text-animation.delay2.show .delay29 {
  animation-delay: 3.16s;
}
.text-animation.delay2.show .delay30 {
  animation-delay: 3.2s;
}
.text-animation.delay2.show .delay31 {
  animation-delay: 3.24s;
}
.text-animation.delay2.show .delay32 {
  animation-delay: 3.28s;
}
.text-animation.delay2.show .delay33 {
  animation-delay: 3.32s;
}
.text-animation.delay2.show .delay34 {
  animation-delay: 3.36s;
}
.text-animation.delay2.show .delay35 {
  animation-delay: 3.4s;
}
.text-animation.delay2.show .delay36 {
  animation-delay: 3.44s;
}
.text-animation.delay2.show .delay37 {
  animation-delay: 3.48s;
}
.text-animation.delay2.show .delay38 {
  animation-delay: 3.52s;
}
.text-animation.delay2.show .delay39 {
  animation-delay: 3.56s;
}
.text-animation.delay2.show .delay40 {
  animation-delay: 3.6s;
}
.text-animation.delay2.show .delay41 {
  animation-delay: 3.64s;
}
.text-animation.delay2.show .delay42 {
  animation-delay: 3.68s;
}
.text-animation.delay2.show .delay43 {
  animation-delay: 3.72s;
}
.text-animation.delay2.show .delay44 {
  animation-delay: 3.76s;
}
.text-animation.delay2.show .delay45 {
  animation-delay: 3.8s;
}
.text-animation.delay2.show .delay46 {
  animation-delay: 3.84s;
}
.text-animation.delay2.show .delay47 {
  animation-delay: 3.88s;
}
.text-animation.delay2.show .delay48 {
  animation-delay: 3.92s;
}
.text-animation.delay2.show .delay49 {
  animation-delay: 3.96s;
}
.text-animation.delay2.show .delay50 {
  animation-delay: 4s;
}
.text-animation.delay2.show .delay51 {
  animation-delay: 4.04s;
}
.text-animation.delay2.show .delay52 {
  animation-delay: 4.08s;
}
.text-animation.delay2.show .delay53 {
  animation-delay: 4.12s;
}
.text-animation.delay2.show .delay54 {
  animation-delay: 4.16s;
}
.text-animation.delay2.show .delay55 {
  animation-delay: 4.2s;
}
.text-animation.delay2.show .delay56 {
  animation-delay: 4.24s;
}
.text-animation.delay2.show .delay57 {
  animation-delay: 4.28s;
}
.text-animation.delay2.show .delay58 {
  animation-delay: 4.32s;
}
.text-animation.delay2.show .delay59 {
  animation-delay: 4.36s;
}
.text-animation.delay2.show .delay60 {
  animation-delay: 4.4s;
}
.text-animation.delay2.show .delay61 {
  animation-delay: 4.44s;
}
.text-animation.delay2.show .delay62 {
  animation-delay: 4.48s;
}
.text-animation.delay2.show .delay63 {
  animation-delay: 4.52s;
}
.text-animation.delay2.show .delay64 {
  animation-delay: 4.56s;
}
.text-animation.delay2.show .delay65 {
  animation-delay: 4.6s;
}
.text-animation.delay2.show .delay66 {
  animation-delay: 4.64s;
}
.text-animation.delay2.show .delay67 {
  animation-delay: 4.68s;
}
.text-animation.delay2.show .delay68 {
  animation-delay: 4.72s;
}
.text-animation.delay2.show .delay69 {
  animation-delay: 4.76s;
}
.text-animation.delay2.show .delay70 {
  animation-delay: 4.8s;
}
.text-animation.delay2.show .delay71 {
  animation-delay: 4.84s;
}
.text-animation.delay2.show .delay72 {
  animation-delay: 4.88s;
}
.text-animation.delay2.show .delay73 {
  animation-delay: 4.92s;
}
.text-animation.delay2.show .delay74 {
  animation-delay: 4.96s;
}
.text-animation.delay2.show .delay75 {
  animation-delay: 5s;
}
.text-animation.delay2.show .delay76 {
  animation-delay: 5.04s;
}
.text-animation.delay2.show .delay77 {
  animation-delay: 5.08s;
}
.text-animation.delay2.show .delay78 {
  animation-delay: 5.12s;
}
.text-animation.delay2.show .delay79 {
  animation-delay: 5.16s;
}
.text-animation.delay2.show .delay80 {
  animation-delay: 5.2s;
}
.text-animation.delay2.show .delay81 {
  animation-delay: 5.24s;
}
.text-animation.delay2.show .delay82 {
  animation-delay: 5.28s;
}
.text-animation.delay2.show .delay83 {
  animation-delay: 5.32s;
}
.text-animation.delay2.show .delay84 {
  animation-delay: 5.36s;
}
.text-animation.delay2.show .delay85 {
  animation-delay: 5.4s;
}
.text-animation.delay2.show .delay86 {
  animation-delay: 5.44s;
}
.text-animation.delay2.show .delay87 {
  animation-delay: 5.48s;
}
.text-animation.delay2.show .delay88 {
  animation-delay: 5.52s;
}
.text-animation.delay2.show .delay89 {
  animation-delay: 5.56s;
}
.text-animation.delay2.show .delay90 {
  animation-delay: 5.6s;
}
.text-animation.delay2.show .delay91 {
  animation-delay: 5.64s;
}
.text-animation.delay2.show .delay92 {
  animation-delay: 5.68s;
}
.text-animation.delay2.show .delay93 {
  animation-delay: 5.72s;
}
.text-animation.delay2.show .delay94 {
  animation-delay: 5.76s;
}
.text-animation.delay2.show .delay95 {
  animation-delay: 5.8s;
}
.text-animation.delay2.show .delay96 {
  animation-delay: 5.84s;
}
.text-animation.delay2.show .delay97 {
  animation-delay: 5.88s;
}
.text-animation.delay2.show .delay98 {
  animation-delay: 5.92s;
}
.text-animation.delay2.show .delay99 {
  animation-delay: 5.96s;
}
.text-animation.delay2.show .delay100 {
  animation-delay: 6s;
}
.text-animation.delay3.show span {
  animation-delay: 3s, 0.12s;
}
.text-animation.delay3.show .delay1 {
  animation-delay: 3.04s;
}
.text-animation.delay3.show .delay2 {
  animation-delay: 3.08s;
}
.text-animation.delay3.show .delay3 {
  animation-delay: 3.12s;
}
.text-animation.delay3.show .delay4 {
  animation-delay: 3.16s;
}
.text-animation.delay3.show .delay5 {
  animation-delay: 3.2s;
}
.text-animation.delay3.show .delay6 {
  animation-delay: 3.24s;
}
.text-animation.delay3.show .delay7 {
  animation-delay: 3.28s;
}
.text-animation.delay3.show .delay8 {
  animation-delay: 3.32s;
}
.text-animation.delay3.show .delay9 {
  animation-delay: 3.36s;
}
.text-animation.delay3.show .delay10 {
  animation-delay: 3.4s;
}
.text-animation.delay3.show .delay11 {
  animation-delay: 3.44s;
}
.text-animation.delay3.show .delay12 {
  animation-delay: 3.48s;
}
.text-animation.delay3.show .delay13 {
  animation-delay: 3.52s;
}
.text-animation.delay3.show .delay14 {
  animation-delay: 3.56s;
}
.text-animation.delay3.show .delay15 {
  animation-delay: 3.6s;
}
.text-animation.delay3.show .delay16 {
  animation-delay: 3.64s;
}
.text-animation.delay3.show .delay17 {
  animation-delay: 3.68s;
}
.text-animation.delay3.show .delay18 {
  animation-delay: 3.72s;
}
.text-animation.delay3.show .delay19 {
  animation-delay: 3.76s;
}
.text-animation.delay3.show .delay20 {
  animation-delay: 3.8s;
}
.text-animation.delay3.show .delay21 {
  animation-delay: 3.84s;
}
.text-animation.delay3.show .delay22 {
  animation-delay: 3.88s;
}
.text-animation.delay3.show .delay23 {
  animation-delay: 3.92s;
}
.text-animation.delay3.show .delay24 {
  animation-delay: 3.96s;
}
.text-animation.delay3.show .delay25 {
  animation-delay: 4s;
}
.text-animation.delay3.show .delay26 {
  animation-delay: 4.04s;
}
.text-animation.delay3.show .delay27 {
  animation-delay: 4.08s;
}
.text-animation.delay3.show .delay28 {
  animation-delay: 4.12s;
}
.text-animation.delay3.show .delay29 {
  animation-delay: 4.16s;
}
.text-animation.delay3.show .delay30 {
  animation-delay: 4.2s;
}
.text-animation.delay3.show .delay31 {
  animation-delay: 4.24s;
}
.text-animation.delay3.show .delay32 {
  animation-delay: 4.28s;
}
.text-animation.delay3.show .delay33 {
  animation-delay: 4.32s;
}
.text-animation.delay3.show .delay34 {
  animation-delay: 4.36s;
}
.text-animation.delay3.show .delay35 {
  animation-delay: 4.4s;
}
.text-animation.delay3.show .delay36 {
  animation-delay: 4.44s;
}
.text-animation.delay3.show .delay37 {
  animation-delay: 4.48s;
}
.text-animation.delay3.show .delay38 {
  animation-delay: 4.52s;
}
.text-animation.delay3.show .delay39 {
  animation-delay: 4.56s;
}
.text-animation.delay3.show .delay40 {
  animation-delay: 4.6s;
}
.text-animation.delay3.show .delay41 {
  animation-delay: 4.64s;
}
.text-animation.delay3.show .delay42 {
  animation-delay: 4.68s;
}
.text-animation.delay3.show .delay43 {
  animation-delay: 4.72s;
}
.text-animation.delay3.show .delay44 {
  animation-delay: 4.76s;
}
.text-animation.delay3.show .delay45 {
  animation-delay: 4.8s;
}
.text-animation.delay3.show .delay46 {
  animation-delay: 4.84s;
}
.text-animation.delay3.show .delay47 {
  animation-delay: 4.88s;
}
.text-animation.delay3.show .delay48 {
  animation-delay: 4.92s;
}
.text-animation.delay3.show .delay49 {
  animation-delay: 4.96s;
}
.text-animation.delay3.show .delay50 {
  animation-delay: 5s;
}
.text-animation.delay3.show .delay51 {
  animation-delay: 5.04s;
}
.text-animation.delay3.show .delay52 {
  animation-delay: 5.08s;
}
.text-animation.delay3.show .delay53 {
  animation-delay: 5.12s;
}
.text-animation.delay3.show .delay54 {
  animation-delay: 5.16s;
}
.text-animation.delay3.show .delay55 {
  animation-delay: 5.2s;
}
.text-animation.delay3.show .delay56 {
  animation-delay: 5.24s;
}
.text-animation.delay3.show .delay57 {
  animation-delay: 5.28s;
}
.text-animation.delay3.show .delay58 {
  animation-delay: 5.32s;
}
.text-animation.delay3.show .delay59 {
  animation-delay: 5.36s;
}
.text-animation.delay3.show .delay60 {
  animation-delay: 5.4s;
}
.text-animation.delay3.show .delay61 {
  animation-delay: 5.44s;
}
.text-animation.delay3.show .delay62 {
  animation-delay: 5.48s;
}
.text-animation.delay3.show .delay63 {
  animation-delay: 5.52s;
}
.text-animation.delay3.show .delay64 {
  animation-delay: 5.56s;
}
.text-animation.delay3.show .delay65 {
  animation-delay: 5.6s;
}
.text-animation.delay3.show .delay66 {
  animation-delay: 5.64s;
}
.text-animation.delay3.show .delay67 {
  animation-delay: 5.68s;
}
.text-animation.delay3.show .delay68 {
  animation-delay: 5.72s;
}
.text-animation.delay3.show .delay69 {
  animation-delay: 5.76s;
}
.text-animation.delay3.show .delay70 {
  animation-delay: 5.8s;
}
.text-animation.delay3.show .delay71 {
  animation-delay: 5.84s;
}
.text-animation.delay3.show .delay72 {
  animation-delay: 5.88s;
}
.text-animation.delay3.show .delay73 {
  animation-delay: 5.92s;
}
.text-animation.delay3.show .delay74 {
  animation-delay: 5.96s;
}
.text-animation.delay3.show .delay75 {
  animation-delay: 6s;
}
.text-animation.delay3.show .delay76 {
  animation-delay: 6.04s;
}
.text-animation.delay3.show .delay77 {
  animation-delay: 6.08s;
}
.text-animation.delay3.show .delay78 {
  animation-delay: 6.12s;
}
.text-animation.delay3.show .delay79 {
  animation-delay: 6.16s;
}
.text-animation.delay3.show .delay80 {
  animation-delay: 6.2s;
}
.text-animation.delay3.show .delay81 {
  animation-delay: 6.24s;
}
.text-animation.delay3.show .delay82 {
  animation-delay: 6.28s;
}
.text-animation.delay3.show .delay83 {
  animation-delay: 6.32s;
}
.text-animation.delay3.show .delay84 {
  animation-delay: 6.36s;
}
.text-animation.delay3.show .delay85 {
  animation-delay: 6.4s;
}
.text-animation.delay3.show .delay86 {
  animation-delay: 6.44s;
}
.text-animation.delay3.show .delay87 {
  animation-delay: 6.48s;
}
.text-animation.delay3.show .delay88 {
  animation-delay: 6.52s;
}
.text-animation.delay3.show .delay89 {
  animation-delay: 6.56s;
}
.text-animation.delay3.show .delay90 {
  animation-delay: 6.6s;
}
.text-animation.delay3.show .delay91 {
  animation-delay: 6.64s;
}
.text-animation.delay3.show .delay92 {
  animation-delay: 6.68s;
}
.text-animation.delay3.show .delay93 {
  animation-delay: 6.72s;
}
.text-animation.delay3.show .delay94 {
  animation-delay: 6.76s;
}
.text-animation.delay3.show .delay95 {
  animation-delay: 6.8s;
}
.text-animation.delay3.show .delay96 {
  animation-delay: 6.84s;
}
.text-animation.delay3.show .delay97 {
  animation-delay: 6.88s;
}
.text-animation.delay3.show .delay98 {
  animation-delay: 6.92s;
}
.text-animation.delay3.show .delay99 {
  animation-delay: 6.96s;
}
.text-animation.delay3.show .delay100 {
  animation-delay: 7s;
}
.text-animation.delay4.show span {
  animation-delay: 4s, 0.16s;
}
.text-animation.delay4.show .delay1 {
  animation-delay: 4.04s;
}
.text-animation.delay4.show .delay2 {
  animation-delay: 4.08s;
}
.text-animation.delay4.show .delay3 {
  animation-delay: 4.12s;
}
.text-animation.delay4.show .delay4 {
  animation-delay: 4.16s;
}
.text-animation.delay4.show .delay5 {
  animation-delay: 4.2s;
}
.text-animation.delay4.show .delay6 {
  animation-delay: 4.24s;
}
.text-animation.delay4.show .delay7 {
  animation-delay: 4.28s;
}
.text-animation.delay4.show .delay8 {
  animation-delay: 4.32s;
}
.text-animation.delay4.show .delay9 {
  animation-delay: 4.36s;
}
.text-animation.delay4.show .delay10 {
  animation-delay: 4.4s;
}
.text-animation.delay4.show .delay11 {
  animation-delay: 4.44s;
}
.text-animation.delay4.show .delay12 {
  animation-delay: 4.48s;
}
.text-animation.delay4.show .delay13 {
  animation-delay: 4.52s;
}
.text-animation.delay4.show .delay14 {
  animation-delay: 4.56s;
}
.text-animation.delay4.show .delay15 {
  animation-delay: 4.6s;
}
.text-animation.delay4.show .delay16 {
  animation-delay: 4.64s;
}
.text-animation.delay4.show .delay17 {
  animation-delay: 4.68s;
}
.text-animation.delay4.show .delay18 {
  animation-delay: 4.72s;
}
.text-animation.delay4.show .delay19 {
  animation-delay: 4.76s;
}
.text-animation.delay4.show .delay20 {
  animation-delay: 4.8s;
}
.text-animation.delay4.show .delay21 {
  animation-delay: 4.84s;
}
.text-animation.delay4.show .delay22 {
  animation-delay: 4.88s;
}
.text-animation.delay4.show .delay23 {
  animation-delay: 4.92s;
}
.text-animation.delay4.show .delay24 {
  animation-delay: 4.96s;
}
.text-animation.delay4.show .delay25 {
  animation-delay: 5s;
}
.text-animation.delay4.show .delay26 {
  animation-delay: 5.04s;
}
.text-animation.delay4.show .delay27 {
  animation-delay: 5.08s;
}
.text-animation.delay4.show .delay28 {
  animation-delay: 5.12s;
}
.text-animation.delay4.show .delay29 {
  animation-delay: 5.16s;
}
.text-animation.delay4.show .delay30 {
  animation-delay: 5.2s;
}
.text-animation.delay4.show .delay31 {
  animation-delay: 5.24s;
}
.text-animation.delay4.show .delay32 {
  animation-delay: 5.28s;
}
.text-animation.delay4.show .delay33 {
  animation-delay: 5.32s;
}
.text-animation.delay4.show .delay34 {
  animation-delay: 5.36s;
}
.text-animation.delay4.show .delay35 {
  animation-delay: 5.4s;
}
.text-animation.delay4.show .delay36 {
  animation-delay: 5.44s;
}
.text-animation.delay4.show .delay37 {
  animation-delay: 5.48s;
}
.text-animation.delay4.show .delay38 {
  animation-delay: 5.52s;
}
.text-animation.delay4.show .delay39 {
  animation-delay: 5.56s;
}
.text-animation.delay4.show .delay40 {
  animation-delay: 5.6s;
}
.text-animation.delay4.show .delay41 {
  animation-delay: 5.64s;
}
.text-animation.delay4.show .delay42 {
  animation-delay: 5.68s;
}
.text-animation.delay4.show .delay43 {
  animation-delay: 5.72s;
}
.text-animation.delay4.show .delay44 {
  animation-delay: 5.76s;
}
.text-animation.delay4.show .delay45 {
  animation-delay: 5.8s;
}
.text-animation.delay4.show .delay46 {
  animation-delay: 5.84s;
}
.text-animation.delay4.show .delay47 {
  animation-delay: 5.88s;
}
.text-animation.delay4.show .delay48 {
  animation-delay: 5.92s;
}
.text-animation.delay4.show .delay49 {
  animation-delay: 5.96s;
}
.text-animation.delay4.show .delay50 {
  animation-delay: 6s;
}
.text-animation.delay4.show .delay51 {
  animation-delay: 6.04s;
}
.text-animation.delay4.show .delay52 {
  animation-delay: 6.08s;
}
.text-animation.delay4.show .delay53 {
  animation-delay: 6.12s;
}
.text-animation.delay4.show .delay54 {
  animation-delay: 6.16s;
}
.text-animation.delay4.show .delay55 {
  animation-delay: 6.2s;
}
.text-animation.delay4.show .delay56 {
  animation-delay: 6.24s;
}
.text-animation.delay4.show .delay57 {
  animation-delay: 6.28s;
}
.text-animation.delay4.show .delay58 {
  animation-delay: 6.32s;
}
.text-animation.delay4.show .delay59 {
  animation-delay: 6.36s;
}
.text-animation.delay4.show .delay60 {
  animation-delay: 6.4s;
}
.text-animation.delay4.show .delay61 {
  animation-delay: 6.44s;
}
.text-animation.delay4.show .delay62 {
  animation-delay: 6.48s;
}
.text-animation.delay4.show .delay63 {
  animation-delay: 6.52s;
}
.text-animation.delay4.show .delay64 {
  animation-delay: 6.56s;
}
.text-animation.delay4.show .delay65 {
  animation-delay: 6.6s;
}
.text-animation.delay4.show .delay66 {
  animation-delay: 6.64s;
}
.text-animation.delay4.show .delay67 {
  animation-delay: 6.68s;
}
.text-animation.delay4.show .delay68 {
  animation-delay: 6.72s;
}
.text-animation.delay4.show .delay69 {
  animation-delay: 6.76s;
}
.text-animation.delay4.show .delay70 {
  animation-delay: 6.8s;
}
.text-animation.delay4.show .delay71 {
  animation-delay: 6.84s;
}
.text-animation.delay4.show .delay72 {
  animation-delay: 6.88s;
}
.text-animation.delay4.show .delay73 {
  animation-delay: 6.92s;
}
.text-animation.delay4.show .delay74 {
  animation-delay: 6.96s;
}
.text-animation.delay4.show .delay75 {
  animation-delay: 7s;
}
.text-animation.delay4.show .delay76 {
  animation-delay: 7.04s;
}
.text-animation.delay4.show .delay77 {
  animation-delay: 7.08s;
}
.text-animation.delay4.show .delay78 {
  animation-delay: 7.12s;
}
.text-animation.delay4.show .delay79 {
  animation-delay: 7.16s;
}
.text-animation.delay4.show .delay80 {
  animation-delay: 7.2s;
}
.text-animation.delay4.show .delay81 {
  animation-delay: 7.24s;
}
.text-animation.delay4.show .delay82 {
  animation-delay: 7.28s;
}
.text-animation.delay4.show .delay83 {
  animation-delay: 7.32s;
}
.text-animation.delay4.show .delay84 {
  animation-delay: 7.36s;
}
.text-animation.delay4.show .delay85 {
  animation-delay: 7.4s;
}
.text-animation.delay4.show .delay86 {
  animation-delay: 7.44s;
}
.text-animation.delay4.show .delay87 {
  animation-delay: 7.48s;
}
.text-animation.delay4.show .delay88 {
  animation-delay: 7.52s;
}
.text-animation.delay4.show .delay89 {
  animation-delay: 7.56s;
}
.text-animation.delay4.show .delay90 {
  animation-delay: 7.6s;
}
.text-animation.delay4.show .delay91 {
  animation-delay: 7.64s;
}
.text-animation.delay4.show .delay92 {
  animation-delay: 7.68s;
}
.text-animation.delay4.show .delay93 {
  animation-delay: 7.72s;
}
.text-animation.delay4.show .delay94 {
  animation-delay: 7.76s;
}
.text-animation.delay4.show .delay95 {
  animation-delay: 7.8s;
}
.text-animation.delay4.show .delay96 {
  animation-delay: 7.84s;
}
.text-animation.delay4.show .delay97 {
  animation-delay: 7.88s;
}
.text-animation.delay4.show .delay98 {
  animation-delay: 7.92s;
}
.text-animation.delay4.show .delay99 {
  animation-delay: 7.96s;
}
.text-animation.delay4.show .delay100 {
  animation-delay: 8s;
}
.text-animation.delay5.show span {
  animation-delay: 5s, 0.2s;
}
.text-animation.delay5.show .delay1 {
  animation-delay: 5.04s;
}
.text-animation.delay5.show .delay2 {
  animation-delay: 5.08s;
}
.text-animation.delay5.show .delay3 {
  animation-delay: 5.12s;
}
.text-animation.delay5.show .delay4 {
  animation-delay: 5.16s;
}
.text-animation.delay5.show .delay5 {
  animation-delay: 5.2s;
}
.text-animation.delay5.show .delay6 {
  animation-delay: 5.24s;
}
.text-animation.delay5.show .delay7 {
  animation-delay: 5.28s;
}
.text-animation.delay5.show .delay8 {
  animation-delay: 5.32s;
}
.text-animation.delay5.show .delay9 {
  animation-delay: 5.36s;
}
.text-animation.delay5.show .delay10 {
  animation-delay: 5.4s;
}
.text-animation.delay5.show .delay11 {
  animation-delay: 5.44s;
}
.text-animation.delay5.show .delay12 {
  animation-delay: 5.48s;
}
.text-animation.delay5.show .delay13 {
  animation-delay: 5.52s;
}
.text-animation.delay5.show .delay14 {
  animation-delay: 5.56s;
}
.text-animation.delay5.show .delay15 {
  animation-delay: 5.6s;
}
.text-animation.delay5.show .delay16 {
  animation-delay: 5.64s;
}
.text-animation.delay5.show .delay17 {
  animation-delay: 5.68s;
}
.text-animation.delay5.show .delay18 {
  animation-delay: 5.72s;
}
.text-animation.delay5.show .delay19 {
  animation-delay: 5.76s;
}
.text-animation.delay5.show .delay20 {
  animation-delay: 5.8s;
}
.text-animation.delay5.show .delay21 {
  animation-delay: 5.84s;
}
.text-animation.delay5.show .delay22 {
  animation-delay: 5.88s;
}
.text-animation.delay5.show .delay23 {
  animation-delay: 5.92s;
}
.text-animation.delay5.show .delay24 {
  animation-delay: 5.96s;
}
.text-animation.delay5.show .delay25 {
  animation-delay: 6s;
}
.text-animation.delay5.show .delay26 {
  animation-delay: 6.04s;
}
.text-animation.delay5.show .delay27 {
  animation-delay: 6.08s;
}
.text-animation.delay5.show .delay28 {
  animation-delay: 6.12s;
}
.text-animation.delay5.show .delay29 {
  animation-delay: 6.16s;
}
.text-animation.delay5.show .delay30 {
  animation-delay: 6.2s;
}
.text-animation.delay5.show .delay31 {
  animation-delay: 6.24s;
}
.text-animation.delay5.show .delay32 {
  animation-delay: 6.28s;
}
.text-animation.delay5.show .delay33 {
  animation-delay: 6.32s;
}
.text-animation.delay5.show .delay34 {
  animation-delay: 6.36s;
}
.text-animation.delay5.show .delay35 {
  animation-delay: 6.4s;
}
.text-animation.delay5.show .delay36 {
  animation-delay: 6.44s;
}
.text-animation.delay5.show .delay37 {
  animation-delay: 6.48s;
}
.text-animation.delay5.show .delay38 {
  animation-delay: 6.52s;
}
.text-animation.delay5.show .delay39 {
  animation-delay: 6.56s;
}
.text-animation.delay5.show .delay40 {
  animation-delay: 6.6s;
}
.text-animation.delay5.show .delay41 {
  animation-delay: 6.64s;
}
.text-animation.delay5.show .delay42 {
  animation-delay: 6.68s;
}
.text-animation.delay5.show .delay43 {
  animation-delay: 6.72s;
}
.text-animation.delay5.show .delay44 {
  animation-delay: 6.76s;
}
.text-animation.delay5.show .delay45 {
  animation-delay: 6.8s;
}
.text-animation.delay5.show .delay46 {
  animation-delay: 6.84s;
}
.text-animation.delay5.show .delay47 {
  animation-delay: 6.88s;
}
.text-animation.delay5.show .delay48 {
  animation-delay: 6.92s;
}
.text-animation.delay5.show .delay49 {
  animation-delay: 6.96s;
}
.text-animation.delay5.show .delay50 {
  animation-delay: 7s;
}
.text-animation.delay5.show .delay51 {
  animation-delay: 7.04s;
}
.text-animation.delay5.show .delay52 {
  animation-delay: 7.08s;
}
.text-animation.delay5.show .delay53 {
  animation-delay: 7.12s;
}
.text-animation.delay5.show .delay54 {
  animation-delay: 7.16s;
}
.text-animation.delay5.show .delay55 {
  animation-delay: 7.2s;
}
.text-animation.delay5.show .delay56 {
  animation-delay: 7.24s;
}
.text-animation.delay5.show .delay57 {
  animation-delay: 7.28s;
}
.text-animation.delay5.show .delay58 {
  animation-delay: 7.32s;
}
.text-animation.delay5.show .delay59 {
  animation-delay: 7.36s;
}
.text-animation.delay5.show .delay60 {
  animation-delay: 7.4s;
}
.text-animation.delay5.show .delay61 {
  animation-delay: 7.44s;
}
.text-animation.delay5.show .delay62 {
  animation-delay: 7.48s;
}
.text-animation.delay5.show .delay63 {
  animation-delay: 7.52s;
}
.text-animation.delay5.show .delay64 {
  animation-delay: 7.56s;
}
.text-animation.delay5.show .delay65 {
  animation-delay: 7.6s;
}
.text-animation.delay5.show .delay66 {
  animation-delay: 7.64s;
}
.text-animation.delay5.show .delay67 {
  animation-delay: 7.68s;
}
.text-animation.delay5.show .delay68 {
  animation-delay: 7.72s;
}
.text-animation.delay5.show .delay69 {
  animation-delay: 7.76s;
}
.text-animation.delay5.show .delay70 {
  animation-delay: 7.8s;
}
.text-animation.delay5.show .delay71 {
  animation-delay: 7.84s;
}
.text-animation.delay5.show .delay72 {
  animation-delay: 7.88s;
}
.text-animation.delay5.show .delay73 {
  animation-delay: 7.92s;
}
.text-animation.delay5.show .delay74 {
  animation-delay: 7.96s;
}
.text-animation.delay5.show .delay75 {
  animation-delay: 8s;
}
.text-animation.delay5.show .delay76 {
  animation-delay: 8.04s;
}
.text-animation.delay5.show .delay77 {
  animation-delay: 8.08s;
}
.text-animation.delay5.show .delay78 {
  animation-delay: 8.12s;
}
.text-animation.delay5.show .delay79 {
  animation-delay: 8.16s;
}
.text-animation.delay5.show .delay80 {
  animation-delay: 8.2s;
}
.text-animation.delay5.show .delay81 {
  animation-delay: 8.24s;
}
.text-animation.delay5.show .delay82 {
  animation-delay: 8.28s;
}
.text-animation.delay5.show .delay83 {
  animation-delay: 8.32s;
}
.text-animation.delay5.show .delay84 {
  animation-delay: 8.36s;
}
.text-animation.delay5.show .delay85 {
  animation-delay: 8.4s;
}
.text-animation.delay5.show .delay86 {
  animation-delay: 8.44s;
}
.text-animation.delay5.show .delay87 {
  animation-delay: 8.48s;
}
.text-animation.delay5.show .delay88 {
  animation-delay: 8.52s;
}
.text-animation.delay5.show .delay89 {
  animation-delay: 8.56s;
}
.text-animation.delay5.show .delay90 {
  animation-delay: 8.6s;
}
.text-animation.delay5.show .delay91 {
  animation-delay: 8.64s;
}
.text-animation.delay5.show .delay92 {
  animation-delay: 8.68s;
}
.text-animation.delay5.show .delay93 {
  animation-delay: 8.72s;
}
.text-animation.delay5.show .delay94 {
  animation-delay: 8.76s;
}
.text-animation.delay5.show .delay95 {
  animation-delay: 8.8s;
}
.text-animation.delay5.show .delay96 {
  animation-delay: 8.84s;
}
.text-animation.delay5.show .delay97 {
  animation-delay: 8.88s;
}
.text-animation.delay5.show .delay98 {
  animation-delay: 8.92s;
}
.text-animation.delay5.show .delay99 {
  animation-delay: 8.96s;
}
.text-animation.delay5.show .delay100 {
  animation-delay: 9s;
}
.text-animation.delay6.show span {
  animation-delay: 6s, 0.24s;
}
.text-animation.delay6.show .delay1 {
  animation-delay: 6.04s;
}
.text-animation.delay6.show .delay2 {
  animation-delay: 6.08s;
}
.text-animation.delay6.show .delay3 {
  animation-delay: 6.12s;
}
.text-animation.delay6.show .delay4 {
  animation-delay: 6.16s;
}
.text-animation.delay6.show .delay5 {
  animation-delay: 6.2s;
}
.text-animation.delay6.show .delay6 {
  animation-delay: 6.24s;
}
.text-animation.delay6.show .delay7 {
  animation-delay: 6.28s;
}
.text-animation.delay6.show .delay8 {
  animation-delay: 6.32s;
}
.text-animation.delay6.show .delay9 {
  animation-delay: 6.36s;
}
.text-animation.delay6.show .delay10 {
  animation-delay: 6.4s;
}
.text-animation.delay6.show .delay11 {
  animation-delay: 6.44s;
}
.text-animation.delay6.show .delay12 {
  animation-delay: 6.48s;
}
.text-animation.delay6.show .delay13 {
  animation-delay: 6.52s;
}
.text-animation.delay6.show .delay14 {
  animation-delay: 6.56s;
}
.text-animation.delay6.show .delay15 {
  animation-delay: 6.6s;
}
.text-animation.delay6.show .delay16 {
  animation-delay: 6.64s;
}
.text-animation.delay6.show .delay17 {
  animation-delay: 6.68s;
}
.text-animation.delay6.show .delay18 {
  animation-delay: 6.72s;
}
.text-animation.delay6.show .delay19 {
  animation-delay: 6.76s;
}
.text-animation.delay6.show .delay20 {
  animation-delay: 6.8s;
}
.text-animation.delay6.show .delay21 {
  animation-delay: 6.84s;
}
.text-animation.delay6.show .delay22 {
  animation-delay: 6.88s;
}
.text-animation.delay6.show .delay23 {
  animation-delay: 6.92s;
}
.text-animation.delay6.show .delay24 {
  animation-delay: 6.96s;
}
.text-animation.delay6.show .delay25 {
  animation-delay: 7s;
}
.text-animation.delay6.show .delay26 {
  animation-delay: 7.04s;
}
.text-animation.delay6.show .delay27 {
  animation-delay: 7.08s;
}
.text-animation.delay6.show .delay28 {
  animation-delay: 7.12s;
}
.text-animation.delay6.show .delay29 {
  animation-delay: 7.16s;
}
.text-animation.delay6.show .delay30 {
  animation-delay: 7.2s;
}
.text-animation.delay6.show .delay31 {
  animation-delay: 7.24s;
}
.text-animation.delay6.show .delay32 {
  animation-delay: 7.28s;
}
.text-animation.delay6.show .delay33 {
  animation-delay: 7.32s;
}
.text-animation.delay6.show .delay34 {
  animation-delay: 7.36s;
}
.text-animation.delay6.show .delay35 {
  animation-delay: 7.4s;
}
.text-animation.delay6.show .delay36 {
  animation-delay: 7.44s;
}
.text-animation.delay6.show .delay37 {
  animation-delay: 7.48s;
}
.text-animation.delay6.show .delay38 {
  animation-delay: 7.52s;
}
.text-animation.delay6.show .delay39 {
  animation-delay: 7.56s;
}
.text-animation.delay6.show .delay40 {
  animation-delay: 7.6s;
}
.text-animation.delay6.show .delay41 {
  animation-delay: 7.64s;
}
.text-animation.delay6.show .delay42 {
  animation-delay: 7.68s;
}
.text-animation.delay6.show .delay43 {
  animation-delay: 7.72s;
}
.text-animation.delay6.show .delay44 {
  animation-delay: 7.76s;
}
.text-animation.delay6.show .delay45 {
  animation-delay: 7.8s;
}
.text-animation.delay6.show .delay46 {
  animation-delay: 7.84s;
}
.text-animation.delay6.show .delay47 {
  animation-delay: 7.88s;
}
.text-animation.delay6.show .delay48 {
  animation-delay: 7.92s;
}
.text-animation.delay6.show .delay49 {
  animation-delay: 7.96s;
}
.text-animation.delay6.show .delay50 {
  animation-delay: 8s;
}
.text-animation.delay6.show .delay51 {
  animation-delay: 8.04s;
}
.text-animation.delay6.show .delay52 {
  animation-delay: 8.08s;
}
.text-animation.delay6.show .delay53 {
  animation-delay: 8.12s;
}
.text-animation.delay6.show .delay54 {
  animation-delay: 8.16s;
}
.text-animation.delay6.show .delay55 {
  animation-delay: 8.2s;
}
.text-animation.delay6.show .delay56 {
  animation-delay: 8.24s;
}
.text-animation.delay6.show .delay57 {
  animation-delay: 8.28s;
}
.text-animation.delay6.show .delay58 {
  animation-delay: 8.32s;
}
.text-animation.delay6.show .delay59 {
  animation-delay: 8.36s;
}
.text-animation.delay6.show .delay60 {
  animation-delay: 8.4s;
}
.text-animation.delay6.show .delay61 {
  animation-delay: 8.44s;
}
.text-animation.delay6.show .delay62 {
  animation-delay: 8.48s;
}
.text-animation.delay6.show .delay63 {
  animation-delay: 8.52s;
}
.text-animation.delay6.show .delay64 {
  animation-delay: 8.56s;
}
.text-animation.delay6.show .delay65 {
  animation-delay: 8.6s;
}
.text-animation.delay6.show .delay66 {
  animation-delay: 8.64s;
}
.text-animation.delay6.show .delay67 {
  animation-delay: 8.68s;
}
.text-animation.delay6.show .delay68 {
  animation-delay: 8.72s;
}
.text-animation.delay6.show .delay69 {
  animation-delay: 8.76s;
}
.text-animation.delay6.show .delay70 {
  animation-delay: 8.8s;
}
.text-animation.delay6.show .delay71 {
  animation-delay: 8.84s;
}
.text-animation.delay6.show .delay72 {
  animation-delay: 8.88s;
}
.text-animation.delay6.show .delay73 {
  animation-delay: 8.92s;
}
.text-animation.delay6.show .delay74 {
  animation-delay: 8.96s;
}
.text-animation.delay6.show .delay75 {
  animation-delay: 9s;
}
.text-animation.delay6.show .delay76 {
  animation-delay: 9.04s;
}
.text-animation.delay6.show .delay77 {
  animation-delay: 9.08s;
}
.text-animation.delay6.show .delay78 {
  animation-delay: 9.12s;
}
.text-animation.delay6.show .delay79 {
  animation-delay: 9.16s;
}
.text-animation.delay6.show .delay80 {
  animation-delay: 9.2s;
}
.text-animation.delay6.show .delay81 {
  animation-delay: 9.24s;
}
.text-animation.delay6.show .delay82 {
  animation-delay: 9.28s;
}
.text-animation.delay6.show .delay83 {
  animation-delay: 9.32s;
}
.text-animation.delay6.show .delay84 {
  animation-delay: 9.36s;
}
.text-animation.delay6.show .delay85 {
  animation-delay: 9.4s;
}
.text-animation.delay6.show .delay86 {
  animation-delay: 9.44s;
}
.text-animation.delay6.show .delay87 {
  animation-delay: 9.48s;
}
.text-animation.delay6.show .delay88 {
  animation-delay: 9.52s;
}
.text-animation.delay6.show .delay89 {
  animation-delay: 9.56s;
}
.text-animation.delay6.show .delay90 {
  animation-delay: 9.6s;
}
.text-animation.delay6.show .delay91 {
  animation-delay: 9.64s;
}
.text-animation.delay6.show .delay92 {
  animation-delay: 9.68s;
}
.text-animation.delay6.show .delay93 {
  animation-delay: 9.72s;
}
.text-animation.delay6.show .delay94 {
  animation-delay: 9.76s;
}
.text-animation.delay6.show .delay95 {
  animation-delay: 9.8s;
}
.text-animation.delay6.show .delay96 {
  animation-delay: 9.84s;
}
.text-animation.delay6.show .delay97 {
  animation-delay: 9.88s;
}
.text-animation.delay6.show .delay98 {
  animation-delay: 9.92s;
}
.text-animation.delay6.show .delay99 {
  animation-delay: 9.96s;
}
.text-animation.delay6.show .delay100 {
  animation-delay: 10s;
}
.text-animation.delay7.show span {
  animation-delay: 7s, 0.28s;
}
.text-animation.delay7.show .delay1 {
  animation-delay: 7.04s;
}
.text-animation.delay7.show .delay2 {
  animation-delay: 7.08s;
}
.text-animation.delay7.show .delay3 {
  animation-delay: 7.12s;
}
.text-animation.delay7.show .delay4 {
  animation-delay: 7.16s;
}
.text-animation.delay7.show .delay5 {
  animation-delay: 7.2s;
}
.text-animation.delay7.show .delay6 {
  animation-delay: 7.24s;
}
.text-animation.delay7.show .delay7 {
  animation-delay: 7.28s;
}
.text-animation.delay7.show .delay8 {
  animation-delay: 7.32s;
}
.text-animation.delay7.show .delay9 {
  animation-delay: 7.36s;
}
.text-animation.delay7.show .delay10 {
  animation-delay: 7.4s;
}
.text-animation.delay7.show .delay11 {
  animation-delay: 7.44s;
}
.text-animation.delay7.show .delay12 {
  animation-delay: 7.48s;
}
.text-animation.delay7.show .delay13 {
  animation-delay: 7.52s;
}
.text-animation.delay7.show .delay14 {
  animation-delay: 7.56s;
}
.text-animation.delay7.show .delay15 {
  animation-delay: 7.6s;
}
.text-animation.delay7.show .delay16 {
  animation-delay: 7.64s;
}
.text-animation.delay7.show .delay17 {
  animation-delay: 7.68s;
}
.text-animation.delay7.show .delay18 {
  animation-delay: 7.72s;
}
.text-animation.delay7.show .delay19 {
  animation-delay: 7.76s;
}
.text-animation.delay7.show .delay20 {
  animation-delay: 7.8s;
}
.text-animation.delay7.show .delay21 {
  animation-delay: 7.84s;
}
.text-animation.delay7.show .delay22 {
  animation-delay: 7.88s;
}
.text-animation.delay7.show .delay23 {
  animation-delay: 7.92s;
}
.text-animation.delay7.show .delay24 {
  animation-delay: 7.96s;
}
.text-animation.delay7.show .delay25 {
  animation-delay: 8s;
}
.text-animation.delay7.show .delay26 {
  animation-delay: 8.04s;
}
.text-animation.delay7.show .delay27 {
  animation-delay: 8.08s;
}
.text-animation.delay7.show .delay28 {
  animation-delay: 8.12s;
}
.text-animation.delay7.show .delay29 {
  animation-delay: 8.16s;
}
.text-animation.delay7.show .delay30 {
  animation-delay: 8.2s;
}
.text-animation.delay7.show .delay31 {
  animation-delay: 8.24s;
}
.text-animation.delay7.show .delay32 {
  animation-delay: 8.28s;
}
.text-animation.delay7.show .delay33 {
  animation-delay: 8.32s;
}
.text-animation.delay7.show .delay34 {
  animation-delay: 8.36s;
}
.text-animation.delay7.show .delay35 {
  animation-delay: 8.4s;
}
.text-animation.delay7.show .delay36 {
  animation-delay: 8.44s;
}
.text-animation.delay7.show .delay37 {
  animation-delay: 8.48s;
}
.text-animation.delay7.show .delay38 {
  animation-delay: 8.52s;
}
.text-animation.delay7.show .delay39 {
  animation-delay: 8.56s;
}
.text-animation.delay7.show .delay40 {
  animation-delay: 8.6s;
}
.text-animation.delay7.show .delay41 {
  animation-delay: 8.64s;
}
.text-animation.delay7.show .delay42 {
  animation-delay: 8.68s;
}
.text-animation.delay7.show .delay43 {
  animation-delay: 8.72s;
}
.text-animation.delay7.show .delay44 {
  animation-delay: 8.76s;
}
.text-animation.delay7.show .delay45 {
  animation-delay: 8.8s;
}
.text-animation.delay7.show .delay46 {
  animation-delay: 8.84s;
}
.text-animation.delay7.show .delay47 {
  animation-delay: 8.88s;
}
.text-animation.delay7.show .delay48 {
  animation-delay: 8.92s;
}
.text-animation.delay7.show .delay49 {
  animation-delay: 8.96s;
}
.text-animation.delay7.show .delay50 {
  animation-delay: 9s;
}
.text-animation.delay7.show .delay51 {
  animation-delay: 9.04s;
}
.text-animation.delay7.show .delay52 {
  animation-delay: 9.08s;
}
.text-animation.delay7.show .delay53 {
  animation-delay: 9.12s;
}
.text-animation.delay7.show .delay54 {
  animation-delay: 9.16s;
}
.text-animation.delay7.show .delay55 {
  animation-delay: 9.2s;
}
.text-animation.delay7.show .delay56 {
  animation-delay: 9.24s;
}
.text-animation.delay7.show .delay57 {
  animation-delay: 9.28s;
}
.text-animation.delay7.show .delay58 {
  animation-delay: 9.32s;
}
.text-animation.delay7.show .delay59 {
  animation-delay: 9.36s;
}
.text-animation.delay7.show .delay60 {
  animation-delay: 9.4s;
}
.text-animation.delay7.show .delay61 {
  animation-delay: 9.44s;
}
.text-animation.delay7.show .delay62 {
  animation-delay: 9.48s;
}
.text-animation.delay7.show .delay63 {
  animation-delay: 9.52s;
}
.text-animation.delay7.show .delay64 {
  animation-delay: 9.56s;
}
.text-animation.delay7.show .delay65 {
  animation-delay: 9.6s;
}
.text-animation.delay7.show .delay66 {
  animation-delay: 9.64s;
}
.text-animation.delay7.show .delay67 {
  animation-delay: 9.68s;
}
.text-animation.delay7.show .delay68 {
  animation-delay: 9.72s;
}
.text-animation.delay7.show .delay69 {
  animation-delay: 9.76s;
}
.text-animation.delay7.show .delay70 {
  animation-delay: 9.8s;
}
.text-animation.delay7.show .delay71 {
  animation-delay: 9.84s;
}
.text-animation.delay7.show .delay72 {
  animation-delay: 9.88s;
}
.text-animation.delay7.show .delay73 {
  animation-delay: 9.92s;
}
.text-animation.delay7.show .delay74 {
  animation-delay: 9.96s;
}
.text-animation.delay7.show .delay75 {
  animation-delay: 10s;
}
.text-animation.delay7.show .delay76 {
  animation-delay: 10.04s;
}
.text-animation.delay7.show .delay77 {
  animation-delay: 10.08s;
}
.text-animation.delay7.show .delay78 {
  animation-delay: 10.12s;
}
.text-animation.delay7.show .delay79 {
  animation-delay: 10.16s;
}
.text-animation.delay7.show .delay80 {
  animation-delay: 10.2s;
}
.text-animation.delay7.show .delay81 {
  animation-delay: 10.24s;
}
.text-animation.delay7.show .delay82 {
  animation-delay: 10.28s;
}
.text-animation.delay7.show .delay83 {
  animation-delay: 10.32s;
}
.text-animation.delay7.show .delay84 {
  animation-delay: 10.36s;
}
.text-animation.delay7.show .delay85 {
  animation-delay: 10.4s;
}
.text-animation.delay7.show .delay86 {
  animation-delay: 10.44s;
}
.text-animation.delay7.show .delay87 {
  animation-delay: 10.48s;
}
.text-animation.delay7.show .delay88 {
  animation-delay: 10.52s;
}
.text-animation.delay7.show .delay89 {
  animation-delay: 10.56s;
}
.text-animation.delay7.show .delay90 {
  animation-delay: 10.6s;
}
.text-animation.delay7.show .delay91 {
  animation-delay: 10.64s;
}
.text-animation.delay7.show .delay92 {
  animation-delay: 10.68s;
}
.text-animation.delay7.show .delay93 {
  animation-delay: 10.72s;
}
.text-animation.delay7.show .delay94 {
  animation-delay: 10.76s;
}
.text-animation.delay7.show .delay95 {
  animation-delay: 10.8s;
}
.text-animation.delay7.show .delay96 {
  animation-delay: 10.84s;
}
.text-animation.delay7.show .delay97 {
  animation-delay: 10.88s;
}
.text-animation.delay7.show .delay98 {
  animation-delay: 10.92s;
}
.text-animation.delay7.show .delay99 {
  animation-delay: 10.96s;
}
.text-animation.delay7.show .delay100 {
  animation-delay: 11s;
}
.text-animation.delay8.show span {
  animation-delay: 8s, 0.32s;
}
.text-animation.delay8.show .delay1 {
  animation-delay: 8.04s;
}
.text-animation.delay8.show .delay2 {
  animation-delay: 8.08s;
}
.text-animation.delay8.show .delay3 {
  animation-delay: 8.12s;
}
.text-animation.delay8.show .delay4 {
  animation-delay: 8.16s;
}
.text-animation.delay8.show .delay5 {
  animation-delay: 8.2s;
}
.text-animation.delay8.show .delay6 {
  animation-delay: 8.24s;
}
.text-animation.delay8.show .delay7 {
  animation-delay: 8.28s;
}
.text-animation.delay8.show .delay8 {
  animation-delay: 8.32s;
}
.text-animation.delay8.show .delay9 {
  animation-delay: 8.36s;
}
.text-animation.delay8.show .delay10 {
  animation-delay: 8.4s;
}
.text-animation.delay8.show .delay11 {
  animation-delay: 8.44s;
}
.text-animation.delay8.show .delay12 {
  animation-delay: 8.48s;
}
.text-animation.delay8.show .delay13 {
  animation-delay: 8.52s;
}
.text-animation.delay8.show .delay14 {
  animation-delay: 8.56s;
}
.text-animation.delay8.show .delay15 {
  animation-delay: 8.6s;
}
.text-animation.delay8.show .delay16 {
  animation-delay: 8.64s;
}
.text-animation.delay8.show .delay17 {
  animation-delay: 8.68s;
}
.text-animation.delay8.show .delay18 {
  animation-delay: 8.72s;
}
.text-animation.delay8.show .delay19 {
  animation-delay: 8.76s;
}
.text-animation.delay8.show .delay20 {
  animation-delay: 8.8s;
}
.text-animation.delay8.show .delay21 {
  animation-delay: 8.84s;
}
.text-animation.delay8.show .delay22 {
  animation-delay: 8.88s;
}
.text-animation.delay8.show .delay23 {
  animation-delay: 8.92s;
}
.text-animation.delay8.show .delay24 {
  animation-delay: 8.96s;
}
.text-animation.delay8.show .delay25 {
  animation-delay: 9s;
}
.text-animation.delay8.show .delay26 {
  animation-delay: 9.04s;
}
.text-animation.delay8.show .delay27 {
  animation-delay: 9.08s;
}
.text-animation.delay8.show .delay28 {
  animation-delay: 9.12s;
}
.text-animation.delay8.show .delay29 {
  animation-delay: 9.16s;
}
.text-animation.delay8.show .delay30 {
  animation-delay: 9.2s;
}
.text-animation.delay8.show .delay31 {
  animation-delay: 9.24s;
}
.text-animation.delay8.show .delay32 {
  animation-delay: 9.28s;
}
.text-animation.delay8.show .delay33 {
  animation-delay: 9.32s;
}
.text-animation.delay8.show .delay34 {
  animation-delay: 9.36s;
}
.text-animation.delay8.show .delay35 {
  animation-delay: 9.4s;
}
.text-animation.delay8.show .delay36 {
  animation-delay: 9.44s;
}
.text-animation.delay8.show .delay37 {
  animation-delay: 9.48s;
}
.text-animation.delay8.show .delay38 {
  animation-delay: 9.52s;
}
.text-animation.delay8.show .delay39 {
  animation-delay: 9.56s;
}
.text-animation.delay8.show .delay40 {
  animation-delay: 9.6s;
}
.text-animation.delay8.show .delay41 {
  animation-delay: 9.64s;
}
.text-animation.delay8.show .delay42 {
  animation-delay: 9.68s;
}
.text-animation.delay8.show .delay43 {
  animation-delay: 9.72s;
}
.text-animation.delay8.show .delay44 {
  animation-delay: 9.76s;
}
.text-animation.delay8.show .delay45 {
  animation-delay: 9.8s;
}
.text-animation.delay8.show .delay46 {
  animation-delay: 9.84s;
}
.text-animation.delay8.show .delay47 {
  animation-delay: 9.88s;
}
.text-animation.delay8.show .delay48 {
  animation-delay: 9.92s;
}
.text-animation.delay8.show .delay49 {
  animation-delay: 9.96s;
}
.text-animation.delay8.show .delay50 {
  animation-delay: 10s;
}
.text-animation.delay8.show .delay51 {
  animation-delay: 10.04s;
}
.text-animation.delay8.show .delay52 {
  animation-delay: 10.08s;
}
.text-animation.delay8.show .delay53 {
  animation-delay: 10.12s;
}
.text-animation.delay8.show .delay54 {
  animation-delay: 10.16s;
}
.text-animation.delay8.show .delay55 {
  animation-delay: 10.2s;
}
.text-animation.delay8.show .delay56 {
  animation-delay: 10.24s;
}
.text-animation.delay8.show .delay57 {
  animation-delay: 10.28s;
}
.text-animation.delay8.show .delay58 {
  animation-delay: 10.32s;
}
.text-animation.delay8.show .delay59 {
  animation-delay: 10.36s;
}
.text-animation.delay8.show .delay60 {
  animation-delay: 10.4s;
}
.text-animation.delay8.show .delay61 {
  animation-delay: 10.44s;
}
.text-animation.delay8.show .delay62 {
  animation-delay: 10.48s;
}
.text-animation.delay8.show .delay63 {
  animation-delay: 10.52s;
}
.text-animation.delay8.show .delay64 {
  animation-delay: 10.56s;
}
.text-animation.delay8.show .delay65 {
  animation-delay: 10.6s;
}
.text-animation.delay8.show .delay66 {
  animation-delay: 10.64s;
}
.text-animation.delay8.show .delay67 {
  animation-delay: 10.68s;
}
.text-animation.delay8.show .delay68 {
  animation-delay: 10.72s;
}
.text-animation.delay8.show .delay69 {
  animation-delay: 10.76s;
}
.text-animation.delay8.show .delay70 {
  animation-delay: 10.8s;
}
.text-animation.delay8.show .delay71 {
  animation-delay: 10.84s;
}
.text-animation.delay8.show .delay72 {
  animation-delay: 10.88s;
}
.text-animation.delay8.show .delay73 {
  animation-delay: 10.92s;
}
.text-animation.delay8.show .delay74 {
  animation-delay: 10.96s;
}
.text-animation.delay8.show .delay75 {
  animation-delay: 11s;
}
.text-animation.delay8.show .delay76 {
  animation-delay: 11.04s;
}
.text-animation.delay8.show .delay77 {
  animation-delay: 11.08s;
}
.text-animation.delay8.show .delay78 {
  animation-delay: 11.12s;
}
.text-animation.delay8.show .delay79 {
  animation-delay: 11.16s;
}
.text-animation.delay8.show .delay80 {
  animation-delay: 11.2s;
}
.text-animation.delay8.show .delay81 {
  animation-delay: 11.24s;
}
.text-animation.delay8.show .delay82 {
  animation-delay: 11.28s;
}
.text-animation.delay8.show .delay83 {
  animation-delay: 11.32s;
}
.text-animation.delay8.show .delay84 {
  animation-delay: 11.36s;
}
.text-animation.delay8.show .delay85 {
  animation-delay: 11.4s;
}
.text-animation.delay8.show .delay86 {
  animation-delay: 11.44s;
}
.text-animation.delay8.show .delay87 {
  animation-delay: 11.48s;
}
.text-animation.delay8.show .delay88 {
  animation-delay: 11.52s;
}
.text-animation.delay8.show .delay89 {
  animation-delay: 11.56s;
}
.text-animation.delay8.show .delay90 {
  animation-delay: 11.6s;
}
.text-animation.delay8.show .delay91 {
  animation-delay: 11.64s;
}
.text-animation.delay8.show .delay92 {
  animation-delay: 11.68s;
}
.text-animation.delay8.show .delay93 {
  animation-delay: 11.72s;
}
.text-animation.delay8.show .delay94 {
  animation-delay: 11.76s;
}
.text-animation.delay8.show .delay95 {
  animation-delay: 11.8s;
}
.text-animation.delay8.show .delay96 {
  animation-delay: 11.84s;
}
.text-animation.delay8.show .delay97 {
  animation-delay: 11.88s;
}
.text-animation.delay8.show .delay98 {
  animation-delay: 11.92s;
}
.text-animation.delay8.show .delay99 {
  animation-delay: 11.96s;
}
.text-animation.delay8.show .delay100 {
  animation-delay: 12s;
}
.text-animation.delay9.show span {
  animation-delay: 9s, 0.36s;
}
.text-animation.delay9.show .delay1 {
  animation-delay: 9.04s;
}
.text-animation.delay9.show .delay2 {
  animation-delay: 9.08s;
}
.text-animation.delay9.show .delay3 {
  animation-delay: 9.12s;
}
.text-animation.delay9.show .delay4 {
  animation-delay: 9.16s;
}
.text-animation.delay9.show .delay5 {
  animation-delay: 9.2s;
}
.text-animation.delay9.show .delay6 {
  animation-delay: 9.24s;
}
.text-animation.delay9.show .delay7 {
  animation-delay: 9.28s;
}
.text-animation.delay9.show .delay8 {
  animation-delay: 9.32s;
}
.text-animation.delay9.show .delay9 {
  animation-delay: 9.36s;
}
.text-animation.delay9.show .delay10 {
  animation-delay: 9.4s;
}
.text-animation.delay9.show .delay11 {
  animation-delay: 9.44s;
}
.text-animation.delay9.show .delay12 {
  animation-delay: 9.48s;
}
.text-animation.delay9.show .delay13 {
  animation-delay: 9.52s;
}
.text-animation.delay9.show .delay14 {
  animation-delay: 9.56s;
}
.text-animation.delay9.show .delay15 {
  animation-delay: 9.6s;
}
.text-animation.delay9.show .delay16 {
  animation-delay: 9.64s;
}
.text-animation.delay9.show .delay17 {
  animation-delay: 9.68s;
}
.text-animation.delay9.show .delay18 {
  animation-delay: 9.72s;
}
.text-animation.delay9.show .delay19 {
  animation-delay: 9.76s;
}
.text-animation.delay9.show .delay20 {
  animation-delay: 9.8s;
}
.text-animation.delay9.show .delay21 {
  animation-delay: 9.84s;
}
.text-animation.delay9.show .delay22 {
  animation-delay: 9.88s;
}
.text-animation.delay9.show .delay23 {
  animation-delay: 9.92s;
}
.text-animation.delay9.show .delay24 {
  animation-delay: 9.96s;
}
.text-animation.delay9.show .delay25 {
  animation-delay: 10s;
}
.text-animation.delay9.show .delay26 {
  animation-delay: 10.04s;
}
.text-animation.delay9.show .delay27 {
  animation-delay: 10.08s;
}
.text-animation.delay9.show .delay28 {
  animation-delay: 10.12s;
}
.text-animation.delay9.show .delay29 {
  animation-delay: 10.16s;
}
.text-animation.delay9.show .delay30 {
  animation-delay: 10.2s;
}
.text-animation.delay9.show .delay31 {
  animation-delay: 10.24s;
}
.text-animation.delay9.show .delay32 {
  animation-delay: 10.28s;
}
.text-animation.delay9.show .delay33 {
  animation-delay: 10.32s;
}
.text-animation.delay9.show .delay34 {
  animation-delay: 10.36s;
}
.text-animation.delay9.show .delay35 {
  animation-delay: 10.4s;
}
.text-animation.delay9.show .delay36 {
  animation-delay: 10.44s;
}
.text-animation.delay9.show .delay37 {
  animation-delay: 10.48s;
}
.text-animation.delay9.show .delay38 {
  animation-delay: 10.52s;
}
.text-animation.delay9.show .delay39 {
  animation-delay: 10.56s;
}
.text-animation.delay9.show .delay40 {
  animation-delay: 10.6s;
}
.text-animation.delay9.show .delay41 {
  animation-delay: 10.64s;
}
.text-animation.delay9.show .delay42 {
  animation-delay: 10.68s;
}
.text-animation.delay9.show .delay43 {
  animation-delay: 10.72s;
}
.text-animation.delay9.show .delay44 {
  animation-delay: 10.76s;
}
.text-animation.delay9.show .delay45 {
  animation-delay: 10.8s;
}
.text-animation.delay9.show .delay46 {
  animation-delay: 10.84s;
}
.text-animation.delay9.show .delay47 {
  animation-delay: 10.88s;
}
.text-animation.delay9.show .delay48 {
  animation-delay: 10.92s;
}
.text-animation.delay9.show .delay49 {
  animation-delay: 10.96s;
}
.text-animation.delay9.show .delay50 {
  animation-delay: 11s;
}
.text-animation.delay9.show .delay51 {
  animation-delay: 11.04s;
}
.text-animation.delay9.show .delay52 {
  animation-delay: 11.08s;
}
.text-animation.delay9.show .delay53 {
  animation-delay: 11.12s;
}
.text-animation.delay9.show .delay54 {
  animation-delay: 11.16s;
}
.text-animation.delay9.show .delay55 {
  animation-delay: 11.2s;
}
.text-animation.delay9.show .delay56 {
  animation-delay: 11.24s;
}
.text-animation.delay9.show .delay57 {
  animation-delay: 11.28s;
}
.text-animation.delay9.show .delay58 {
  animation-delay: 11.32s;
}
.text-animation.delay9.show .delay59 {
  animation-delay: 11.36s;
}
.text-animation.delay9.show .delay60 {
  animation-delay: 11.4s;
}
.text-animation.delay9.show .delay61 {
  animation-delay: 11.44s;
}
.text-animation.delay9.show .delay62 {
  animation-delay: 11.48s;
}
.text-animation.delay9.show .delay63 {
  animation-delay: 11.52s;
}
.text-animation.delay9.show .delay64 {
  animation-delay: 11.56s;
}
.text-animation.delay9.show .delay65 {
  animation-delay: 11.6s;
}
.text-animation.delay9.show .delay66 {
  animation-delay: 11.64s;
}
.text-animation.delay9.show .delay67 {
  animation-delay: 11.68s;
}
.text-animation.delay9.show .delay68 {
  animation-delay: 11.72s;
}
.text-animation.delay9.show .delay69 {
  animation-delay: 11.76s;
}
.text-animation.delay9.show .delay70 {
  animation-delay: 11.8s;
}
.text-animation.delay9.show .delay71 {
  animation-delay: 11.84s;
}
.text-animation.delay9.show .delay72 {
  animation-delay: 11.88s;
}
.text-animation.delay9.show .delay73 {
  animation-delay: 11.92s;
}
.text-animation.delay9.show .delay74 {
  animation-delay: 11.96s;
}
.text-animation.delay9.show .delay75 {
  animation-delay: 12s;
}
.text-animation.delay9.show .delay76 {
  animation-delay: 12.04s;
}
.text-animation.delay9.show .delay77 {
  animation-delay: 12.08s;
}
.text-animation.delay9.show .delay78 {
  animation-delay: 12.12s;
}
.text-animation.delay9.show .delay79 {
  animation-delay: 12.16s;
}
.text-animation.delay9.show .delay80 {
  animation-delay: 12.2s;
}
.text-animation.delay9.show .delay81 {
  animation-delay: 12.24s;
}
.text-animation.delay9.show .delay82 {
  animation-delay: 12.28s;
}
.text-animation.delay9.show .delay83 {
  animation-delay: 12.32s;
}
.text-animation.delay9.show .delay84 {
  animation-delay: 12.36s;
}
.text-animation.delay9.show .delay85 {
  animation-delay: 12.4s;
}
.text-animation.delay9.show .delay86 {
  animation-delay: 12.44s;
}
.text-animation.delay9.show .delay87 {
  animation-delay: 12.48s;
}
.text-animation.delay9.show .delay88 {
  animation-delay: 12.52s;
}
.text-animation.delay9.show .delay89 {
  animation-delay: 12.56s;
}
.text-animation.delay9.show .delay90 {
  animation-delay: 12.6s;
}
.text-animation.delay9.show .delay91 {
  animation-delay: 12.64s;
}
.text-animation.delay9.show .delay92 {
  animation-delay: 12.68s;
}
.text-animation.delay9.show .delay93 {
  animation-delay: 12.72s;
}
.text-animation.delay9.show .delay94 {
  animation-delay: 12.76s;
}
.text-animation.delay9.show .delay95 {
  animation-delay: 12.8s;
}
.text-animation.delay9.show .delay96 {
  animation-delay: 12.84s;
}
.text-animation.delay9.show .delay97 {
  animation-delay: 12.88s;
}
.text-animation.delay9.show .delay98 {
  animation-delay: 12.92s;
}
.text-animation.delay9.show .delay99 {
  animation-delay: 12.96s;
}
.text-animation.delay9.show .delay100 {
  animation-delay: 13s;
}
.text-animation.delay10.show span {
  animation-delay: 10s, 0.4s;
}
.text-animation.delay10.show .delay1 {
  animation-delay: 10.04s;
}
.text-animation.delay10.show .delay2 {
  animation-delay: 10.08s;
}
.text-animation.delay10.show .delay3 {
  animation-delay: 10.12s;
}
.text-animation.delay10.show .delay4 {
  animation-delay: 10.16s;
}
.text-animation.delay10.show .delay5 {
  animation-delay: 10.2s;
}
.text-animation.delay10.show .delay6 {
  animation-delay: 10.24s;
}
.text-animation.delay10.show .delay7 {
  animation-delay: 10.28s;
}
.text-animation.delay10.show .delay8 {
  animation-delay: 10.32s;
}
.text-animation.delay10.show .delay9 {
  animation-delay: 10.36s;
}
.text-animation.delay10.show .delay10 {
  animation-delay: 10.4s;
}
.text-animation.delay10.show .delay11 {
  animation-delay: 10.44s;
}
.text-animation.delay10.show .delay12 {
  animation-delay: 10.48s;
}
.text-animation.delay10.show .delay13 {
  animation-delay: 10.52s;
}
.text-animation.delay10.show .delay14 {
  animation-delay: 10.56s;
}
.text-animation.delay10.show .delay15 {
  animation-delay: 10.6s;
}
.text-animation.delay10.show .delay16 {
  animation-delay: 10.64s;
}
.text-animation.delay10.show .delay17 {
  animation-delay: 10.68s;
}
.text-animation.delay10.show .delay18 {
  animation-delay: 10.72s;
}
.text-animation.delay10.show .delay19 {
  animation-delay: 10.76s;
}
.text-animation.delay10.show .delay20 {
  animation-delay: 10.8s;
}
.text-animation.delay10.show .delay21 {
  animation-delay: 10.84s;
}
.text-animation.delay10.show .delay22 {
  animation-delay: 10.88s;
}
.text-animation.delay10.show .delay23 {
  animation-delay: 10.92s;
}
.text-animation.delay10.show .delay24 {
  animation-delay: 10.96s;
}
.text-animation.delay10.show .delay25 {
  animation-delay: 11s;
}
.text-animation.delay10.show .delay26 {
  animation-delay: 11.04s;
}
.text-animation.delay10.show .delay27 {
  animation-delay: 11.08s;
}
.text-animation.delay10.show .delay28 {
  animation-delay: 11.12s;
}
.text-animation.delay10.show .delay29 {
  animation-delay: 11.16s;
}
.text-animation.delay10.show .delay30 {
  animation-delay: 11.2s;
}
.text-animation.delay10.show .delay31 {
  animation-delay: 11.24s;
}
.text-animation.delay10.show .delay32 {
  animation-delay: 11.28s;
}
.text-animation.delay10.show .delay33 {
  animation-delay: 11.32s;
}
.text-animation.delay10.show .delay34 {
  animation-delay: 11.36s;
}
.text-animation.delay10.show .delay35 {
  animation-delay: 11.4s;
}
.text-animation.delay10.show .delay36 {
  animation-delay: 11.44s;
}
.text-animation.delay10.show .delay37 {
  animation-delay: 11.48s;
}
.text-animation.delay10.show .delay38 {
  animation-delay: 11.52s;
}
.text-animation.delay10.show .delay39 {
  animation-delay: 11.56s;
}
.text-animation.delay10.show .delay40 {
  animation-delay: 11.6s;
}
.text-animation.delay10.show .delay41 {
  animation-delay: 11.64s;
}
.text-animation.delay10.show .delay42 {
  animation-delay: 11.68s;
}
.text-animation.delay10.show .delay43 {
  animation-delay: 11.72s;
}
.text-animation.delay10.show .delay44 {
  animation-delay: 11.76s;
}
.text-animation.delay10.show .delay45 {
  animation-delay: 11.8s;
}
.text-animation.delay10.show .delay46 {
  animation-delay: 11.84s;
}
.text-animation.delay10.show .delay47 {
  animation-delay: 11.88s;
}
.text-animation.delay10.show .delay48 {
  animation-delay: 11.92s;
}
.text-animation.delay10.show .delay49 {
  animation-delay: 11.96s;
}
.text-animation.delay10.show .delay50 {
  animation-delay: 12s;
}
.text-animation.delay10.show .delay51 {
  animation-delay: 12.04s;
}
.text-animation.delay10.show .delay52 {
  animation-delay: 12.08s;
}
.text-animation.delay10.show .delay53 {
  animation-delay: 12.12s;
}
.text-animation.delay10.show .delay54 {
  animation-delay: 12.16s;
}
.text-animation.delay10.show .delay55 {
  animation-delay: 12.2s;
}
.text-animation.delay10.show .delay56 {
  animation-delay: 12.24s;
}
.text-animation.delay10.show .delay57 {
  animation-delay: 12.28s;
}
.text-animation.delay10.show .delay58 {
  animation-delay: 12.32s;
}
.text-animation.delay10.show .delay59 {
  animation-delay: 12.36s;
}
.text-animation.delay10.show .delay60 {
  animation-delay: 12.4s;
}
.text-animation.delay10.show .delay61 {
  animation-delay: 12.44s;
}
.text-animation.delay10.show .delay62 {
  animation-delay: 12.48s;
}
.text-animation.delay10.show .delay63 {
  animation-delay: 12.52s;
}
.text-animation.delay10.show .delay64 {
  animation-delay: 12.56s;
}
.text-animation.delay10.show .delay65 {
  animation-delay: 12.6s;
}
.text-animation.delay10.show .delay66 {
  animation-delay: 12.64s;
}
.text-animation.delay10.show .delay67 {
  animation-delay: 12.68s;
}
.text-animation.delay10.show .delay68 {
  animation-delay: 12.72s;
}
.text-animation.delay10.show .delay69 {
  animation-delay: 12.76s;
}
.text-animation.delay10.show .delay70 {
  animation-delay: 12.8s;
}
.text-animation.delay10.show .delay71 {
  animation-delay: 12.84s;
}
.text-animation.delay10.show .delay72 {
  animation-delay: 12.88s;
}
.text-animation.delay10.show .delay73 {
  animation-delay: 12.92s;
}
.text-animation.delay10.show .delay74 {
  animation-delay: 12.96s;
}
.text-animation.delay10.show .delay75 {
  animation-delay: 13s;
}
.text-animation.delay10.show .delay76 {
  animation-delay: 13.04s;
}
.text-animation.delay10.show .delay77 {
  animation-delay: 13.08s;
}
.text-animation.delay10.show .delay78 {
  animation-delay: 13.12s;
}
.text-animation.delay10.show .delay79 {
  animation-delay: 13.16s;
}
.text-animation.delay10.show .delay80 {
  animation-delay: 13.2s;
}
.text-animation.delay10.show .delay81 {
  animation-delay: 13.24s;
}
.text-animation.delay10.show .delay82 {
  animation-delay: 13.28s;
}
.text-animation.delay10.show .delay83 {
  animation-delay: 13.32s;
}
.text-animation.delay10.show .delay84 {
  animation-delay: 13.36s;
}
.text-animation.delay10.show .delay85 {
  animation-delay: 13.4s;
}
.text-animation.delay10.show .delay86 {
  animation-delay: 13.44s;
}
.text-animation.delay10.show .delay87 {
  animation-delay: 13.48s;
}
.text-animation.delay10.show .delay88 {
  animation-delay: 13.52s;
}
.text-animation.delay10.show .delay89 {
  animation-delay: 13.56s;
}
.text-animation.delay10.show .delay90 {
  animation-delay: 13.6s;
}
.text-animation.delay10.show .delay91 {
  animation-delay: 13.64s;
}
.text-animation.delay10.show .delay92 {
  animation-delay: 13.68s;
}
.text-animation.delay10.show .delay93 {
  animation-delay: 13.72s;
}
.text-animation.delay10.show .delay94 {
  animation-delay: 13.76s;
}
.text-animation.delay10.show .delay95 {
  animation-delay: 13.8s;
}
.text-animation.delay10.show .delay96 {
  animation-delay: 13.84s;
}
.text-animation.delay10.show .delay97 {
  animation-delay: 13.88s;
}
.text-animation.delay10.show .delay98 {
  animation-delay: 13.92s;
}
.text-animation.delay10.show .delay99 {
  animation-delay: 13.96s;
}
.text-animation.delay10.show .delay100 {
  animation-delay: 14s;
}

@keyframes textanimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.image-animation-wrap {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
  clip-path: polygon(5% 0%, 95% 0%, 100% 5%, 100% 95%, 100% 100%, 5% 100%, 0% 93%, 0% 7%);
}
.image-animation-wrap::before {
  content: "";
  height: 400%;
  width: 400%;
  position: absolute;
  top: -200%;
  left: 100%;
  background: #fff;
  opacity: 1;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  filter: blur(50px);
  animation: none;
  -webkit-animation: none;
}
.image-animation-wrap.show {
  opacity: 1;
}
.image-animation-wrap.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
}
.image-animation-wrap.delay1.show {
  opacity: 1;
  transition-delay: 1s;
}
.image-animation-wrap.delay1.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
.image-animation-wrap.delay2.show {
  opacity: 1;
  transition-delay: 2s;
}
.image-animation-wrap.delay2.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}
.image-animation-wrap.delay3.show {
  opacity: 1;
  transition-delay: 3s;
}
.image-animation-wrap.delay3.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 3s;
  -webkit-animation-delay: 3s;
}
.image-animation-wrap.delay4.show {
  opacity: 1;
  transition-delay: 4s;
}
.image-animation-wrap.delay4.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 4s;
  -webkit-animation-delay: 4s;
}
.image-animation-wrap.delay5.show {
  opacity: 1;
  transition-delay: 5s;
}
.image-animation-wrap.delay5.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 5s;
  -webkit-animation-delay: 5s;
}
.image-animation-wrap.delay6.show {
  opacity: 1;
  transition-delay: 6s;
}
.image-animation-wrap.delay6.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 6s;
  -webkit-animation-delay: 6s;
}
.image-animation-wrap.delay7.show {
  opacity: 1;
  transition-delay: 7s;
}
.image-animation-wrap.delay7.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 7s;
  -webkit-animation-delay: 7s;
}
.image-animation-wrap.delay8.show {
  opacity: 1;
  transition-delay: 8s;
}
.image-animation-wrap.delay8.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 8s;
  -webkit-animation-delay: 8s;
}
.image-animation-wrap.delay9.show {
  opacity: 1;
  transition-delay: 9s;
}
.image-animation-wrap.delay9.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 9s;
  -webkit-animation-delay: 9s;
}
.image-animation-wrap.delay10.show {
  opacity: 1;
  transition-delay: 10s;
}
.image-animation-wrap.delay10.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 10s;
  -webkit-animation-delay: 10s;
}
.image-animation-wrap.delay1-5.show {
  opacity: 1;
  transition-delay: 1.5s;
}
.image-animation-wrap.delay1-5.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}
.image-animation-wrap.delay2-5.show {
  opacity: 1;
  transition-delay: 2.5s;
}
.image-animation-wrap.delay2-5.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 2.5s;
  -webkit-animation-delay: 2.5s;
}
.image-animation-wrap.delay3-5.show {
  opacity: 1;
  transition-delay: 3.5s;
}
.image-animation-wrap.delay3-5.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 3.5s;
  -webkit-animation-delay: 3.5s;
}
.image-animation-wrap.delay4-5.show {
  opacity: 1;
  transition-delay: 4.5s;
}
.image-animation-wrap.delay4-5.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 4.5s;
  -webkit-animation-delay: 4.5s;
}
.image-animation-wrap.delay5-5.show {
  opacity: 1;
  transition-delay: 5.5s;
}
.image-animation-wrap.delay5-5.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 5.5s;
  -webkit-animation-delay: 5.5s;
}
.image-animation-wrap.delay6-5.show {
  opacity: 1;
  transition-delay: 6.5s;
}
.image-animation-wrap.delay6-5.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 6.5s;
  -webkit-animation-delay: 6.5s;
}
.image-animation-wrap.delay7-5.show {
  opacity: 1;
  transition-delay: 7.5s;
}
.image-animation-wrap.delay7-5.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 7.5s;
  -webkit-animation-delay: 7.5s;
}
.image-animation-wrap.delay8-5.show {
  opacity: 1;
  transition-delay: 8.5s;
}
.image-animation-wrap.delay8-5.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 8.5s;
  -webkit-animation-delay: 8.5s;
}
.image-animation-wrap.delay9-5.show {
  opacity: 1;
  transition-delay: 9.5s;
}
.image-animation-wrap.delay9-5.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 9.5s;
  -webkit-animation-delay: 9.5s;
}
.image-animation-wrap.delay10-5.show {
  opacity: 1;
  transition-delay: 10.5s;
}
.image-animation-wrap.delay10-5.show::before {
  animation: kirari 1s ease forwards;
  -webkit-animation: kirari 1s ease forwards;
  animation-delay: 10.5s;
  -webkit-animation-delay: 10.5s;
}

@keyframes kirari {
  0% {
    top: -200%;
    left: -100%;
  }
  100% {
    top: -200%;
    left: 100%;
    opacity: 0;
  }
}
.header {
  position: absolute;
  top: 2.78vw;
  left: 2.78vw;
  z-index: 1;
}
.header__headline {
  display: grid;
  grid-template-columns: auto auto;
  -moz-column-gap: 2.08vw;
       column-gap: 2.08vw;
  justify-content: start;
  align-items: center;
}
.header__link {
  pointer-events: none;
}
.header__logo--forbes {
  width: 8.06vw;
}
.header__logo--ga-tech {
  width: 16.67vw;
}
@media (width < 769px) {
  .header {
    top: 8vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__headline {
    -moz-column-gap: 6.13vw;
         column-gap: 6.13vw;
  }
  .header__logo--forbes {
    width: 23.2vw;
  }
  .header__logo--ga-tech {
    width: 48vw;
  }
}

.footer {
  position: relative;
  background-color: #00101d;
  padding: 60px 20px;
}
.footer__logo-link {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-top: 50px;
  margin-inline: auto;
}
.footer__logo {
  width: 135px;
}
.footer__copyright {
  margin-top: 38px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (width < 769px) {
  .footer {
    padding-top: 35px;
    padding-bottom: 25px;
  }
  .footer__logo-link {
    margin-top: 30px;
  }
  .footer__logo {
    width: 100px;
  }
  .footer__copyright {
    margin-top: 22px;
    font-size: 10px;
  }
}

.sns__list {
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.sns__item {
  width: 32px;
  height: 32px;
}
.sns__item img {
  width: 100%;
}
.sns__logo {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width < 769px) {
  .sns__list {
    gap: 35px;
  }
}

.main {
  position: relative;
  padding: 20px 15px 15px;
  width: 100vw;
  height: 100vh;
}
.main::before, .main::after {
  content: "";
  width: 3vw;
  height: 3vw;
  background-color: #fff;
  position: absolute;
  top: 20px;
  z-index: 100;
}
.main::before {
  left: 15px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.main::after {
  right: 15px;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.main__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  overflow: hidden;
  clip-path: polygon(3% 0%, 97% 0%, 100% 3%, 100% 97%, 100% 100%, 3% 100%, 0% 97%, 0% 3%);
}
.main__inner::before, .main__inner::after {
  content: "";
  width: 3vw;
  height: 3vw;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  z-index: 100;
}
.main__inner::before {
  left: 0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.main__inner::after {
  content: none;
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.main__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main__slide-link {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.main__slide-link:hover {
  opacity: 1;
}
.main__slide-link:hover .main__slide-image {
  transform: scale(1.05);
}
.main__slide-image {
  width: 100%;
  height: 100%;
  transition: all 1s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__headline {
  position: relative;
  font-size: 90px;
  font-size: 6.25vw;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-right: 9.72vw;
  z-index: 1;
}
.main__headline--color {
  color: #01c8ff;
}
.main__scroll {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 16px;
  font-size: 1.11vw;
  font-weight: bold;
  line-height: 1;
  z-index: 1;
}
.main__scroll-bar::before {
  animation: scroll 3s infinite;
  background-color: #fff;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  content: "";
  height: 35px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@media (width < 769px) {
  .main {
    padding: 20px;
  }
  .main::before, .main::after {
    width: 10vw;
    height: 10vw;
    top: 15px;
  }
  .main__inner {
    background-image: url("../img/main/img_main_sp.png");
    align-items: end;
  }
  .main__inner::before, .main__inner::after {
    width: 10vw;
    height: 10vw;
    left: -5px;
    bottom: -5px;
  }
  .main__headline {
    font-size: 12vw;
    margin-inline: auto;
    margin-bottom: 26.67vw;
  }
  .main__scroll {
    font-size: 3.2vw;
  }
  .main__scroll::after {
    height: 38px;
  }
}

.intro {
  padding: 130px 30px 150px;
  min-width: 1440px;
  margin-inline: auto;
}
.intro__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 3;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (width < 769px) {
  .intro {
    padding-top: 80px;
    padding-bottom: 100px;
    min-width: 100%;
  }
  .intro__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 3;
    text-align: center;
  }
}

.articles {
  min-width: 1440px;
  margin-inline: auto;
  background: url("../img/articles/bg_articles.png") no-repeat center top 77px/100%;
}
.articles__inner {
  position: relative;
  width: 1024px;
  margin-inline: auto;
  z-index: 1;
}
.articles__bg {
  position: absolute;
  top: -5px;
  left: -222px;
  font-family: "century-bold";
  font-size: 300px;
  line-height: 1;
  color: rgba(1, 200, 255, 0.15);
  z-index: 0;
}
.articles__headline {
  position: absolute;
  font-family: "century-bold";
  font-size: 100px;
  line-height: 1;
  top: 0;
  left: 0;
}
.articles__headline::before {
  content: "";
  width: 100vw;
  height: 4px;
  background-color: #01c8ff;
  position: absolute;
  top: 32px;
  right: calc(100% + 20px);
}
.articles__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  gap: 40px 20px;
}
.articles__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.articles__link {
  position: relative;
}
.articles__link--first {
  grid-template-columns: auto auto;
  display: grid;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.articles__link img {
  transition: all 1s ease;
}
.articles__link:hover {
  opacity: 1;
}
.articles__link:hover img {
  transform: scale(1.1);
}
.articles__contents {
  position: relative;
  margin-top: 20px;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.articles__contents--first {
  display: block;
  width: 470px;
  height: auto;
  margin-top: 120px;
  padding-left: 70px;
}
.articles__contents-catch, .articles__contents-name {
  color: #000;
}
.articles__contents-catch {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.articles__contents-catch--first {
  font-size: 30px;
}
.articles__contents-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: 9px;
  margin-bottom: 16px;
}
.articles__contents-name--first {
  font-size: 20px;
  margin-top: 17px;
  margin-bottom: 0;
  line-height: 2.25;
}
.articles__contents-num {
  font-family: "century-bold";
  position: absolute;
  top: -31px;
  left: -2px;
  color: #01c8ff;
  line-height: 1;
  font-size: 80px;
  font-style: italic;
}
.articles__contents-num--first {
  font-size: 100px;
  top: 9px;
  left: -18px;
}
.articles__figure {
  position: relative;
}
.articles__figure--first {
  grid-column: 2/3;
  grid-row: 1/3;
  margin-right: calc(30% - 30vw);
}
.articles__btn {
  width: 150px;
  height: 30px;
  clip-path: polygon(5px 0%, calc(100% - 5px) 0%, 100% 5px, 100% calc(100% - 5px), 100% 100%, 5px 100%, 0% calc(100% - 5px), 0% 5px);
  background-color: #000;
  font-family: "century-bold";
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-left: auto;
  padding-top: 3px;
}
.articles__btn--first {
  display: block;
  width: auto;
  height: auto;
  position: absolute;
  bottom: 0;
  left: -140px;
  color: #01c8ff;
  background-color: transparent;
  clip-path: none;
  margin-left: 0;
  padding-top: 0;
}
.articles__btn--first::after {
  content: "";
  width: 100px;
  height: 2px;
  background-color: #01c8ff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateY(-2px);
  left: calc(100% + 10px);
}
@media (width < 769px) {
  .articles {
    min-width: 100%;
    background: none;
  }
  .articles__inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .articles__bg {
    top: 0;
    left: -3px;
    font-size: 150px;
  }
  .articles__headline {
    position: relative;
    font-size: 60px;
    top: auto;
    left: auto;
    padding-left: 15px;
  }
  .articles__headline::before {
    height: 2px;
    top: 21px;
    right: calc(100% - 5px);
  }
  .articles__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 45px;
    gap: 20px 17px;
  }
  .articles__link {
    display: flex;
  }
  .articles__link--first {
    display: grid;
    height: 100%;
  }
  .articles__link--first {
    grid-template-columns: auto;
  }
  .articles__contents {
    position: relative;
    margin-top: 20px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .articles__contents--first {
    width: calc(100% - 30px);
    height: auto;
    margin-top: 20px;
    margin-inline: auto;
    padding-left: 50px;
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .articles__contents-catch, .articles__contents-name {
    color: #000;
  }
  .articles__contents-catch {
    font-size: 11px;
  }
  .articles__contents-catch--first {
    font-size: 20px;
  }
  .articles__contents-name {
    font-size: 10px;
    margin-top: 9px;
    margin-bottom: 10px;
  }
  .articles__contents-name--first {
    font-size: 15px;
    margin-top: 8px;
    line-height: 2;
  }
  .articles__contents-num {
    top: -49px;
    left: -2px;
    font-size: 60px;
  }
  .articles__contents-num--first {
    font-size: 75px;
    top: 9px;
    left: -18px;
  }
  .articles__figure--first {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-top: 24px;
    margin-right: calc(50% - 50vw);
  }
  .articles__btn {
    width: 100px;
    height: 20px;
    font-size: 10px;
    margin-top: auto;
    margin-left: auto;
    padding-top: 2px;
  }
  .articles__btn--first {
    position: relative;
    width: auto;
    height: auto;
    left: auto;
    padding-top: 0;
    margin-top: -2px;
    margin-right: 45px;
    font-size: 12px;
  }
  .articles__btn--first::after {
    width: 100vw;
    height: 1px;
  }
}

.tech {
  position: relative;
  min-width: 1440px;
  margin-top: 150px;
  margin-inline: auto;
  padding-bottom: 140px;
  background: url("../img/tech/bg_pc.png") no-repeat center top 390px/100%;
}
.tech__inner {
  position: relative;
  width: 1024px;
  margin-inline: auto;
  z-index: 1;
}
.tech__bg {
  position: absolute;
  top: 0;
  left: -222px;
  font-family: "century-bold";
  font-size: 300px;
  line-height: 1;
  color: rgba(1, 200, 255, 0.15);
  z-index: 0;
}
.tech__headline {
  font-family: "century-bold";
  font-size: 100px;
  line-height: 1;
}
.tech__headline::before {
  content: "";
  width: 100vw;
  height: 4px;
  background-color: #01c8ff;
  position: absolute;
  top: 32px;
  right: calc(100% + 20px);
}
.tech__lead {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  width: 705px;
  margin-top: 18px;
  z-index: 2;
}
.tech__image {
  transition: all 1s ease;
  position: relative;
  display: block;
  width: 814px;
  margin-top: -100px;
  margin-left: auto;
  z-index: 1;
}
@media (width < 769px) {
  .tech {
    min-width: 100%;
    margin-top: 125px;
    background-image: url("../img/tech/bg_sp.png");
    background-position: center top 160px;
    padding-bottom: 80px;
  }
  .tech__inner {
    width: 100%;
  }
  .tech__bg {
    left: 0;
    font-size: 150px;
    letter-spacing: -0.01em;
  }
  .tech__headline {
    font-size: 60px;
    word-break: break-word;
    padding-left: 30px;
    padding-right: 30px;
    letter-spacing: -0.01em;
  }
  .tech__headline::before {
    height: 2px;
    top: 20px;
    right: calc(100% - 20px);
  }
  .tech__lead {
    font-size: 12px;
    line-height: 1.8;
    width: 100%;
    margin-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }
  .tech__image {
    width: 100%;
    max-width: 366px;
    margin-top: -40px;
    margin-inline: auto;
  }
}

.bottom {
  position: relative;
  min-width: 1440px;
  margin-inline: auto;
  background-color: #dce6e9;
  padding-top: 107px;
  padding-bottom: 107px;
}
.bottom::before, .bottom::after {
  content: "";
  width: 40px;
  height: 40px;
  background-color: #fff;
  position: absolute;
  top: 0;
  z-index: 1;
}
.bottom::before {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.bottom::after {
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.bottom__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 22px;
       column-gap: 22px;
}
.bottom__image {
  width: 551px;
}
.bottom__text {
  position: relative;
  font-family: "century-bold";
  font-size: 40px;
  line-height: 1;
  color: #fff;
  padding-top: 11px;
}
.bottom__text::after {
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  transform: translateY(-50%);
  content: "";
  width: 100vw;
  height: 2px;
  background-color: #fff;
}
@media (width < 769px) {
  .bottom {
    min-width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .bottom::before, .bottom::after {
    width: 20px;
    height: 20px;
  }
  .bottom__inner {
    max-width: 320px;
    margin-inline: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .bottom__image {
    width: 275px;
  }
  .bottom__text {
    font-size: 20px;
    padding-top: 0;
    margin-top: 17px;
  }
  .bottom__text::after {
    height: 1px;
  }
}

@font-face {
  font-family: "century-regular";
  src: url("../century-gothic-pro-regular.otf") format("opentype");
}
@font-face {
  font-family: "century-bold";
  src: url("../century-gothic-pro-bold.otf") format("opentype");
}
/*# sourceMappingURL=style.css.map */
