.troupe_body {
    background-color: #F4F4F4;
    max-width: 800px;
    padding: 50px;
}

.troupe_main {
    text-align: center;
    background-image: url("../image/BG2.png");
    background-size: 300px;
}


.troupe_frame {
    padding: 10px 0px 50px 0px;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}

.troupe_container {
    width: 80%;
    max-width: 1000px;
    padding: 30px;
    margin-bottom: 30px;
    background-color: #F4F4F4;
    text-align: center;

    a {
        text-decoration: none; 
    }
}

.troupe_block_title {
    color: #6700E8;
    font-size: 28px;
    font-weight: bold;
    font-family: 'BestTen';
}

.troupe_block {
    display: grid;
    gap: 20px;
    padding: 30px 0px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    place-content: center;
}

@media (max-width: 1200px) {
    .troupe_block {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 900px) {
    .troupe_container {
        width: 60%;
    }

    .troupe_block {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .troupe_block {
        grid-template-columns: repeat(1, 1fr);
    }
}



.troupe_name {
    font-family: 'Misaki';
    font-size: 24px;
    color: #6700E8;
    font-weight: bold;
}
