@charset "UTF-8";
/* layouts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&Noto+Serif+JP:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  /* custom color */
  --black: #000;
  --white: #fff;
  --kous-black: #333;
  --gray: #ddd;
  --blue: blue;
  --dark_blue: #2e2e64;
  --main_blue: #0567b2;
  --pale_blue: #d5e2ec;
  --light_blue: #eff6fc;
  --footer_border: #5a5a70;
  --news_border: #707070;
  --main_black: var(--kous-black);
  --border: #ccc;
  --border_gray: #ccc;
  --grad: linear-gradient(90deg, var(--main_blue) 0%, var(--dark_blue) 100%);
  /* template color */
  --main-color: var(--kous-black);
  --main-bg-color: var(--white);
  --main-border-color: #e1e1e1;
  /* footer */
  --footer-menu-border: var(--gray);
  --copyright-bg: var(--gray);
  --copyright-color: var(--footer_border);
  /* hamburger menu */
  --hamburger-trigger-bg: var(--dark_blue);
  --hamburger-trigger-bar: var(--white);
  --hamburger-bg: var(--kous-black);
  --hamburger-border: var(--white);
  --hamburger-color: var(--white);
  /* pagenavi */
  --pagenavi-navi-bg: var(--blue);
  --pagenavi-navi-border: var(--white);
  /* contact page Navi*/
  --form-page-tab: var(--pale_blue);
  --form-tab-border: transparent;
  --form-tab-line: var(--dark_blue);
  --form-page-active: var(--grad);
  --form-active-color: var(--white);
  /* policy */
  --policy-dt-color: var(--kous-black);
  --policy-link-color: var(--main_blue);
  /* 404 */
  --404-h1_color: var(--kous-black);
  --404-p_color: var(--dark_blue);
  --404-menu-border: var(--kous-black);
}

/* form */
.mw_wp_form {
  --form-bg-color: #f8f8f8;
  --form-white: var(--white);
  --form-red: #c50000;
  --form-gray: #95989A;
  --form-border: #cccccc;
  --form-policy-linkcolor: #0969b2;
  --form-go-bg: var(--grad);
  --form-go-color: var(--white);
  --form-back-bg: #0969b2;
}

:root {
  font-size: 16px;
}

