@charset "UTF-8";
.mv-container {
  width: 100%; }
  .mv-container .mv-inner {
    position: relative;
    padding-bottom: 50%; }
  .mv-container .mv-note {
    font-family: "游明朝", "yu-mincho-pr6n", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 5px black, 0 0 10px black; }
  .mv-container .mv-poster {
    display: none; }
    .mv-container .mv-poster img {
      width: 100%;
      height: auto; }
  .mv-container.no-video .mv-inner {
    padding-bottom: 0%; }
    .mv-container.no-video .mv-inner .mv-poster {
      display: block; }
    .mv-container.no-video .mv-inner .mv-video {
      display: none; }
  @media screen and (max-width: 500px) {
    .mv-container .mv-inner {
      padding-bottom: 118.1666666667%; }
    .mv-container.no-video {
      padding-bottom: 0%; } }

.mv-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease 0s; }
  .mv-video.fadeOut {
    opacity: 0;
    pointer-events: none; }
  .mv-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 90%; }
  .mv-video .mv-skip {
    position: absolute;
    top: 75px;
    right: 10px;
    width: 90px;
    padding: 10px 0;
    text-align: center;
    font-size: 1.1rem;
    background-color: #E4E1D8;
    color: #333;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    opacity: 0;
    transition: 0.3s ease 0s opacity;
    font-family: "big-caslon-fb", "游明朝", "yu-mincho-pr6n", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-weight: 700;
    font-style: normal; }
    .mv-video .mv-skip.active {
      opacity: 1;
      pointer-events: auto;
      cursor: pointer; }
  @media screen and (max-width: 768px) {
    .mv-video .mv-skip {
      top: 10px; } }

.mv-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease 0s;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center; }
  .mv-loading.fadeOut {
    opacity: 0;
    pointer-events: none; }
  .mv-loading ul {
    display: flex;
    justify-content: center;
    align-items: center; }
  .mv-loading li {
    margin: 0 2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: loadingMotion 1s linear 0s infinite; }
@keyframes loadingMotion {
  0% {
    background-color: rgba(86, 86, 86, 0); }
  20% {
    background-color: #565656; }
  80% {
    background-color: rgba(86, 86, 86, 0); }
  100% {
    background-color: rgba(86, 86, 86, 0); } }
    .mv-loading li:nth-child(1) {
      animation-delay: 0s; }
    .mv-loading li:nth-child(2) {
      animation-delay: 0.1s; }
    .mv-loading li:nth-child(3) {
      animation-delay: 0.2s; }
    .mv-loading li:nth-child(4) {
      animation-delay: 0.3s; }
    .mv-loading li:nth-child(5) {
      animation-delay: 0.4s; }
    .mv-loading li:nth-child(6) {
      animation-delay: 0.5s; }
