/* =========================
   新着情報エリア全体
========================= */
#top-news {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
    padding: 56px 20px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    box-sizing: border-box;
}

/* =========================
   左カラム
========================= */
#top-news-l {
    width: 230px;
    flex-shrink: 0;
}

#top-news-l .tt {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
    margin-bottom: 8px;
}

#top-news-l .en {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.12em;
    color: #e67e22;
    margin: 0;
    text-transform: uppercase;
}

/* =========================
   右カラム
========================= */
#top-news-r {
    flex: 1;
    min-width: 0;
}

/* =========================
   1件ずつ
========================= */
.news-line {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #e67e22;
}

.news-line:first-child {
    padding-top: 0;
}

.news-line-l {
    width: 110px;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #777;
    letter-spacing: 0.03em;
    margin: 0;
}

.news-line-r {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.news-line-r a {
    display: block;
    text-align: left;
    font-size: 16px;
    line-height: 1.45;
    color: #222;
    text-decoration: none;
    transition: opacity 0.3s ease;
    word-break: break-word;
    margin: 0;
}

.news-line-r a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* =========================
   一覧を見るリンク
========================= */
.top-w-link {
    margin-top: 26px;
}

.top-w-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    background: #222;
    text-decoration: none;
    border-radius: 9999px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.top-w-link a:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* =========================
   PC/SP 出し分け
========================= */
.pc {
    display: block;
}

.sp {
    display: none;
}

/* =========================
   タブレット
========================= */
@media (max-width: 960px) {
    #top-news {
        gap: 28px;
        max-width: 92%;
        padding: 48px 16px;
    }

    #top-news-l {
        width: 210px;
    }

    #top-news-l .tt {
        font-size: 28px;
    }

    .news-line {
        gap: 16px;
    }

    .news-line-l {
        width: 100px;
    }
}

/* =========================
   スマホ
========================= */
@media (max-width: 767px) {
    #top-news {
        display: block;
        max-width: 100%;
        padding: 40px 15px;
    }

    #top-news-l {
        width: 100%;
        margin-bottom: 22px;
        text-align: center;
    }

    #top-news-l .tt {
        font-size: 24px;
        margin-bottom: 4px;
    }

    #top-news-r {
        width: 100%;
    }

    .news-line {
        display: block;
        padding: 10px 0;
        text-align: center;
    }

    .news-line-l {
        width: 100%;
        margin-bottom: 4px;
        font-size: 13px;
        line-height: 1.35;
        text-align: center;
    }

    .news-line-r {
        text-align: center;
    }

    .news-line-r a {
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
        margin-top: 18px;
        text-align: center;
    }

    .top-w-link {
        text-align: center;
    }

    .top-w-link a {
        width: 100%;
        max-width: 220px;
        padding: 12px 18px;
    }
}