.section_members {
    font-size: 18px;
    margin-top: 140px;
}
.section_members .container {
}
.section_members .area {
    margin-bottom: 5.5em;
}
.section_members .area_title {
    margin-bottom: 1em;
}
.section_members .area_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: .8em;
}
.section_members .area_list_item {
    width: 120px;
    flex: 0 0 auto;
    text-align: center;
}
.section_members .area_list_item_btn {
    font-size: .888em;
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 100vh;
    color: var(--blue);
    padding: .6em 0;
    transition: .3s;
}
.section_members .area_list_item.active .area_list_item_btn {
    background-color: #2F3631;
    color: #fff;
    border: 1px solid #1E1E1E;
}
.section_members .area_list_item .btn_animation_box {
    display: inline-block;
    margin: 0 auto;
}
.section_members .staffBox {
    margin-bottom: 8em;
}
.section_members .staffBox_cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1em 5%;
}
.section_members .staffBox_cont:not(:last-child) {
    margin-bottom: 6em;
}
.section_members .staffBox_cont_titleBox {
    width: 20%;
}
.section_members .staffBox_cont_titleBox .h2 {
    font-size: 42px;
    text-align: left;
}
.section_members .staffBox_cont_titleBox .h2_jp {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: .38em;
    margin-top: .4em;
}
.section_members .staffBox_cont_list {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3em 3%;
    width: 100%;
}
.section_members .staffBox_cont_list_item {
}
.section_members .staffBox_cont_list_item_link {
    cursor: pointer;
}
.section_members .staffBox_cont_list_item .pic {
    position: relative;
}
.section_members .staffBox_cont_list_item .pic_img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
}
.section_members .staffBox_cont_list_item .pic_plus {
    width: 16%;
    height: 0;
    padding-top: 15%;
    border-radius: 50%;
    background-color: rgba(241,243,245,0.3);
    border: 1px solid var(--blue);
    position: absolute;
    right: 5%;
    bottom: 5%;
}
.section_members .staffBox_cont_list_item .pic_plus::before,
.section_members .staffBox_cont_list_item .pic_plus::after {
    content: "";
    display: inline-block;
    width: 40%;
    height: 1px;
    background-color: var(--blue);
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
.section_members .staffBox_cont_list_item .pic_plus::after {
    transform: rotate(90deg);
}
.section_members .staffBox_cont_list_item .name {
    margin-top: .5em;
}
.section_members .staffBox_cont_list_item .name_posi {
    font-size: .722em;
    margin-bottom: 1em;
}
.section_members .staffBox_cont_list_item .name_name {
    margin-bottom: .5em;
}
.section_members .staffBox_cont_list_item .name_eng {
    font-family: var(--en-pragmatica);
    font-size: .722em;
    color: var(--border-color);
}

.popup {                 /* 詳細ポップアップ*/ 
    opacity: 0;
    pointer-events: none;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.35);
    padding: 5%;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.popup.active {
    opacity: 1;
    pointer-events: auto;
}
.popup_cont {
    border-radius: 4px;
    width: 100%;
    max-width: 1200px;
    background-color: #fff;
    margin: 0 auto;
    padding: 3em 8% 6em;
}
.popup_cont_close {
    display: block;
    background-color: #2F3631;
    color: #fff;
    font-size: .888em;
    border-radius: 100vh;
    padding: 1em 2em 1em 1em;
    margin: 0 auto;
    margin-bottom: 3.5em;
}
.popup_cont_close .minus{
    display: inline-block;
    width: 15px;
    height: 1px;
    background-color: #fff;
    margin-right: 1em;
    vertical-align: super;
}
.popup_cont_figure {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2em 5%;
}
.popup_cont_figure .figure-pic {
    width: 40%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
}
.popup_cont_figcaption {
    flex: 1;
    line-height: 1;
}
.popup_cont_figcaption .intoro {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1em 5%;
/*    border-bottom: 1px solid var(--border-color);*/
    text-align: center;
    padding-bottom: .5em;
    margin-bottom: 2em;
}
.popup_cont_figcaption .intoro_posi {
    font-size: .888em;
}
.popup_cont_figcaption .intoro_area {
   
    color: var(--blue);
    font-size: 1.22em;
}
.popup_cont_figcaption .pop-name {
    font-size: 32px;
    display: flex;
    align-items: flex-end;
    gap: .3em;
    margin-bottom: .8em;
}
.popup_cont_figcaption .pop-name_jp {
}
.popup_cont_figcaption .pop-name_eng {
    font-family: var(--en-pragmatica);
    font-size: .468em;
    color: var(--border-color);
}
.popup_cont_figcaption .personality {
    font-family: var(--en-pragmatica);
    display: flex;
    align-items: center;
    gap: .3em;
    margin-bottom: 2.5em;
}
.popup_cont_figcaption .personality_tit {
    color: var(--border-color);
    margin-bottom: 2px;
    font-weight: 500;
}
.popup_cont_figcaption .personality_text {
    font-size: 1.55em;
}
.popup_cont_figcaption .sns {
    font-family: var(--en-pragmatica);
}
.popup_cont_figcaption .sns_tit {
    color: var(--border-color);
    margin-bottom: .5em;
}
.popup_cont_figcaption .sns_box {
    display: flex;
    gap: 1em 5%;
}
.popup_cont_figcaption .sns_box_cont {
}
.popup_cont_figcaption .sns_box_cont .btn {
    width: 170px;
    font-size: 14px;
    height: 54px;
    margin: 0;
}
.contact_tiktok_btn {
}
.contact_tiktok_btn_text {
}

@keyframes fadein {
    100% {
        opacity: 1;
    }
}

@media (max-width: 1080px) {
    .section_members .staffBox_cont {
        flex-direction: column;
    }
    .section_members .staffBox_cont_titleBox {
        width: 100%;
        margin-bottom: 1.3em;
    }
    .popup_cont {
        padding-bottom: 3em;
    }
    .popup_cont_figure {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section_title_box_subtitle {
        margin-right: auto;
    }
    .section_members .area_list {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .section_members {
        font-size: 15px;
        margin-top: 40px;
    }
    .section_members .area_list::-webkit-scrollbar {
        display: none; 
    }
    .section_members .staffBox_cont_list {
        grid-template-columns: repeat(3, 1fr);
    }
    
}

@media (max-width: 540px) {
    .section_members .staffBox_cont_list {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 5%;
    }
    .popup_cont_figure .figure-pic {
        width: 60%;
    }
    .popup_cont_figcaption {
        width: 100%;
    }
    .popup_cont_figcaption .intoro {
        flex-direction: column;
	margin-bottom: 1em;
    }
    .popup_cont_figcaption .pop-name {
        flex-direction: column;
        align-items: center;
    }
    .popup_cont_figcaption .personality {
        justify-content: center;
	margin-bottom: 2em;
    }
    .popup_cont_figcaption .sns_box {
        flex-direction: column;
    }
    .popup_cont_figcaption .sns_tit {
        text-align: center;
    }
    .popup_cont_figcaption .intoro_area {
    font-size: 15px;
	}
	.popup_cont_figcaption .pop-name {
    font-size: 24px;
    	}
	.popup_cont_figcaption .pop-name_eng {
        font-size: .429em;
    }
}

