/* 店舗一覧（/shop/[category]/） */
.has-bggray {
  background-color: #f2f2f3;
}

.shop-archive-page {
  font-family: 'Noto Sans JP', sans-serif;
}

.shop-archive {
  padding-top: 50px;
  padding-bottom: 64px;
}

@media screen and (max-width: 768px) {
  .shop-archive {
    padding-top: 0;
  }
}

.shop-archive-not_available {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 480px) {
  .shop-archive-not_available {
    font-size: 16px;
  }
}

/* パンくずリスト */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 30px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.breadcrumb-list + .breadcrumb-list {
  padding-left: 10px;
}

.breadcrumb-list + .breadcrumb-list::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: solid 1px #333333;
  border-right: solid 1px #333333;
  transform: rotate(45deg);
  position: absolute;
  top: 7px;
  left: 0;
}

.breadcrumb-list .breadcrumb-item {
  font-size: 12px;
  transition: all 0.3s ease-in-out;
}

.breadcrumb-list > a {
  display: inline-block;
}

.breadcrumb-list > a + a::before {
  content: '/';
  margin: 0 4px;
}

.breadcrumb-list > a:hover {
  color: #03c13d;
}

.shop-archive-title {
  text-align: center;
  margin-bottom: 30px;
}

.shop-archive-title .br_md {
  display: none;
}

@media screen and (max-width: 768px) {
  .shop-archive-title .br_md {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .shop-archive-title {
    font-size: 20px;
  }
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
  .category-list {
    gap: 6px;
  }
}

.category-item > a {
  display: flex;
  align-items: center;
  padding: 2px 18px;
  border-radius: 9999px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .category-item > a {
    padding: 2px 12px;
    font-size: 13px;
  }
}

.category-item > a:hover {
  background-color: #5eb74f;
  color: #fff;
}

.category-item > a svg {
  margin-left: 10px;
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
}

.category-item > a svg path {
  transition: all 0.3s ease-in-out;
}

.category-item > a:hover svg path {
  fill: #fff;
}

.filter-wrap {
  display: flex;
  gap: 16px;
}

@media screen and (max-width: 480px) {
  .filter-wrap {
    flex-direction: column;
    gap: 10px;
  }
}

.filter-link {
  display: flex;
  justify-content: center;
  padding: 6px 30px;
  border-radius: 9999px;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .filter-link {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .filter-link {
    width: 100%;
  }
}

.filter-link.is_fit24 {
  border: solid 1px #5eb74f;
  background-color: #fff;
  color: #5eb74f;
}

.filter-link.is_fit24:hover {
  background-color: #5eb74f;
  color: #fff;
}

/* 絞り込まれたページでは常にアクティブ */
#filtering_fit24 .filter-link.is_fit24 {
  background-color: #5eb74f;
  color: #fff;
}

.filter-link.is_indoorgolf {
  background-color: #fff;
  color: #000;
}

.filter-link.is_indoorgolf:hover {
  background-color: #000;
  color: #fff;
}
/* 絞り込まれたページでは常にアクティブ */
#filtering_golf .filter-link.is_indoorgolf {
  background-color: #000;
  color: #fff;
}

/* 店舗一覧 */
.subcategory-title {
  margin-top: 40px;
  margin-bottom: 4px;
}

@media screen and (max-width: 480px) {
  .subcategory-title {
    margin-top: 20px;
    font-size: 16px;
  }
}

.shop-list-item + .shop-list-item {
  margin-top: 10px;
}

.shop-list-link {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 480px) {
  .shop-list-link {
    padding: 10px;
  }
}

.shop-list-link:hover {
  background-color: rgba(3, 193, 61, 0.08);
}

.shop-list-link svg {
  margin-right: clamp(10px, 3.5vw, 50px);
  margin-left: 20px;
  width: 22px;
  height: 22px;
}

@media screen and (max-width: 480px) {
  .shop-list-link svg {
    width: 16px;
    height: 16px;
    margin-right: 0px;
    margin-left: 10px;
  }
}

.shop-list-link svg path {
  fill: #5eb74f;
}

.shop-list-link > img {
  display: block;
  width: 100%;
  max-width: 120px;
}

@media screen and (max-width: 480px) {
  .shop-list-link > img {
    max-width: 60px;
  }
}

.shop-list-meta {
  flex: 2;
  padding-left: 20px;
  line-height: 1.4;
}

@media screen and (max-width: 480px) {
  .shop-list-meta {
    padding-left: 10px;
  }
}

.shop-list-name {
  font-size: 24px;
  font-weight: 700;
  color: #5eb74f;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

@media screen and (max-width: 480px) {
  .shop-list-name {
    font-size: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.shop-list-name .combi {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: rgba(94, 183, 79);
  padding: 2px 4px 3px;
  margin-top: 2px;
  margin-left: 6px;
}

@media screen and (max-width: 480px) {
  .shop-list-name .combi {
    font-size: 11px;
    margin-left: 0;
    padding: 0 4px 1px;
  }
}

.shop-list-address {
  font-size: 16px;
}

@media screen and (max-width: 480px) {
  .shop-list-address {
    font-size: 13px;
  }
}

.shop-list-phone {
  font-size: 16px;
  margin-bottom: 8px;
}

@media screen and (max-width: 480px) {
  .shop-list-phone {
    font-size: 13px;
  }
}

.shop-list-description {
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .shop-list-description {
    font-size: 12px;
  }
}

/* 都道府県エリア別 */
.prefecture-shop-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

@media screen and (max-width: 480px) {
  .prefecture-shop-title {
    font-size: 18px;
  }
}

.prefecture-shop-title .br_md {
  display: none;
}

@media screen and (max-width: 768px) {
  .prefecture-shop-title .br_md {
    display: block;
  }
}

.prefecture-shop-list-att {
  font-size: 13px;
  text-align: right;
  margin-bottom: 8px;
}

.prefectiure-shop-list-att {
  font-size: 13px;
  text-align: right;
  margin-bottom: 8px;
}

.prefecture-shop-list-att .combi {
  color: #fff;
  background-color: #000;
  margin-left: 0.8em;
  margin-right: 3px;
  padding: 0px 4px 1px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.prefecture-shop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  background: #fff;
  padding: 30px;
}

@media screen and (max-width: 480px) {
  .prefecture-shop-list {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}

.prefecture-shop-list-item-link {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.prefecture-shop-list-item-link:hover {
  opacity: 0.7;
}

.prefecture-shop-list-item-link svg {
  display: block;
  width: 12px;
  height: 12px;
}

.prefecture-shop-list-name {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  display: inline-block;
  padding-left: 2px;
}

@media screen and (max-width: 480px) {
  .prefecture-shop-list-name {
    font-size: 14px;
  }
}

.prefecture-shop-list-combi {
  color: #fff;
  background-color: #000;
  margin-left: 0.8em;
  padding: 2px 4px 3px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

@media screen and (max-width: 480px) {
  .prefecture-shop-list-combi {
    font-size: 12px;
  }
}
