@charset "utf-8";

#list{
    margin-bottom: 100px;
}

#list .section-subtitle{
    text-align: center;
}

#list .section-subtitle h3{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14682C;
    padding: 100px 0;
}

#list .section-subtitle h3 .title{
    letter-spacing: 10px;
    margin: 0 50px;    
}

#list .section-subtitle h3 .border{
    display: inline-block;
    content: "";
    height: 2px;
    max-width: 10%;
    width: 100%;
    background-color: #14682C;
}

#list .office-list{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 100px;
}

#list .office-list dt{
    width: 40%;
    padding: 10px 0 10px 15px;
    border: 1px solid #CBCBCB;
    border-right: none;
    border-bottom: none;
}

#list .office-list dt:nth-of-type(1){
    background-color: #F3F6EF;
}

#list .office-list dt:nth-of-type(33){
    border-bottom: 1px solid #CBCBCB;
}

#list .office-list dd{
    width: 60%;
    padding: 10px 0 10px 15px;
    border: 1px solid #CBCBCB;
    border-bottom: none;
}

#list .office-list dd:nth-of-type(1){
    background-color: #F3F6EF;
}

#list .office-list dd:nth-of-type(33){
    border-bottom: 1px solid #CBCBCB;
}

#list .name-list{
    width: 100%;
}

#list .name-list tr{
    display: flex;
    width: 100%;
}

#list .name-list tr .first{
    width: 20%;
    border: 1px solid #CBCBCB;
    border-right: none;
    border-bottom: none;
    padding: 10px 0 10px 15px;
}

#list .name-list tr .second{
    width: 40%;
    border: 1px solid #CBCBCB;
    border-right: none;
    border-bottom: none;
    padding: 10px 0 10px 15px;
}

#list .name-list tr .third{
    width: 40%;
    border: 1px solid #CBCBCB;
    border-bottom: none;
    padding: 10px 0 10px 15px;
}

#list .name-list .tr-first{
    background-color: #F3F6EF;    
}

#list .name-list .tr-last .first,
#list .name-list .tr-last .second,
#list .name-list .tr-last .third{
    border-bottom: 1px solid #CBCBCB;
}

@media (max-width:768px){
    #list{
        margin-bottom:50px;
    }

    #list .office-list{
        margin-bottom: 50px;
    }

    #list .section-subtitle h3 .title{
        letter-spacing: 5px;
        margin: 0 30px;
    }

    #list .section-subtitle h3{
        padding: 30px 0;
    }
    
    #list .name-list tr .second{
        width: 30%;
    }
    
    #list .name-list tr .third{
        width: 50%;
    }
}