/* <br>以降のテキストを消す */
.attribImg br,
.attribImg {
  display: block;
}

.attribImg {
  font-size: 0;   /* 中のテキストを視覚的に隠す */
}
.attribImg {

  margin: 5px;
}


/* プルダウン（select） */
select {
  cursor: pointer;
}

/* ラジオボタン */
input[type="radio"] {
  cursor: pointer;
}

/* チェックボックスも同様にする場合 */
input[type="checkbox"] {
  cursor: pointer;
}


/* ラジオボタン */
input[type="radio"] {
  transform: scale(2);        /* 2倍に拡大 */
  -webkit-transform: scale(2);
  margin-right: 8px;
  cursor: pointer;
}

/* ラジオボタンに関連する画像も指マーク */
input[type="radio"] + img,
label img,
.attribImg img a {
  cursor: pointer;
}


#productAttributes {
  padding: 5px 0 0 30px;
  background: #e6e6e6;
  width: auto; /* デフォルトはPC用に任せる */
}

/* スマホ用（768px以下を想定） */
@media screen and (max-width: 768px) {
  #productAttributes {
    width: 100% !important;
    padding: 5px;   /* 左の30px余白をリセットして中央寄せに */
    box-sizing: border-box; /* はみ出し防止 */
  }
}


h4.optionName {
  font-size: 1.1em;
  line-height: 1.5em;
  /*margin: 1% 30px 0 30px;*/
  padding: 0;
}
h4.optionName {
  font-size: 1.2em;
  color: #F00;
  /*background-color :#FF9;*/
  margin-bottom: 7px;
}

.attribsSelect,
.attribsInput {
  display: block;
  width: 100%;
  box-sizing: border-box; /* パディングも含めて100%に収める */
  background-color: #00cbae;
  color: #FFF;
  font-size: 0.9em;
  padding: 3px 20px 3px 5px;
  margin: 0; /* マイナス指定を削除 */
  border: none; /* 必要に応じて追加 */
}


.wrapperAttribsOptions {
	padding :0;
	margin :0;
}
.optionBlock {
  float: left;
  min-width: 460px;
  width: auto !important;
  width: 460px;
  /*min-height:170px;*/
  height: auto !important;
  /*height: 170px;*/
  margin-top: 1em;
  /*font-size: 1.1em;*/
}



.attributesComments {
  font-weight: normal;
}
.wrapperAttribsOptions select {
  width: 100%;
}

#productDescription {
  padding: 0.5em;
  clear: both;
  /*margin: 20px 0;*//**/
  line-height: 150%;
}

@media screen and (max-width: 768px) {
  select {
    -webkit-appearance: none; /* iOS Safari の標準装飾を消す */
    appearance: none;
    background-color: #ffffff; /* 白背景 */
    color: #333;              /* 文字は濃いグレー */
    border: 1px solid #ccc;   /* 細い罫線 */
    border-radius: 20px;       /* 角丸 */
    padding: 8px 12px;
    font-size: 18px;
    line-height: 1em;
    box-sizing: border-box;
  }

  /* フォーカス時の強調（任意） */
  select:focus {
    border-color: #66afe9;
    box-shadow: 0 0 4px rgba(102, 175, 233, 0.4);
    outline: none;
  }
	
}

/* カート部分が固定で被るので、下に余白を追加 */
/* 共通スタイル */
/* 固定カートバー 共通 */
#cart-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #ccc;
  z-index: 9999;
  padding: 10px;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

#cart-fixed .cart-fixed-inner {
  display: flex;
  justify-content: space-between; /* PCは左右に分配 */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
  flex-wrap: wrap; /* レイアウト崩れ防止 */
}

/* 価格を大きく */
#cart-fixed .cart-price {
  font-size: 28px;
  font-weight: bold;
  color: #d32f2f;
  white-space: nowrap;
  margin: 0;
}

/* 「カートに入れる個数」ラベル */
#cart-fixed .cart-qty-label {
  font-size: 14px;
  white-space: nowrap;
  margin-right: 4px;
}

/* 数量枠（PC/SP共通で2文字幅） */
#cart-fixed input[name="cart_quantity"],
#cart-box input[name="cart_quantity"] {
  width: 2em;
  text-align: center;
  padding: 0px;
	font-size: 0.8em;
}

/* ボタン部分 */
#cart-fixed .cart-button {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto; /* PCでは右端へ */
}

#cart-fixed .cart-button button,
#cart-fixed .cart-button input[type="submit"] {
  background: #ffffff;
  border: none;
  padding: 0;
  cursor: pointer;
}

#cart-fixed .cart-button button img {
  width: auto;
  height: auto;
  display: block;
  background: #ffffff;
}

/* 本文が隠れないように */
body {
  padding-bottom: 120px;
}

/* --- スマホ調整 --- */
@media screen and (max-width: 768px) {
  #cart-fixed .cart-fixed-inner {
    flex-direction: column;
    align-items: center;
    gap: 1px;
  }

  #cart-fixed .cart-price {
    font-size: 20px;
    text-align: center;
    margin-bottom: -10px;
  }

  #cart-fixed .cart-button {
    display: block;
    width: 100%;
    text-align: center;
    margin-left: 0;
  }

  #cart-fixed .cart-qty-label {
    display: block;
    margin-bottom: 2px;
    font-size: 10px;
  }

  #cart-fixed .cart-button button img {
    max-width: 90%;
    margin: 0 auto;
    height: auto;
  }

  /* 数量ボックスを小さく */
  #cart-fixed .cart-button input[type="text"],
  #cart-fixed .cart-button input[type="number"] {
    height: 18px;       /* 縦サイズを約半分に */
    font-size: 12px;    /* 文字も小さめに */
    padding: 1px 1px;   /* 内側余白も最小限 */
    width: 45px;        /* 横幅も調整するとバランス良い */
    text-align: center;
	    margin-bottom: -1px;   /* ここで位置を10px下げる */
  }

}


/*ここまで*/


#productPrices,
#cartAdd {
  display: none !important;
}


  #navBreadCrumb {
    display: none !important;
  }


.categoryImg {
  text-align: center;   /* 内部のインライン要素（img）を中央寄せ */
}
.categoryImg img {
  display: inline-block; /* inline-blockにすると text-align が効きやすい */
}

