.page-member__01 {
    padding: 0 0 10rem 0;
    z-index: 3;
}

/* タブ */

ul {
    list-style-type: none;
}

.tab-list {
    display: flex;
    overflow: hidden;
    overflow-x: scroll;
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

.tab-list::-webkit-scrollbar {
    display: none;
    /* Chrome / Safari / Edge */
}

.tab-list-item {
    text-align: center;
    background: none;
    white-space: nowrap;
    border: none;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 0.5rem 1.2rem;
    color: #AAAAAA;
    border-bottom: 1px solid #AAAAAA;
    cursor: pointer;
    font-family: "adobe-caslon-pro", serif;
    font-weight: 700;
}

.tab-list-item.active {
    border-bottom: 1px solid #9778D1;
    color: #333333;
}

.tab-contents {
    margin-top: 4rem;
}

.tab-contents-item {
    display: none;
}

.tab-contents-item.show {
    display: block;
}

/* タブ */

/* モーダル(js) */

.member-modal-toggle {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.member-modal {
    display: none;
    position: fixed;
    z-index: 8887;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 1s ease-in-out;
}

.member-modal-container-ttl {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.member-modal-container-image {
    margin-top: 2rem;
}

.member-modal-container-image img {
    width: 100%;
}

.member-modal-container-text {
    font-size: 1.4rem;
    margin-top: 2rem;
}

.member-modal-container-list {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.member-modal-container-list-item {
    width: 12%;
}

.member-modal-container-list-item a {
    transition: .3s;
}

.member-modal-container-list-item a:hover {
    opacity: .5;
}

.member-modal-content {
    background: #fff;
    padding: 1.6rem 3rem;
    overflow-y: scroll;
    width: 85%;
    height: 75vh;
    max-width: 32rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: show 0.6s linear 0s;
    filter: drop-shadow(0px 2px 6px #777);
}

.member-modal-top {
    display: inline-block;
    position: absolute;
    top: 15%;
    left: 61%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 999;
}

.member-modal-close {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    /* display: inline-block; */
    display: flex;
    justify-content: center;
    justify-content: center;
    line-height: 1.3;
    background: #333333;
    /* padding: .5rem; */
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.member-modal-close:hover,
.member-modal-close:focus {
    text-decoration: none;
    cursor: pointer;
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.member-modal-container-btn {
    margin-top: 2rem;
}

.member-modal-container-btn02 {
    margin-top: 2rem;
}

/* モーダル(js) */

.page-member__01-list {
    display: flex;
    gap: 2rem 2%;
    flex-wrap: wrap;
}

.page-member__01-list-item {
    width: 49%;
}

.page-member__01-list-item-text {
    font-size: 1.6rem;
    text-align: left;
    padding: 0.5rem 1.2rem;
    position: relative;
    font-family: "Noto Serif JP", serif;
}

.page-member__01-list-item-text:after {
    transition: .3s;
    content: '';
    display: inline-block;
    width: 10px;
    height: 14px;
    background: url(../img/arrow.png) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.page-member__01-list-item:hover .page-member__01-list-item-text:after {
    right: 0%;
}

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

    .member-modal-top {
        display: inline-block;
        position: absolute;
        top: 23%;
        left: auto;
        right: 6%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        z-index: 999;
    }

    .member-modal-content {
        top: 57%;
        height: 65vh;
    }
}