/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 04 2025 | 06:16:38 */
/* 全体共通 */
.p-shoplist {
  font-size: 14px;
  color: #333;
}

.p-shoplist a {
  color: inherit;
  text-decoration: none;
}

.p-shoplist a:hover {
  text-decoration: underline;
}

/* ===== モバイルファースト（SP 基本）===== */

/* エリアブロック */
.p-shoplist__areaBlock {

}

/* 見出し h3 */
.p-shoplist__areaTitle {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem!important;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  padding: 12px 0;
  margin: 0 !important;
  box-sizing: border-box;

  border: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

/* h3 既存 ::before / ::after 打ち消し */
.p-shoplist__areaTitle::before,
.p-shoplist__areaTitle::after {
  content: none !important;
  border: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

/* エリア内（PC デフォルトは下のメディアクエリで上書き） */
.p-shoplist__inner {
  border-top: 1px solid #f5f5f5;
}

/* 都道府県名は SP では非表示（PC で再表示） */
.p-shoplist__pref {
  display: none;
}

/* 店舗リスト（基本設定） */
.p-shoplist__shops {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ===== SP 専用調整：エリア内の店舗を全部まとめて2列 ===== */
@media screen and (max-width: 1023px) {

  .p-shoplist {
    padding: 0 16px;
  }

  .p-shoplist__areaBlock {
    padding: 0 0 12px;
  }

  .p-shoplist__areaTitle {
    justify-content: space-between;
    font-size: 16px;
  }

  /* SP：右側矢印 */
  .p-shoplist__areaTitle::after {
    content: "" !important;
    width: 7px;
    height: 7px;
    border-top: 2px solid #e60012;
    border-right: 2px solid #e60012;
    transform: rotate(45deg);
  }

  /* エリア内を 2 カラムのフレックスに */
  .p-shoplist__inner {
    border-top: 1px solid #f5f5f5;
    padding: 0 0 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;              /* 列のすき間 */
  }

  /* 県ごとの ul は「箱だけ消して中身だけ並べる」 */
  .p-shoplist__shops {
    display: contents;
  }

  /* すべての li を同じルールで 2 列表示 */
  .p-shoplist__shops > li {
    position: relative;
    width: calc(50% - 8px);   /* gap 分を引いた幅 */
    padding: 10px 8px;
    box-sizing: border-box;
    border-bottom: 1px solid #f5f5f5;
  }

  .p-shoplist__shops > li a {
    font-size: 15px;
  }

  /* SP：右端矢印 */
  .p-shoplist__shops > li::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #e60012;
    border-right: 2px solid #e60012;
    transform: translateY(-50%) rotate(45deg);
  }
}

/* ===== PC レイアウト ===== */
@media screen and (min-width: 1024px) {

  .p-shoplist {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
  }

  .p-shoplist__areaBlock {
    flex: 1 1 0;
    padding: 0 8px;
    border-top: none;
  }

  /* PC：丸いタブ風デザイン（指定いただいた内容） */
  .p-shoplist__areaTitle {
    all: unset;
    display: block;
    text-align: center;
    font-size: 1rem !important;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px !important;
    padding: 8px 0 8px !important;
    background: #f5f6fb;
    border-radius: 24px;

    border: none !important;
    box-shadow: none !important;
    background-image: none !important;
  }

  .p-shoplist__areaTitle::before,
  .p-shoplist__areaTitle::after {
    content: none !important;
    border: 0 !important;
    background: none !important;
    box-shadow: none !important;
  }

  .p-shoplist__inner {
    border-top: none;
    display: block;
    padding: 0;
  }

  .p-shoplist__pref {
    display: block;
    font-weight: 700;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 4px;
  }

  .p-shoplist__shops {
    display: block;
  }
  ul.p-shoplist__shops {
    padding: 0 0 0 8px!important;
  }	
  .p-shoplist__shops li {
    width: 100%;
    padding: 0 0 2px;
    border-bottom: none;
    white-space: nowrap;
  }

  .p-shoplist__shops li::after {
    content: none;
  }
}
