/* === Theatre Power — プレスリリース一覧ページ固有スタイル (prs.css) === */
/* 更新: 2026-03-23 */


/* ----------------------------------------
   1. ページ見出し
   ---------------------------------------- */
.concept-title {
    /* base style is in common.css; this page uses tight spacing */
    margin-bottom: 10px;
}


/* ----------------------------------------
   2. プレスリリースリスト
   ---------------------------------------- */
.prs-main {
    padding-bottom: 80px;
}

.news-list-simple {
    list-style: none;
    padding: 0;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.news-item-simple {
    border-bottom: 1px solid #eee;
}

.news-item-simple a {
    display: flex;
    align-items: center;
    padding: 22px 0;
    text-decoration: none;
    color: #333;
    gap: 20px;
    transition: background 0.2s;
}

.news-item-simple a:hover {
    background-color: #fafafa;
}

.news-item-simple .dot {
    color: #333;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.news-item-simple .date {
    color: #888;
    font-size: 0.95rem;
    min-width: 100px;
    font-family: 'Arial', sans-serif;
}

.news-item-simple .tag {
    background: #fff5f5;
    color: #BC221C;
    padding: 4px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}

.news-item-simple .title {
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.5;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.badge-new {
    color: #BC221C;
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 8px;
    border: 1px solid #BC221C;
    padding: 0 4px;
    border-radius: 2px;
    line-height: 1.2;
}


/* ----------------------------------------
   3. レスポンシブ
   ---------------------------------------- */
@media (max-width: 1024px) {
    .news-item-simple a {
        flex-wrap: wrap;
        gap: 8px;
        padding: 15px 0;
    }
    .news-item-simple .dot {
        display: none;
    }
    .news-item-simple .date {
        font-size: 0.85rem;
        min-width: auto;
    }
    .news-item-simple .title {
        width: 100%;
        margin-top: 5px;
        font-size: 1rem;
    }
}
