@charset "UTF-8";

.news-page-main {
    padding: 160px 0 120px;
    background-color: var(--bg-color);
}

.small-container {
    max-width: 900px; 
    margin: 0 auto;
}

/* タイムライン・ライン型構造UI */
.news-list {
    border-top: 1px solid rgba(30, 30, 30, 0.15);
    margin-top: 50px;
}

.news-row {
    display: flex;
    align-items: center;
    padding: 30px 10px;
    border-bottom: 1px solid rgba(30, 30, 30, 0.08);
    transition: background-color 0.3s ease;
}

.news-row:hover {
    background-color: rgba(30, 30, 30, 0.01); 
}

.news-time-tag {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 250px;
    flex-shrink: 0;
}

.news-date {
    font-size: 1rem;
    color: #555555;
    font-weight: 500;
}

.news-label {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 2px;
    letter-spacing: 0.05em;
}

.label-info { background-color: #1e1e1e; color: #fcf9f2; }
.label-press { background-color: #e63946; color: #ffffff; }

.news-title-area {
    flex-grow: 1;
}

.news-item-title {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-color);
}

/* スマホ最適化レスポンシブ */
@media (max-width: 960px) {
    .small-container { padding: 0 4%; }
}

@media (max-width: 768px) {
    .news-page-main { padding: 120px 0 80px; }
    .news-list { margin-top: 35px; }
    .news-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px 5px;
    }
    .news-time-tag {
        width: 100%;
        gap: 15px;
    }
    .news-item-title {
        font-size: 1rem;
    }
}