.staff_sec01{
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px 40px;
    box-sizing: border-box;
}
.staff_sec01 .staff_container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid gray;
    margin-bottom: 40px;
}
.staff_sec01 .staff_container:last-of-type{
    padding-bottom: initial;
    border-bottom: initial;
    margin-bottom: initial;
}
.staff_sec01 .staff_container .staff_ttl{
    width: 20%;
    font-size: 20px;
}
.staff_sec01 .staff_container .staff_contents{
    width: 75%;
}
.staff_sec01 .staff_container .staff_contents .staff{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}
.staff_sec01 .staff_container .staff_contents .staff .staff_img{
    width: 170px;
}
.staff_sec01 .staff_container .staff_contents .staff .staff_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.staff_sec01 .staff_container .staff_contents .staff .staff_name{
    width: calc(100% - 200px);
    white-space: nowrap;
}
.staff_sec01 .staff_container .staff_contents .staff .staff_name .post{
    font-size: 10px;
    margin-bottom: 10px;
}
.staff_sec01 .staff_container .staff_contents .staff .staff_name .name{
    font-size: 16px;
}




.modal {
    display: none;
    position: fixed;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 60%;
    max-width: 700px;
    text-align: center;
    overflow: scroll;
    color: #fff;
    background: rgba(0,0,0,100%);
    transition: .3s;
    box-sizing: border-box;
}
.modal .modal-box {
    padding: 40px 20px;
    border-radius: 10px;
    animation-name: modalopen;
    animation-duration: 1s;
    position: relative;
}
.modal .modal-box .modalClose{
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
}
/* モーダル内側の指定 */
.modal-container{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 600px;
    width: 90%;
}
.modal_staff_container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.modal_staff_container .modal_left .modal_staff_img{
    width: 180px;
    margin-bottom: 15px;
}
.modal_staff_container .modal_left .modal_staff_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal_staff_container .modal_left .modal_staff_post{
    font-size: 10px;
    margin-bottom: 5px;
}
.modal_staff_container .modal_left .modal_staff_name{
    font-size: 16px;
}
.modal_staff_container .modal_right{
    width: 65%;
    text-align: left;
}
.modal_staff_container .modal_right .modal_staff_profile{
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid gray;
}
.modal_staff_container .modal_right .modal_staff_text{
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 20px;
}
.modal_staff_container .modal_right .modal_sns{
    display: inline;
}
.modal_staff_container .modal_right .modal_sns a img{
    width: 20px;
    height: 20px;
}


.mordal-trigers{
    display: block;
    width: 400px;
    height:50px;
    border: solid 1px gray;
    margin: 20px;
  }

  #modal-overlay{
    display: none;
    background: rgba(0, 0, 0, .5); 
    width: 100%;
    height: 100%;
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1000;
  }

  .modal-style{
    display: none;
    background: white;
    width: 350px;
    height: 430px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
  }

  .modal-style h3{
    text-align: center;
  }




.hoge-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
} 
.hoge-list>li {
    width: calc(96% / 3);
    margin-bottom: 30px;
}
.hoge-list>li:not(:nth-child(3n)) {
    margin-right: 2%;
}
.hoge-item {
    cursor: pointer;
} 
.hoge-item .img-box {
    height: 150px;
    width: 100%;
    overflow: hidden;
}
.hoge-item .img-box>img {
    transition: .3s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ttl {
    font-weight: bold;
    text-align: center;
}
.ttl:hover .img-box>img{
    transform: scale(1.05);
}
.modal-block {
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}
.modal-block .img-section {
    width: 60vw;
    height: 60vh;
    position: relative;
    margin: 0 auto;
}
.modal-block .img-section span {
    position: absolute;
    transform: translate(50%, -50%);
    top: 0;
    right: 0;
    cursor: pointer;
}
.modal-block .img-section span::before {
    content: "";
    width: 30px;
    height: 30px;
    background: red;
    border-radius: 50%;
    display: block;
}
.modal-block .img-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-block .img-section .caption {
    font-size: 20px;
    letter-spacing: .09em;
    color: #fff;
    margin-top: 10px;
    text-align: center;
}


@media screen and (max-width:768px){
    .modal {
        height: 75%;
    }
    .staff_sec01 .staff_container .staff_ttl {
        width: 100%;
        margin-bottom: 20px;
        font-size: 16px;
    }
    .staff_sec01 .staff_container .staff_contents {
        width: 100%;
    }
    .staff_sec01 .staff_container .staff_contents .staff .staff_img {
        width: 150px;
    }
    .staff_sec01 .staff_container .staff_contents .staff .staff_name {
        width: calc(100% - 165px);
    }
    .modal_staff_container .modal_left{
        width: 100%;
        margin-bottom: 15px;
    }
    .modal_staff_container .modal_left .modal_staff_img{
        margin: 0 auto 15px;
    }
    .modal_staff_container .modal_right {
        width: 100%;
    }
}