@charset "utf-8";

.video_area {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  width: 100% !important;
  height: auto !important;
  max-width: 810px;
  max-height: 810px;
  margin: 0 auto;
}

.video_area .video-js {
  transform: scale(1.1);
  transform-origin: center center;
}

.video_area #player2.video-js,
.video_area #player2.video-js.vjs-fluid,
#player2.video-js.vjs-fluid {
  width: 100% !important;
  height: 100% !important;
  max-width: 810px !important;
  max-height: 810px !important;
  padding-top: 0 !important;
  /* 16:9アスペクト比を無効化 */
  padding-bottom: 0 !important;
  transform: scale(1.0) !important;
  transform-origin: center center !important;
  object-fit: contain !important;
}

#player2 video,
#player2 .vjs-tech {
  width: 100% !important;
  height: 100% !important;
  max-width: 810px !important;
  max-height: 810px !important;
  object-fit: contain !important;
}

.video_area.crop-sides .video-js {
  transform: scaleX(1.0) scaleY(1.0);
  transform-origin: center center;
}

.video_area.maintain-aspect .video-js {
  width: 100% !important;
  height: 100% !important;
  position: relative;
  left: -5%;
  top: -5%;
}

@media (max-width: 768px) {
  .video_area {
    width: 100% !important;
    height: auto !important;
    max-width: calc(100vw - 32px) !important;
    max-height: calc(100vw - 32px) !important;
    aspect-ratio: 1 / 1 !important;
  }

  .video_area #player2.video-js,
  .video_area #player2.video-js.vjs-fluid,
  #player2.video-js.vjs-fluid {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    transform: scale(1.0) !important;
    object-fit: contain !important;
  }

  #player2 video,
  #player2 .vjs-tech {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
  }
}

@media (max-width: 480px) {
  .video_area {
    width: 100% !important;
    max-width: calc(100vw - 32px) !important;
    max-height: calc(100vw - 32px) !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 auto;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .video_area {
    max-width: 70vh !important;
    max-height: 70vh !important;
    aspect-ratio: 1 / 1 !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .video_area {
    width: 90% !important;
    max-width: min(90vw, 810px) !important;
    max-height: min(90vw, 810px) !important;
  }
}

@media (min-width: 1025px) {
  .video_area {
    width: 810px !important;
    height: 810px !important;
    max-width: 810px !important;
    max-height: 810px !important;
  }
}

.video_area .vjs-poster,
.video_area .vjs-tech {
  object-fit: cover;
  object-position: center;
}



