@charset "UTF-8";

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

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

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

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

.picture-area {
    width: 35%;
    background-color: #827c79;
}

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

.conductor-info {
    width: 60%;
}

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

.conductor-info h2 {
    border-bottom: 1px solid #827c79;
    padding-bottom: 10px;
}

.conductor-info table {
    width: 100%;
    margin: 20px 0;
}

.conductor-info th {
    text-align: left;
    width: 20%;
    padding: 10px 0;
}

.conductor-info p {
    margin-bottom: 15px;
}

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

    h1 {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.1rem;
    }
    
    .contents-area {
        width: 90%;
        flex-direction: column;
    }
    
    .picture-area {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .picture {
        min-height: 400px;
    }
    
    .conductor-info {
        width: 100%;
    }
    
    .conductor-info div {
        margin-bottom: 10px;
    }

    .conductor-info th,
    .conductor-info td {
        font-size: 0.8rem;
    }
    
    .conductor-info p{
        font-size: 0.8rem;
    }
}