@charset "utf-8";
/* CSS Document */

.memberlist-ja {
    tr {
        td {
            padding: 12px 10px 0px 10px;
            position: relative;
            @-moz-document url-prefix() {
                padding: 7px 10px 0px 10px;
            }
            div {
                position: relative;
                top: -3px;
                @-moz-document url-prefix() {
                    top: -6px;
                }
            }
        }
    }
}

.member-list_title {
	background: var(--color-sub-light);
    margin-bottom: 25px;
	padding: 15px 10px 10px 25px;
    font-size: 2.0rem;
	position: relative;
	@media (width <= 999px) {
		font-size: 1.8rem;
	}
    &:hover {
        cursor: pointer;
    }
    &::before {
        font-family: var(--fa);
        font-weight: 900;
        content: "\2b";
        margin-right: 10px;
    }
    &.active {
        &::before {
            content: "\f068";
        }
    }
}
.member-list {
    display: none;
    .member-list_job {
        border-bottom: 1px solid #ccc;
        margin-bottom: 15px;
        padding-bottom: 5px;
        font-size: 2rem;
        font-weight: bold;
    }
    ul {
        li {
            list-style-type: disc!important;
            width: calc((100% - 60px) / 3)!important;
            margin: 0 0 15px 20px!important;
            @media (width <= 999px) {
                width: calc(100% - 20px) !important;
            }
        }
    }
}