/*全体レイアウト*/
.page_profile .box_listDiary .list_diary .box_diary {
    position: relative;
}

@media only screen and (min-width : 769px) {
    .page_profile .box_listDiary{
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;

        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}


.page_profile .box_listDiary {
    width: 100%;
}

.page_profile .box_listDiary .list_diary {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page_profile .box_listDiary .li_diary {
    margin-bottom: 0.5em;
}

@media only screen and (min-width : 769px) {
    .page_profile .box_listDiary .li_diary:nth-child(n+5) {
        display: none;
    }
}

/*写真*/
.page_profile .box_listDiary .list_diary .box_diary--photo {
    position: relative;
    width: 100%;
}
.page_profile .box_listDiary .list_diary .box_diary--photo:before {
    content:"";
    display: block;
    padding-top: 100%;
}
.page_profile .box_listDiary .list_diary .box_diary--photo .box_img {
    /* position: relative;
    width: 100%;
    height: 100%;
    overflow:hidden; */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    
    width: 100%;
    height: 100%;
    overflow:hidden;

    border-radius: 50%;
}

.page_profile .box_listDiary .list_diary .box_diary--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow:hidden;
    border-radius: 50%;
}

/*アイコン 新人*/
.page_profile .box_listDiary .list_diary .icon_list--new {
    display: block;
    position: absolute;
    width: 20%;
    max-width: 15px;
    top: 5px;
    left: 5px;
}

.page_profile .box_listDiary .list_diary .icon_list--new img {
    width: 100%;
}

/*テキスト*/
.page_profile .box_listDiary .list_diary .box_diary--inf {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: rgb(255 253 253 /70%);
    color: var(--c_blk);
    /* text-align: center; */
    text-align: left;
    /* padding-top: 0.25em;
        padding-bottom: 0.25em; */
    padding: 0.25em;
    line-height: 1;
}

@media only screen and (min-width : 769px) {
    /* .page_profile .box_listDiary .list_diary .box_diary--inf {
        background-color: rgb(0, 0, 0, 0.7);
        color: var(--c_white);
    } */
}


.page_profile .box_listDiary .box_diary--inf .box_txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

}

/* @media only screen and (min-width : 769px) {
        .page_profile .box_listDiary  .box_diary--inf .box_txt {}
    } */

/*-テキスト-デフォルト-*/
.page_profile .box_listDiary .box_diary--inf .txt {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-size: var(--fs_n);
    line-height: 1.1em;
}

@media only screen and (min-width : 769px) {
    .page_profile .box_listDiary .box_diary--inf .txt {
        font-size: var(--fs_s);
        line-height: 1.2em;
    }
}

.page_profile .box_listDiary .box_diary--inf .txt--name--age,
.page_profile .box_listDiary .box_diary--inf .txt--ttl,
.page_profile .box_listDiary .box_diary--inf .txt--update {
    display: block;
}

.page_profile .box_listDiary .box_diary--inf .txt--name,
.page_profile .box_listDiary .box_diary--inf .txt--age {
    display: inline;
}

.page_profile .box_listDiary .box_diary--inf .txt--ttl {
    font-size:var(--fs_s);
}



@media only screen and (min-width : 769px) {
    /* .page_profile .box_listDiary .box_diary--inf .txt--latest {
        color: var(--c_white);
        font-size: var(--fs_s);
    } */
}