/* --- アクトセクション全体の設定 --- */
.act-section {
    display: flex;
    justify-content: flex-start; /* ★ここを左寄せに変更（演奏会はflex-end） */
    padding: 32px 40px 64px;     /* 演奏会の余白設定に合わせました */
}

/* --- 個別のカード設定 --- */
.act-card {
    position: relative;
    width: 48%;             /* PCでは約半分（演奏会と同じ） */
    min-width: 320px;       /* 崩れ防止（演奏会と同じ） */
    background: #fff;
    border: 2px solid #C8A040;
    padding: 24px 32px;     /* 演奏会のパディングに合わせました */
    overflow: hidden;
    box-sizing: border-box;
}

.act-body {
    position: relative;
    z-index: 1;
}

/* --- テキスト（リード文）部分 --- */
.act-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;       /* 読みやすく調整 */
    color: #2C1505;
    margin-bottom: 18px;
    padding: 12px 16px;
    background: rgba(232, 192, 96, .1);
    border-left: 4px solid #C8A040;
}

/* --- リスト部分 --- */
.act-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;              /* 演奏会のgapに合わせました */
    padding: 0;
    margin: 0;
}

.act-points li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 18px;     /* 演奏会のpaddingに合わせました */
    background: linear-gradient(135deg, rgba(253, 242, 216, .6), rgba(240, 208, 128, .15));
    border: 1px solid rgba(200, 160, 64, .35);
    font-size: 17px;
}

.act-points strong {
    font-size: 18px;
    font-weight: 700;
    color: #4A2208;
    display: block;
    margin-bottom: 2px;
}

/* --- 【重要】レスポンシブ対応 --- */
@media screen and (max-width: 992px) {
    .act-card {
        width: 70%; /* タブレットサイズでの調整（演奏会と同じ） */
    }
}

@media screen and (max-width: 768px) {
    .act-section {
        justify-content: center; /* スマホでは中央（実質100%幅） */
        padding: 32px 20px 48px;
    }

    .act-card {
        width: 100%;             /* 横幅いっぱい */
        padding: 20px 16px;
    }

    .act-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .act-points li {
        font-size: 15px;
        padding: 10px 12px;
    }

    .act-points strong {
        font-size: 16px;
    }
}



/* 写真エリア */
.act-photo {
    flex: 1;
    min-width: 220px;
    align-self: stretch;
}

.act-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* act-section に gap を追加 */
.act-section {
    gap: 32px;
    align-items: flex-start;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .act-photo {
        width: 100%;
        min-width: unset;
    }

    .act-photo img {
        height: 240px;
    }
}