@charset "UTF-8";


.fadein1 {
  transition: .8s ease;
    opacity: 0;
    transform: translate(0,calc(60 / 1366 * 100vw));
    -webkit-transform: translate(0,calc(60 / 1366 * 100vw));
}
.fadein1.is-active{
  opacity: 1.0;
  transform: translate(0,0);
  -webkit-transform: translate(0,0);
}
.a-bg-button1 {
  position: relative;
  border: solid 1px transparent;
  transition: 0.4s border;
}
.a-bg-button1 > span {
  z-index: 2;
  position: relative;
}
.a-bg-button1::before {
  content: " ";
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  left: auto;
  right: 0;
  z-index: 1;
  background-color: #fff;
}
.a-bg-button1:hover {
  border: solid 1px #2D53A3;
}
.a-bg-button1:hover span {
  color: #2D53A3;
}
.a-bg-button1:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
.a-bg-button1:hover .button-arrow {
  background-color: #2D53A3;
}

.a-bg-link {
  position: relative;
}
.a-bg-link > .inner {
  z-index: 2;
  position: relative;
}
.a-bg-link::before {
  content: "";
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  left: auto;
  right: 0;
  z-index: 1;
  background-color: #878787;
}
.a-bg-link:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
.a-bg-link:hover .icon {
  transform: translate(1rem, -50%);
}

.a-after-border {
  position: relative;
  transition: 0.3s;
}
.a-after-border::after {
  transition: 0.4s;
  content: "";
  height: 1px;
  width: 100%;
  border-bottom: 1px solid;
  display: block;
  transform: scale(0);
}
.a-after-border:hover::after {
  transform: scale(1);
}

.a-opcity-7 {
  transition: 0.3s;
}
.a-opcity-7:hover {
  opacity: 0.7;
}

@keyframes toLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes toRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes imageOpacity {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  75% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}
.animate_to-left {
  transform: translateX(100%);
  opacity: 0;
  transition: all cubic-bezier(0.645, 0.045, 0.355, 1) 1.2s;
}
.animate_to-left.is-active {
  opacity: 1;
  transform: translateX(0);
}

.animate_to-right {
  transform: translateX(-100%);
  transition: all cubic-bezier(0.645, 0.045, 0.355, 1) 1.2s;
  opacity: 0;
}
.animate_to-right.is-active {
  opacity: 1;
  transform: translateX(0);
}

.animate_fadeUp {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity cubic-bezier(0.645, 0.045, 0.355, 1) 0.8s;
}
.animate_fadeUp.is-active {
  opacity: 1;
  transform: translateY(0);
}

.animate_fadeUp2 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s, transform cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
}
.animate_fadeUp2.is-active {
  opacity: 1;
  transform: translateY(0);
}

.animate_fadeYItem {
  transform: translateY(10px);
  transition: opacity cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s, transform cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
  opacity: 0;
}
.animate_fadeYItem.is-active {
  opacity: 1;
  transform: translateY(0);
}
.animate_fadeYItem:nth-child(2) {
  transition-delay: 0.2s;
}
.animate_fadeYItem:nth-child(3) {
  transition-delay: 0.4s;
}
.animate_fadeYItem:nth-child(4) {
  transition-delay: 0.6s;
}
.animate_fadeYItem:nth-child(5) {
  transition-delay: 0.8s;
}
.animate_fadeYItem:nth-child(6) {
  transition-delay: 1s;
}

.animate_fadeXItem {
  transform: translateX(10px);
  transition: opacity cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s, transform cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s, -webkit-transform cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
  opacity: 0;
}
.animate_fadeXItem.is-active {
  opacity: 1;
  transform: translateX(0);
}
.animate_fadeXItem:nth-child(2) {
  transition-delay: 0.2s;
}
.animate_fadeXItem:nth-child(3) {
  transition-delay: 0.4s;
}
.animate_fadeXItem:nth-child(4) {
  transition-delay: 0.6s;
}
.animate_fadeXItem:nth-child(5) {
  transition-delay: 0.8s;
}

.animate_ImgBgSlide {
  overflow: hidden;
  position: relative;
}
.animate_ImgBgSlide img {
  position: relative;
  z-index: 1;
  opacity: 0;
}
.animate_ImgBgSlide::before {
  transform: translateX(-100%);
  transition: all cubic-bezier(0.645, 0.045, 0.355, 1) 1.2s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(199, 198, 185, 0.7);
}
.animate_ImgBgSlide.is-active::before {
  transform: translateX(100%);
}
.animate_ImgBgSlide.is-active img {
  opacity: 1;
  animation: imageOpacity cubic-bezier(0.645, 0.045, 0.355, 1) 1.2s;
}

