/* ===== see.css =====
   「見る」ページ用スタイル
   淡い水色を基調にしたクリーンなデザイン
   ====================================================== */

:root {
  --bg-color: #e9f8ff;
  --panel: #ffffff;
  --accent: #3a7abf;
  --muted: #4a6070;
  --info-bg: rgba(58, 122, 191, 0.08);
}

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

/* ページ全体 */
body.see-page {
  font-family: 'Zen Kaku Gothic New', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-color);
  color: #1e2a36;
  margin: 0;
}

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

/* ヘッダー */
.see-header {
  padding: 36px 0 8px;
}
.see-header-inner {
  text-align: center;
  margin-bottom: 14px;
}
.see-header h1 {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--accent);
  margin: 0;
  letter-spacing: .02em;
}
.see-header .lead {
  margin: 8px 0 0;
  font-size: 1.2rem;
  color: var(--muted);
}

/* ===== スクロールボタン ===== */
.scroll-button {
  display: inline-block;
  margin-top: 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.3s;
}
.scroll-button:hover { background: #2b5c91; }

/* 共通案内 */
.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(58, 122, 191, 0.12);
  font-weight: 600;
  color: #2b4a60;
}
.kitchencar-info strong { color: var(--accent); margin-right: 6px; font-weight: 700; font-size: 1.7rem; }
.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: var(--panel);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(43,27,38,0.06);
  border: 1px solid rgba(43,27,38,0.04);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.shop-card:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(43,27,38,0.1); }

/* スライドショー（A4縦長対応） */
.slideshow {
  width: 100%;
  aspect-ratio: 1.414 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-color);
}
.slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.slideshow img.active { opacity: 1; z-index: 1; }

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

/* ===== タイムテーブルセクション ===== */
.timetable-section {
  text-align: center;
  margin: 60px auto 100px;
  width: min(92%, 900px);
}
.timetable-section h2 {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 18px;
}
.timetable-card {
  background: var(--panel);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  padding: 20px;
  margin: 0 auto 40px;
}
.timetable-img {
  width: 100%;
  max-width: 640px;
  border-radius: 12px;
}
.timetable-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .see-header { padding: 28px 0 8px; }
  .see-header h1 { font-size: 1.8rem; }
  .see-header .lead { font-size: 1rem; }
  .scroll-button { font-size: 0.95rem; padding: 8px 18px; }
  .timetable-section h2 { font-size: 1.4rem; }
}


/* === 広告画像調整 === */
.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なら必要） */
}

/* ===== ページトップボタン ===== */
.back-to-top {
  position: fixed;
  bottom: 90px;        /* フッターより少し上に配置 */
  right: 20px;
  background-color: #2f68a5;
  color: white;
  font-size: 24px;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: #84bbf5;
}

/* ===== マップ画像カード風 ===== */
.map-frame {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.map-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* ===== 画像共通設定 ===== */
.map-image {
  width: 100%;
  height: auto;
  max-width: 900px; 
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.map-image:hover {
  transform: scale(1.02);
}

/* ===== セクション全体の調整 ===== */
.map-section {
  text-align: center;
  margin-bottom: 50px;
}

.map-frame {
  position: relative;
  display: inline-block;
  max-width: 900px; /* 画像と同じ幅制限を設定 */
  width: 100%;
}

/* ===== 拡大ボタン（常時表示） ===== */
.zoom-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.85);
  border: 2px solid #3a7abf;
  border-radius: 50%;
  padding: 8px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.zoom-btn:hover {
  background: rgba(255,255,255,1);
}

/* ===== モーダル表示 ===== */
.map-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.map-modal.show {
  display: flex;
}
.map-modal-img {
  max-width: 95%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* ===== スマホ調整 ===== */
@media (max-width: 768px) {
  .map-image,
  .map-frame {
    max-width: 100%;
  }
}

/* ===== 拡大ボタン（常時表示） ===== */
.zoom-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(22, 61, 104, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background 0.3s ease;
}
.zoom-btn:hover {
  background: rgba(22, 61, 104, 1);
  transform: scale(1.1);
}

/* ===== 説明文 ===== */
.map-caption {
  color: #163d68;
  font-size: 0.95rem;
  margin-top: 10px;
  opacity: 0.85;
}

/* ===== 拡大表示モーダル ===== */
.map-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.map-modal.show {
  display: flex;
}
.map-modal-img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 10px;
  cursor: zoom-out;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/*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
}
