/*
Theme Name: FAMOUS Child
Template: famous_tcd064
*/

@import url("../famous_tcd064/style.css");

/* ショップリスト全体 */
.shoplist {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.shoplist-header {
  text-align: center;
  margin-bottom: 40px;
}

.shoplist-description {
  margin-top: 10px;
  color: #555;
}

/* カテゴリリスト */
.shoplist-category ul.shoplist-cat-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}

.shoplist-cat-list li {
  background: #eee;
  padding: 5px 15px;
  border-radius: 20px;
}

/* グリッド表示 */
.shoplist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.shoplist-item {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: 0.3s;
}

.shoplist-item:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* サムネイル画像 */
.shoplist-thumb {
  background-color: #f2f2f2;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.shoplist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* タイトルとカテゴリ */
.shoplist-title {
  font-weight: bold;
  font-size: 1rem;
  margin-top: 8px;
}

.shoplist-category-name {
  font-size: 0.875rem;
  color: #666;
  margin-top: 4px;
}

/* パンくず非表示 */
.breadcrumb, .breadcrumb-wrapper {
  display: none;
}

/* ギャラリーセクション余白対策 */
.p-works-archive-gallery {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}






/* works-archive-gallery 用グリッドレイアウト */
.p-works-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* ギャラリーアイテム */
.p-works-gallery__item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* サムネイル */
.p-works-gallery__thumbnail {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.p-works-gallery__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* キャプション */
.p-works-gallery__caption {
  font-size: 1.2rem;
  margin-top: 0.8rem;
  font-weight: bold;
  line-height: 1.4;
}

/* カテゴリ表示 */
.p-works-gallery__category {
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.4rem;
}

/* ギャラリー全体のグリッドレイアウト：3列（スマホで2列） */
.custom-works-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* 各アイテム */
.custom-works-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* サムネイル画像 */
.custom-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.custom-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* タイトル */
.custom-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 0.8rem;
}

/* カテゴリ */
.custom-category {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.4rem;
}