/* ===================================
   ブックマーク機能 スタイル
   =================================== */

/* --- 作品一覧：ハートアイコン --- */

.bookmark-heart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin: 0 9px;
    line-height: 1;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.bookmark-heart:hover {
    opacity: 0.7;
}

.bookmark-heart .bookmark-heart__icon {
    display: block;
    width: 20px;
    height: 20px;
}

.bookmark-heart.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

/* --- 作品詳細：ブックマークボタン --- */

.bookmark-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: .8em 1.6em;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    color: #2b2b2b;
    background: #fff;
    border: 1px solid #2b2b2b;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.bookmark-button:hover {
    background-color: #f2f2f2;
}

.bookmark-button.is-bookmarked {
    background-color: #f2f2f2;
}

.bookmark-button.is-bookmarked:hover {
    background-color: #e6e6e6;
}

.bookmark-button .bookmark-button__icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 4px;
}

.bookmark-button.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

/* --- 検索フォーム：チェックボックス --- */

.work-search__bookmark {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2.2rem;
}

.work-search__bookmark input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2b2b2b;
    cursor: pointer;
}

.work-search__bookmark label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
}

.work-search__bookmark .bookmark-heart-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 4px;
    margin-bottom: 3px;
    vertical-align: middle;
}

/* --- MA NETSHOP詳細ページ：入札ボタンとブックマークボタンの間の余白 --- */

#netshop_response:not(:empty) {
    margin-bottom: 29px;
}

/* --- レスポンシブ対応 --- */

@media screen and (max-width: 767px) {
    .bookmark-heart {
        width: 24px;
        height: 24px;
    }

    .bookmark-button {
        font-size: 1.5rem;
        font-weight: 400;
        padding: .7em 1.45em;
    }

    #netshop_response:not(:empty) {
        margin-bottom: 14px;
    }
}
