ul#fascinations_list {
    width: 90%;
    margin: 20px auto;
}
ul#fascinations_list > li {
    position: relative;
    border-radius: 20px;
    background-color: #fff;
    margin-bottom: 10px;
    overflow: hidden;
    height: 110px;
}
ul#fascinations_list > li > a {
    height: 110px;
    display: flex;
    flex-direction: row;
    color: #999;
    text-decoration: none;
}
ul#fascinations_list > li > a > img {
    width: 120px;
    height: 110px;
    object-fit: cover;
}
ul#fascinations_list > li > a > div.info {
    flex-grow: 1;
    flex-shrink: 1;
    padding: 10px;
}
ul#fascinations_list > li p {
    word-break: break-all;
}
ul#fascinations_list > li p.title {
    font-weight: bold;
    font-size: 16px;
    color: rgb(125, 125, 125);
}
ul#fascinations_list > li p.contents {
    width: 100%;
    margin: 10px auto 0 auto;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
ul#fascinations_list > li p.date {
    text-align: right;
    color: #ccc;
    flex-shrink: 0;
    flex-grow: 0;
}
@media screen and (min-width: 1280px) {
    li.fascinations_list_item {
        height: 150px;
    }
    li.fascinations_list_item p.contents {
        font-size: 17px;
    }
    li.fascinations_list_item p.date {
        font-size: 15px;
    }
}
