/* --- リセットCSS & 基本設定 --- */
/* common.cssで設定されているため、bodyの設定を削除 */

/* ハンバーガーメニューアイコン */
.menu-icon {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

/* --- メインコンテンツ --- */
main {
    background-color: #fff;
    padding: 20px 15px;
    min-height: 80vh;
}

/* 出演者一覧タイトル（グレーのボタン風） */
.page-title {
    background-color: #999;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    width: 80%;
    margin: 1.5rem auto 30px auto;
}

/* 日付見出し（オレンジ） */
.date-heading {
    background-color: #ffcc80;
    /* オレンジ */
    padding: 5px 20px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
    min-width: 120px;
    text-align: center;
}

/* --- アーティストグリッド --- */
.artist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2列 */
    gap: 20px 15px;
    /* 縦 横 の間隔 */
    margin-bottom: 40px;
}

.artist-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.artist-card:hover {
    cursor: pointer;
    opacity: 0.85;
}

/* 画像エリア */
.artist-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* 横長比率を維持 */
    object-fit: cover;
    background-color: #eee;
    /* 画像がない時の背景色 */
    margin-bottom: 8px;
    border: 1px solid #eee;
}

.artist-name {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.3;
}

.artist-desc {
    font-size: 10px;
    color: #555;
    line-height: 1.2;
}

/* --- フッター --- */
footer {
    background-color: #ffebf5;
    /* 薄いピンク */
    padding: 30px 20px;
    text-align: center;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: bold;
}

.copyright {
    font-size: 10px;
    color: #555;
}

/* PC表示用メディアクエリ */
@media (min-width: 768px) {
    main {
        margin-top: 0;
    }
    
    .page-title {
        margin-top: 30px;
    }
}