@charset "UTF-8";


.staff-ph {
  /*position: relative;
  margin: 0 auto;*/
  max-width: 210px;
/*  height: 210px;*/
}

.triangle{
    position: absolute;
    bottom: -5px;
    left: -5px;
    border-right: 40px solid transparent;
    border-bottom: 40px solid #ED7000;
    border-top: 40px solid transparent;
    border-left: 40px solid #ED7000;
    mix-blend-mode: multiply;
}

/*========= モーダル表示のためのCSS ===============*/

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.content{
    margin: 0 auto;
    padding: 40px;
}
.box{
    background: #eee;
    height: 200px;
    margin-bottom: 100px;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
}





/* sp only */
@media (max-width: 768px) {


.staff-ph {
  width: 100%;
}

}

