html {
  scroll-behavior: smooth;
}

.p-storelist__nav {
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--base-borderLight);
}

.p-storelist__location-icon {
  width: 5.625rem;
  height: 5.625rem;
  background-color: var(--base-lightBlue);
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-storelist__filter-row {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0.25rem 0;
}

.p-storelist__filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 62.4375rem;
  border: 0.09375rem solid var(--base-grayBlue);
  background: white;
  color: var(--base-grayBlue);
  font-size: var(--fs-base);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.p-storelist__filter-btn:hover {
  background: var(--base-hoverGray);
}

.p-storelist__filter-btn--active {
  background: var(--base-grayBlue);
  color: white;
  border-color: var(--base-grayBlue);
}

.p-storelist__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  z-index: 2;
}

.p-storelist__card {
  background: white;
  overflow: hidden;
  box-shadow: 0 0rem 0.25rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
}

.p-storelist__card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.p-storelist__card-header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  padding-bottom: 0.875rem;
  border-bottom: 0.0625rem solid var(--base-paleMintBg);
}

.p-storelist__prefecture-tag {
  background: var(--base-softTeal);
  color: white;
  font-size: var(--fs-sm);
  padding: 0.25rem 1rem;
  white-space: nowrap;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.p-storelist__store-name {
  font-size: var(--fs-base);
  color: var(--base-darkText);
  flex: 1;
  font-weight: 700;
}

.p-storelist__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.p-storelist__info-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-black1);
  font-weight: 500;
  font-size: var(--fs-base);
}

.p-storelist__address-text {
  font-size: var(--fs-base);
  color: var(--base-darkCharcoal);
}

.p-storelist__map-link {
  color: var(--base-mediumText);
  font-size: var(--fs-base);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.p-storelist__map-link:hover {
  color: var(--base-lightBlue);
}

.p-storelist__sns-link {
  display: inline-flex;
  transition: opacity 0.3s ease;
}

.p-storelist__sns-link:hover {
  opacity: 0.6;
}

.p-storelist__card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.3s ease;
}

.p-storelist__card-link:hover {
  opacity: 0.8;
}

.p-storelist__phone-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.p-storelist__phone-number {
  font-size: var(--fs-base);
  color: var(--base-darkCharcoal);
}

.p-storelist__facilities-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-storelist__facilities-label {
  font-size: var(--fs-base);
  color: var(--text-lightBlue);
  font-weight: 700;
  white-space: nowrap;
  margin-right: 0.25rem;
}

.p-storelist__facility-icons {
  display: flex;
  gap: 0.375rem;
}

.p-storelist__facility-tile {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--base-grayBlue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-storelist__speak--01 {
  bottom: 0rem;
  left: -1rem;
}

.p-storelist__speak--01 .c-speak-person__bubble {
  top: -3rem;
  right: 10rem;
}

.p-storelist__speak--02 {
  bottom: 0rem;
  right: -1rem;
}

.p-storelist__speak--02 .c-speak-person__bubble {
  top: -4rem;
  right: -7rem;
}

.p-storelist__ribbon--01 {
  position: absolute;
  bottom: -2rem;
  right: -10rem;
  width: auto;
  height: auto;
  z-index: 0;
}

.p-storelist__ribbon--02 {
  position: absolute;
  bottom: 3rem;
  right: 0rem;
  width: auto;
  height: auto;
  z-index: 0;
}

.p-storelist__content-top {
  padding-top: 5rem;
}

.p-storelist__section-header-row {
  gap: 30px;
}

.p-storelist__section-header-heading {
  font-size: var(--fs-xl);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .p-storelist__nav {
    gap: 0.875rem;
    padding-top: 1.5rem;
    margin-bottom: 3rem;
  }
  .p-storelist__location-icon {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
  }
  .p-storelist__region .u-max-width {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .p-storelist__grid {
    grid-template-columns: 1fr;
  }
  .p-storelist__card {
    padding: 1.25rem;
    gap: 1rem;
  }
  .p-storelist__speak--01,
  .p-storelist__speak--02 {
    display: none;
  }
  .p-storelist__ribbon--01,
  .p-storelist__ribbon--02 {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-storelist__nav {
    margin-bottom: 2rem;
  }
  .p-storelist__speak--01,
  .p-storelist__speak--02 {
    display: block;
  }
  .p-storelist__speak--01 {
    bottom: -1.5rem;
    left: 4.5rem;
  }
  .p-storelist__speak--02 {
    bottom: -1.5rem;
    right: 4.5rem;
  }
  .p-storelist__speak--01 .c-speak-person__person,
  .p-storelist__speak--02 .c-speak-person__person {
    height: 15rem;
  }
  .p-storelist__speak--01 .c-speak-person__bubble {
    right: 6rem;
    top: -1rem;
    width: 5rem;
    height: auto;
  }
  .p-storelist__speak--02 .c-speak-person__bubble {
    right: -4rem;
    top: -1rem;
    width: 5rem;
    height: auto;
  }
  .p-storelist__announcement .c-announcement {
    padding-bottom: 15rem;
  }
}
