@charset "UTF-8";

h1 {
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
    margin: 30px 0;
}

h2 {
    font-size: 1.2rem;
    font-weight: normal;
}

.contents-area {
    width: 80%;
    margin: 30px auto;
}

.concert-info-main {
    display: flex;
    justify-content: space-between;
}

.concert-info-main.no-poster {
    display: block;
    width: 60%;
    text-align: center;
}

.poster-area {
    width: 45%;
}

.poster {
    background-size: contain;
    background-position: center;
    height: 100%;
    min-height: 600px;
}

.concert-info {
    width: 50%;
}

.concert-info.full {
    width: 100%;
}

.concert-info div {
    margin-bottom: 20px;
}

.concert-info h2 {
    border-bottom: 1px solid #b6b6b6;
    margin-bottom: 10px;
}

.concert-info p {
    padding-left: 10px;
}

.setlist-area {
    width: 60%;
    text-align: center;
}

.setlist-area h2 {
    font-family: 'Roboto Slab';
    font-size: 1.5rem;
}

.setlist-area h3 {
    font-size: 1.1rem;
    margin: 20px 0;
}

.setlist-area section {
    margin-bottom: 50px;
}

.setlist li {
    padding: 10px 0;
    border-top: 1px solid #b6b6b6;
}

.setlist li:last-of-type {
    border-bottom: 1px solid #b6b6b6;
}

/* チャリティー */

.charity-area {
    width: 60%;
    margin: 30px auto;
}
.charity-area h2 {
    font-family: 'Roboto Slab';
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.charity-area .concert-picture {
    height: 100%;
    background-size: contain;
    background-position: center;
    min-height: 400px;
    margin-top: 10px;
}

/* ご来場いただきありがとうございました */
.thank-you-for-coming h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.picture-area {
    display: flex;
    justify-content: space-between;
}

.picture-area figure {
    margin-left: 50px;
    margin-right: 50px;
}

.picture-area img {
    max-width: 100%;
    height: auto;
}

figcaption {
    text-align: center;
    font-size: 1.3rem;
}

@media screen and (max-width: 900px) {

    h1 {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.1rem;
    }
    
    .contents-area {
        width: 90%;
        flex-direction: column;
    }
    
    .poster-area {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .poster {
        min-height: 400px;
    }
    
    .concert-info {
        width: 100%;
    }
    
    .concert-info div {
        margin-bottom: 10px;
    }
    
    .concert-info p,
    .setlist p,
    .charity-area p {
        font-size: 0.8rem;
    }

    .thank-you-for-coming h2 {
        font-size: 1.1rem;
    }

    .picture-area {
        flex-direction: column;
    }

    .picture-area figure {
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
    }

    figcaption {
        font-size: 1.0rem;
    }
}