.c-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 10%;
  margin: 0 auto;
  z-index: 99;
}

.c-nav-wrapper.contact {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 10%;
  margin: 0 auto;
  z-index: 99;
  background: #E7EAEC;
  box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
}


@media screen and (max-width: 768px) {
  .c-nav-wrapper.contact {
    height: 60px;
  }

}

.c-nav-wrapper .fantudio_logo {
  width: 10%;
  position: absolute;
  top: 20%;
  left: 1%;
  max-width: 120px;
  z-index: 999999;
}

@media screen and (max-width: 768px) {
  .c-nav-wrapper .fantudio_logo {
    z-index: 999;
  }

}


.l-navi {
  position: relative;
  z-index: 99999;
}

.c-nav-wrapper .fantudio_logo img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .c-nav-wrapper .fantudio_logo {
    width: 26%;
    top: 24%;
    left: 4%;
  }

}

.single-information .c-nav-wrapper,
.single-terms .c-nav-wrapper {
  background: #E7EAEC;
  box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
}



.archive .c-nav-wrapper {
  background: #E7EAEC;
  box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
}

.c-section--title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-section--title h2 {
  line-height: 1;
  color: #525252;
  font-family: "Cardo", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 5.2rem;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  letter-spacing: 0.1em;
}

.c-section--title h2 span {
  opacity: 0;
}

.c-section--title h2::after {
  position: absolute;
  bottom: 0;
  right: -40px;
  content: "";
  height: 3px;
  width: 18px;
  background: #d5664d;
  opacity: 0;
}

@media screen and (max-width: 1049px) and (min-width:769px) {
  .c-section--title h2 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .c-section--title h2 {
    font-size: 3.4rem;
  }
}

.c-section--title h2.active span {
  animation: textanimation 1.2s forwards;
}

.c-section--title h2.active span:nth-child(1) {
  animation-delay: 0.1s;
}

.c-section--title h2.active span:nth-child(2) {
  animation-delay: 0.2s;
}

.c-section--title h2.active span:nth-child(3) {
  animation-delay: 0.3s;
}

.c-section--title h2.active span:nth-child(4) {
  animation-delay: 0.4s;
}

.c-section--title h2.active span:nth-child(5) {
  animation-delay: 0.5s;
}

.c-section--title h2.active span:nth-child(6) {
  animation-delay: 0.6s;
}

.c-section--title h2.active span:nth-child(7) {
  animation-delay: 0.7s;
}

.c-section--title h2.active span:nth-child(8) {
  animation-delay: 0.8s;
}

.c-section--title h2.active span:nth-child(9) {
  animation-delay: 0.9s;
}

.c-section--title h2.active span:nth-child(10) {
  animation-delay: 1s;
}

.c-section--title h2.active::after {
  animation: lineanimation 1.2s forwards;
  animation-delay: 0.6s;
}

.c-section--title p {
  text-align: center;
  opacity: 0;
}

.c-section--title p.active {
  animation: textanimation 1.2s forwards;
  animation-delay: 1s;
}