@charset "UTF-8";
.srcdttable {
  width: 100%;
}

.srcdttable input[type=text]:focus, .srcdttable select:focus {
  outline: none;
  border: 1px solid #021d38;
}
.srcdttable input[type=text] {
  caret-color: #021d38;
}
.srcdttable input[type=checkbox] {
  accent-color: #021d38;
}

.cyk {
  font-size: 84%;
  color: #666;
  text-align: left;
  font-weight: normal;
}

.srcdttable-headerCell {
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}

@media (max-width: 599px) {
  .srcdttable-headerCell {
    text-align: left;
    border: none;
    padding-bottom: 0;
  }
}
.srcdttable-dataCell {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  text-align: left;
}

.srcdt input {
  margin-right: 3px;
}

@media (max-width: 599px) {
  .srcdt input.srcdtbtn {
    margin: 0 0 50px;
  }
}
.category .srcdttable-dataCell, .subcategory .srcdttable-dataCell {
  position: relative;
}
.category .srcdttable-dataCell::after, .subcategory .srcdttable-dataCell::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #021d38;
  border-bottom: 1px solid #021d38;
  transform: rotate(45deg);
  position: absolute;
  top: 40%;
  right: 10px;
  pointer-events: none;
}

.srcdtcm__select {
  color: #021d38;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.srcdttable .srcdttable-tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.srcdttable input[type=text] {
  width: 100%;
  transform: scale(1);
}

/* == シンプルパターン：typeB== */
.srcdt .flexbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.srcdt .typecr label {
  padding-left: 20px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.srcdt .typecr input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.srcdt .typecr .indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 0;
  border: 1px solid #ccc;
}

.srcdt .typecr label input:disabled ~ .indicator {
  background: #ccc;
  opacity: 0.6;
  pointer-events: none;
}

.srcdt .typecr .indicator::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  border-radius: 50%;
  background: #021d38;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s;
}

.srcdt .typecr label input:checked ~ .indicator::after {
  width: 8px;
  height: 8px;
  top: 3px;
  left: 3px;
}

.search-btn__wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 50px 0;
}
@media (min-width: 600px) {
  .search-btn__wrap {
    gap: 30px;
    margin: 100px 0;
  }
}
.search-btn__wrap .search-btn {
  text-align: center;
}
@media (max-width: 599px) {
  .search-btn__wrap .search-btn {
    flex: 1;
  }
}
.search-btn__wrap .search-btn input {
  margin: 0;
}
@media (max-width: 599px) {
  .search-btn__wrap .search-btn input {
    width: 100%;
  }
}
@media (min-width: 600px) {
  .search-btn__wrap .search-btn input {
    width: 200px;
  }
}
.search-btn__wrap .reset input {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px 0;
}
.search-btn__wrap .kensaku input {
  color: #fff;
  background: #808080;
  border-radius: 4px;
  padding: 10px 0;
}

/* == ブランド検索 == */
@media (max-width: 599px) {
  .search-brand label:nth-child(2) {
    flex-shrink: 0;
  }
  .search-brand span {
    display: inline-block;
  }
}
/* == サイズ検索 == */
.search-size {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* == カラー検索 == */
.search-color__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  row-gap: 10px;
}

.search-color label {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.search-color input {
  display: none;
}

.search-color--tip {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  position: relative;
}

.search-color input:checked + .search-color--tip::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("https://osharewalker.itembox.design/item/common/selected_check_wh.png") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.search-color.search-color--white input:checked + .search-color--tip::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("https://osharewalker.itembox.design/item/common/selected_check_gray.png") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.search-color--name {
  font-size: 1rem;
}

.search-color--white .search-color--tip {
  border: 1px solid #ccc;
}

.search-color--beige .search-color--tip {
  background: #EDE0D6;
}

.search-color--yellow .search-color--tip {
  background: #FBE000;
}

.search-color--orange .search-color--tip {
  background: #FD8422;
}

.search-color--pink .search-color--tip {
  background: #f4b3c2;
}

.search-color--red .search-color--tip {
  background: #D84545;
}

.search-color--purple .search-color--tip {
  background: #B181BE;
}

.search-color--blue .search-color--tip {
  background: #4169E1;
}

.search-color--navy .search-color--tip {
  background: #000080;
}

.search-color--green .search-color--tip {
  background: #488E46;
}

.search-color--khaki .search-color--tip {
  background: #666600;
}

.search-color--brown .search-color--tip {
  background: #99623B;
}

.search-color--gray .search-color--tip {
  background: #ccc;
}

.search-color--black .search-color--tip {
  background: #000;
}

.search-color--gold .search-color--tip {
  background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
}

.search-color--silver .search-color--tip {
  background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
}

/* == 価格検索 == */
.search-price > span {
  margin-left: 5px;
}

.search-price--min {
  position: relative;
}
@media (max-width: 599px) {
  .search-price--min {
    flex: 1;
  }
}

.search-price--max {
  position: relative;
}
@media (max-width: 599px) {
  .search-price--max {
    flex: 1;
  }
}

.alert-msg {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.alert-msg.--show {
  display: block;
  z-index: 2;
}
.alert-msg.--show + .search-price-input {
  border: 2px solid #9d2a2f !important;
}
.alert-msg span {
  color: #fff;
  font-size: 1.2rem;
  white-space: nowrap;
  background: #9d2a2f;
  border-radius: 5px;
  padding: 8px 15px;
  position: relative;
}
.alert-msg span::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #9d2a2f;
}

/* == 機能性検索 == */
.search-functional {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
  row-gap: 10px;
}
@media (min-width: 1200px) {
  .search-functional {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}