.eyecatch-caption-text {
    display: none;
}

.simplefavorite-button {
  margin-top:8px;margin-bottom:8px;
    display: inline-block;
    text-align: left;
    background-color: #f0f0f0;
    padding: 0px 10px;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
   
    /* 新しいスタイル */
    position: absolute;
    top:10px;
    right: 15px;
}


/* お気に入りボタンのアクティブ状態のスタイル */
.simplefavorite-button.active {
    background-color: rgba(255, 192, 203, 1); /* アクティブ状態の背景色を不透明なピンクに設定 */
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.7); /* より明るい白い影を追加 */
    border: 1px solid white; /* 白いボーダーを追加 */
  box-shadow: 0 0 0 2px white; /* 白い境界線風の縁取りを追加 */
}

.simplefavorite-button-count:after {
    content: " 人"; /* テキストの後ろに「人」を追加 */
}
.simplefavorite-button .fa-heart {
    margin-right: 2px; /* ハートアイコンとテキストの間隔を調整 */
}
.simplefavorite-button.active {
    opacity: 0.8; /* もっと濃くする */
}