/* ============================================
   NEWS（単体記事 / カテゴリ一覧）
============================================ */

/* =====================
   NEWS HERO（記事詳細）
===================== */
.news-hero {
    padding-top: 64px;
    position: relative;
    height: 440px;
    overflow: hidden;
    display: flex; align-items: flex-end;
}
.news-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.news-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(5,5,5,.92) 0%, rgba(5,5,5,.5) 40%, rgba(5,5,5,.1) 100%);
}
.news-hero-content {
    position: relative; z-index: 2;
    padding: 0 var(--pad) 48px;
    width: 100%;
    max-width: 820px;
}
.news-hero-eyebrow {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
}
.news-cat-badge {
    font-family: var(--font-en);
    font-size: 10px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    padding: 3px 10px; border-radius: 2px;
}
.news-parent-label {
    font-size: 11px; color: rgba(255,255,255,.6);
}
.news-hero-title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 900; color: var(--white);
    line-height: 1.35; letter-spacing: -.3px;
    margin-bottom: 14px;
}
.news-hero-meta {
    display: flex; gap: 16px; align-items: center;
    font-family: var(--font-en);
    font-size: 12px; color: rgba(255,255,255,.6);
}

/* =====================
   NEWS BODY
===================== */
.news-body {
    max-width: 1000px;
    margin: 0 auto;
    padding: 56px var(--pad) 32px;
}

.news-body .news-intro p {
    font-size: 16px; line-height: 1.95; color: #222;
    margin-bottom: 20px;
    font-weight: 500;
}

.news-body h2 {
    font-size: 22px; font-weight: 900;
    letter-spacing: -.3px;
    margin: 40px 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex; align-items: center; gap: 10px;
}
.news-body h2::before {
    content: ''; display: block;
    width: 4px; height: 20px;
    background: var(--red); border-radius: 2px;
    flex-shrink: 0;
}

.news-body p {
    font-size: 15px; line-height: 1.9; color: #333;
    margin-bottom: 20px;
}

.news-body section { margin-bottom: 40px; }
.news-body section:last-child { margin-bottom: 0; }

/* 動画埋め込み */
.news-video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    margin: 30px 0 40px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--dark2);
    box-shadow: 0 12px 32px rgba(0,0,0,.15);
}
.news-video-embed iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* みどころリスト */
.news-highlights {
    background: #FFF5F5;
    border-left: 4px solid var(--red);
    padding: 28px 32px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 40px;
}
.news-highlights h2 {
    margin: 0 0 20px;
    border-bottom: none;
    padding-bottom: 0;
    font-size: 17px;
}
.news-highlights h2::before { display: none; }
.news-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.news-highlights-list li {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    font-weight: 500;
    padding-left: 22px;
    position: relative;
}
.news-highlights-list li::before {
    content: '▶';
    color: var(--red);
    position: absolute;
    left: 0; top: 3px;
    font-size: 11px;
}

/* 各セクション本文下の画像（Commons公式写真 or YouTubeサムネ） */
.news-section-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    margin: 24px 0 8px;
}
.news-section-figure {
    margin: 24px 0 16px;
}
.news-section-figure .news-section-img {
    margin: 0;
}
.news-section-caption {
    font-size: 11px;
    color: var(--sub);
    margin-top: 6px;
    line-height: 1.5;
}
.news-section-caption a {
    color: var(--sub);
    text-decoration: underline;
}
.news-section-caption a:hover {
    color: var(--red);
}

/* 編集部コメント */
.news-editor-note {
    background: var(--bg2);
    padding: 28px 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 40px;
}
.news-editor-note h2 {
    margin: 0 0 14px;
    font-size: 16px;
    border-bottom: none;
    padding-bottom: 0;
}
.news-editor-note p {
    font-size: 14px;
    margin-bottom: 12px;
}

/* ソース情報 */
.news-source {
    background: var(--bg2);
    padding: 24px 28px;
    border-radius: 8px;
    margin-top: 60px;
    border-top: 3px solid var(--red);
}
.news-source h2 {
    font-size: 13px;
    margin: 0 0 14px;
    border-bottom: none;
    padding-bottom: 0;
    font-family: var(--font-en);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--sub);
}
.news-source h2::before { display: none; }
.news-source ul {
    list-style: none; margin: 0; padding: 0;
    font-size: 13px; line-height: 1.8;
}
.news-source li { margin-bottom: 6px; }
.news-source a {
    color: var(--red);
    text-decoration: underline;
}
.news-source a:hover { opacity: .7; }
.news-body .news-credit {
    font-size: 12px;
    color: var(--sub);
    line-height: 1.7;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
    margin-bottom: 0;
}
.news-body .news-disclaimer {
    font-size: 12px;
    color: var(--sub);
    line-height: 1.7;
    margin-top: 4px;
    margin-bottom: 0;
}

/* 本文内の引用ブロック（字幕引用） */
.news-body blockquote {
    margin: 20px 0;
    padding: 14px 20px;
    border-left: 3px solid var(--red);
    background: var(--bg2);
    color: var(--main);
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
    border-radius: 0 4px 4px 0;
}
.news-body blockquote p { margin-bottom: 0; }

