
// 【 prdt_styl.css 】(product style)

.product-button-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;}

.product-button-list li {margin: 0;}

.btn-cs {background-image: url("../img/icons/icon1_png/bnr_cs01.png");}
.btn-fd {background-image: url("../img/icons/icon1_png/bnr_fd01.png");}
.btn-pp {background-image: url("../img/icons/icon1_png/bnr_pp01.png");}
.btn-ms {background-image: url("../img/icons/icon1_png/bnr_ms01.png");}

// hover effect

.btn-product:hover {
  transform: scale(1.1);		// (1.1) ▲⑤
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);cursor: pointer;}

.btn-product {
  display: inline-block;
  width: 204px;				// 204px ▲③
  height: 40px;				// 40px  ▲②
  line-height: 40px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  background-size: cover;
  background-position: left;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 2px solid green;		// 2px green(枠) ▲④
  transition: transform 0.5s ease, box-shadow 0.3s ease; // 0.3s ▲①
  overflow: hidden;}

.btn-product:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 255, 0, 0.2); }

/* ================================================= */
/* 右サイドのボタン縦並びレイアウト */
#hpb-aside #banner ul.product-button-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;              /* 縦並び */
  flex-direction: column;
  gap: 26px;                  /* 12px ボタンの上下間隔 */
  align-items: flex-end;      /* 右寄せ(ボタン幅が可変でも右に沿う) */
}

/* ボタンの見た目・幅を揃える（既存 .btn-product があればそれを活かす） */
#hpb-aside .btn-product {
  display: inline-block;
  width: 240px;               /* 260px サイド幅に合わせて調整 */
  text-align: left;           /* ラベル左寄せ(お好みで) */
}

/* スクロール中もサイド上部に固定したい場合（任意） */
#hpb-aside {
  position: sticky;
  top: 16px;                  /* 上からの固定位置 */
}

