/* ============================================================
   works.css  主な上演作品ページ
   ============================================================ */

.works-wrapper {
    max-width: 920px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

/* 時代ジャンプナビゲーション */
.era-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}
.era-nav a {
    background: var(--main-green);
    color: #fff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background 0.2s;
}
.era-nav a:hover {
    background: var(--main-green-dark);
    color: #fff;
    text-decoration: none;
}

/* 時代セクション */
.works-era { margin-bottom: 60px; }

.era-heading {
    background: var(--main-green);
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    font-size: 1.25rem;
    border-left: none;
    margin-bottom: 30px;
}
.era-label {
    display: block;
    font-size: 0.82rem;
    opacity: 0.85;
    margin-bottom: 3px;
    font-weight: normal;
}

/* 作品カード */
.work-item {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px dotted #ccc;
}
.work-item:last-child {
    border-bottom: none;
}

.work-poster {
    flex-shrink: 0;
    width: 110px;
}
.work-poster img {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.12);
    filter: saturate(0.8);
}
.work-poster--wide img {
    width: 160px;
    max-width: 100%;
}

.work-info { flex: 1; }

.work-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1a1a1a;
    background: #e8f5e9;
    padding: 5px 12px;
    border-radius: 4px;
    margin: 0 0 8px;
    line-height: 1.5;
    display: flex;
    align-items: baseline;
    gap: 1em;
    flex-wrap: wrap;
}

.work-years {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: normal;
    margin: 0;
}

.work-credit {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.5;
}

.work-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* 希望ホール作品一覧（表） */
.kibou-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 10px 0;
}
.kibou-table th {
    background: var(--main-green);
    color: #fff;
    padding: 6px 10px;
    text-align: left;
}
.kibou-table td {
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
}
.kibou-table tr:nth-child(even) td {
    background: #f5f5f5;
}

@media (max-width: 600px) {
    .work-item {
        flex-direction: column;
        gap: 14px;
    }
    .work-poster {
        width: 90px;
    }
}
