.RecentConsultingsListContainer {
    display: grid;
    gap: 15px;
}

.RecentConsultingsListContainer .ListCard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    width: 100%;
    padding: 10px;
    text-decoration: none;
    color: #333;
    background-color: #ffffffcc;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    transition: all 0.2s;
}
.RecentConsultingsListContainer .EmptyCard {
    display: grid;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px 10px;
    text-decoration: none;
    color: #555;
    background-color: #fff;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.RecentConsultingsListContainer .ListCard:hover {
    background-color: #fff;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
}

.RecentConsultingsListContainer .ListCard .ListCard_Client {
    padding: 10px 15px;
    display: grid;
    grid-auto-rows: min-content;
    gap: 5px;
}

.RecentConsultingsListContainer .ListCard .ListCard_Client .Title {
    width: 100%;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
}
.RecentConsultingsListContainer .ListCard .ListCard_Client .Content {
    width: 100%;
    font-size: 0.8em;
    color: #555;
}
.RecentConsultingsListContainer .ListCard .ListCard_Client .DateTime {
    width: 100%;
    font-size: 0.7em;
    color: #999;
}

.RecentConsultingsListContainer .ListCard .ListCard_PatentAttorney {
    padding: 10px 15px;
    display: grid;
    gap: 8px;
}

.RecentConsultingsListContainer .ListCard .ListCard_PatentAttorney .ContentArea {
    width: 100%;
    display: grid;
    align-items: center;
    padding: 8px;
    background-color: #f5f5f5;
    border-radius: 5px;
}
.RecentConsultingsListContainer .ListCard .ListCard_PatentAttorney .Content {
    width: 100%;
    grid-area: 1/1/2/2;
    font-size: 0.8em;
    text-align: justify;
}
.RecentConsultingsListContainer .ListCard .ListCard_PatentAttorney .OverflowShader {
    grid-area: 1/1/2/2;
    width: fit-content;
    justify-self: end;
    align-self: end;
    padding: 0px 0px 0px 30px;
    font-size: 0.75em;
    line-height: 1.3;
    text-decoration: none;
    color: var(--PrimaryButtonColor);
    background: linear-gradient(90deg, transparent 0%, #f5f5f5 25px, #f5f5f5);
}

/* 相談に回答がない場合 */
.RecentConsultingsListContainer .ListCard .ListCard_PatentAttorney .EmptyMessageBox {
    width: 100%;
    height: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 8px;
    background-color: #f5f5f5;
    border-radius: 5px;
    font-size: 15px;
    color: #777;
}

.RecentConsultingsListContainer .More {
    text-align: center;
    font-size: 15px;
    color: var(--PrimaryButtonColor);
    background-color: #f5f5f5;
}