/* 機能・素材・季節ボタン追加 */
.pad-container {
  width: auto;
  margin: 40px auto 0 auto;
  padding: 20px 0;
}
.pad-category-group {
  width: 1000px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}
.pad-category-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pad-label {
  display: inline-block;
  background: #B8A361;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
  padding: 3px 14px;
  margin-right: 10px;
  letter-spacing: 1px;
}
.pad-category-name {
  font-size: 24px;
  color: #444444;
  font-weight: bold;
  letter-spacing: 2px;
}
.pad-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.pad-category-btn {
  display: inline-block;
  background: #fff;
  color: #444444;
  font-size: 12px;
  border-radius: 20px;
  padding: 10px 10px;
  width: calc((100% - 60px) / 4);
  height: 36px;
  text-align: center;
  font-weight: 500;
  position: relative;
}
.pad-category-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #444;
  border-right: 1px solid #444;
  transform: translateY(-50%) rotate(45deg);
}
.pad-season-btn {
  display: inline-block;
  background: #fff;
  color: #444444;
  font-size: 12px;
  border-radius: 24px;
  padding: 10px 10px;
  width: calc((100% - 80px) / 5);
  height: 36px;
  text-align: center;
  font-weight: 500;
  position: relative;
}
.pad-season-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #444;
  border-right: 1px solid #444;
  transform: translateY(-50%) rotate(45deg);
}
.see-all-btn {
  position: relative;
  text-align: center;
  width: 100%;
  border-radius: 68px;
  display: block;
  padding: 17px 0;
  margin: 20px 0;
  font-size: 17px;
  border-radius: 30px;
  background-color: #b8a361;
  color: #fff;
  letter-spacing: initial;
  font-weight: 600;
}
.see-all-btn::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(134deg);
  transform: rotate(134deg);
}