/* 動画ニュース個別ページスタイル */
/* .sp-only-news {
    display: none;
} */

.header__message {
    background-color: #107ff5 !important;
}

.news-single-container {
    min-height: 100vh;
    background-color: #fff;
}

/* 戻るボタンとタイトル */
.search_header {
    padding: 16px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #f9f8f4;
    border-bottom: 3px solid #0982FE;
}

.search_header .page-title {
    font-size: 20px;
    font-weight: bold;
    color: #60615c;
    margin: 0 auto;
    text-align: center;
    flex: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.back-button img {
    height: 20px;
}

/* メインコンテンツ */
.news-single-content {
    padding: 0;
}

/* 動画プレイヤーセクション */
.video-player-section {
    position: relative;
    background-color: #fff;
    padding: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* サムネイル表示ラッパー */
.video-thumbnail-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 400px;
    width: 100%;
}

/* サムネイル表示 */
.video-thumbnail-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

/* 限定動画フィルター */
.limited-filter {
    filter: blur(7px) brightness(0.6);
}

/* 限定動画オーバーレイ */
.limited-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    z-index: 10;
}

/* 再生ボタンコンテナ（サムネイルの下） */
.play-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.play-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #4a90e2;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.play-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.play-text {
    font-size: 16px;
    font-weight: bold;
}

.hidden-video-player {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999;
    background: #000;
    object-fit: contain;
}

.hidden-video-player[style*="display: block"] {
    display: block !important;
}

/* プレースホルダー */
.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.placeholder-content {
    text-align: center;
    color: #fff;
}

.placeholder-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.placeholder-text {
    font-size: 16px;
    margin: 0;
}

/* ニュース詳細セクション */
.news-detail-section {
    background-color: #fff;
    padding: 30px;
}

.news-info-content {
    max-width: 600px;
    margin: 0 auto;
}

/* 業種/エリア情報 */
.business-area-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
    word-break: break-word;
}

.separator {
    margin: 0 3px;
}

/* 店舗情報 */
.shop-info {
    margin-bottom: 20px;
    text-align: center;
}

.shop-link {
    text-decoration: none;
    color: #4a90e2;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.shop-link:hover {
    color: #357abd;
    text-decoration: underline;
}

/* チャットボタン */
.sns_btn {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    width: 100%;
}

.sns_btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    line-height: 1;
    color: #fff;
    text-align: center;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.sns_btn.btn_chat .modal-open {
    background: #00BF63;
}

.sns_btn .modal-stay {
    background: #dcdcdc;
    cursor: not-allowed;
}

.sns_btn .modal-stay span {
    color: #bdbdbd;
}

.sns_btn a img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

/* 女の子紹介 */
.girl-intro {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.girl-link {
    text-decoration: none;
    color: #4a90e2;
    font-weight: bold;
    transition: all 0.3s ease;
}

.girl-link:hover {
    color: #357abd;
    text-decoration: underline;
}

/* 女の子詳細情報 */
.girl-detail-info {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.girl-image-container {
    margin-bottom: 15px;
    width: 100%;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center center;
    animation-duration: 0.8s;
}

.girl-detail-image {
    max-width: 60%;
    height: auto;
    vertical-align: top;
    border: none;
}

.girl-basic-info {
}

.girl-name-age {
    font-size: 18px;
    font-weight: bold;
}

.age {
    font-weight: normal;
    color: #666;
}

.girl-measurements {
    font-size: 14px;
}

/* アクションボタン */
.action-buttons {
    margin: 20px auto 30px;
}

.button-row {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.action-button {
    flex: 1;
    max-width: 200px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.diary-button,
.review-button {
    color: #0E0EFF;
}

/* 取材協力店セクション */
.interview-cooperation-section {
    text-align: center;
    padding: 20px 0 0;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.interview-cooperation-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.interview-cooperation-header img {
    width: 20px;
    height: 20px;
}

.interview-cooperation-header p {
    font-size: 16px;
    font-weight: bold;
    color: #444;
    margin: 0;
}

.interview-shop-link {
    display: inline-block;
    margin-bottom: 2px;
}

.interview-shop-name {
    font-size: 14px;
    color: #207be2;
}

.interview-business-area {
    font-size: 14px;
    color: #666;
    word-break: break-word;
}

.interview-area-name {
    margin-left: 2px;
}

/* モーダル関連CSS */
#modal-bg {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 105;
}

#modal_close {
    font-size: 36px;
    color: #fff;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 106;
    cursor: pointer;
    display: none;
}

#modal_reserve {
    display: none;
    width: 90%;
    max-width: 480px;
    padding: 0;
    color: #666666;
    position: fixed;
    z-index: 106;
    text-align: center;
    overflow: hidden;
    left: 5%;
    height: fit-content;
}

#modal_reserve .sns_inner {
    background-color: #ffffff;
    padding: 6px;
    border-radius: 8px;
}

#modal_reserve .sns_inner.shop_outside_business_flg_inner {
    border: 3px solid #f8860a;
}

#modal_reserve .sns_inner .sns_guidance {
    position: relative;
}

#modal_reserve .shop_outside_business_flg_inner .sns_guidance .sns_txt {
    margin: 10px 0;
}

.sns_txt.notes {
    word-break: break-word;
    margin: 0%;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    /* .sp-only-news {
        display: block;
    } */
    
    .search_header {
        padding: 12px 16px;
        height: 40px;
    }
    
    .search_header .page-title {
        font-size: 16px;
    }
    
    .news_bottom_border {
        margin: 8px 10px;
    }
    
    .video-player-section {
        padding: 15px;
    }
    
    .video-thumbnail-wrapper {
        max-width: 300px;
        gap: 15px;
    }
    
    .video-thumbnail-container {
        border-radius: 12px;
    }
    
    .thumbnail-image {
        border-radius: 12px;
    }
    
    .play-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .play-icon {
        width: 20px;
        height: 20px;
    }
    
    .shop-link {
        font-size: 20px;
    }
    
    .girl-name-age {
        font-size: 16px;
    }
    
    .girl-measurements {
        font-size: 13px;
    }
    
    .button-row {
        flex-direction: column;
        align-items: center;
    }
    
    .action-button {
        width: 100%;
        max-width: 280px;
    }
}