/*
 * soka_magazine_latest_news ブロック — スタイル
 *
 * 背景色: #4B4D5F（banner-layout と同系統のダーク系カラー）
 * 全幅背景: topics-layout と同じネガティブマージン手法
 * 配置: トップページ ニュースセクション直上
 * デザイン: 2026-07 デザイナー監修（中央揃え・見出し2段・View All 等）
 */

/* ============================================================
   全幅レイアウト（コンテナ内のネガティブマージンで全幅に広げる）
   ============================================================ */
.magazine-latest-news {
    margin-right: calc((var(--vw100) - 100%) * -1 / 2);
    margin-left:  calc((var(--vw100) - 100%) * -1 / 2);
    padding-top:    56px;
    padding-bottom: 56px;
    padding-right:  calc((var(--vw100) - 100%) / 2);
    padding-left:   calc((var(--vw100) - 100%) / 2);
    background-color: #4B4D5F;
    color: #fff;
}

/* ============================================================
   内側コンテナ（コンテンツ幅を親テーマに合わせる）
   ============================================================ */
.magazine-latest-news__inner {
    max-width: 100%;
}

/* ============================================================
   ヘッダー（中央揃え・2段見出し・タイトル下に短い中央線）
   ============================================================ */
.magazine-latest-news__header {
    margin: 0 0 40px;
    text-align: center;
}

.magazine-latest-news__heading {
    margin: 0;
    letter-spacing: 0.08em;
    color: #fff;
}

.magazine-latest-news__heading-group {
    display: inline-block;
}

/* 1段目: サブ */
.magazine-latest-news__heading-sub {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
}

.magazine-latest-news__heading-outline {
    font-weight: 700;
    color: #4B4D5F;
    text-shadow:
        0.6px  0     0 #fff,
       -0.6px  0     0 #fff,
        0      0.6px 0 #fff,
        0     -0.6px 0 #fff,
        0.6px  0.6px 0 #fff,
       -0.6px -0.6px 0 #fff,
        0.6px -0.6px 0 #fff,
       -0.6px  0.6px 0 #fff;
}

.magazine-latest-news__heading-main {
    display: block;
    margin-top: 6px;
    padding-bottom: 6px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    border-bottom: 3px solid rgba(255, 255, 255, 0.85);
}

/* ============================================================
   記事リスト
   ============================================================ */
.magazine-latest-news__list {
    list-style: none;
    margin:  0;
    padding: 0;
}


/* ============================================================
   各記事リンク（サムネ + テキスト の横並び）
   ============================================================ */
.magazine-latest-news__link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.magazine-latest-news__link:hover,
.magazine-latest-news__link:focus {
    opacity: 0.75;
    text-decoration: none;
}

/* ============================================================
   サムネイル
   ============================================================ */
.magazine-latest-news__thumb {
    flex-shrink: 0;
    width:  104px;
    height: 104px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.magazine-latest-news__thumb img {
    display: block;
    width:   100%;
    height:  100%;
    padding: 0; /* 親テーマの汎用 img スタイルが漏れて当たった時の保険 */
    object-fit: cover;
}

/* ============================================================
   テキスト本文
   ============================================================ */
.magazine-latest-news__body {
    flex: 1;
    min-width: 0;   /* flex 子要素のテキスト折り返しに必要 */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 日付 + カテゴリの1行メタ */
.magazine-latest-news__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #fff;
}

.magazine-latest-news__date {
    color: inherit;
}

.magazine-latest-news__sep {
    color: #fff;
}

.magazine-latest-news__category {
    color: inherit;
    font-size: 13px;
}

.magazine-latest-news__title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    /* 2行で切る */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* ============================================================
   フッター（View All）
   ============================================================ */
.magazine-latest-news__footer {
    margin-top: 28px;
    text-align: right;
}

.magazine-latest-news__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.magazine-latest-news__more::after {
    content: "\e90e"; /* tertiary-button (target=_blank なし) と同じ矢印グリフ */
    font-family: "soka" !important;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
}

.magazine-latest-news__more:hover,
.magazine-latest-news__more:focus {
    opacity: 0.75;
    text-decoration: none;
}

.magazine-latest-news__empty {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    padding: 16px 0;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 640px) {
    .magazine-latest-news {
        padding-top:    40px;
        padding-bottom: 40px;
    }

    .magazine-latest-news__header {
        margin: 0 0 32px;
    }

    .magazine-latest-news__heading-sub {
        font-size: 20px;
    }

    .magazine-latest-news__heading-main {
        font-size: 36px;
        padding-bottom: 14px;
    }

    .magazine-latest-news__meta {
        font-weight: 400;
    }

    .magazine-latest-news__date {
        font-size: 14px;
    }

    .magazine-latest-news__thumb {
        width:  104px;
        height: 104px;
    }
}
