
// 【 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;				// 200px ▲③
  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); }