.animate_ImgSlide {
  overflow: hidden;
  position: relative;
  transform: translateX(-100%);
  transition: all cubic-bezier(0.645, 0.045, 0.355, 1) 1.2s;
}
.animate_ImgSlide.is-active {
  transform: translateX(0);
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-150%);
  }
}
@keyframes infinity-scroll-left2 {
  from {
    transform: translateX(25rem);
  }
  to {
    transform: translateX(-80rem);
  }
}
@keyframes infinity-scroll-left3 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*
  左から右へ
  ----------------------------*/
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.a-infinity-scroll--left {
  animation: infinity-scroll-left 5s infinite linear 0.5s both;
}

.a-infinity-scroll--left2 {
  animation: infinity-scroll-left2 8s infinite linear 0.5s both;
}

.a-infinity-scroll--left3 {
  animation: infinity-scroll-left3 5s infinite linear 0.5s both;
}

.a-infinity-scroll--right {
  animation: infinity-scroll-right 95s infinite linear 0.5s both;
}

.car1 {
  width: 8rem;
}

.bike1 {
  width: 4.4rem;
}

.car2 {
  width: 8rem;
}

.bike2 {
  width: 4.4rem;
}

.slide-visuals-wrap {
  overflow: hidden;
  display: flex;
}

.slide-visuals {
  display: flex;
}

.slide-visual {
  width: 32.3rem;
}
.slide-visual img {
  max-width: none;
  width: 100%;
}

.a-rotation {
  animation: 12s linear infinite rotation;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/**scroll*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 3rem;
    opacity: 0;
  }
  50% {
    height: 6rem;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 12rem;
    opacity: 0;
  }
}
.a-bubble-btn {
  display: block;
}
.a-bubble-btn:hover {
  animation: hue-rotate 10s linear infinite;
}
.a-bubble-btn .button {
  -webkit-font-smoothing: antialiased;
  border: none;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  user-select: none;
  font-family: ab-kirigirisu, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.1em;
  background-color: #34695F;
  background-repeat: no-repeat;
  border-radius: 30px;
  width: 20rem;
  height: 5rem;
  display: block;
  text-transform: uppercase;
  transition: all 0.1s ease-out;
  text-align: center;
  line-height: 5rem;
}
.a-bubble-btn .button:hover {
  background-color: #90feb5;
  color: #fff;
}
.a-bubble-btn .button:active {
  transform: scale(0.95);
}
.a-bubble-btn .button .arw {
  display: inline-block;
  width: 0.8rem;
  position: absolute;
  top: 47.5%;
  right: 2.25rem;
  transform: translate(0, -50%);
}
.a-bubble-btn .button .arw.prev {
  right: auto;
  left: 2.25rem;
}
.a-bubble-btn .button .txt {
  display: inline-block;
  width: 8.3rem;
}
.a-bubble-btn .button--bubble {
  position: relative;
  z-index: 2;
  color: white;
}
.a-bubble-btn .button--bubble:hover {
  background: none;
}
.a-bubble-btn .button--bubble:hover + .button--bubble__effect-container .circle {
  background: #44fd82;
}
.a-bubble-btn .button--bubble:hover + .button--bubble__effect-container .button {
  background: #44fd82;
}
.a-bubble-btn .button--bubble:active + .button--bubble__effect-container {
  transform: scale(0.95);
}
.a-bubble-btn .button--bubble__container {
  position: relative;
  display: inline-block;
}
.a-bubble-btn .button--bubble__container .effect-button {
  position: absolute;
  width: 50%;
  height: 25%;
  top: 50%;
  left: 25%;
  z-index: 1;
  transform: translateY(-50%);
  transition: background 0.1s ease-out;
}
.a-bubble-btn .button--bubble__effect-container {
  position: absolute;
  display: block;
  width: 200%;
  height: 400%;
  top: -150%;
  left: -50%;
  -webkit-filter: url("#goo");
  filter: url("#goo");
  transition: all 0.1s ease-out;
  pointer-events: none;
}
.a-bubble-btn .button--bubble__effect-container .circle {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 15px;
  background: inherit;
  transition: background 0.1s ease-out;
}
.a-bubble-btn .button--bubble__effect-container .circle.top-left {
  top: 40%;
  left: 27%;
}
.a-bubble-btn .button--bubble__effect-container .circle.bottom-right {
  bottom: 40%;
  right: 27%;
}
.a-bubble-btn .goo {
  position: absolute;
  visibility: hidden;
  width: 1px;
  height: 1px;
}
.a-bubble-btn html,
.a-bubble-btn body {
  width: 100%;
  height: 100%;
  text-align: center;
}
.a-bubble-btn .button--bubble__container {
  top: 50%;
}
@keyframes hue-rotate {
  from {
    -webkit-filter: hue-rotate(0);
    -moz-filter: hue-rotate(0);
    -ms-filter: hue-rotate(0);
    filter: hue-rotate(0);
  }
  to {
    -webkit-filter: hue-rotate(360deg);
    -moz-filter: hue-rotate(360deg);
    -ms-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
}

/*# sourceMappingURL=animation.css.map */
