/*----------------------------------------------------------

setting

----------------------------------------------------------*/
/*----------------------------------------------------------

mixin

----------------------------------------------------------*/
.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/* common_label  */
.common_label {
  background-color: #EFEFEF;
  padding: 36px 50px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .common_label {
    padding: 27px 35px;
  }
}
.common_label_container {
  max-width: 710px;
  width: 100%;
  margin-inline: auto;
}
.common_label_btnLists {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .common_label_btnLists {
    flex-direction: column;
  }
}
.common_label_btnList {
  width: 280px;
  height: 46px;
  max-width: 100%;
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (max-width: 768px) {
  .common_label_btnList {
    width: 360px;
    margin-inline: auto;
  }
}
.common_label_btnList:last-child {
  margin-left: 30px;
}
@media only screen and (max-width: 768px) {
  .common_label_btnList:last-child {
    margin-top: 25px;
    margin-left: 0;
    margin-inline: auto;
  }
}
.common_label_btnLabel {
  width: 90px;
  max-width: 100%;
  margin-left: 25%;
  height: 100%;
  position: relative;
  z-index: 2;
  aspect-ratio: 90/28;
  transition: all 0.3s ease 0s;
}
.common_label_btnLabel img {
  height: auto;
}
.common_label_btnLink {
  color: #0E9352;
  font-weight: 700;
  margin-top: -18px;
  background-color: #FFF;
  padding: 10px;
  display: block;
  transition: all 0.3s ease 0s;
}
.common_label_btnLink:hover {
  box-shadow: 0 2px 0 #0A6D3D;
  transform: translateY(2px);
}
.common_label_btnLink:hover + .common_label_btnLabel {
  transform: translateY(2px);
}
.common_label_btnLink::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  right: 23px;
  transform: rotate(135deg) translateY(-50%);
  transform-origin: top;
  top: 47%;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .common_label_btnLink::before {
    right: 18px;
  }
}
.common_label_btnLink::after {
  content: "";
  position: absolute;
  background: #0E9352;
  border-radius: 23px;
  width: 23px;
  height: 23px;
  right: 15px;
  transform: translateY(-50%);
  transform-origin: top;
  top: 50%;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .common_label_btnLink::after {
    right: 10px;
  }
}

.search {
  margin-top: 100px;
  background-color: #0e9352;
  padding-block: 100px;
}
@media only screen and (max-width: 768px) {
  .search {
    margin-top: 47px;
    padding-block: 80px;
    padding-inline: 10px;
  }
}
.search .search_headGroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.search .search_headline_sub {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #0e9352;
  opacity: 0.5;
  text-transform: capitalize;
}
.search .search_headline_sub.--white {
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .search .search_headline_sub {
    font-size: 13px;
  }
}
.search .search_headline {
  font-weight: bold;
  font-size: 42px;
  letter-spacing: 0.03em;
  line-height: 1.4523809524;
  text-align: center;
  color: #333;
}
@media only screen and (max-width: 768px) {
  .search .search_headline {
    font-size: 36px;
  }
}
.search .search_headline.--white {
  color: #ffffff;
}
.search_inner {
  width: min(100%, 1000px);
  padding-inline: 20px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .search_inner {
    padding-inline: 16px;
  }
}
.search_filters {
  margin-top: 26px;
}
@media only screen and (max-width: 768px) {
  .search_filters {
    margin-top: 40px;
  }
}
.search_head {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .search_head {
    text-align: center;
  }
}
.search_filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .search_filter-list {
    gap: 8px;
    margin-top: 10px;
  }
}
.search_filter-item {
  width: calc(20% - 8px);
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-align: center;
  color: #0e9352;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 12px;
  transition: 0.3s ease;
  box-shadow: 0px 4px 0px #0a6d3d;
  cursor: pointer;
}
@media (any-hover: hover) {
  .search_filter-item:hover {
    box-shadow: none;
    translate: 0 4px;
  }
}
@media only screen and (max-width: 768px) {
  .search_filter-item {
    width: calc(50% - 4px);
  }
  .search_filter-item:first-child {
    width: 100%;
  }
}
.search_filter-item[aria-pressed=true] {
  background-color: #9cceb5;
  box-shadow: 0px 2px 0px #0a6d3d;
}
@media (any-hover: hover) {
  .search_filter-item[aria-pressed=true]:hover {
    box-shadow: 0px 2px 0px #0a6d3d;
    translate: 0 0px;
  }
}
.search_category {
  margin-top: 40px;
}
.search_sort {
  border-top: 1px solid #cccccc;
  padding-top: 20px;
  margin-top: 20px;
}
.search_btn {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.search_submit::before {
  display: none;
}/*# sourceMappingURL=search.css.map */