/* ===== food.css =====
   フード出店一覧ページ用スタイル
   背景は淡いピンク基調。カードは影と丸みで軽やかに。
   スライドショー対応（1店舗に複数画像）
   ====================================================== */

:root {
  --bg-pink: #fff0f4;
  --panel: #ffffff;
  --accent: #bf5074;       /* 見出し色（ワイン系） */
  --muted: #6b475a;        /* 説明文の落ち着き色 */
  --info-bg: rgba(191,80,116,0.08);
}

/* リセット */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

/* ページ全体 */
body.food-page {
  font-family: 'Zen Kaku Gothic New', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, #fff0f4 0%, #ffe7ef 100%);
 background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;  
  color: #2b1b26;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

/* コンテナ幅 */
.food-header,
.food-main {
  width: min(1100px, 94%);
  margin-left: auto;
  margin-right: auto;
}

/* ヘッダー */
.food-header {
  padding: 36px 0 8px;
}
.food-header-inner {
  text-align: center;
  margin-bottom: 14px;
}
.food-header h1 {
 font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 2.4rem; /* PC版デフォルト */
  color: var(--accent);
  margin: 0;
  letter-spacing: .02em;
  text-shadow: 0 2px 10px rgba(191,80,116,0.05);
}
.food-header .lead {
  margin: 8px 0 0;
  font-size: 1.2rem; /* PC版デフォルト */
  color: var(--muted);
}

/* キッチンカー共通案内 */
.kitchencar-info {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: var(--info-bg);
  border-radius: 999px;
  padding: 10px 18px;
  margin: 10px auto 26px;
  max-width: 900px;
  border: 1px solid rgba(191,80,116,0.12);
  font-weight: 600;
  color: #6b3244;
}
.kitchencar-info strong { 
  color: var(--accent); 
  margin-right: 6px; 
  font-weight: 700; 
  font-size: 1.76rem; /* ← 見出し感を少し大きく */
}
.kitchencar-info span { 
  font-size: 1rem;   /* ← 全体を読みやすくアップ */
  opacity: 0.95; 
}

/* ショップリスト（グリッド） */
.shop-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  padding-bottom: 60px;
}

/* ショップカード */
.shop-card {
  background: linear-gradient(180deg, var(--panel), #fff7f9 120%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(43,27,38,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
  border: 1px solid rgba(43,27,38,0.04);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.shop-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(43,27,38,0.1);
}

/* ===== スライドショー部分 ===== */
.slideshow {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-pink); /* ページ基調色に統一 */
}
.slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;   /* 写真全体を収める */
  background: var(--bg-pink);
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.slideshow img.active {
  opacity: 1;
  z-index: 1;
}

/* テキスト部分 */
.shop-body {
  padding: 16px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.shop-title {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", "Yu Gothic", "メイリオ", sans-serif;
  color: var(--accent);
  font-size: 1.6rem; /* PC版 */
  line-height: 1.3;
}
.shop-desc {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem; /* PC版 */
  line-height: 1.6;
}

/* レスポンシブ調整（スマホ） */
@media screen and (max-width: 768px) {
  .food-header { padding: 28px 0 8px; }
  .food-header h1 { font-size: 1.8rem; }
  .food-header .lead { font-size: 1rem; }
  .kitchencar-info { gap: 12px; padding: 10px 14px; }
  .kitchencar-info strong { font-size: 1.6rem; }
  .kitchencar-info span { font-size: 0.95rem; }
  .shop-body { padding: 14px; }
  .shop-card { min-height: 200px; }
  .shop-title { font-size: 1.3rem; }
  .shop-desc { font-size: 0.95rem; }
}

/* === 広告画像調整 === */
.ad-banner {
  text-align: center;
  margin: 40px auto 60px;
}

.ad-banner img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.ad-banner a {
  display: inline-block;
}

.ad-banner img {
  display: block;
  width: auto;
  height: auto;
  margin: 0 auto;
}

/* === フッター固定対策 === */
.footer-space {
  height: 120px; /* ← フッターの高さに合わせて調整（固定footerなら必要） */
}

/*snsiconの設定*/
.sns {
    border-radius: 50px;
    margin-inline: auto;
    width: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px white;
    background-color: var(--white1);
}

.sns a {
    margin: 12px 16px;
    width: 29px;
}

.sns img {
    width: 29px;
}

.cicon p {
  font-size: clamp(10px, 2vw, 15px); 
  margin: 2px 0 4px;
  font-weight: 900;
text-align:center
}
