@charset "UTF-8";

/* ===================================
   SCHEDULE & NEWS PAGE
==================================== */
.sn-main {
    padding-bottom: 120px;
}

.sn-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* 共通の小見出し */
.section-title-small {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 0 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #000;
    letter-spacing: 0.05em;
}

/* ===================================
   LEFT: SCHEDULE
==================================== */
.schedule-section {
    flex: 1;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.schedule-card {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 20px;
    border-left: 5px solid #000;
    gap: 20px;
    transition: transform 0.2s;
}

.schedule-card:hover {
    transform: translateX(5px);
}

.time-box {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    min-width: 80px;
}

.schedule-info {
    flex-grow: 1;
}

.talent-name-sm {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 5px;
    font-weight: 700;
}

.stream-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.youtube-btn {
    background: #ff0000; /* YouTubeレッド */
    color: #fff;
    font-weight: 900;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 4px;
    text-align: center;
    white-space: nowrap;
}

.youtube-btn:hover {
    background: #cc0000;
}

.empty-schedule {
    justify-content: center;
    border-left: none;
    background: #f0f0f0;
    color: #888;
    font-weight: bold;
}

/* ===================================
   RIGHT: NEWS
==================================== */
.news-list-section {
    flex: 1;
}

.news-list-vertical {
    display: flex;
    flex-direction: column;
}

.news-list-vertical .news-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px dashed #ccc;
    gap: 15px;
}

.news-list-vertical .news-date {
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
    min-width: 90px;
    margin-top: 2px;
}

.news-list-vertical .news-tag {
    font-size: 0.7rem;
    padding: 4px 8px;
}

.type-goods { background: #0055ff; color: #fff; } /* グッズ用の青タグ追加 */

.news-list-vertical .news-link {
    font-size: 1rem;
    line-height: 1.5;
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination span, .pagination a {
    display: inline-block;
    padding: 8px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid #ddd;
}

.page-current {
    background: #000;
    color: #fff;
    border-color: #000;
}

.page-link:hover {
    background: #f0f0f0;
}