.appear.up .item {
  transform: translateY(8px);
}

.appear.down .item {
  transform: translateY(-8px);
}

.appear.left .item {
  transform: translateX(8px);
}

.appear.right .item {
  transform: translateX(-8px);
}

.appear .item {
  transition: all 0.8s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}
.appear.inview .item:nth-child(11) {
  transition-delay: 1.1s;
}
.appear.inview .item:nth-child(12) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(13) {
  transition-delay: 1.3s;
}
.appear.inview .item:nth-child(14) {
  transition-delay: 1.4s;
}
.appear.inview .item:nth-child(15) {
  transition-delay: 1.5s;
}
.appear.inview .item:nth-child(16) {
  transition-delay: 1.6s;
}
.appear.inview .item:nth-child(17) {
  transition-delay: 1.7s;
}
.appear.inview .item:nth-child(18) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(19) {
  transition-delay: 1.9s;
}
.appear.inview .item:nth-child(20) {
  transition-delay: 2s;
}
.appear.inview .item:nth-child(21) {
  transition-delay: 2.1s;
}
.appear.inview .item:nth-child(22) {
  transition-delay: 2.2s;
}
.appear.inview .item:nth-child(23) {
  transition-delay: 2.3s;
}
.appear.inview .item:nth-child(24) {
  transition-delay: 2.4s;
}
.appear.inview .item:nth-child(25) {
  transition-delay: 2.5s;
}
.appear.inview .item:nth-child(26) {
  transition-delay: 2.6s;
}
.appear.inview .item:nth-child(27) {
  transition-delay: 2.7s;
}
.appear.inview .item:nth-child(28) {
  transition-delay: 2.8s;
}
.appear.inview .item:nth-child(29) {
  transition-delay: 2.9s;
}
.appear.inview .item:nth-child(30) {
  transition-delay: 3s;
}
.appear.inview .item:nth-child(31) {
  transition-delay: 3.1s;
}
.appear.inview .item:nth-child(32) {
  transition-delay: 3.2s;
}
.appear.inview .item:nth-child(33) {
  transition-delay: 3.3s;
}
.appear.inview .item:nth-child(34) {
  transition-delay: 3.4s;
}
.appear.inview .item:nth-child(35) {
  transition-delay: 3.5s;
}
.appear.inview .item:nth-child(36) {
  transition-delay: 3.6s;
}
.appear.inview .item:nth-child(37) {
  transition-delay: 3.7s;
}
.appear.inview .item:nth-child(38) {
  transition-delay: 3.8s;
}
.appear.inview .item:nth-child(39) {
  transition-delay: 3.9s;
}
.appear.inview .item:nth-child(40) {
  transition-delay: 4s;
}
.appear.inview .item:nth-child(41) {
  transition-delay: 4.1s;
}
.appear.inview .item:nth-child(42) {
  transition-delay: 4.2s;
}
.appear.inview .item:nth-child(43) {
  transition-delay: 4.3s;
}
.appear.inview .item:nth-child(44) {
  transition-delay: 4.4s;
}
.appear.inview .item:nth-child(45) {
  transition-delay: 4.5s;
}
.appear.inview .item:nth-child(46) {
  transition-delay: 4.6s;
}
.appear.inview .item:nth-child(47) {
  transition-delay: 4.7s;
}
.appear.inview .item:nth-child(48) {
  transition-delay: 4.8s;
}
.appear.inview .item:nth-child(49) {
  transition-delay: 4.9s;
}
.appear.inview .item:nth-child(50) {
  transition-delay: 5s;
}

