@charset "UTF-8";

/*--------------------------------
  下層ページの共通
--------------------------------*/
p {
  font-size: var(--fs-15);
  letter-spacing: 0.075em;
}

.ud-page {
  position: relative;
}

.ud-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../img/common/ud-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: repeat-y;
  z-index: -3;
  mix-blend-mode: multiply;
}

/*--------------------------------
  mv
--------------------------------*/
.ud-mv {
  position: relative;
  height: 500px;
}

.ud-mv__inr {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 100px;
}

.ud-mv img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

@media screen and (max-width: 1100px) {
  .ud-mv {
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .ud-mv {
    height: 300px;
  }

  .ud-mv__inr {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 600px) {
  .ud-mv {
    height: 200px;
  }
}

/*--------------------------------
  ttl
--------------------------------*/
/* main ttl */
.ud-main-ttl-ja {
  font-family: var(--font-shippori);
  font-size: var(--fs-32);
  color: var(--color-white);
  letter-spacing: 0.1em;
  font-weight: var(--fw-medium);
  line-height: 1;
}

.ud-main-ttl-en {
  font-family: var(--font-eb);
  font-size: 72px;
  color: var(--color-white);
  letter-spacing: 0.21em;
  line-height: 1;
}

@media screen and (max-width: 1100px) {
  .ud-main-ttl-ja {
    font-size: var(--fs-24);
  }

  .ud-main-ttl-en {
    font-size: 50px;
  }
}

@media screen and (max-width: 768px) {
  .ud-main-ttl-ja {
    font-size: var(--fs-20);
  }

  .ud-main-ttl-en {
    font-size: 40px;
  }
}

/* copy */
.ud-copy {
  font-family: var(--font-shippori);
  font-size: 62px;
  letter-spacing: 0.075em;
}

.ud-copy .strong {
  font-size: 81px;
  letter-spacing: 0.15em;
  margin-left: 8px;
}

@media screen and (max-width: 1100px) {
  .ud-copy {
    font-size: var(--fs-40);
  }

  .ud-copy .strong {
    font-size: 64px;
  }
}

@media screen and (max-width: 768px) {
  .ud-copy {
    font-size: var(--fs-32);
  }

  .ud-copy .strong {
    font-size: var(--fs-40);
  }
}

@media screen and (max-width: 600px) {
  .ud-copy {
    font-size: var(--fs-24);
  }

  .ud-copy .strong {
    font-size: var(--fs-32);
  }
}

/* .sec-ttl */
.sec-ttl-en {
  opacity: 0.2;
}

.sec-ttl-en.opacity-1 {
  opacity: 1;
}

/* 横並び */
.sec-ttl-wrap {
  position: relative;
}

.sec-ttl-wrap .sec-ttl-en.right {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -25%);
  width: 100vw;
  text-align: right;
}

/*--------------------------------
 video
--------------------------------*/
.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  overflow: hidden;
  cursor: pointer;
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-white);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  z-index: 10;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.video-player.is-playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
}

.video-player.is-playing:hover .video-play-btn {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 768px) {
  .video-play-btn {
    width: 80px;
    height: 80px;
  }
}

@media screen and (max-width: 600px) {
  .video-play-btn {
    width: 60px;
    height: 60px;
  }
}