@charset "UTF-8";

/* ================================================
   news.css — NEWSページ専用スタイル
   reset.css / common.css と併用してください
   ================================================ */

/* ------------------------------------------------
   メインエリア
   ------------------------------------------------ */
.news-main {
    margin: 0 auto;
    padding:var(--section_gutter);
}

/* ページ見出し */
.news-heading {
    margin-bottom: var(--section_gutter);
}

.news-heading__en {
    color: #fff;
    font-family: var(--font_sans);
    font-weight: lighter;
    font-size: calc(var(--size_sm) * 2);
    letter-spacing: 0.18em;
    margin-bottom: var(--gutter_base);
}

.news-heading__ja {
    color: #fff;
    font-weight: lighter;
    font-family: var(--font_sans);
    font-size:calc(var(--size_sm)*2);
    letter-spacing: 0.06em;
    margin: 0;
}

/* ------------------------------------------------
   ニュース一覧
   ------------------------------------------------ */
.news-list {
    list-style: none;
}

.news-heading{
    text-align: center;
}

.news-item {
    display: flex;
    align-items: baseline;
    padding: var(--contents_gutter) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.news-list .news-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.news-item__date {
    color: #7a96b5;
    font-family: var(--font_sans);
    font-size: calc(var(--size_es)*5);
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
    width: 90px;
}

.news-item__title {
    color: #fff;
    font-family: var(--font_sans);
    font-weight: lighter;
    font-size: calc(var(--size_es) * 5);
    letter-spacing: 0.03em;
    line-height: 1.7;
    flex: 1;
}

.news-item__title--link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.news-item__title--link:hover {
    color: #8fb8e0;
}

.news-item__icon {
    opacity: 0.6;
    flex-shrink: 0;
}

/* 読み込み中・空・エラー状態 */
.news-item__loading,
.news-item__empty {
    padding: var(--contents_gutter) 0;
    color: #7a96b5;
    font-family: var(--font_sans);
    font-size: calc(var(--size_es) * 5);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* ------------------------------------------------
   PC対応
   ------------------------------------------------ */
@media screen and (min-width: 960px) {
    .news-main {
        padding-top: var(--contents_gutter_pc);
    }

    .news-heading__en {
        font-size: calc(var(--size_md) * 3);
        margin-bottom: var(--gutter_base);
    }

    .news-heading__ja {
        font-size: calc(var(--size_md) * 2);
    }

    .news-item__title {
        font-size: 2rem;
    }

    .news-item__date {
        font-size: 2rem;
        width: 110px;
    }
}

/* ------------------------------------------------
   スマートフォン対応
   ------------------------------------------------ */
@media screen and (max-width: 959px) {
    .news-item {
        flex-direction: column;
        gap: calc(var(--gutter_base) / 2);
        padding: var(--contents_side_gutter) 0;
    }

.news-heading {
    margin-bottom: var(--contents_gutter);
}
    .news-item__date {
        width: auto;
    }

    .news-heading__en{
        font-weight: normal;
    }
    .news-main{
        padding: var(--contents_gutter);
    }
}
