* { box-sizing: border-box; }

.wslpb-lp {
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
}

/* タイトルセクション */
.wslpb-title-section { width: 100%; text-align: center; }
.wslpb-title-text { padding: 60px 20px; }
.wslpb-title-text h1 { margin: 0; line-height: 1.5; font-weight: bold; }
.wslpb-title-image img { width: 100%; display: block; }

/* 動画セクション */
.wslpb-title-section { margin-bottom: 0; }
.wslpb-video-section { background: #000; margin-top: 0; }

.wslpb-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

/* YouTube：上下クロップでブランド非表示 */
.wslpb-video-wrapper.is-youtube iframe {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    border: none;
}

/* Vimeo：通常表示 */
.wslpb-video-wrapper.is-vimeo iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.wslpb-video-wrapper video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    background: #000;
}

/* カスタム再生ボタン */
.wslpb-video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 10;
}

.wslpb-video-overlay.playing { opacity: 0; pointer-events: none; }

.wslpb-play-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 80px; height: 80px;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    transition: transform 0.2s;
}

.wslpb-play-btn:hover { transform: scale(1.1); }

/* 視聴進捗バー */
.wslpb-progress-bar-wrap {
    background: #111;
    padding: 10px 20px;
}

.wslpb-progress-bar {
    height: 6px;
    background: #2271b1;
    width: 0%;
    border-radius: 3px;
    transition: width 0.5s;
}

.wslpb-progress-text {
    color: #aaa;
    font-size: 12px;
    display: block;
    margin-top: 6px;
    text-align: center;
}

/* 続きのコンテンツ */
.wslpb-gated-content {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
    animation: wslpb-fadein 0.8s ease;
}

@keyframes wslpb-fadein {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.wslpb-gate-image { margin-bottom: 30px; }
.wslpb-gate-image img { max-width: 100%; border-radius: 8px; }

.wslpb-gate-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: left;
    white-space: pre-line;
}

.wslpb-gate-btn-wrap { margin-top: 30px; }

.wslpb-gate-btn {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.wslpb-gate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    text-decoration: none;
}

@media (max-width: 600px) {
    .wslpb-title-text { padding: 40px 16px; }
    .wslpb-gate-btn { font-size: 16px; padding: 16px 40px; }
    .wslpb-play-btn { width: 60px; height: 60px; font-size: 24px; }
}
