@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* reCAPTCHAバッジを非表示 */
.grecaptcha-badge {visibility: hidden;}

/* --------------------------------------- サイドバー出し分け --------------------------------------- */
.sidebar_block h2,
.sidebar_block .p-postList .p-postList__title { font-weight: normal; }
.sidebar_block .p-postList__meta { display: none; }

/* 1. 一旦すべて非表示 */
.sidebar_news,
.sidebar_blog,
.sidebar_item {
    display: none !important;
	background: #EFEAE2;
}

/* 2. お知らせ（ID 1 / news）｜アーカイブ＋記事 */
#body_wrap.category-news .sidebar_news,
#body_wrap:has(.c-categoryList__link[data-cat-id="1"]) .sidebar_news {
    display: block !important;
    margin-top: 1rem;
}

/* 3. ブログ（ID 2 / blog）｜アーカイブ＋記事 */
#body_wrap.category-blog .sidebar_blog,
#body_wrap:has(.c-categoryList__link[data-cat-id="2"]) .sidebar_blog {
    display: block !important;
    margin-top: 1rem;
}

/* 4. 商品紹介（item_cat）｜アーカイブ・カテゴリー別・個別記事すべて */
#body_wrap.post-type-archive-item .sidebar_item,
#body_wrap.tax-item_cat .sidebar_item,
#body_wrap.single-item .sidebar_item {
    display: block !important;
    margin-top: 1rem;
}

/* 5. SP（960px以下）は全サイドバー非表示 ※出すならこのブロックごと削除 */
@media screen and (max-width: 960px) {
    #body_wrap.category-news .sidebar_news,
    #body_wrap:has(.c-categoryList__link[data-cat-id="1"]) .sidebar_news,
    #body_wrap.category-blog .sidebar_blog,
    #body_wrap:has(.c-categoryList__link[data-cat-id="2"]) .sidebar_blog,
    #body_wrap.post-type-archive-item .sidebar_item,
    #body_wrap.tax-item_cat .sidebar_item,
    #body_wrap.single-item .sidebar_item {
        display: none !important;
    }
}

/* 商品アーカイブ一覧：縦長画像が切れないよう全体表示にする */
#body_wrap.post-type-archive-item .c-postThumb__img,
#body_wrap.tax-item_cat .c-postThumb__img {
    object-fit: contain !important;
}

/* 商品記事ページ覧：デフォルト関連記事削除 */
#body_wrap.single-item .l-articleBottom__section.-related {
    display: none !important;
}