@charset "UTF-8";

/* --------------------------------------------------
    Block: vl-news
    -------------------------------------------------- */
.vl-news {
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}

/* 内部のbox-sizing調整 */
.vl-news * {
    box-sizing: border-box;
}

.vl-news__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px; /* バーの高さ */
    display: flex;
    align-items: center;
}

/* --- 左側：タイトルエリア --- */
.vl-news__header {
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 30px;
    border-right: 1px solid #ddd; /* 縦の区切り線 */
    margin-right: 30px;
    flex-shrink: 0; /* 縮小させない */
}

.vl-news__title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    color: #333 !important;
    margin: 0 !important; /* テーマのスタイル打ち消し */
    line-height: 1 !important;
	background-color: white !important;
}


.vl-news__title::before {
    display: none !important;
}

/* --- 右側：記事リストエリア --- */
.vl-news__body {
    flex-grow: 1;
    overflow: hidden;
}

.vl-news__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vl-news__item {
    width: 100%;
}

/* リンク全体 */
.vl-news__link {
    display: flex;
    align-items: center;
    justify-content: space-between; /* コンテンツとREAD MOREを両端に */
    width: 100%;
    padding: 10px 0;
    color: #333;
    text-decoration: none !important; /* テーマのスタイル打ち消し */
    transition: opacity 0.3s;
}

.vl-news__link:hover {
    opacity: 0.7;
    color: #333;
}

/* 記事メタ情報＋タイトルをまとめるラッパー */
.vl-news__content-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
    overflow: hidden; /* タイトルが長すぎる場合の対策 */
    margin-right: 20px;
}

/* カテゴリラベル */
.vl-news__cat {
    background-color: #54786c; /* 指定色 */
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    margin-right: 20px;
    white-space: nowrap; /* 折り返し禁止 */
    flex-shrink: 0;
    border-radius: 2px;
}

/* 日付 */
.vl-news__date {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-right: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* タイトル */
.vl-news__article-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* 長すぎたら...にする */
    margin: 0;
    line-height: 1.5;
}

/* --- READ MORE ボタン --- */
.vl-news__more {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #54786c;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 丸い矢印アイコン */
.vl-news__more-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #54786c;
    border-radius: 50%;
    font-size: 10px;
    transition: all 0.3s;
}

.vl-news__link:hover .vl-news__more-icon {
    background-color: #54786c;
    color: #fff;
}


/* --------------------------------------------------
    Responsive: スマホ対応 (768px以下)
    -------------------------------------------------- */
@media screen and (max-width: 768px) {
    .vl-news__inner {
        height: auto;
        flex-direction: column; /* 縦並び */
        align-items: flex-start;
        padding: 15px 20px;
        gap: 10px;
    }

    .vl-news__header {
        width: 100%;
        height: auto;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eee; /* スマホでは下に線 */
        padding-bottom: 10px;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .vl-news__link {
        flex-wrap: wrap; /* 要素が多い場合は折り返し */
        position: relative;
        padding-bottom: 25px; /* READ MORE用のスペース */
    }

    .vl-news__content-wrapper {
        flex-wrap: wrap; /* スマホではメタ情報とタイトルを折り返す */
        margin-right: 0;
    }

    .vl-news__cat {
        margin-bottom: 5px;
    }
    
    .vl-news__date {
        margin-bottom: 5px;
        font-size: 13px;
        color: #666;
    }

    .vl-news__article-title {
        width: 100%; /* タイトルは改行して表示 */
        white-space: normal;
        margin-top: 5px;
        font-size: 15px;
        line-height: 1.5;
    }

    /* スマホでのREAD MORE配置 */
    .vl-news__more {
        position: absolute;
        bottom: 0;
        right: 0;
    }
}