@charset "UTF-8";
/*media query break point*/
/*mainBP*/
/*gHeader用*/
/* media query */
.searchBox {
  background: #fff;
  padding: 0px;
  font-family: sans-serif;
  margin-bottom: 30px;
}
.searchBox__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #9b9b7e;
  padding: 8px 25px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s;
}
@media only screen and (max-width: 721px) {
  .searchBox__header {
    padding: 5px 12px;
  }
}
.searchBox__header:hover {
  opacity: 0.8;
}
.searchBox__title {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}
@media only screen and (max-width: 721px) {
  .searchBox__title {
    font-size: 16px;
  }
}
.searchBox__toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  color: #C3BCAF;
  background: #fff;
  font-size: 35px;
  cursor: pointer;
  position: relative;
}
.searchBox__toggle::after, .searchBox__toggle::before {
  content: "";
  background: #9b9b7e;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  z-index: 1;
  width: 3px;
  height: 60%;
  transition: 0.3s;
}
.searchBox__toggle::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.searchBox__toggle.is-close::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media only screen and (max-width: 721px) {
  .searchBox__toggle {
    width: 20px;
    height: 20px;
  }
}
.searchBox__body {
  transition: all 0.3s;
  padding: 30px;
}
@media only screen and (max-width: 721px) {
  .searchBox__body {
    padding: 15px;
  }
}
.searchBox__body.is-close {
  display: none;
}

.searchRow {
  display: grid;
  grid-template-columns: min-content 1fr;
}
@media only screen and (max-width: 721px) {
  .searchRow {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.searchRow__title {
  width: 100px;
  font-weight: bold;
  font-size: 14px;
}
.searchRow__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
@media only screen and (max-width: 721px) {
  .searchRow__buttons {
    gap: 12px 14px;
  }
}
.searchRow__divider {
  position: relative;
  width: 25px;
  height: 25px;
  margin: 20px auto;
}
@media only screen and (max-width: 721px) {
  .searchRow__divider {
    margin: 16px auto;
    width: 15px;
    height: 15px;
  }
}
.searchRow__divider::before, .searchRow__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 1px;
  background: #333;
  transform-origin: center;
}
@media only screen and (max-width: 721px) {
  .searchRow__divider::before, .searchRow__divider::after {
    width: 15px;
  }
}
.searchRow__divider::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.searchRow__divider::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.filterBtn {
  padding: 6px 22px;
  border-radius: 20px;
  border: none;
  background: #F4F4ED;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}
@media only screen and (max-width: 721px) {
  .filterBtn {
    font-size: 13px;
  }
}
.filterBtn:hover {
  background: #6BCEEB;
  color: #fff;
  opacity: 0.5;
}
.filterBtn.active {
  background: #6BCEEB;
  color: #fff;
}

.searchBtn {
  display: block;
  width: 90%;
  max-width: 460px;
  margin: 30px auto 0;
  padding: 15px 40px;
  background: #6BCEEB;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}/*# sourceMappingURL=search.css.map */