.sweep .item {
  position: relative;
  overflow: hidden;
  display: inline-block;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.sweep .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #EBEBEB;
  z-index: 1;
  pointer-events: none;
  transform: translateX(-101%);
}
.sweep .item img, .sweep .item .text {
  position: relative;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sweep .item.inview {
  opacity: 1;
  transform: translateX(0);
}
.sweep .item.inview::before {
  animation: sweep 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.sweep .item.inview img, .sweep .item.inview .text {
  opacity: 1;
}
.sweep .item:nth-child(1).inview {
  transition-delay: 0s;
}
.sweep .item:nth-child(1).inview::before {
  animation-delay: 0s;
}
.sweep .item:nth-child(1).inview img, .sweep .item:nth-child(1).inview .text {
  transition-delay: 0.35s;
}
.sweep .item:nth-child(2).inview {
  transition-delay: 0.12s;
}
.sweep .item:nth-child(2).inview::before {
  animation-delay: 0.12s;
}
.sweep .item:nth-child(2).inview img, .sweep .item:nth-child(2).inview .text {
  transition-delay: 0.47s;
}
.sweep .item:nth-child(3).inview {
  transition-delay: 0.24s;
}
.sweep .item:nth-child(3).inview::before {
  animation-delay: 0.24s;
}
.sweep .item:nth-child(3).inview img, .sweep .item:nth-child(3).inview .text {
  transition-delay: 0.59s;
}
.sweep .item:nth-child(4).inview {
  transition-delay: 0.36s;
}
.sweep .item:nth-child(4).inview::before {
  animation-delay: 0.36s;
}
.sweep .item:nth-child(4).inview img, .sweep .item:nth-child(4).inview .text {
  transition-delay: 0.71s;
}
.sweep .item:nth-child(5).inview {
  transition-delay: 0.48s;
}
.sweep .item:nth-child(5).inview::before {
  animation-delay: 0.48s;
}
.sweep .item:nth-child(5).inview img, .sweep .item:nth-child(5).inview .text {
  transition-delay: 0.83s;
}
.sweep .item:nth-child(6).inview {
  transition-delay: 0.6s;
}
.sweep .item:nth-child(6).inview::before {
  animation-delay: 0.6s;
}
.sweep .item:nth-child(6).inview img, .sweep .item:nth-child(6).inview .text {
  transition-delay: 0.95s;
}
.sweep .item:nth-child(7).inview {
  transition-delay: 0.72s;
}
.sweep .item:nth-child(7).inview::before {
  animation-delay: 0.72s;
}
.sweep .item:nth-child(7).inview img, .sweep .item:nth-child(7).inview .text {
  transition-delay: 1.07s;
}
.sweep .item:nth-child(8).inview {
  transition-delay: 0.84s;
}
.sweep .item:nth-child(8).inview::before {
  animation-delay: 0.84s;
}
.sweep .item:nth-child(8).inview img, .sweep .item:nth-child(8).inview .text {
  transition-delay: 1.19s;
}
.sweep .item:nth-child(9).inview {
  transition-delay: 0.96s;
}
.sweep .item:nth-child(9).inview::before {
  animation-delay: 0.96s;
}
.sweep .item:nth-child(9).inview img, .sweep .item:nth-child(9).inview .text {
  transition-delay: 1.31s;
}
.sweep .item:nth-child(10).inview {
  transition-delay: 1.08s;
}
.sweep .item:nth-child(10).inview::before {
  animation-delay: 1.08s;
}
.sweep .item:nth-child(10).inview img, .sweep .item:nth-child(10).inview .text {
  transition-delay: 1.43s;
}
.sweep .item:nth-child(11).inview {
  transition-delay: 1.2s;
}
.sweep .item:nth-child(11).inview::before {
  animation-delay: 1.2s;
}
.sweep .item:nth-child(11).inview img, .sweep .item:nth-child(11).inview .text {
  transition-delay: 1.55s;
}
.sweep .item:nth-child(12).inview {
  transition-delay: 1.32s;
}
.sweep .item:nth-child(12).inview::before {
  animation-delay: 1.32s;
}
.sweep .item:nth-child(12).inview img, .sweep .item:nth-child(12).inview .text {
  transition-delay: 1.67s;
}
.sweep .item:nth-child(13).inview {
  transition-delay: 1.44s;
}
.sweep .item:nth-child(13).inview::before {
  animation-delay: 1.44s;
}
.sweep .item:nth-child(13).inview img, .sweep .item:nth-child(13).inview .text {
  transition-delay: 1.79s;
}
.sweep .item:nth-child(14).inview {
  transition-delay: 1.56s;
}
.sweep .item:nth-child(14).inview::before {
  animation-delay: 1.56s;
}
.sweep .item:nth-child(14).inview img, .sweep .item:nth-child(14).inview .text {
  transition-delay: 1.91s;
}
.sweep .item:nth-child(15).inview {
  transition-delay: 1.68s;
}
.sweep .item:nth-child(15).inview::before {
  animation-delay: 1.68s;
}
.sweep .item:nth-child(15).inview img, .sweep .item:nth-child(15).inview .text {
  transition-delay: 2.03s;
}
.sweep .item:nth-child(16).inview {
  transition-delay: 1.8s;
}
.sweep .item:nth-child(16).inview::before {
  animation-delay: 1.8s;
}
.sweep .item:nth-child(16).inview img, .sweep .item:nth-child(16).inview .text {
  transition-delay: 2.15s;
}
.sweep .item:nth-child(17).inview {
  transition-delay: 1.92s;
}
.sweep .item:nth-child(17).inview::before {
  animation-delay: 1.92s;
}
.sweep .item:nth-child(17).inview img, .sweep .item:nth-child(17).inview .text {
  transition-delay: 2.27s;
}
.sweep .item:nth-child(18).inview {
  transition-delay: 2.04s;
}
.sweep .item:nth-child(18).inview::before {
  animation-delay: 2.04s;
}
.sweep .item:nth-child(18).inview img, .sweep .item:nth-child(18).inview .text {
  transition-delay: 2.39s;
}
.sweep .item:nth-child(19).inview {
  transition-delay: 2.16s;
}
.sweep .item:nth-child(19).inview::before {
  animation-delay: 2.16s;
}
.sweep .item:nth-child(19).inview img, .sweep .item:nth-child(19).inview .text {
  transition-delay: 2.51s;
}
.sweep .item:nth-child(20).inview {
  transition-delay: 2.28s;
}
.sweep .item:nth-child(20).inview::before {
  animation-delay: 2.28s;
}
.sweep .item:nth-child(20).inview img, .sweep .item:nth-child(20).inview .text {
  transition-delay: 2.63s;
}
.sweep .item:nth-child(21).inview {
  transition-delay: 2.4s;
}
.sweep .item:nth-child(21).inview::before {
  animation-delay: 2.4s;
}
.sweep .item:nth-child(21).inview img, .sweep .item:nth-child(21).inview .text {
  transition-delay: 2.75s;
}
.sweep .item:nth-child(22).inview {
  transition-delay: 2.52s;
}
.sweep .item:nth-child(22).inview::before {
  animation-delay: 2.52s;
}
.sweep .item:nth-child(22).inview img, .sweep .item:nth-child(22).inview .text {
  transition-delay: 2.87s;
}
.sweep .item:nth-child(23).inview {
  transition-delay: 2.64s;
}
.sweep .item:nth-child(23).inview::before {
  animation-delay: 2.64s;
}
.sweep .item:nth-child(23).inview img, .sweep .item:nth-child(23).inview .text {
  transition-delay: 2.99s;
}
.sweep .item:nth-child(24).inview {
  transition-delay: 2.76s;
}
.sweep .item:nth-child(24).inview::before {
  animation-delay: 2.76s;
}
.sweep .item:nth-child(24).inview img, .sweep .item:nth-child(24).inview .text {
  transition-delay: 3.11s;
}
.sweep .item:nth-child(25).inview {
  transition-delay: 2.88s;
}
.sweep .item:nth-child(25).inview::before {
  animation-delay: 2.88s;
}
.sweep .item:nth-child(25).inview img, .sweep .item:nth-child(25).inview .text {
  transition-delay: 3.23s;
}
.sweep .item:nth-child(26).inview {
  transition-delay: 3s;
}
.sweep .item:nth-child(26).inview::before {
  animation-delay: 3s;
}
.sweep .item:nth-child(26).inview img, .sweep .item:nth-child(26).inview .text {
  transition-delay: 3.35s;
}
.sweep .item:nth-child(27).inview {
  transition-delay: 3.12s;
}
.sweep .item:nth-child(27).inview::before {
  animation-delay: 3.12s;
}
.sweep .item:nth-child(27).inview img, .sweep .item:nth-child(27).inview .text {
  transition-delay: 3.47s;
}
.sweep .item:nth-child(28).inview {
  transition-delay: 3.24s;
}
.sweep .item:nth-child(28).inview::before {
  animation-delay: 3.24s;
}
.sweep .item:nth-child(28).inview img, .sweep .item:nth-child(28).inview .text {
  transition-delay: 3.59s;
}
.sweep .item:nth-child(29).inview {
  transition-delay: 3.36s;
}
.sweep .item:nth-child(29).inview::before {
  animation-delay: 3.36s;
}
.sweep .item:nth-child(29).inview img, .sweep .item:nth-child(29).inview .text {
  transition-delay: 3.71s;
}
.sweep .item:nth-child(30).inview {
  transition-delay: 3.48s;
}
.sweep .item:nth-child(30).inview::before {
  animation-delay: 3.48s;
}
.sweep .item:nth-child(30).inview img, .sweep .item:nth-child(30).inview .text {
  transition-delay: 3.83s;
}
.sweep .item:nth-child(31).inview {
  transition-delay: 3.6s;
}
.sweep .item:nth-child(31).inview::before {
  animation-delay: 3.6s;
}
.sweep .item:nth-child(31).inview img, .sweep .item:nth-child(31).inview .text {
  transition-delay: 3.95s;
}
.sweep .item:nth-child(32).inview {
  transition-delay: 3.72s;
}
.sweep .item:nth-child(32).inview::before {
  animation-delay: 3.72s;
}
.sweep .item:nth-child(32).inview img, .sweep .item:nth-child(32).inview .text {
  transition-delay: 4.07s;
}
.sweep .item:nth-child(33).inview {
  transition-delay: 3.84s;
}
.sweep .item:nth-child(33).inview::before {
  animation-delay: 3.84s;
}
.sweep .item:nth-child(33).inview img, .sweep .item:nth-child(33).inview .text {
  transition-delay: 4.19s;
}
.sweep .item:nth-child(34).inview {
  transition-delay: 3.96s;
}
.sweep .item:nth-child(34).inview::before {
  animation-delay: 3.96s;
}
.sweep .item:nth-child(34).inview img, .sweep .item:nth-child(34).inview .text {
  transition-delay: 4.31s;
}
.sweep .item:nth-child(35).inview {
  transition-delay: 4.08s;
}
.sweep .item:nth-child(35).inview::before {
  animation-delay: 4.08s;
}
.sweep .item:nth-child(35).inview img, .sweep .item:nth-child(35).inview .text {
  transition-delay: 4.43s;
}
.sweep .item:nth-child(36).inview {
  transition-delay: 4.2s;
}
.sweep .item:nth-child(36).inview::before {
  animation-delay: 4.2s;
}
.sweep .item:nth-child(36).inview img, .sweep .item:nth-child(36).inview .text {
  transition-delay: 4.55s;
}
.sweep .item:nth-child(37).inview {
  transition-delay: 4.32s;
}
.sweep .item:nth-child(37).inview::before {
  animation-delay: 4.32s;
}
.sweep .item:nth-child(37).inview img, .sweep .item:nth-child(37).inview .text {
  transition-delay: 4.67s;
}
.sweep .item:nth-child(38).inview {
  transition-delay: 4.44s;
}
.sweep .item:nth-child(38).inview::before {
  animation-delay: 4.44s;
}
.sweep .item:nth-child(38).inview img, .sweep .item:nth-child(38).inview .text {
  transition-delay: 4.79s;
}
.sweep .item:nth-child(39).inview {
  transition-delay: 4.56s;
}
.sweep .item:nth-child(39).inview::before {
  animation-delay: 4.56s;
}
.sweep .item:nth-child(39).inview img, .sweep .item:nth-child(39).inview .text {
  transition-delay: 4.91s;
}
.sweep .item:nth-child(40).inview {
  transition-delay: 4.68s;
}
.sweep .item:nth-child(40).inview::before {
  animation-delay: 4.68s;
}
.sweep .item:nth-child(40).inview img, .sweep .item:nth-child(40).inview .text {
  transition-delay: 5.03s;
}
.sweep .item:nth-child(41).inview {
  transition-delay: 4.8s;
}
.sweep .item:nth-child(41).inview::before {
  animation-delay: 4.8s;
}
.sweep .item:nth-child(41).inview img, .sweep .item:nth-child(41).inview .text {
  transition-delay: 5.15s;
}
.sweep .item:nth-child(42).inview {
  transition-delay: 4.92s;
}
.sweep .item:nth-child(42).inview::before {
  animation-delay: 4.92s;
}
.sweep .item:nth-child(42).inview img, .sweep .item:nth-child(42).inview .text {
  transition-delay: 5.27s;
}
.sweep .item:nth-child(43).inview {
  transition-delay: 5.04s;
}
.sweep .item:nth-child(43).inview::before {
  animation-delay: 5.04s;
}
.sweep .item:nth-child(43).inview img, .sweep .item:nth-child(43).inview .text {
  transition-delay: 5.39s;
}
.sweep .item:nth-child(44).inview {
  transition-delay: 5.16s;
}
.sweep .item:nth-child(44).inview::before {
  animation-delay: 5.16s;
}
.sweep .item:nth-child(44).inview img, .sweep .item:nth-child(44).inview .text {
  transition-delay: 5.51s;
}
.sweep .item:nth-child(45).inview {
  transition-delay: 5.28s;
}
.sweep .item:nth-child(45).inview::before {
  animation-delay: 5.28s;
}
.sweep .item:nth-child(45).inview img, .sweep .item:nth-child(45).inview .text {
  transition-delay: 5.63s;
}
.sweep .item:nth-child(46).inview {
  transition-delay: 5.4s;
}
.sweep .item:nth-child(46).inview::before {
  animation-delay: 5.4s;
}
.sweep .item:nth-child(46).inview img, .sweep .item:nth-child(46).inview .text {
  transition-delay: 5.75s;
}
.sweep .item:nth-child(47).inview {
  transition-delay: 5.52s;
}
.sweep .item:nth-child(47).inview::before {
  animation-delay: 5.52s;
}
.sweep .item:nth-child(47).inview img, .sweep .item:nth-child(47).inview .text {
  transition-delay: 5.87s;
}
.sweep .item:nth-child(48).inview {
  transition-delay: 5.64s;
}
.sweep .item:nth-child(48).inview::before {
  animation-delay: 5.64s;
}
.sweep .item:nth-child(48).inview img, .sweep .item:nth-child(48).inview .text {
  transition-delay: 5.99s;
}
.sweep .item:nth-child(49).inview {
  transition-delay: 5.76s;
}
.sweep .item:nth-child(49).inview::before {
  animation-delay: 5.76s;
}
.sweep .item:nth-child(49).inview img, .sweep .item:nth-child(49).inview .text {
  transition-delay: 6.11s;
}
.sweep .item:nth-child(50).inview {
  transition-delay: 5.88s;
}
.sweep .item:nth-child(50).inview::before {
  animation-delay: 5.88s;
}
.sweep .item:nth-child(50).inview img, .sweep .item:nth-child(50).inview .text {
  transition-delay: 6.23s;
}

@keyframes sweep {
  0% {
    transform: translateX(-101%);
  }
  40% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(101%);
    opacity: 0;
  }
}
.animText {
  overflow: hidden;
}
.animText span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) scale(0.7);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}
.animText.inview span {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.animText.inview span:nth-child(1) {
  transition-delay: 0s;
}
.animText.inview span:nth-child(2) {
  transition-delay: 0.06s;
}
.animText.inview span:nth-child(3) {
  transition-delay: 0.12s;
}
.animText.inview span:nth-child(4) {
  transition-delay: 0.18s;
}
.animText.inview span:nth-child(5) {
  transition-delay: 0.24s;
}
.animText.inview span:nth-child(6) {
  transition-delay: 0.3s;
}
.animText.inview span:nth-child(7) {
  transition-delay: 0.36s;
}
.animText.inview span:nth-child(8) {
  transition-delay: 0.42s;
}
.animText.inview span:nth-child(9) {
  transition-delay: 0.48s;
}
.animText.inview span:nth-child(10) {
  transition-delay: 0.54s;
}
.animText.inview span:nth-child(11) {
  transition-delay: 0.6s;
}
.animText.inview span:nth-child(12) {
  transition-delay: 0.66s;
}
.animText.inview span:nth-child(13) {
  transition-delay: 0.72s;
}
.animText.inview span:nth-child(14) {
  transition-delay: 0.78s;
}
.animText.inview span:nth-child(15) {
  transition-delay: 0.84s;
}
.animText.inview span:nth-child(16) {
  transition-delay: 0.9s;
}
.animText.inview span:nth-child(17) {
  transition-delay: 0.96s;
}
.animText.inview span:nth-child(18) {
  transition-delay: 1.02s;
}
.animText.inview span:nth-child(19) {
  transition-delay: 1.08s;
}
.animText.inview span:nth-child(20) {
  transition-delay: 1.14s;
}
.animText.inview span:nth-child(21) {
  transition-delay: 1.2s;
}
.animText.inview span:nth-child(22) {
  transition-delay: 1.26s;
}
.animText.inview span:nth-child(23) {
  transition-delay: 1.32s;
}
.animText.inview span:nth-child(24) {
  transition-delay: 1.38s;
}
.animText.inview span:nth-child(25) {
  transition-delay: 1.44s;
}
.animText.inview span:nth-child(26) {
  transition-delay: 1.5s;
}
.animText.inview span:nth-child(27) {
  transition-delay: 1.56s;
}
.animText.inview span:nth-child(28) {
  transition-delay: 1.62s;
}
.animText.inview span:nth-child(29) {
  transition-delay: 1.68s;
}
.animText.inview span:nth-child(30) {
  transition-delay: 1.74s;
}
.animText.inview span:nth-child(31) {
  transition-delay: 1.8s;
}
.animText.inview span:nth-child(32) {
  transition-delay: 1.86s;
}
.animText.inview span:nth-child(33) {
  transition-delay: 1.92s;
}
.animText.inview span:nth-child(34) {
  transition-delay: 1.98s;
}
.animText.inview span:nth-child(35) {
  transition-delay: 2.04s;
}
.animText.inview span:nth-child(36) {
  transition-delay: 2.1s;
}
.animText.inview span:nth-child(37) {
  transition-delay: 2.16s;
}
.animText.inview span:nth-child(38) {
  transition-delay: 2.22s;
}
.animText.inview span:nth-child(39) {
  transition-delay: 2.28s;
}
.animText.inview span:nth-child(40) {
  transition-delay: 2.34s;
}
.animText.inview span:nth-child(41) {
  transition-delay: 2.4s;
}
.animText.inview span:nth-child(42) {
  transition-delay: 2.46s;
}
.animText.inview span:nth-child(43) {
  transition-delay: 2.52s;
}
.animText.inview span:nth-child(44) {
  transition-delay: 2.58s;
}
.animText.inview span:nth-child(45) {
  transition-delay: 2.64s;
}
.animText.inview span:nth-child(46) {
  transition-delay: 2.7s;
}
.animText.inview span:nth-child(47) {
  transition-delay: 2.76s;
}
.animText.inview span:nth-child(48) {
  transition-delay: 2.82s;
}
.animText.inview span:nth-child(49) {
  transition-delay: 2.88s;
}
.animText.inview span:nth-child(50) {
  transition-delay: 2.94s;
}
.animText.inview span:nth-child(51) {
  transition-delay: 3s;
}
.animText.inview span:nth-child(52) {
  transition-delay: 3.06s;
}
.animText.inview span:nth-child(53) {
  transition-delay: 3.12s;
}
.animText.inview span:nth-child(54) {
  transition-delay: 3.18s;
}
.animText.inview span:nth-child(55) {
  transition-delay: 3.24s;
}
.animText.inview span:nth-child(56) {
  transition-delay: 3.3s;
}
.animText.inview span:nth-child(57) {
  transition-delay: 3.36s;
}
.animText.inview span:nth-child(58) {
  transition-delay: 3.42s;
}
.animText.inview span:nth-child(59) {
  transition-delay: 3.48s;
}
.animText.inview span:nth-child(60) {
  transition-delay: 3.54s;
}

.more-btn {
  text-align: center;
}
.more-btn a {
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  position: relative;
  display: inline-block;
  text-align: left;
  color: #1F1F1F;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border: 1px solid #1F1F1F;
  padding: 0.75rem 1.5em;
  width: 200px;
  overflow: hidden;
  background: white;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
@media screen and (max-width: 480px) {
  .more-btn a {
    padding: 0.75rem 3rem;
  }
}
.more-btn a::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: #1F1F1F;
  z-index: -1;
}
.more-btn a::before {
  position: absolute;
  content: "";
  background: url(../images/more_black.svg) no-repeat center/contain;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.more-btn a:hover {
  color: white;
}
.more-btn a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.more-btn a:hover::before {
  background: url(../images/more_white.svg) no-repeat center/contain;
}

.back-btn {
  text-align: center;
}
.back-btn a {
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  position: relative;
  display: inline-block;
  text-align: right;
  color: #1F1F1F;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border: 1px solid #1F1F1F;
  padding: 0.75rem 1.5em;
  width: 200px;
  overflow: hidden;
  background: white;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
@media screen and (max-width: 480px) {
  .back-btn a {
    padding: 0.75rem 3rem;
  }
}
.back-btn a::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: #1F1F1F;
  z-index: -1;
}
.back-btn a::before {
  position: absolute;
  content: "";
  background: url(../images/arrows_black.svg) no-repeat center/contain;
  left: 2rem;
  top: 50%;
  transform: scaleX(-1) translateY(-50%);
  width: 2rem;
  height: 2rem;
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.back-btn a:hover {
  color: white;
}
.back-btn a:hover::after {
  transform: scaleX(1);
  transform-origin: right;
}
.back-btn a:hover::before {
  background: url(../images/arrows_white.svg) no-repeat center/contain;
}

.animate-text .char {
  opacity: 0;
}

.animate-text.inview .char {
  animation: letter-glow 0.7s 0s ease both, kf-blur-chars 2s 0s ease both;
}
.animate-text.inview .char:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-text.inview .char:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-text.inview .char:nth-child(3) {
  animation-delay: 0.3s;
}
.animate-text.inview .char:nth-child(4) {
  animation-delay: 0.4s;
}
.animate-text.inview .char:nth-child(5) {
  animation-delay: 0.5s;
}
.animate-text.inview .char:nth-child(6) {
  animation-delay: 0.6s;
}
.animate-text.inview .char:nth-child(7) {
  animation-delay: 0.7s;
}
.animate-text.inview .char:nth-child(8) {
  animation-delay: 0.8s;
}
.animate-text.inview .char:nth-child(9) {
  animation-delay: 0.9s;
}
.animate-text.inview .char:nth-child(10) {
  animation-delay: 1s;
}
.animate-text.inview .char:nth-child(11) {
  animation-delay: 1.1s;
}
.animate-text.inview .char:nth-child(12) {
  animation-delay: 1.2s;
}
.animate-text.inview .char:nth-child(13) {
  animation-delay: 1.3s;
}
.animate-text.inview .char:nth-child(14) {
  animation-delay: 1.4s;
}
.animate-text.inview .char:nth-child(15) {
  animation-delay: 1.5s;
}
.animate-text.inview .char:nth-child(16) {
  animation-delay: 1.6s;
}
.animate-text.inview .char:nth-child(17) {
  animation-delay: 1.7s;
}
.animate-text.inview .char:nth-child(18) {
  animation-delay: 1.8s;
}
.animate-text.inview .char:nth-child(19) {
  animation-delay: 1.9s;
}
.animate-text.inview .char:nth-child(20) {
  animation-delay: 2s;
}
.animate-text.inview .char:nth-child(21) {
  animation-delay: 2.1s;
}
.animate-text.inview .char:nth-child(22) {
  animation-delay: 2.2s;
}
.animate-text.inview .char:nth-child(23) {
  animation-delay: 2.3s;
}
.animate-text.inview .char:nth-child(24) {
  animation-delay: 2.4s;
}
.animate-text.inview .char:nth-child(25) {
  animation-delay: 2.5s;
}
.animate-text.inview .char:nth-child(26) {
  animation-delay: 2.6s;
}
.animate-text.inview .char:nth-child(27) {
  animation-delay: 2.7s;
}
.animate-text.inview .char:nth-child(28) {
  animation-delay: 2.8s;
}
.animate-text.inview .char:nth-child(29) {
  animation-delay: 2.9s;
}
.animate-text.inview .char:nth-child(30) {
  animation-delay: 3s;
}

@keyframes kf-blur-chars {
  0% {
    opacity: 0;
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}
.fadeUp-text .char {
  opacity: 0;
}

.fadeUp-text.inview .char {
  animation-name: kf-fadeUp-chars;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.fadeUp-text.inview .char:nth-child(1) {
  animation-delay: 0.1s;
}
.fadeUp-text.inview .char:nth-child(2) {
  animation-delay: 0.2s;
}
.fadeUp-text.inview .char:nth-child(3) {
  animation-delay: 0.3s;
}
.fadeUp-text.inview .char:nth-child(4) {
  animation-delay: 0.4s;
}
.fadeUp-text.inview .char:nth-child(5) {
  animation-delay: 0.5s;
}
.fadeUp-text.inview .char:nth-child(6) {
  animation-delay: 0.6s;
}
.fadeUp-text.inview .char:nth-child(7) {
  animation-delay: 0.7s;
}
.fadeUp-text.inview .char:nth-child(8) {
  animation-delay: 0.8s;
}
.fadeUp-text.inview .char:nth-child(9) {
  animation-delay: 0.9s;
}
.fadeUp-text.inview .char:nth-child(10) {
  animation-delay: 1s;
}
.fadeUp-text.inview .char:nth-child(11) {
  animation-delay: 1.1s;
}
.fadeUp-text.inview .char:nth-child(12) {
  animation-delay: 1.2s;
}
.fadeUp-text.inview .char:nth-child(13) {
  animation-delay: 1.3s;
}
.fadeUp-text.inview .char:nth-child(14) {
  animation-delay: 1.4s;
}
.fadeUp-text.inview .char:nth-child(15) {
  animation-delay: 1.5s;
}
.fadeUp-text.inview .char:nth-child(16) {
  animation-delay: 1.6s;
}
.fadeUp-text.inview .char:nth-child(17) {
  animation-delay: 1.7s;
}
.fadeUp-text.inview .char:nth-child(18) {
  animation-delay: 1.8s;
}
.fadeUp-text.inview .char:nth-child(19) {
  animation-delay: 1.9s;
}
.fadeUp-text.inview .char:nth-child(20) {
  animation-delay: 2s;
}
.fadeUp-text.inview .char:nth-child(21) {
  animation-delay: 2.1s;
}
.fadeUp-text.inview .char:nth-child(22) {
  animation-delay: 2.2s;
}
.fadeUp-text.inview .char:nth-child(23) {
  animation-delay: 2.3s;
}
.fadeUp-text.inview .char:nth-child(24) {
  animation-delay: 2.4s;
}
.fadeUp-text.inview .char:nth-child(25) {
  animation-delay: 2.5s;
}
.fadeUp-text.inview .char:nth-child(26) {
  animation-delay: 2.6s;
}
.fadeUp-text.inview .char:nth-child(27) {
  animation-delay: 2.7s;
}
.fadeUp-text.inview .char:nth-child(28) {
  animation-delay: 2.8s;
}
.fadeUp-text.inview .char:nth-child(29) {
  animation-delay: 2.9s;
}
.fadeUp-text.inview .char:nth-child(30) {
  animation-delay: 3s;
}

@keyframes kf-fadeUp-chars {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

html {
  font-size: 62.5%;
}

body {
  height: 100%;
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #1F1F1F;
  background: white;
  overflow-x: hidden;
}

.wrapper {
  position: relative;
  overflow: hidden;
  padding-left: 220px;
  padding-top: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 960px) {
  .wrapper {
    padding-left: 0;
  }
}

.container {
  flex: 1;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (max-width: 960px) {
  img {
    image-rendering: auto;
  }
}

@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: block;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
.lg-inner {
  width: 85%;
  max-width: 1050px;
  margin: 0 auto;
}

.sm-inner {
  width: 85%;
  max-width: 600px;
  margin: 0 auto;
}

.section_content {
  margin: 160px 0;
}
@media screen and (max-width: 960px) {
  .section_content {
    margin: 80px 0;
  }
}

.flex {
  display: flex;
}
@media screen and (max-width: 960px) {
  .flex {
    flex-direction: column;
  }
}

.anchor {
  display: block;
  padding-top: 0;
  margin-top: 0;
}
@media screen and (max-width: 960px) {
  .anchor {
    padding-top: 80px;
    margin-top: -80px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 220px;
  height: 100vh;
  height: 100dvh;
  padding: 3rem 1.5rem 10vh;
  background: white;
  border-right: #EBEBEB solid 1px;
}
.header .head-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.header .logo {
  line-height: 1;
  margin: 0 auto;
}
.header .logo a {
  display: inline-block;
}
.header .logo img {
  display: block;
  height: auto;
  width: 150px;
}
.header .toggle {
  display: none;
}
.header .g-nav {
  margin-top: auto;
}
.header .g-nav-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header .g-nav-list .nav-main-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #1F1F1F;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.header .g-nav-list .nav-main-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #1F1F1F;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.header .g-nav-list .nav-main-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
@media screen and (max-width: 960px) {
  .header {
    width: 100%;
    height: 70px;
    padding: 0 7.5%;
    border-right: none;
    background: transparent;
  }
  .header .head-inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
  }
  .header .logo {
    display: none;
  }
  .header .toggle {
    display: inline-flex;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    -webkit-tap-highlight-color: transparent;
    padding: 16px;
    margin: -16px;
    touch-action: manipulation;
  }
  .header .toggle .openbtn-area {
    width: 32px;
    height: 12px;
    position: relative;
    z-index: 9999;
    transition: transform 180ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .header .toggle .openbtn-area span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #1F1F1F;
    border-radius: 999px;
    transform-origin: center;
    transition: transform 520ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 240ms ease;
    will-change: transform;
  }
  .header .toggle .openbtn-area span:nth-child(1) {
    top: 0;
  }
  .header .toggle .openbtn-area span:nth-child(2) {
    bottom: 0;
  }
  .header .toggle:active .openbtn-area {
    transform: scale(0.92);
  }
  .header .toggle.active .openbtn-area span {
    background: white;
  }
  .header .toggle.active .openbtn-area span:nth-child(1) {
    transform: translateY(6px) rotate(35deg);
  }
  .header .toggle.active .openbtn-area span:nth-child(2) {
    transform: translateY(-5px) rotate(-35deg);
  }
  .header .g-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 7rem 3rem 3rem;
    background: #1F1F1F;
  }
  .header .g-nav.panelactive {
    opacity: 1;
    visibility: visible;
  }
  .header .g-nav-list ul {
    gap: 20px;
  }
  .header .g-nav-list .nav-main-link {
    color: white;
    font-size: 1.6rem;
  }
}

.footer {
  background: white;
  padding: 3rem 0 1.5rem;
  text-align: center;
}

.logo a {
  display: inline-block;
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.logo a:hover {
  opacity: 0.6;
}

.copy {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 0.954rem + 0.21vw, 1.2rem);
  margin: 1rem 0 0;
  text-align: center;
}/*# sourceMappingURL=style.css.map */