﻿@charset "UTF-8";
/* メインビジュアル */
.mv-movie {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.mv-movie .inner-frame {
    position: relative;
}
.mv-movie .ttl {
    align-items: center;
    bottom: 0;
    color: #ffffff;
    display: flex;
    font-size: 40px;
    left: 60px;
    position: absolute;
    right: 0;
    text-align: left;
    top: 0;
    vertical-align: middle;
    z-index: 2;
    text-shadow: 0 0 15px rgba(0, 0, 0, .5);
}
.mv-movie .caption {
  font-size: 14px;
  z-index: 2;
}
.mv-movie .video {
  margin: auto;
  width: 100%;
}
.mv-movie .video.fixed {
  max-width: none;
}
@media screen and (max-width: 640px) {
  .mv-movie {
    /* height: 70vh;
    max-height: 500px; */
  }
  .mv-movie .inner-frame {
  margin: 0;
  height: 100%;
  }
  .mv-movie .ttl {
    font-size: 24px;
    padding-top: 0;
    line-height: 1.4;
    left: 10px;
    flex-wrap: wrap;
    display: flex;
    top: 0;
    margin: auto;
    justify-content: center;
  }
  .mv-movie .video {
    width: 100%;
    /* height: 100%; */
  }
}