.mincho {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.disp__only {
  display: none;
}
@media screen and (max-width: 900px) {
  .disp__only.--mobile {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .disp__only.--sp {
    display: block;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex._fdr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .flex._fdr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-op {
  position: fixed;
  z-index: 11;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}
.l-op::before {
  content: "";
  width: 50%;
  height: 100%;
  background: var(--dark_blue);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: all 0.8s 1s;
  transition: all 0.8s 1s;
}
.l-op::after {
  content: "";
  width: 50%;
  height: 100%;
  background: var(--dark_blue);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  -webkit-transition: all 0.8s 1s;
  transition: all 0.8s 1s;
}
.l-op figure {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0;
  width: clamp(270px, 38.7777777778vw, 349px);
}
.l-op figure.active {
  -webkit-animation: fadeInOut 3s ease-in-out 0s 1;
          animation: fadeInOut 3s ease-in-out 0s 1;
}
.l-op.end::before {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.l-op.end::after {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  30%, 70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  30%, 70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.l-mv {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background: var(--dark_blue);
}
.l-mv-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 900px) {
  .l-mv-slider {
    height: clamp(430px, 133.3333333333vw, 800px);
    width: auto;
    -webkit-transform: translateX(-9%);
            transform: translateX(-9%);
  }
}
@media screen and (max-width: 450px) {
  .l-mv-slider {
    -webkit-transform: translateX(-16%);
            transform: translateX(-16%);
  }
}
.l-mv-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .l-mv-slider .swiper-container {
    aspect-ratio: 534/900;
    height: 100%;
    width: auto;
  }
}
.l-mv-slider .swiper-container .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 534/900;
  width: 100%;
  height: auto;
}
.l-mv-slider .swiper-container .parallax-bg figure {
  position: absolute;
  width: 100%;
  height: 100%;
}
.l-mv-slider .swiper-container .parallax-bg figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: initial;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-mv-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .l-mv-slider .swiper-3 {
    display: none;
  }
}
.l-mv-media {
  width: 100vw;
}
@media screen and (min-width: 901px) {
  .l-mv-media {
    height: 100vh;
  }
}
.l-mv-media_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 901px) {
  .l-mv-media_list {
    height: 100vh;
  }
}
@media screen and (max-width: 900px) {
  .l-mv-media_list {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 900px) {
  .l-mv-media_list {
    height: clamp(430px, 133.3333333333vw, 800px);
    width: auto;
    -webkit-transform: translateX(-9%);
            transform: translateX(-9%);
  }
}
@media screen and (max-width: 450px) {
  .l-mv-media_list {
    -webkit-transform: translateX(-16%);
            transform: translateX(-16%);
  }
}
.l-mv-media_item {
  position: relative;
  overflow: hidden;
  width: 33.3333333333%;
}
.l-mv-media_item_inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.l-mv-media figure {
  display: block;
  width: 115%;
}
@media screen and (min-width: 901px) {
  .l-mv-media figure {
    max-height: 100%;
  }
}
@media screen and (min-width: 1281px) {
  .l-mv-media figure {
    height: calc(100vh - 8rem);
    max-height: 100%;
  }
}
.l-mv-media figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (min-width: 901px) {
  .l-mv-media figure img {
    height: 100vh;
  }
}
.l-mv-media .l-mv-media_item:nth-of-type(1) .l-mv-media_item_inner:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.l-mv-media .l-mv-media_item:nth-of-type(1) .l-mv-media_item_inner:nth-of-type(1) img {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.l-mv-media .l-mv-media_item:nth-of-type(1) .l-mv-media_item_inner:nth-of-type(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.l-mv-media .l-mv-media_item:nth-of-type(1) .l-mv-media_item_inner:nth-of-type(2) img {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.l-mv-media .l-mv-media_item:nth-of-type(1) .l-mv-media_item_inner:nth-of-type(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.l-mv-media .l-mv-media_item:nth-of-type(1) .l-mv-media_item_inner:nth-of-type(3) img {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.l-mv-media .l-mv-media_item:nth-of-type(1) .l-mv-media_item_inner:nth-of-type(4) {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(1) .l-mv-media_item_inner:nth-of-type(4) img {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(1) .l-mv-media_item_inner:nth-of-type(5) {
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}
.l-mv-media .l-mv-media_item:nth-of-type(1) .l-mv-media_item_inner:nth-of-type(5) img {
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}
.l-mv-media .l-mv-media_item:nth-of-type(1) .l-mv-media_item_inner:nth-of-type(6) {
  -webkit-animation-delay: 25s;
          animation-delay: 25s;
}
.l-mv-media .l-mv-media_item:nth-of-type(1) .l-mv-media_item_inner:nth-of-type(6) img {
  -webkit-animation-delay: 25s;
          animation-delay: 25s;
}
.l-mv-media .l-mv-media_item:nth-of-type(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
  -webkit-animation-delay: 5.15s;
          animation-delay: 5.15s;
  -webkit-animation-delay: 10.15s;
          animation-delay: 10.15s;
  -webkit-animation-delay: 15.15s;
          animation-delay: 15.15s;
  -webkit-animation-delay: 20.15s;
          animation-delay: 20.15s;
  -webkit-animation-delay: 25.15s;
          animation-delay: 25.15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(2) .l-mv-media_item_inner:nth-of-type(1) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(2) .l-mv-media_item_inner:nth-of-type(1) img {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(2) .l-mv-media_item_inner:nth-of-type(2) {
  -webkit-animation-delay: 5.15s;
          animation-delay: 5.15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(2) .l-mv-media_item_inner:nth-of-type(2) img {
  -webkit-animation-delay: 5.15s;
          animation-delay: 5.15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(2) .l-mv-media_item_inner:nth-of-type(3) {
  -webkit-animation-delay: 10.15s;
          animation-delay: 10.15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(2) .l-mv-media_item_inner:nth-of-type(3) img {
  -webkit-animation-delay: 10.15s;
          animation-delay: 10.15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(2) .l-mv-media_item_inner:nth-of-type(4) {
  -webkit-animation-delay: 15.15s;
          animation-delay: 15.15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(2) .l-mv-media_item_inner:nth-of-type(4) img {
  -webkit-animation-delay: 15.15s;
          animation-delay: 15.15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(2) .l-mv-media_item_inner:nth-of-type(5) {
  -webkit-animation-delay: 20.15s;
          animation-delay: 20.15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(2) .l-mv-media_item_inner:nth-of-type(5) img {
  -webkit-animation-delay: 20.15s;
          animation-delay: 20.15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(2) .l-mv-media_item_inner:nth-of-type(6) {
  -webkit-animation-delay: 25.15s;
          animation-delay: 25.15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(2) .l-mv-media_item_inner:nth-of-type(6) img {
  -webkit-animation-delay: 25.15s;
          animation-delay: 25.15s;
}
.l-mv-media .l-mv-media_item:nth-of-type(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-delay: 5.3s;
          animation-delay: 5.3s;
  -webkit-animation-delay: 10.3s;
          animation-delay: 10.3s;
  -webkit-animation-delay: 15.3s;
          animation-delay: 15.3s;
  -webkit-animation-delay: 20.3s;
          animation-delay: 20.3s;
  -webkit-animation-delay: 25.3s;
          animation-delay: 25.3s;
}
.l-mv-media .l-mv-media_item:nth-of-type(3) .l-mv-media_item_inner:nth-of-type(1) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.l-mv-media .l-mv-media_item:nth-of-type(3) .l-mv-media_item_inner:nth-of-type(1) img {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.l-mv-media .l-mv-media_item:nth-of-type(3) .l-mv-media_item_inner:nth-of-type(2) {
  -webkit-animation-delay: 5.3s;
          animation-delay: 5.3s;
}
.l-mv-media .l-mv-media_item:nth-of-type(3) .l-mv-media_item_inner:nth-of-type(2) img {
  -webkit-animation-delay: 5.3s;
          animation-delay: 5.3s;
}
.l-mv-media .l-mv-media_item:nth-of-type(3) .l-mv-media_item_inner:nth-of-type(3) {
  -webkit-animation-delay: 10.3s;
          animation-delay: 10.3s;
}
.l-mv-media .l-mv-media_item:nth-of-type(3) .l-mv-media_item_inner:nth-of-type(3) img {
  -webkit-animation-delay: 10.3s;
          animation-delay: 10.3s;
}
.l-mv-media .l-mv-media_item:nth-of-type(3) .l-mv-media_item_inner:nth-of-type(4) {
  -webkit-animation-delay: 15.3s;
          animation-delay: 15.3s;
}
.l-mv-media .l-mv-media_item:nth-of-type(3) .l-mv-media_item_inner:nth-of-type(4) img {
  -webkit-animation-delay: 15.3s;
          animation-delay: 15.3s;
}
.l-mv-media .l-mv-media_item:nth-of-type(3) .l-mv-media_item_inner:nth-of-type(5) {
  -webkit-animation-delay: 20.3s;
          animation-delay: 20.3s;
}
.l-mv-media .l-mv-media_item:nth-of-type(3) .l-mv-media_item_inner:nth-of-type(5) img {
  -webkit-animation-delay: 20.3s;
          animation-delay: 20.3s;
}
.l-mv-media .l-mv-media_item:nth-of-type(3) .l-mv-media_item_inner:nth-of-type(6) {
  -webkit-animation-delay: 25.3s;
          animation-delay: 25.3s;
}
.l-mv-media .l-mv-media_item:nth-of-type(3) .l-mv-media_item_inner:nth-of-type(6) img {
  -webkit-animation-delay: 25.3s;
          animation-delay: 25.3s;
}
.l-mv-media .l-mv-media_item_inner {
  -webkit-animation: anim-mv-Mask 30s ease infinite;
          animation: anim-mv-Mask 30s ease infinite;
}
.l-mv-media .l-mv-media_item_inner:nth-child(1) {
  z-index: 6;
}
.l-mv-media .l-mv-media_item_inner:nth-child(1) figure {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.l-mv-media .l-mv-media_item_inner:nth-child(2) {
  z-index: 5;
}
.l-mv-media .l-mv-media_item_inner:nth-child(2) figure {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.l-mv-media .l-mv-media_item_inner:nth-child(3) {
  z-index: 4;
}
.l-mv-media .l-mv-media_item_inner:nth-child(3) figure {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.l-mv-media .l-mv-media_item_inner:nth-child(4) {
  z-index: 3;
}
.l-mv-media .l-mv-media_item_inner:nth-child(4) figure {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
.l-mv-media .l-mv-media_item_inner:nth-child(5) {
  z-index: 2;
}
.l-mv-media .l-mv-media_item_inner:nth-child(5) figure {
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}
.l-mv-media .l-mv-media_item_inner:nth-child(6) {
  z-index: 1;
}
.l-mv-media .l-mv-media_item_inner:nth-child(6) figure {
  -webkit-animation-delay: 25s;
          animation-delay: 25s;
}
.l-mv-media figure {
  -webkit-animation: anim-mv-Move 30s linear infinite;
          animation: anim-mv-Move 30s linear infinite;
}
.l-mv-media figure img {
  -webkit-animation: anim-mv-Fade 30s ease infinite;
          animation: anim-mv-Fade 30s ease infinite;
}
.l-mv-catch {
  position: absolute;
  z-index: 8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: clamp(11px, 7.109375vw, 91px);
  width: 100%;
}
.l-mv-catch span {
  display: block;
  margin-top: clamp(13px, 2.7777777778vw, 25px);
  aspect-ratio: 94/26;
  width: clamp(62px, 10.4444444444vw, 94px);
  height: auto;
  opacity: 0;
  -webkit-transition: all 1s ease-in 2s;
  transition: all 1s ease-in 2s;
}
.l-mv-catch figure {
  margin: 0 auto;
  margin-bottom: clamp(12px, 1.5555555556vw, 14px);
  opacity: 0;
  -webkit-transition: all 1s ease-in 0.5s;
  transition: all 1s ease-in 0.5s;
}
.l-mv-catch figure:nth-of-type(1) {
  display: block;
  width: 76.44%;
}
@media screen and (max-width: 900px) {
  .l-mv-catch figure:nth-of-type(1) {
    display: none;
  }
}
.l-mv-catch figure:nth-of-type(2) {
  width: 78.133%;
  display: none;
}
@media screen and (max-width: 900px) {
  .l-mv-catch figure:nth-of-type(2) {
    display: block;
  }
}
.l-mv-catch p {
  color: var(--white);
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(1.25rem, 3.5555555556vw, 2rem);
  font-weight: 600;
  line-height: 1.59375em;
  opacity: 0;
  -webkit-transition: all 1s ease-in 1.5s;
  transition: all 1s ease-in 1.5s;
}
.l-mv-catch.active figure {
  opacity: 1;
  -webkit-animation: nuru 1s forwards;
          animation: nuru 1s forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}
.l-mv-catch.active p {
  -webkit-animation: nuru 1s forwards;
          animation: nuru 1s forwards;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  opacity: 1;
}
.l-mv-catch.active span {
  opacity: 1;
  -webkit-animation: scroll_reminder 1s ease-in-out 0s;
          animation: scroll_reminder 1s ease-in-out 0s;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

@-webkit-keyframes nuru {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    opacity: 1;
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}

@keyframes nuru {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    opacity: 1;
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}
@-webkit-keyframes scroll_reminder {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes scroll_reminder {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@-webkit-keyframes anim-mv-Mask {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  }
  17% {
    z-index: 7;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  }
  24% {
    z-index: 7;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  32% {
    z-index: 0;
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}
@keyframes anim-mv-Mask {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  }
  17% {
    z-index: 7;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  }
  24% {
    z-index: 7;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  32% {
    z-index: 0;
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}
@-webkit-keyframes anim-mv-Move {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  24% {
    -webkit-transform: translateX(-15%);
            transform: translateX(-15%);
  }
  79% {
    -webkit-transform: translateX(-15%);
            transform: translateX(-15%);
  }
  80% {
    -webkit-transform: translateX(-2%);
            transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes anim-mv-Move {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  24% {
    -webkit-transform: translateX(-15%);
            transform: translateX(-15%);
  }
  79% {
    -webkit-transform: translateX(-15%);
            transform: translateX(-15%);
  }
  80% {
    -webkit-transform: translateX(-2%);
            transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@-webkit-keyframes anim-mv-Fade {
  0% {
    opacity: 1;
  }
  18% {
    opacity: 1;
  }
  24% {
    opacity: 0;
  }
  79% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes anim-mv-Fade {
  0% {
    opacity: 1;
  }
  18% {
    opacity: 1;
  }
  24% {
    opacity: 0;
  }
  79% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}