
.parallax{
	background-color:transparent;
	position:relative;
}
@keyframes ken-burn-in {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.parallax-mirror.ken-burn img {
    animation: ken-burn-in 13s;
    transform-origin: bottom left;
    transform: scale(1.2);
}
.parallax-mirror.ken-burn-right {
    animation: ken-burn-in 13s;
    transform-origin: bottom right;
    transform: scale(1.2);	
}

.parallax-mirror.ken-burn-center img {
    animation: ken-burn-in 10s;
    transform: scale(1.2);
}

.parallax-mirror.ken-burn-out img {
    transform-origin: bottom left;
    transform: scale(1.1) !important;
    transition: transform 10s;
}
.parallax.int{
  min-height: clamp(280px, 40vw, 376px);
  height: auto;
  font-size: clamp(17px, 1.2vw + 12px, 24px);
  line-height: 1.3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 120px 20px 68px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.parallax.int > span { max-width: 720px; text-wrap: balance; }
.parallax .tit{
  font-size: clamp(32px, 4.5vw + 8px, 60px);
  line-height: 1.05;
  display: block;
  font-weight: 700;
  padding-bottom: clamp(6px, 1vw, 12px);
  letter-spacing: -0.01em;
}

@media screen and (max-width: 500px){
  .parallax.int { padding: 110px 20px 40px; }
}
