.am-cast-image img{
    width:100%;
    display:block;
}

.am-cast-image{
    position: relative;
}

.am-cast-icon img {
    display: block;
    max-width: 30px;
    height: auto;
    background: #111111;
    padding: 5px;
    opacity: 0.8;
}

.am-cast-name{
    font-size:0.9rem;
}

.am-cast-body {
    min-height: 1rem;
    display: flex;
}

.am-cast-icon {
    width: 90%;
    position: absolute;
    bottom: 12%;
    left: 87%;
    max-width: 30px; /* アイコンのサイズを指定 */
    height: 30px; /* アイコンの高さを指定 */
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* メディアクエリはそのまま保持 */
@media (max-width: 750px) {
    .am-cast-icon {
        bottom: 21%;
        left: 78%;
        right: 0;
    }
}