@charset "UTF-8";
/* animation-list
---------------------------------------------------- */
.__roll-animation {
  overflow: hidden;
  height: 1em;
}
@media screen and (max-width: 1379px) {
  .__roll-animation {
    overflow: initial;
    height: auto;
  }
}
.__roll-animation span {
  display: block;
}
.__roll-animation span.__initial {
  width: 100%;
  line-height: 1em;
  will-change: margin-top;
  transition: margin-top 0.4s ease;
}
.__roll-animation span.__rotated {
  line-height: 1em;
}
@media screen and (max-width: 1379px) {
  .__roll-animation span.__rotated {
    line-height: 2em;
  }
}
.__roll-animation:hover span.__en {
  margin-top: -1em;
}
@media screen and (max-width: 1379px) {
  .__roll-animation:hover span.__en {
    margin-top: 0;
  }
}

.__flowingText {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.__flowingText p {
  color: #d4cebc;
  font-size: max(12vw, 24px);
  line-height: 1;
  letter-spacing: 0;
  flex: 0 0 auto;
  will-change: transform;
  transform: translateZ(0);
  opacity: 0.8;
}
.__flowingText p:nth-of-type(1) {
  animation: loop_01 80s -40s linear infinite;
}
.__flowingText p:nth-of-type(2) {
  animation: loop_02 80s linear infinite;
}
@keyframes loop_01 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop_02 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

.__arrowAnimation {
  position: relative;
  display: flex;
  align-items: center;
  height: 1.5em;
  clip-path: inset(0 100% 0 0); /* 右側を全カット（非表示） */
  transition: clip-path 1.6s cubic-bezier(0.1, 0.8, 0.2, 1) 0.6s;
}
@media screen and (max-width: 991px) {
  .__arrowAnimation {
    height: 0.9em;
  }
}
.__arrowAnimation span.__arrow {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #393d39;
}
.__arrowAnimation:before, .__arrowAnimation::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 2em;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 991px) {
  .__arrowAnimation:before, .__arrowAnimation::after {
    width: 1em;
  }
}
.__arrowAnimation::before {
  display: none;
  left: 0;
  background-image: url(../images/ecoproject/flow-arrow_left.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.__arrowAnimation::after {
  right: 0;
  background-image: url(../images/ecoproject/flow-arrow_right.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.__arrowAnimation.__center {
  clip-path: inset(0 50% 0 50%);
}
.__arrowAnimation.__center::before {
  display: block;
}
.__arrowAnimation.__inview {
  clip-path: inset(0 0 0 0); /* 全表示 */
}

.__gAnimation .g-logo {
  color: #edece8;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .__gAnimation .g-logo {
    width: 120%;
    margin-left: -10%;
  }
}
.__gAnimation .g-stroke {
  stroke: currentColor;
  stroke-width: 0.4em;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.__gAnimation.__inview .g-stroke {
  animation: draw 2.4s linear forwards 1s;
}

.__fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease 0.4s, transform 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.4s;
}
.__fadeIn.__delay00 {
  transition-delay: 0s;
}
.__fadeIn.__inview {
  opacity: 1;
  transform: translateY(0);
}
.__fadeIn.__header {
  transform: translate(-50%, -30px);
}
@media screen and (max-width: 1379px) {
  .__fadeIn.__header {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.__fadeIn.__header.__inview {
  transform: translate(-50%, 0);
}

.__fadeRotate {
  opacity: 0;
  transform: translateY(30px) rotateY(-45deg);
  transition: opacity 1.2s ease 0.4s, transform 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.4s;
}
.__fadeRotate.__180deg {
  transform: translateY(30px) rotateY(-180deg);
}
.__fadeRotate.__delay00 {
  transition-delay: 0s;
}
.__fadeRotate.__inview {
  opacity: 1;
  transform: translateY(0) rotateY(0);
}/*# sourceMappingURL=animation.css.map */