/* =====================
   RELATED ARTICLES（記事詳細の下部）
===================== */
.news-related {
    background: var(--bg2);
    border-top: 1.5px solid var(--border);
    padding: 80px var(--pad);
}
.news-related-head {
    max-width: 1100px;
    margin: 0 auto 36px;
}
.news-related-label {
    font-family: var(--font-en);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900; color: var(--text);
    letter-spacing: .02em;
    display: block; line-height: 1;
}
.news-related-label::after {
    content: ''; display: block;
    width: 40px; height: 2.5px;
    background: var(--red); margin-top: 10px; margin-bottom: 8px;
}
.news-related-title {
    font-size: 13px; font-weight: 500; color: var(--sub);
}
.news-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.news-related-card {
    text-decoration: none; color: var(--text);
    background: var(--white); border-radius: 6px;
    overflow: hidden; border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
    display: block;
}
.news-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.09);
}
.news-related-thumb {
    position: relative;
    width: 100%; aspect-ratio: 16/9;
    overflow: hidden;
}
.news-related-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.news-related-card:hover .news-related-thumb img { transform: scale(1.04); }
.news-related-cat {
    position: absolute; top: 10px; left: 10px;
    font-family: var(--font-en);
    font-size: 9px; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase;
    background: var(--red); color: var(--white);
    padding: 3px 8px; border-radius: 2px;
}
.news-related-body { padding: 16px; }
.news-related-title-text {
    font-size: 15px; font-weight: 800;
    line-height: 1.55;
    margin-bottom: 8px;
    letter-spacing: -.1px;
}
.news-related-date {
    font-family: var(--font-en);
    font-size: 11px; color: var(--sub);
}

@media (max-width: 1024px) {
    .news-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .news-related { padding: 60px var(--pad); }
    .news-related-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* =====================
   TAGS
===================== */
.news-tags {
    max-width: 1000px; margin: 0 auto; padding: 0 var(--pad) 80px;
}
.news-tags-label {
    font-family: var(--font-en); font-size: 11px; font-weight: 800;
    letter-spacing: 2px; color: var(--red); margin-bottom: 12px;
}
.news-tags-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.news-tags-list a {
    display: inline-block;
    padding: 6px 14px; border: 1px solid var(--border);
    border-radius: 999px; font-size: 13px; color: var(--sub);
    text-decoration: none; transition: all .2s;
    background: var(--white);
}
.news-tags-list a:hover {
    border-color: var(--red); color: var(--red);
}

/* =====================
   CATEGORY ARCHIVE
===================== */
.cat-hero {
    padding-top: 64px;
    position: relative;
    height: 340px;
    overflow: hidden;
    display: flex; align-items: center;
    background: var(--dark2);
}
.cat-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cat-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, rgba(10,10,10,.75) 0%, rgba(10,10,10,.5) 50%, rgba(10,10,10,.2) 100%);
}
.cat-hero-content { position: relative; z-index: 2; padding: 0 var(--pad); }
.cat-hero-eyebrow {
    font-family: var(--font-en);
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; color: var(--red);
    text-transform: uppercase;
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
}
.cat-hero-eyebrow::before {
    content: ''; width: 20px; height: 2px; background: var(--red);
}
.cat-hero-title {
    font-family: var(--font-en);
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 900; color: var(--white);
    letter-spacing: .02em; line-height: 1;
    margin-bottom: 8px;
}
.cat-hero-sub-ja {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    font-weight: 400;
}

/* サブカテゴリ絞り込み */
.cat-subnav {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.cat-subnav-label {
    font-family: var(--font-en); font-size: 10px; font-weight: 800;
    letter-spacing: 1.5px; color: var(--sub);
    text-transform: uppercase; white-space: nowrap; margin-right: 4px;
}
.cat-subnav-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-subnav-tag {
    font-size: 12px; font-weight: 700;
    padding: 7px 16px; border-radius: 20px;
    border: 1.5px solid var(--border);
    color: var(--sub); text-decoration: none;
    transition: all .2s;
}
.cat-subnav-tag:hover { border-color: var(--red); color: var(--red); }
.cat-subnav-tag .country-flag { font-size: 14px; margin-right: 2px; line-height: 1; }
.cat-subnav-tag.active {
    background: var(--red); border-color: var(--red); color: var(--white);
}

/* ニュースカードグリッド */
.news-grid-section { padding: 40px 0 60px; }
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 28px;
}
.news-card {
    text-decoration: none; color: var(--text);
    display: flex; flex-direction: column;
    transition: transform .25s;
}
.news-card:hover { transform: translateY(-4px); }
.news-card-thumb {
    position: relative;
    width: 100%; aspect-ratio: 16/9;
    border-radius: 6px; overflow: hidden;
    margin-bottom: 14px;
}
.news-card-img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.news-card:hover .news-card-img { transform: scale(1.04); }
.news-card-cat {
    position: absolute; top: 10px; left: 10px;
    font-family: var(--font-en);
    font-size: 9px; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase;
    background: var(--red); color: var(--white);
    padding: 3px 8px; border-radius: 2px;
}
.news-card-title {
    font-size: 15px; font-weight: 800;
    line-height: 1.55; margin-bottom: 8px;
    letter-spacing: -.2px;
    color: var(--text);
}
.news-card-date {
    font-family: var(--font-en);
    font-size: 11px; color: var(--sub);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .news-hero { height: 360px; }
    .news-hero-title { font-size: 20px; }
    .news-body { padding: 40px var(--pad); }
    .news-tags { padding: 0 var(--pad) 60px; }
    .news-body h2 { font-size: 20px; }
    .news-highlights, .news-editor-note, .news-source { padding: 20px; }
    .cat-hero { height: 260px; }
    .cat-hero-title { font-size: 36px; }
    .news-grid { grid-template-columns: 1fr; gap: 32px; }
}
