﻿.wrap{
    width: 80%;
    margin: auto;
}

img{
    width:100%
}

.table-area{
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
}

.member-table{
    display: flex;
    width: 90%;
    margin-bottom: 30px;
    border: 2px solid #D9D9D9;
    border-radius: 10px;
    padding: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.table-img{
    width: 100px;
    aspect-ratio:3/4;
}

.table-content{
    flex: 1 0 100%;
    display:flex;
    flex-wrap:wrap;
    font-weight: 600;
}

.table-content div{
    box-sizing: border-box;
    padding: 2px;
}
.table-content div:nth-child(odd){
    flex: 0 0 40%;
    text-align: center;
}
.table-content div:nth-child(even) {
    flex: 0 0 60%;
}

.exp{
    font-weight: normal;
}

.back_btn_area {
    margin: 5% 0 50px;
    text-align: center;
}

@media screen and (min-width:329px) {
    .table-img {
        width: 100px;
        aspect-ratio: 3/4;
    }

    .table-content {
        flex: 1 0 50%;
        display: flex;
        flex-wrap: wrap;
        font-weight: 600;
    }
}

@media screen and (min-width:769px) {
    .table-area {
        justify-content: space-between;
    }

    .table-area {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .member-table {
        width: 40%;
    }
}

