/* 2026-04-23 news-detail.html 専用スタイル（整理版） */

/* ===== 記事フッター ===== */
.news-detail-back-wrap {
    margin-top: 8px;
}

/* ===== 記事タイトル ===== */
.article-title{
    font-size: 48px;
}

/* ===== 記事本文レイアウト ===== */
.article-body {
    max-width: 800px;
    margin: 48px auto 24px;
    padding: 0 16px;

    text-align: left;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.article-body h3 {
    font-size: 20px;
}

/* ===== 動画セクション ===== */
.news-detail-embed {
    margin: 40px auto;
    max-width: 800px;
}

.article-body .news-detail-embed .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;

    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    background: #000;
}

.article-body .news-detail-embed .video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

/* 動画キャプション */
.news-detail-embed-caption {
    margin-top: 12px;
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
}

/* ===== 区切り線（必要なら復活用） ===== */
.news-detail-endrule {
    margin: 48px 0 24px;
    text-align: center;
    font-size: 14px;
    color: #7f8c9a;
}

/* ===== レスポンシブ ===== */
@media (max-width: 1060px) {
    .article-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }

    .article-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
}