﻿
/* バリエーション表を非表示 */
.p-product-set {
  display: none !important;
}
/* 既存問合せ非表示 */
#bottom-select-cart .__contact-link:not(.contact-row){
  display:none;
}

/* 既存カートボタンを非表示（form内だけ） */
form[name="setForm"] .__add-cart {
  display: none !important;
}

/* 税注意を非表示（任意） */
.__tax-included-price-caution {
  display: none !important;
}

/* カートに入れるボタン左寄せ */
#bottom-select-cart .__add-cart {
  text-align: left !important;
}

/* 商品詳細エリアにある既存価格（2つ目）を非表示 */
.__secondary .__spec .price--box {
  display: none !important;
}
/* ===============================
   上部カート：問い合わせ横並び
=============================== */

#bottom-select-cart .contact-row{
  display:flex;
  align-items:center;
  gap:10px; /* ← ボタンとの間隔 */
  margin-top:10px;
}

#bottom-select-cart .contact-note{
  font-size:14px;
  line-height:1.4;
}
/* ===============================
   上部カート：カートを見るリンク
=============================== */

#bottom-select-cart .view-cart-link{
  width:233px;
  margin-left:auto;
}

#bottom-select-cart .view-cart-link a{
  font-size:14px;
  text-decoration:none;
  color:#333;
}

#bottom-select-cart .view-cart-link a:hover{
  text-decoration:underline;
}

/* ===============================
   上部カート：ボタン横リンク
=============================== */

#bottom-select-cart .cart-row{
  display:flex;
  align-items:center;   /* ← 縦中央 */
  gap:10px;             /* ← 間隔10px */
  margin-bottom:10px;
}

#bottom-select-cart .view-cart-inline{
  font-size:14px;
  text-decoration:none;
  color:#333;
  white-space:nowrap;
}

#bottom-select-cart .view-cart-inline:hover{
  text-decoration:underline;
}

/* 元からある「お問い合わせ」だけ非表示 */
form[name="setForm"] > .__contact-link {
  display: none !important;
}

/* ===============================
   スマホ：サイズ・仕様も強制縦並び
=============================== */

@media (max-width:768px){

  /* サイズ・数量の親divをすべて縦にする */
  #bottom-select-cart div[style*="display:flex"]{
    flex-direction:column !important;
    align-items:stretch !important;
    margin-bottom:12px !important;
  }

  /* ラベルを上に */
  #bottom-select-cart div[style*="display:flex"] > label{
    display:block !important;
    margin:0 0 6px 0 !important;
  }

  /* セレクトを全幅 */
  #bottom-select-cart select{
    width:100% !important;
  }

}
/* ===============================
   スマホ：ボタン下にテキスト配置
=============================== */

@media (max-width:768px){

/* ボタンエリア全体を縦並び */
  #bottom-select-cart .cart-row{
    flex-direction:column !important;
    align-items:stretch !important;
    gap:8px !important;
  }

  /* 問い合わせボタンをブロック化 */
  #bottom-select-cart .__contact-link{
    display:block !important;
    width:100% !important;
    margin-top:8px !important;
    text-align:left !important;
  }

  /* スマホ：カートボタン内部padding修正 */

  #bottom-select-cart .__add-cart{
    padding-left:0 !important;
    padding-right:0 !important;
  }


  /* 31以上テキストも強制改行 */
  #bottom-select-cart .contact-note{
    display:block !important;
    width:100% !important;
    margin-top:8px !important;
  }


}

