#photo_area {
    padding: 0 3% 5vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#photo_area .title_box {
    text-align: left;
    width: 250px;
    line-height: 110%;
    padding: 0;
}

#photo_area .title_box b {
    text-align: left;
    margin-top: 20px;
}

#photo_area >div {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#photo_area .item {
    width: calc((100%/4) - 90px);
    border: 2px solid #ab3b3a;
    padding: 30px;
    border-radius: 20px;
    margin: 10px 0;
    position: relative;
    height: 80px;
}

#photo_area .item:after {
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #b04746;
    position: absolute;
    right: -10px;
    top: calc(50% - 5px);
}

#photo_area .item:last-child:after {
    display: none;
}

#photo_area .item .top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#photo_area .item .top .right {
    width: calc(100% - 65px);
}

#photo_area .item .top .right h5 {
    color: #444444;
    font-size: 18px;
}

#photo_area .item .top .right p {
    color: #999999;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    font-style: italic;
    line-height: 100%;
}

#photo_area .item article {
    font-size: 16px;
    color: #444444;
}

#photo_area .item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
#photo_area .item:hover img{transform:scale(1.2,1.2);}
#photo_area .item:hover .right h5{color:#ab3b3a;}

@media screen and (max-width: 1440px){
    #photo_area .item{
    width: calc((100%/2) - 90px);
}   
}

@media screen and (max-width: 670px){
    #photo_area .item{
    width: calc(100%);
}
    #photo_area .item:after{border-width: 10px 10px 0 10px;border-color: #ab3b3a transparent transparent transparent;top: unset;bottom: -10px;right: calc(50% - 5px);}
}