body * {
  font-weight: 400;
}

img {
  display: block;
}

span {
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}

/* content-title */
.text.white *,
.content-title.white * {
  color: #fff;
}

.text.center *,
.content-title.center * {
  text-align: center;
}

.content-title {
  margin-bottom: 80px;
}

.content-title h2 {
  color: var(--color-primary);
  font-size: var(--f55);
  line-height: 1;
}

.content-title h2.f46 {
  font-size: var(--f46);
}

.content-title h2 span,
.content-title.white h2 span {
  color: var(--color-little);
}

.content-title p {
  font-size: var(--f20);
  margin-top: 40px;
}

.content-title p span {
  font-weight: 600;
}

.content-title .sub-tit {
  font-size: var(--font-size-default);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.4px;
  color: var(--color-mute);
  padding-left: 10px;
  margin: 0;
  margin-bottom: 15px;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  /* content-title */
  .content-title {
    margin-bottom: 65px;
  }

  .content-title p {
    margin-top: 30px;
  }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  /* content-title */
  .content-title {
    margin-bottom: 50px;
  }

  .content-title p {
    margin-top: 30px;
  }

  .content-title .sub-tit {
    padding-left: 5px;
    margin-bottom: 10px;
  }
}

/* effect */
.blur-text {
  max-width: 40ch;
  transform: scale(0.94);
  animation: blur-text-scale 2s forwards cubic-bezier(0.5, 1, 0.89, 1);
}

.blur-text span {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  animation: blur-text-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

@keyframes blur-text-scale {
  100% {
    transform: scale(1);
  }
}

@keyframes blur-text-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.scroll-event[data-scroll="reveal"] {
  animation: reveal 0.8s ease-in-out forwards;
  opacity: 0;
}

@keyframes reveal {
  0% {
    opacity: 0;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }

  100% {
    opacity: 1;
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  }
}

.scroll-event[data-scroll="reveal-center"] {
  animation: reveal-center 0.8s ease-in-out forwards;
  opacity: 0;
}

@keyframes reveal-center {
  0% {
    opacity: 0;
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  }
  100% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.scroll-event[data-scroll="fade-in-left"] {
  animation: fade-in-left 0.8s ease-in;
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.scroll-event[data-scroll="fade-in-right"] {
  animation: fade-in-right 0.8s ease-in;
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
