@charset "UTF-8";
/* ① 土師ノ里店バナーだけ消す（最優先・安全） */
.bnr_3 {
  display: none !important;
}

/* ② partnerの並びを「残った3つ」で崩れないようにする */
.partner .col-md-3 {
  width: 50%;
}

@media (min-width: 992px) {
  .partner .col-md-3 {
    width: 33.3333%;
  }
}

/* ③ （任意）ヘッダー/フッターのメニューの「コンタクト工房」だけ消したい場合
   ※ “contact” で全部消さず、テキストで限定（多少環境依存） */
a.partner-item {
  /* partner-itemは残すのでここは触らない */
}
.contact-box .contact-list .contact-item:nth-child(3){
  display: none !important;
}

html {
  outline: 10px solid red !important;
}
/* ヘッダーメニュー：オンラインショップを完全に非表示 */
li.menu-item-805 {
  display: none !important;
}
header a[href="https://cstudio.official.ec/"] {
  display: none !important;
}
/* フッター内の /contact/ だけ非表示（まずはこれ） */
footer a[href*="/contact/"],
footer a[href*="contact/index.html"]{
  display:none !important;
}
/* もし footer タグでは当たらないテーマなら、下も追加（保険） */
#footer a[href*="/contact/"],
.site-footer a[href*="/contact/"],
.footer a[href*="/contact/"]{
  display:none !important;
}
/* ヘッダー＆ハンバーガー：オンラインショップ（official.ec だけ消す） */
#site-navigation a[href^="https://cstudio.official.ec/"],
#hamburger-nav a[href^="https://cstudio.official.ec/"]{
  display: none !important;
}

/* 念のため：liごと消す（余白も消える） */
#site-navigation li:has(> a[href^="https://cstudio.official.ec/"]),
#hamburger-nav li:has(> a[href^="https://cstudio.official.ec/"]){
  display: none !important;
}
/* フッター：コンタクトレンズ工房 土師ノ里だけ非表示 */
.partner .bnr_3 {
  display: none !important;
}