@charset "UTF-8";

/* 動画ステージ */
  .fj-video-stage {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 固定比率 */
    background: #000;
    overflow: hidden;
  }

  /* Vimeo iframe レイヤー */
  .fj-video-layer {
    position: absolute;
    inset: 0;
  }
  .fj-video-layer iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
  }

  /* サムネイル画像レイヤー */
  .fj-thumbnail {
    position: absolute;
    inset: 0;
    cursor: pointer;
    transition: opacity 0.4s ease;
    z-index: 10;
  }
  .fj-thumbnail.fj-hidden {
    opacity: 0;
    pointer-events: none;
  }
  .fj-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* 再生ボタン */
  .fj-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s;
    pointer-events: none; /* クリックは親の.fj-thumbnailが受ける */
  }
  .fj-thumbnail:hover .fj-play-btn {
    background: rgba(255, 255, 255, 0.28);
    transform: translate(-50%, -50%) scale(1.08);
  }
  .fj-play-btn svg {
    width: 30px; height: 30px;
    fill: #ffffff;
    margin-left: 4px; /* 三角の光学中央補正 */
  }