.area-search {
  background-color: #6c6d70;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  margin: 0 0 2rem;
}
.area-search h2 {
  color: #fff;
}
.area-search__title {
  width: 100%;
  color: #fff !important;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  border: none;
  padding: 0.25rem 0;
  justify-content: center;
  margin: 0;
  align-items: center;
  gap: 0.5rem;
}
.area-search__title-icon {
  display: inline-block;
}
.area-search__title-icon:before {
  display: block;
  font-style: normal;
  font-size: 1.125rem;
  content: "\e911";
  font-family: "iconmeta";
}
.area-search__body {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.area-search__select {
  width: 22.9%;
  background-color: #fff;
  border-radius: 4px;
  padding: 0rem 1.5rem;
  color: #57585a;
  font-size: 1.125rem;
  position: relative;
  padding-right: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.area-search__select-check {
  width: 100%;
  height: 100%;
  position: absolute;
  border: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  margin: 0;
  background: transparent !important;
}
.area-search__select-check:checked ~ .area-search__options {
  max-height: 1000px;
  opacity: 1;
  padding: 1rem;
}
.area-search__select-icon {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  pointer-events: none;
}
.area-search__select-icon:before {
  display: block;
  font-style: normal;
  font-size: 1rem;
  content: "\e900";
  font-family: "iconmeta";
}
.area-search__options {
  border: 2px solid #57585a;
  background-color: #fff;
  top: 100%;
  left: 0;
  width: 100%;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  opacity: 0;
  transition: max-height 0.25s;
  z-index: 99;
}
.area-search__option {
  flex-basis: calc((100% - 0.5rem) / 2);
  text-align: left;
  text-decoration: underline !important;
  color: #6c6d70;
  font-size: .8rem;
  display: block;
  transition: 0.15s;
}
.area-search__option:hover {
  opacity: 0.85;
}

@media screen and (max-width: 768px) {
  .area-search__body {
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .area-search__select {
    flex-basis: calc((100% - 1.5rem) / 2);
    flex-grow: 0;
  }
  .area-search {
    padding: .5rem;
    gap: .5rem;
  }
  .area-search__select {
    font-size: .9rem;
  }
}