@charset "UTF-8";
/* 検索パーツCSS */
.searchAnchor__title {
  margin: 0 0 32px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  color: #000;
  text-align: center;
  letter-spacing: 1.5px;
}

.searchAnchor__link > a {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: start;
  justify-content: center;
  width: 80%;
  height: 66px;
  padding: 12px 10px 8px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
  color: #666;
  text-align: center;
  background-color: #fff;
  border: 1px solid #747474;
  transition: 0.2s;
}

.searchAnchor__link > a:hover {
  color: #ffffff;
  text-decoration: none;
  background: #747474;
}

.searchAnchor__link > a::after {
  position: absolute;
  bottom: 12px;
  width: 7px;
  height: 7px;
  content: "";
  border: 0;
  border-right: solid 1px #666;
  border-bottom: solid 1px #666;
  transform: rotate(45deg);
}

.searchAnchor__link > a:hover::after {
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
}

.searchAnchor__link__img {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  margin-right: 4px;
  background-image: url(https://brandavenue.r10s.jp/img/library/contents/sale/20230809/search.png);
  background-size: contain;
}

.searchAnchor__link > a:hover > .searchAnchor__link__img {
  background-image: url(https://brandavenue.r10s.jp/img/library/contents/sale/20230809/search_white.png);
}

.keywordSearch {
  width: 528px;
  padding: 16px;
  margin: 0 auto 64px;
}

.keywordSearch__title {
  padding-top: 64px;
  margin-bottom: 32px;
}

.keywordSearch__title > h2 {
  font-size: 35px;
  font-weight: 600;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.05em;
}

input[type=radio] {
  display: none;
}

.gender,
.discount_rate_lower,
.fixed_price_upper {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}

.gender {
  margin-bottom: 24px;
}

.gender > label {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  width: 30%;
  height: 56px;
  margin-right: 8px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 2px;
}

.gender > label:hover {
  color: #393e44;
  background: #f2f2f4;
}

.gender > label:last-child {
  margin-right: 0;
}

.fixed_price_upper > label,
.discount_rate_lower > label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23%;
  height: 56px;
  margin-bottom: 6px;
  margin-left: 6px;
  font-size: 14px;
  border-radius: 2px;
}

.fixed_price_upper > label:hover,
.discount_rate_lower > label:hover {
  font-weight: bold;
  color: #393e44;
  background: #f2f2f4;
}

.fixed_price_upper > label[for=fpudefault],
.discount_rate_lower > label[for=drldefault] {
  font-size: 13px;
}

input[type=radio] + label {
  box-sizing: border-box;
  color: #393e44;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
}

input[type=radio]:checked + label {
  font-weight: bold;
  color: #393e44;
  background: #f2f2f4;
}

.selectWrap {
  position: relative;
}

.selectWrap::after {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 7px;
  height: 7px;
  margin-top: -6px;
  content: "";
  border: 0;
  border-right: solid 1px #69767b;
  border-bottom: solid 1px #69767b;
  transform: rotate(45deg);
}

.selectWrap__category {
  width: 100%;
  padding: 8px 16px;
  font-size: 13px;
  color: #000;
  appearance: none;
  cursor: pointer;
  outline: none;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 2px;
}

.selectWrap__category:focus {
  border: 1px solid #393e44;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #d2d3d5;
}

.wrapper--noborder {
  border-bottom: none;
}

.wrapper > label {
  width: 20%;
  font-size: 16px;
}

.wrapper > div {
  width: 80%;
}

.submitBtn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  background-color: #333;
  border: none;
  border-radius: 2px;
}

.submitBtn:focus {
  color: #fff;
}