/* -----------------------
  shortcut
----------------------- */
.shortcut {
  background: #DCB0C3;
  position: relative;
   overflow: hidden;
  height: min(calc(1690 / 960 * 100vw), 1690px);
  z-index: 0;
}

.shortcut .movie-wrap {
  display: grid;
  place-items: center;
  height: 100%;
  position: relative;
}

.shortcut .txt-slider:last-of-type {
  bottom: 0;
  top: auto;
  z-index: 1;
}

.txt-slider {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: grid;
}



.txt-slider .slide-item {
  width: min(calc(1179/960 * 100vw), 1179px);
  height: min(calc(100/960 * 100vw), 100px);
  padding-left: min(3.13vw, 30px);
  grid-area: 1 / 1;
  transform: translateX(100%);
  animation: marquee 18s linear infinite;
  animation-delay: 0s;
}

.txt-slider .slide-item:nth-child(2) {
  animation-delay: 9s;
}
@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.shortcut .scut_ttl,
.shortcut .scut_txt {
  grid-area: 1 / 1;
  align-self: start;
  z-index: 3;
}

.shortcut .scut_ttl {
  align-self: start;
  justify-self: start;
}

.shortcut .scut_txt {
  align-self: end;
  justify-self: end;
  margin-top: min(calc(320 / 960 * 100vw), 320px);
}

.shortcut .movie-wrap {
  display: grid;
  place-items: center;
  max-width: 100%;
  z-index: 2;
}

.shortcut .movie-wrap video.trigger {
  width: min(calc(960 / 960 * 100vw), 960px);
  object-fit: cover;
  transform-origin: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
}

.shortcut .movie-wrap video.trigger.move {
  animation: jagged-scale 1s ease-in-out forwards; /* スムーズな拡大 */
}

@keyframes jagged-scale {
  0% {
    transform: translate(-50%, -50%) scale(0.5); /* 初期状態 */
  }
  100% {
    transform: translate(-50%, -50%) scale(1.0); /* 完全に拡大 */
  }
}