/* category
======================================= */
@media (max-width: 1024px) {
  .category__area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.category__area-upper-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6px;
}
@media (max-width: 1024px) {
  .category__area-upper-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 120px;
  }
}
.category__area-upper-item {
  width: 12.5%;
  color: #fff;
  text-align: center;
  font-weight: 600;
  background-color: #ccc;
  border-radius: 5px 5px 0 0;
  padding: 5px;
}
@media (max-width: 1024px) {
  .category__area-upper-item {
    width: 100%;
    height: 55px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 5px 0 0 5px;
  }
}
.category__area-upper-item.is-active {
  background-color: #fff;
  color: #007CCF;
}
@media (max-width: 1024px) {
  .category__area-lower-list {
    height: 100%;
  }
}
.category__area-lower-item {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 2.25em 1em;
}
@media (max-width: 1024px) {
  .category__area-lower-item {
    border-radius: 0 10px 10px 0;
    -webkit-box-shadow: inherit;
            box-shadow: inherit;
    height: 100%;
  }
}
.category__area-lower-item-prefectures {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.25rem;
  font-weight: 500;
}
.category__area-lower-item-prefecture {
  background-color: #E6F5FF;
  color: #007CCF;
  font-weight: 500;
  border-radius: 5px;
  padding: 2.5px 8.2px;
  cursor: pointer;
}
.category__area-lower-item-prefecture.is-current {
  background-color: #007CCF;
  color: #fff;
}

/* a-area
======================================= */
.a-area {
  background-color: #fff;
}
.a-area__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5em 5%;
}
@media (max-width: 1024px) {
  .a-area__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .a-area__list {
    max-width: 350px;
    margin: auto;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5em;
  }
}