@charset "utf-8";
/* ============================================================
 movie 速度
============================================================ */
.movie-wrap {
  backface-visibility: hidden;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .movie-wrap:nth-of-type(1) {
    animation: movie01 50s -25s linear infinite;
  }
  .movie-wrap:nth-of-type(2) {
    margin-top: -0.18vw;
    animation: movie02 50s linear infinite;
  }
}
@media screen and (max-width: 767px) {
  .movie-wrap:nth-of-type(1) {
    animation: movie01 54s -27s linear infinite;
  }
  .movie-wrap:nth-of-type(2) {
    animation: movie02 54s linear infinite;
  }
}
@keyframes movie01 {
  0% {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes movie02 {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200%);
  }
}
/* ============================================================
 kv
============================================================ */
#kv {
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
  position: relative;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  #kv {
    height: calc((100vh - 60px) - 80px);
  }
}
/* ============================================================
 kv 写真
============================================================ */
.pht-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #fff;
  overflow: hidden;
  visibility: hidden;
}
.movie-wrap {
  width: 119vw;
  display: flex;
  flex-flow: column;
}
.movie-wrap > li {
  margin-top: 20px;
  position: relative;
}
.movie-wrap > li ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.movie-wrap > li ul li {
  width: calc(100% / 5);
  margin-right: 20px;
}
.movie-wrap > li:nth-child(odd) {
  left: calc(((-100% / 5) / 2) - 2.3%);
}
.movie-wrap > li:nth-child(even) {
  left: -2.3%;
}
@media screen and (max-width: 767px) {
  .movie-wrap {
    width: 142vw;
  }
  .movie-wrap > li {
    margin-top: 10px;
  }
  .movie-wrap > li ul li {
    width: calc(100% / 3);
    margin-right: 10px;
  }
  .movie-wrap > li:nth-child(odd) {
    left: -6%;
  }
  .movie-wrap > li:nth-child(even) {
    left: calc(((-100% / 3) * 0.5) - 6%);
  }
}
/* ============================================================
 kv bg fadeout
============================================================ */
.kv-copy {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background: #fff;
  visibility: visible;
}
.kv-copy video {
  width: 100%;
  height: 100%;
}
@keyframes kv-copy-fadeout {
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ============================================================
 kv SCROLL
============================================================ */
.kv-scroll {
  position: absolute;
  bottom: 170px;
  left: 20px;
  z-index: 10;
  transform: rotate(90deg);
  transform-origin: left bottom;
}
.kv-scroll span {
  position: relative;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.18em;
}
.kv-scroll span:after {
  content: "";
  width: 100px;
  height: 1px;
  background: #333;
  position: absolute;
  top: 0.7em;
  left: 5.8em;
}
@media screen and (max-width: 767px) {
  .kv-scroll {
    bottom: 140px;
    left: 5px;
  }
  .kv-scroll span {
    font-size: 1.6rem;
  }
  .kv-scroll span:after {
    content: "";
    width: 80px;
    top: 0.7em;
    left: 4.3em;
  }
}
