@charset "utf-8";

/* ------------------------------
    メンバー
--------------------------------- */
.member {
    padding-top: 40px;
    padding-bottom: 80px;
}
.member__content {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.member__bg {
    display: grid;
    grid-template-columns: 10% 80% 10%;
    grid-template-rows: 15% 1fr;

    grid-column: 1 / 2;
    grid-row: 1 / 2;
}
.member__bg-white {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    width: 100%;
}
.member__bg-brown {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    width: 100%;
}

.member__list {
    width: fit-content;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    align-self: center;
    justify-self: center;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
}
.member__item {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 50px;

    font-size: 1rem;
}
.member__header {
    width: 70px;
}

@media (min-width: 768px) {
    .member {
        padding-top: 60px;
        padding-bottom: 120px;
    }
    .member__content {
        max-width: 620px;
    }
    .member__list {
        gap: 30px;
    }
    .member__item {
        gap: 100px;
        font-size: 20px;
    }
    .member__header {
        width: 90px;
    }
}