.title_kv:after{
    content:"運営スタッフの紹介";
}
.staff_detail{
    display:flex;
    width:100%;
    max-width:1000px;
}
.staff li{
    display:flex;
    justify-content:center;
    align-items:center;
}
.staff li:nth-child(even){
    background-color:var(--base-color);
}
.label1,
.label2{
    display:flex;
}
.label1 p,
.label2 p{
    display:flex;
    justify-content:center;
    align-items:center;
}
.label1 p:first-of-type,
.label2 p:first-of-type{
    display:flex;
    padding:10px;
    margin-right:20px;
    width:100%;
    max-width:170px;
    text-align:center;
    background-color:var(--base-color);
}
.staff li{
    padding-bottom:30px;
}
.staff li:nth-child(even) .label1 p:first-of-type,
.staff li:nth-child(even) .label2 p:first-of-type{
    background-color:#fff;
}
.staff_right{
    margin-right:30px;
}
.staff_right h1{
    margin-top:30px;
}
.staff_right h1,
.staff_right .staff_intro{
    margin-bottom:30px;
}
.label1{
    margin-bottom:10px;
}
.staff_img{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    width:400px;
    height:320px;
}
.staff_img img{
    display:block;
    width:100%;
}
.staff_name{
    position:absolute;
    right:0;
    padding:10px 40px 10px 40px;
    bottom:30px;
    color:#fff;
    font-weight:bold;
    background-color:var(--main-color);
}
@media screen and (max-width:1000px){
    .staff_detail{
        width:95%;
        flex-wrap:wrap;
        justify-content:center;
        align-items:center;
    }
    .staff_name{
        bottom:0;
    }
}
@media screen and (max-width:600px){
    .staff_right h1{
        font-size:16px ;
    }
    .label1,
    .label2{
        display:block;
    }
    .label1 p,
    .label2 p{
        display:block;
        margin-top:10px;
        padding-left:15px;
    }
    .label1 p:first-of-type,
    .label2 p:first-of-type{
        max-width:none;
    }
    .staff_img{
        height:auto;
        margin-top:10px;
    }
    .staff_name{
        bottom:-10px;
    }
}