
        .video-container {
			margin-top: 114px;
            position: relative;
            width: 100vw;
            height: 56.25vw; /* 16:9のアスペクト比 */
            max-height: 100vh;
            overflow: hidden;
            cursor: pointer;
        }

        .img-container {
			margin-top: 114px;
            position: relative;
            width: 100vw;
            height: 56.25vw; /* 16:9のアスペクト比 */
            max-height: 100vh;
            overflow: hidden;
        }

        .thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
position: relative;     /* 追加 */
    pointer-events: none;   /* 追加 */
}
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: rgba(0, 0, 0, 0.0);
            border: solid 1px white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            z-index: 10;
pointer-events: auto;   /* 追加（念のため） */
}
        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.02, 1.02);
            background-color: rgba(0, 0, 0, 0.1);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  			opacity: 0.7;
            z-index: 10;
pointer-events: auto;   /* 追加（念のため） */
}

.play-button.inactive {
  pointer-events: none;
}

        .play-icon {
            width: 0;
            height: 0;
            border-left: 25px solid white;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            margin-left: 5px;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.1) 0%,
                rgba(0, 0, 0, 0.3) 100%
            );
            pointer-events: none;
        }

        .video-title {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            font-size: 24px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            pointer-events: none;
        }


		/*youtube*/

        .youtube-player {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .youtube-player.active {
            opacity: 1;
        }

        .close-button.active {
            display: flex;
        }


		/*vimeo*/

        .vimeo-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            display: none;
        }



        /*close-button: 疑似要素を使用 */
        .close-button {
            position: absolute;
            top: 15px;
            right: 45px;
            width: 20px;
            height: 20px;
            color: #ffffff;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 3;
			background-color: transparent;
			border: none;
			padding: 0;

        }
        .close-button::before,
        .close-button::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            width: 40px;
            height: 1px;
            background-color: #fff;
            transform-origin: center;
        }

        .close-button::before {
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .close-button::after {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .close-button:hover::before,
        .close-button:hover::after {
  opacity: 0.8;
}

        @media (max-width: 768px) {
			
        .video-container {
			margin-top: 89px;
        }
        .img-container {
			margin-top: 89px;
        }
			
			
            .play-button {
                width: 60px;
                height: 60px;
            }
            
            .play-icon {
                border-left: 18px solid white;
                border-top: 11px solid transparent;
                border-bottom: 11px solid transparent;
                margin-left: 3px;
            }
            
        }