@charset "UTF-8";

/*  swan2026-00090  */
.feature01_movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  aspect-ratio: 16 / 9;
  background: #000;
  margin-bottom: 20px;
  overflow: hidden;
}
.feature01_movie::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 1;
}
.feature01_movie.playing::before {
  display: none;
}

.feature01_movie iframe,
.feature01_movie ._thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border: none;
}
.feature01_movie iframe {
  display: none;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  transition: background-color 0.5s ease;
}
@media screen and (max-width: 767px) {
  .play-button {
    width: 40px;
    height: 40px;
  }
}
.play-button::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 26px solid #004697;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}
@media screen and (max-width: 767px) {
  .play-button::before {
  border-left: 14px solid #004697;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
}
.feature01_movie:hover .play-button {
  background: #004697;
}
.feature01_movie:hover .play-button::before {
  border-color: transparent transparent transparent #fff;
}
/*  /swan2026-00090  */