/* 新規作成 @SC 2025/10/28 #10495 お気に入りボタン デザイン変更 */

.favorite-button {
    display: flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: transparent;
    white-space: nowrap;
    cursor: pointer;
}

.favorite-text {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.favorite-icon {
    width: 20px;
    height: auto;
    display: none;
}

.favorite-icon.is-show {
    display: block;
}
