

/* 動画モーダル */

.movie_btn {
  position: relative;
  cursor: pointer;
  /* max-width: 800px; */
  /* margin: auto; */
  /* width: 100%; */
  margin: auto;
  text-align: center;
  
}

.movie_btn img {
  width: 100%;
  /* display: block; */
}

.movie_btn img:hover{
    opacity: 0.7;
    transition: 0.3s ease-in-out;
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #fff;
}

.movie_modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.movie_modal.active {
  display: flex;
}

.modal_inner {
  width: min(90%, 1000px);
  position: relative;
}

.movie_modal video {
  width: 100%;
  display: block;
}

.close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
}