.section-store-list__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-bottom: 100px;

  @media screen and (max-width: 760px) {
    gap: 60px;
    padding-bottom: 80px;
  }
}

.section-store-list__chain {
  &:not(:first-child) {
    border-top: 1px solid #ccc;
    padding-top: 80px;

    @media screen and (max-width: 760px) {
      padding-top: 60px;
    }
  }
}

.section-store-list__chain__name {
  margin-bottom: 0;
  font-size: 36px;

  @media screen and (max-width: 760px) {
    font-size: 20px;
  }
}

.section-store-list__prefectures {
  display: flex;
  flex-direction: column;
  gap: 50px;
  list-style: none;
  margin-top: 32px;
}

.section-store-list__prefecture__name {
  margin-bottom: 0;
  font-size: 26px;

  @media screen and (max-width: 760px) {
    font-size: 18px;
  }
}

.section-store-list__stores {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  list-style: none;
  margin-block: 24px 0;
  padding-left: 0;

  @media screen and (max-width: 760px) {
    grid-template-columns: 1fr;
  }
}


.section-store-list__store__name {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;

  @media screen and (max-width: 760px) {
    font-size: 16px;
  }
}

.section-store-list__store__address {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 16px;

  @media screen and (max-width: 760px) {
    font-size: 12px;
  }
}

.section-store-list__store__hours {
  margin-bottom: 0;
  font-size: 16px;

  @media screen and (max-width: 760px) {
    font-size: 12px;
  }
}