.prof_anchor {
    display: flex;
    justify-content: end;
    align-items: flex-start;
}

.triangle::before {
    content: "";
    position: absolute;
    top: 15px;
    right: 180px;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left: 14.5px solid #B78987;
}

.btn {
    display: block;
    text-align: right;
    position: relative;
    letter-spacing: 0.45rem;
}

.more {
    font-size: 1.2rem;
    font-weight: normal;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    padding-bottom: 0.5rem;
}
.more:after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #666;
    transform: translate(-90%, 0);
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
    content: "";
}

.content_txt:hover {
    transform: translateX(-1%);
    transition: 1s;
}
.content_txt:hover .triangle::before {
    transition: 1.5s;
    right: 75px;
    top: 15px;
    transform: translateY(-50%);
}
.staff_prof .content_txt:hover .triangle::before {
    right: 150px;
    top: 15px;
}
.content_txt:hover .more {
    transition: 1s;
    letter-spacing: 0.4rem;
}

.content_txt:hover .more:after {
    transform: translate(0, 0);
}

.sp_prof .content_txt{
  display: none;
}

li{
    list-style:none
}

h1,h2,h3,h4{
  font-weight: 400;
}

.page-contents{
  padding: 0;
}

.staffs_prof{
  margin-bottom: 100px;
}

@media(max-width:768px){
  .prof_des,
  .prof_imgs,
  .prof_imgs img{
    max-width: 100%;
    width: 100%;
  }
  .intro_top p, .sp_names p{
    padding: 5px 0 10px;
  }

  .staffs_prof{
    margin-bottom: 50px;
  }
}

.prof_wrapper{
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

@media(max-width:900px){
  .prof_wrapper{
    width: 100%;
  }
}