/* 全体ラッパー */
.shoplist-wrap {
  padding: 40px 10px;
  box-sizing: border-box;
}

/* 1180pxセンター寄せ・2列レイアウト */
.shoplist-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 40px;
}

/* 各ボックス（画像左・テキスト右） */
.shoplist-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* 画像サイズ（PC：300×200） */
.shoplist-img img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* タイトル・テキスト・リンクエリア */
.shoplist-content {
  flex: 1;
}

/* タイトル（PC：20px） */
.shoplist-title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 8px;
	font-weight: bold;
	
}

/* 本文テキスト（PC：16px） */
.shoplist-text {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 12px;
}

/* アイコン＋テキストリンク */
.shoplist-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none; /* a自体の下線は消す */
}

/* アイコン画像サイズ：13×20 */
.shoplist-link-icon {
  width: 13px;
  height: 20px;
  display: block;
}

/* アイコン横のテキスト（PC：16px・下線） */
.shoplist-link-text {
  font-size: 16px;
  text-decoration: underline;
}

/* --------------------
   SP用スタイル
   -------------------- */
@media screen and (max-width: 767px) {

  /* SP：1列に */
  .shoplist-inner {
    grid-template-columns: 1fr;
    row-gap: 0; /* 罫線で区切るのでgapは0に */
  }

  /* 各ボックスの上下に余白＋下線 */
  .shoplist-box {
    padding: 20px 0;
    border-bottom: 1px solid #ddd; /* 罫線 */
    gap: 12px;
  }

  /* 最後のボックスの罫線は消す */
  .shoplist-box:last-child {
    border-bottom: none;
  }

  /* 画像サイズ（SP：150×100） */
  .shoplist-img img {
    width: 150px;
    height: 100px;
  }

  /* タイトル（SP：16px） */
  .shoplist-title {
    font-size: 16px;
	font-weight: bold;	  
  }

  /* テキスト（SP：14px） */
  .shoplist-text {
    font-size: 14px;
  }

  /* リンク（SP：14px） */
  .shoplist-link-text {
    font-size: 14px;
  }
}