@charset 'UTF-8';
.map-search-box {
  width: 100%;
  margin: 0 0 60px 0;
}
.map-search__inner {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
}
.map-search__list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1050px;
  width: 90%;
  margin: 0 auto 15px;
}
.map-search__item {
  margin: 0 15px 0 0;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 500;
}
.map-search__item:last-child {
  margin: 0;
}
.map-search__label {
  display: block;
  position: relative;
  cursor: pointer;
}
.map-search__checkbox {
  visibility: hidden;
  position: absolute;
  z-index: -1;
  appearance: none;
  cursor: pointer;
}
.map-search__checker {
  padding: 0 0 0 25px;
}
.map-search__checker::before {
  content: '';
  display: block;
  position: absolute;
  top: 18px;
  left: 35px;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  background: #ddd;
  transform: translateY(-50%);
}
.map-search__checker::after {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  top: 20%;
  left: 42px;
  width: 20px;
  height: 10px;
  border-bottom: 3px solid #e55405;
  border-left: 3px solid #e55405;
  transform: rotate(-45deg);
  transition: 0.3s ease-in-out;
}
.map-search__checkbox:checked + .map-search__checker::after {
  opacity: 1;
}
.map-search__google {
  max-width: 1050px;
  padding: 0 15px;
  margin: 0 auto;
}
#neighborhoodMap {
  aspect-ratio: 16 / 9;
}
@media screen and (max-width: 767px) {
  .map-search .page-title {
    max-width: 10rem;
  }
  .map-search__list {
    display: block;
  }
  .map-search__item {
    margin: 0 0 5px 0;
    padding: 0;
    font-size: 1.25rem;
  }
  #neighborhoodMap {
    aspect-ratio: 1 / 1;
  }
}
