@charset "UTF-8";
/* ============================================================================
   ゆるりと昼呑み  style.css
   ---------------------------------------------------------------------------
   スマートフォン優先（モバイルファースト）で書いています。
   画面が広くなったときの調整は、いちばん下の「レスポンシブ」にまとめています。

   目次
     01 変数（色・サイズ）
     02 リセット / 土台
     03 共通パーツ（見出し・ボタン・カード）
     04 ヘッダー
     05 ファーストビュー
     06 イベントについて
     07 開催情報
     08 参加店舗
     09 MAP
     10 楽しみ方
     11 Instagram
     12 FAQ
     13 フッター
     14 固定ナビ（スマホ下部）
     15 アニメーション
     16 レスポンシブ（タブレット・PC）
   ========================================================================= */

/* ---------------------------------------------------------------------------
   01 変数
   ------------------------------------------------------------------------- */
:root {
  --bg:          #FDF7EC;   /* 背景（少しアイボリー） */
  --bg-tint:     #F1F8F5;   /* 交互に使う背景 */
  --card:        #FFFFFF;
  --text:        #2B2622;
  --text-sub:    #6B625A;
  --line:        #E7DFCE;

  --mint:        #4FC3B5;
  --mint-dark:   #2E9C8E;
  --mint-pale:   #E4F5F1;

  --orange:      #F07C1E;
  --orange-dark: #D2650B;
  --yellow:      #FFC53D;
  --pink:        #EE6E9B;
  --green:       #56B947;
  --purple:      #9B7BD4;
  --red:         #E24B4B;

  --radius:      20px;
  --radius-lg:   26px;
  --pill:        999px;
  --shadow:      0 8px 22px rgba(70, 55, 35, .10);
  --shadow-soft: 0 3px 10px rgba(70, 55, 35, .08);

  --header-h:    60px;
  --tabbar-h:    58px;
  --max:         1200px;

  --font:        'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', system-ui, sans-serif;
  --font-round:  'M PLUS Rounded 1c', var(--font);
  --font-hand:   'Yusei Magic', var(--font-round);
}

/* ---------------------------------------------------------------------------
   02 リセット / 土台
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.85;
  overflow-x: hidden;                    /* 横スクロール事故を防ぐ */
  /* 下部固定ナビの分だけ余白（iPhoneのホームバーにも対応） */
  padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom) + 10px);
}

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, dl, dd, dt, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

[hidden] { display: none !important; }

/* キーボード操作時のフォーカス表示 */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 8px;
}

/* アンカーで飛んだときにヘッダーで隠れないように */
section[id], li[id] { scroll-margin-top: calc(var(--header-h) + 14px); }

.skip-link {
  position: absolute;
  left: 8px; top: -60px;
  z-index: 200;
  background: var(--orange);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  transition: top .2s;
}
.skip-link:focus { top: 8px; }

/* ---------------------------------------------------------------------------
   03 共通パーツ
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 18px;
}

.section { padding: 46px 0; }
.section--tint { background: var(--bg-tint); }

.section__label {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--mint-dark);
  margin-bottom: 2px;
}
.section__title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 6px;
}
.section__title::after {
  content: "";
  display: block;
  width: 44px;
  height: 5px;
  margin-top: 8px;
  border-radius: var(--pill);
  background: var(--yellow);
}
.section__note {
  font-size: .88rem;
  color: var(--text-sub);
  margin-top: 10px;
}
.lead {
  margin-top: 16px;
  font-size: 1rem;
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--pill);
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(2px); }

.btn--primary {
  background: linear-gradient(180deg, #FF9A3C 0%, var(--orange) 100%);
  color: #fff;
  box-shadow: 0 4px 0 rgba(0, 0, 0, .12);
}
.btn--ghost {
  background: #fff;
  color: var(--mint-dark);
  border: 2px solid var(--mint);
}
.btn--ig {
  width: 100%;
  max-width: 420px;
  margin: 18px auto 0;
  background: #fff;
  color: #C13584;
  border: 2px solid #E4C1D9;
  box-shadow: var(--shadow-soft);
}
/* ファーストビューのInstagramボタン */
.btn--insta {
  background: #fff;
  color: #C13584;
  border: 2px solid #E4C1D9;
}
@media (hover: hover) {
  .btn--primary:hover { background: var(--orange-dark); }
  .btn--ghost:hover   { background: var(--mint-pale); }
  .btn--ig:hover      { background: #FCF2F8; }
  .btn--insta:hover   { background: #FCF2F8; }
}

.empty {
  background: #fff;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  color: var(--text-sub);
}

/* ---------------------------------------------------------------------------
   04 ヘッダー
   ------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(253, 247, 236, .95);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--orange);
}
.header__inner {
  height: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.header__brand { display: flex; align-items: center; gap: 9px; min-width: 0; }
.header__logo  { flex: 0 0 auto; width: auto; height: 44px; }
.header__text  { min-width: 0; }
.header__name  {
  display: block;
  font-family: var(--font-hand);
  font-size: 1.25rem;
  line-height: 1.2;
}
.header__sub {
  display: block;
  font-size: .66rem;
  color: var(--text-sub);
  line-height: 1.3;
  white-space: nowrap;
}
.header__nav { display: none; }        /* PCのみ表示（下の方で指定） */

/* ---------------------------------------------------------------------------
   05 ファーストビュー
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 34px;
  background: linear-gradient(170deg, #B7E6DE 0%, var(--mint-pale) 58%, var(--bg) 100%);
}
/* 背景写真（薄く敷く）。images/hero.jpg を差し替えれば変わります */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("./images/hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: .20;
  filter: saturate(1.05);
}
.hero::after {                          /* 下側のゆるいカーブ */
  content: "";
  position: absolute;
  left: -6%; right: -6%; bottom: -24px;
  height: 46px;
  background: var(--bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hero__mascot {
  position: absolute;
  z-index: 0;
  right: -8%;
  top: 8%;
  width: min(46%, 230px);
  opacity: .28;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 18px;
  text-align: center;
}

/* 「毎月第3日曜日開催！」のバッジ（赤で強調）
   文字色を変えたいときは color、大きさは font-size を調整してください */
.hero__badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: #fff;
  color: #C62F2F;
  border: 3px solid var(--red);
  border-radius: var(--pill);
  padding: 8px 24px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: .02em;
  line-height: 1.5;
  box-shadow: 0 4px 12px rgba(226, 75, 75, .28);
}
.hero__badge::after { content: "開催！"; }

.hero__title { margin: 14px 0 10px; }
.hero__logo {
  width: min(64%, 240px);
  margin-inline: auto;
  filter: drop-shadow(0 4px 10px rgba(70, 55, 35, .2));
}
.hero__title-text {
  display: block;
  font-family: var(--font-hand);
  font-size: clamp(2.2rem, 11vw, 3.4rem);
  line-height: 1.2;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
}

.hero__copy {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.hero__meta {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, .92);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.hero__meta > div { display: flex; gap: 12px; align-items: baseline; }
.hero__meta dt {
  flex: 0 0 62px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: .78rem;
  color: #fff;
  background: var(--mint);
  border-radius: var(--pill);
  text-align: center;
  line-height: 1.9;
}
.hero__meta dd {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--orange-dark);
}

.hero__actions { display: grid; gap: 10px; max-width: 420px; margin-inline: auto; }

/* ---------------------------------------------------------------------------
   06 イベントについて
   ------------------------------------------------------------------------- */
.points {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.point {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
}
.point__icon {
  grid-row: 1 / 3;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--mint-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.point:nth-child(1) .point__icon { background: #FFF0D2; }
.point:nth-child(2) .point__icon { background: #FFE3E9; }
.point__title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--orange-dark);
}
.point__text { font-size: .86rem; color: var(--text-sub); line-height: 1.7; }

/* ---------------------------------------------------------------------------
   07 開催情報
   ------------------------------------------------------------------------- */
.info-table {
  margin-top: 18px;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.info-table__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}
.info-table__row:last-child { border-bottom: none; }
.info-table dt {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: .84rem;
  color: var(--mint-dark);
  line-height: 1.9;
}
.info-table dd { font-size: .95rem; line-height: 1.7; }
.info-table__next {
  display: block;
  margin-top: 2px;
  font-family: var(--font-round);
  font-weight: 800;
  color: var(--orange-dark);
}

/* ---------------------------------------------------------------------------
   08 参加店舗
   ------------------------------------------------------------------------- */
.shop-list {
  margin-top: 18px;
  display: grid;
  gap: 20px;
}
.shop {
  --theme: var(--mint);
  --theme-pale: var(--mint-pale);
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.shop[data-theme="orange"]    { --theme: #F07C1E; --theme-pale: #FFF1E2; }
.shop[data-theme="yellow"]    { --theme: #E0A400; --theme-pale: #FFF6DA; }
.shop[data-theme="green"]     { --theme: #56B947; --theme-pale: #EAF7E7; }
.shop[data-theme="pink"]      { --theme: #EE6E9B; --theme-pale: #FDECF2; }
.shop[data-theme="turquoise"] { --theme: #4FC3B5; --theme-pale: #E4F5F1; }
.shop[data-theme="purple"]    { --theme: #9B7BD4; --theme-pale: #F0EAFB; }

@media (hover: hover) {
  .shop:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(70, 55, 35, .16); }
}

/* 店舗写真（画像が無い場合も高さが崩れないようにする） */
.shop__photo {
  aspect-ratio: 16 / 10;
  background: var(--theme-pale);
  overflow: hidden;
}
.shop__photo img { width: 100%; height: 100%; object-fit: cover; }
.shop__photo.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(-45deg, rgba(255,255,255,.6) 0 12px, transparent 12px 24px),
    var(--theme-pale);
}
.shop__photo.is-empty::after {
  content: "🍻 写真準備中";
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-sub);
}

.shop__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }

.shop__no {
  display: inline-block;
  align-self: flex-start;
  background: var(--theme);
  color: #fff;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .08em;
  border-radius: var(--pill);
  padding: 2px 14px;
}
.shop__name {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.4;
}
.shop__logo { height: 42px; width: auto; max-width: 100%; object-fit: contain; object-position: left center; }
.shop__catch { font-size: .95rem; color: var(--text-sub); }

.shop__info { display: grid; gap: 6px; }
.shop__info > div { display: grid; grid-template-columns: 84px 1fr; gap: 8px; align-items: baseline; }
.shop__info dt {
  font-size: .74rem;
  font-weight: 700;
  color: #fff;
  background: var(--theme);
  border-radius: var(--pill);
  text-align: center;
  line-height: 1.9;
}
.shop__info dd { font-size: .92rem; line-height: 1.7; }
.shop__info dd a { color: var(--mint-dark); text-decoration: underline; font-weight: 700; }
.shop__time { font-family: var(--font-round); font-weight: 800; font-size: 1.05rem; color: var(--orange-dark); }

.shop__menu {
  background: var(--theme-pale);
  border-radius: 16px;
  padding: 12px 14px;
}
.shop__menu-title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: .85rem;
  color: var(--orange-dark);
  margin-bottom: 6px;
}
.shop__menu-photo { border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 10; margin-bottom: 8px; }
.shop__menu-photo img { width: 100%; height: 100%; object-fit: cover; }
.shop__menu li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, .12);
  font-size: .92rem;
}
.shop__menu li:last-child { border-bottom: none; }
.shop__menu-name { font-weight: 700; }
.shop__menu-price { font-family: var(--font-round); font-weight: 800; color: var(--orange-dark); white-space: nowrap; }
/* メニュー名を載せないときの案内文 */
.shop__menu-text { font-size: .86rem; color: var(--text-sub); line-height: 1.7; }

.shop__actions { margin-top: auto; display: grid; gap: 8px; }
.shop__btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--pill);
  font-family: var(--font-round);
  font-weight: 800;
  font-size: .95rem;
  padding: 8px 16px;
  border: 2px solid var(--theme);
  background: #fff;
  transition: background-color .15s ease;
}
.shop__btn--map { background: var(--theme); color: #fff; }
@media (hover: hover) {
  .shop__btn:hover { filter: brightness(.96); }
}

.caution {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #FFF7E6;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: .88rem;
  line-height: 1.75;
}
.caution__icon {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ---------------------------------------------------------------------------
   09 MAP
   ------------------------------------------------------------------------- */
.townmap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 18px auto 8px;
  aspect-ratio: 700 / 800;               /* イラストと同じ比率にする（ピンがズレないため） */
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid #EFE3C9;
  box-shadow: var(--shadow);
  background: #FBF3E2;
}
.townmap__base { width: 100%; height: 100%; object-fit: contain; }
.townmap__pins { position: absolute; inset: 0; }

.townpin {
  --theme: var(--mint);
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 44px;
  min-height: 44px;
}
.townpin[data-theme="orange"]    { --theme: #F07C1E; }
.townpin[data-theme="yellow"]    { --theme: #E0A400; }
.townpin[data-theme="green"]     { --theme: #56B947; }
.townpin[data-theme="pink"]      { --theme: #EE6E9B; }
.townpin[data-theme="turquoise"] { --theme: #4FC3B5; }
.townpin[data-theme="purple"]    { --theme: #9B7BD4; }

.townpin__mark {
  position: relative;
  width: 30px; height: 29px;
  background: var(--theme);
  border: 2.5px solid #7A6A57;
  border-radius: 4px 4px 7px 7px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(70, 55, 35, .25);
}
.townpin__mark::before {                 /* 屋根 */
  content: "";
  position: absolute;
  top: -12px; left: -4px;
  width: 0; height: 0;
  border-left: 19px solid transparent;
  border-right: 19px solid transparent;
  border-bottom: 13px solid var(--theme);
  filter: drop-shadow(0 -2.5px 0 #7A6A57);
}
.townpin__no {
  position: relative;
  margin-bottom: 3px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: .88rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}
.townpin__label {
  background: #fff;
  border: 2px solid var(--theme);
  border-radius: var(--pill);
  padding: 0 7px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: .68rem;
  line-height: 1.6;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}
@media (hover: hover) {
  .townpin:hover .townpin__label { background: #FFF6E4; }
}

.townmap__note {
  font-size: .78rem;
  color: var(--text-sub);
  text-align: center;
  line-height: 1.7;
  max-width: 480px;
  margin-inline: auto;
}

/* ---------------------------------------------------------------------------
   10 楽しみ方
   ------------------------------------------------------------------------- */
.steps { margin-top: 18px; display: grid; gap: 12px; }
.step {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 16px 16px 74px;
  box-shadow: var(--shadow-soft);
}
.step__no {
  position: absolute;
  left: 16px; top: 16px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__icon { position: absolute; left: 24px; top: 62px; font-size: 1.4rem; }
.step__title {
  display: block;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--orange-dark);
}
.step__text { display: block; font-size: .88rem; color: var(--text-sub); line-height: 1.7; }

/* ---------------------------------------------------------------------------
   11 Instagram
   ------------------------------------------------------------------------- */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.ig-ph {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 2px solid #F1E2D3;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.55) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #FFE3EF 0%, #FFF0D2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-sub);
  text-align: center;
  padding: 6px;
}
.ig-ph span { font-size: 1.5rem; }
.ig-note { margin-top: 10px; font-size: .85rem; color: var(--text-sub); text-align: center; }
.ig-embeds { display: grid; gap: 12px; margin-top: 18px; }
.ig-embeds blockquote { margin: 0 auto; }

/* ---------------------------------------------------------------------------
   12 FAQ
   ------------------------------------------------------------------------- */
.faq { margin-top: 18px; display: grid; gap: 10px; }
.faq__item {
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 15px 46px 15px 46px;
  position: relative;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: .98rem;
  line-height: 1.6;
  min-height: 54px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::before {
  content: "Q";
  position: absolute;
  left: 14px; top: 15px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__q::after {                          /* 開閉の矢印 */
  content: "";
  position: absolute;
  right: 22px; top: 50%;
  width: 10px; height: 10px;
  margin-top: -7px;
  border-right: 3px solid var(--text-sub);
  border-bottom: 3px solid var(--text-sub);
  border-radius: 2px;
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg); margin-top: -3px; }

.faq__a {
  padding: 0 20px 16px 46px;
  font-size: .92rem;
  color: var(--text-sub);
  line-height: 1.8;
  position: relative;
}
.faq__a::before {
  content: "A";
  position: absolute;
  left: 14px; top: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------------------------------------------------
   13 フッター
   ------------------------------------------------------------------------- */
.footer {
  margin-top: 10px;
  background: var(--mint);
  color: #fff;
  padding: 32px 0 28px;
  text-align: center;
}
.footer__name { font-family: var(--font-hand); font-size: 1.6rem; line-height: 1.3; }
.footer__sub { font-size: .86rem; opacity: .96; }
.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  margin: 14px 0 10px;
  padding: 12px 24px;
  background: #fff;
  color: #C13584;
  border-radius: var(--pill);
  font-family: var(--font-round);
  font-weight: 800;
  font-size: .95rem;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 6px 0 14px;
  font-size: .88rem;
}
.footer__links a { text-decoration: underline; }
.footer__notes { font-size: .78rem; opacity: .95; line-height: 1.7; }
.footer__copy { font-size: .75rem; opacity: .9; margin-top: 12px; }

/* ---------------------------------------------------------------------------
   13-2 「TOPへ」ボタン（画面右下）
   ------------------------------------------------------------------------- */
.totop {
  position: fixed;
  right: 14px;
  /* 下部固定ナビの上に出す（iPhoneのホームバーも考慮） */
  bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom) + 14px);
  z-index: 65;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  border: 2.5px solid var(--mint);
  box-shadow: 0 4px 14px rgba(70, 55, 35, .22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: var(--mint-dark);
  transition: opacity .25s ease, transform .25s ease, background-color .15s ease;
}
.totop__arrow {
  width: 11px; height: 11px;
  margin-top: 3px;
  border-top: 3px solid var(--mint-dark);
  border-right: 3px solid var(--mint-dark);
  border-radius: 2px;
  transform: rotate(-45deg);
}
.totop__label {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: .62rem;
  line-height: 1.3;
}
@media (hover: hover) {
  .totop:hover { background: var(--mint-pale); }
}
/* JavaScriptが動いているときだけ、下までスクロールしたら出す */
.js .totop {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.js .totop.is-shown {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ---------------------------------------------------------------------------
   14 固定ナビ（スマホ下部）
   ------------------------------------------------------------------------- */
.tabbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(255, 255, 255, .97);
  border-top: 2px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);   /* iPhoneのホームバー対応 */
  box-shadow: 0 -3px 12px rgba(70, 55, 35, .10);
}
.tabbar ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 560px;
  margin-inline: auto;
}
.tabbar a {
  min-height: var(--tabbar-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 4px;
  color: var(--text-sub);
  font-weight: 700;
}
.tabbar__icon  { font-size: 1.15rem; line-height: 1; }
.tabbar__label { font-size: .68rem; line-height: 1.2; }
@media (hover: hover) {
  .tabbar a:hover { color: var(--orange-dark); background: #FFF3E2; }
}

/* ---------------------------------------------------------------------------
   15 アニメーション（ふわっと表示）
   ------------------------------------------------------------------------- */
/* JavaScriptが動いているときだけ、ふわっと表示にする。
   （JSが読み込めない環境でも、内容が消えないようにするための保険です） */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .reveal.is-shown { opacity: 1; transform: none; }

/* 動きを減らす設定の端末では、アニメーションを止める */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ---------------------------------------------------------------------------
   16 レスポンシブ
   ------------------------------------------------------------------------- */

/* 小さめのスマホ（320〜360px） */
@media (max-width: 360px) {
  .header__name { font-size: 1.1rem; }
  .header__logo { height: 38px; }
  .section__title { font-size: 1.35rem; }
  .shop__info > div { grid-template-columns: 76px 1fr; }
  .info-table__row { grid-template-columns: 78px 1fr; }
}

/* タブレット */
@media (min-width: 600px) {
  .section { padding: 60px 0; }
  .section__title { font-size: 1.7rem; }
  .points { grid-template-columns: repeat(3, 1fr); }
  .point { grid-template-columns: 1fr; text-align: center; row-gap: 4px; }
  .point__icon { grid-row: auto; margin: 0 auto 6px; }
  .shop-list { grid-template-columns: repeat(2, 1fr); }
  .shop__actions { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { grid-template-columns: repeat(3, 1fr); max-width: 760px; }
  .townpin__mark { width: 38px; height: 36px; }
  .townpin__mark::before { top: -14px; left: -5px; border-left-width: 24px; border-right-width: 24px; border-bottom-width: 16px; }
  .townpin__no { font-size: 1rem; margin-bottom: 4px; }
  .townpin__label { font-size: .78rem; padding: 1px 9px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-embeds { grid-template-columns: repeat(2, 1fr); }
}

/* PC */
@media (min-width: 1000px) {
  :root { --header-h: 74px; }
  .container { padding-inline: 28px; }
  .section { padding: 74px 0; }
  .hero { padding: 56px 0 60px; }
  .hero__logo { width: min(100%, 300px); }
  .hero__copy { font-size: 1.3rem; }
  .hero__badge { font-size: 1.3rem; padding: 10px 30px; }
  .hero__mascot { right: max(0px, calc(50% - 570px)); top: 6%; width: 250px; opacity: .26; }
  .header__logo { height: 56px; }
  .header__name { font-size: 1.45rem; }
  .header__sub { font-size: .74rem; }
  .header__nav {
    display: flex;
    gap: 20px;
    font-family: var(--font-round);
    font-weight: 700;
    font-size: .95rem;
  }
  .header__nav a { padding: 6px 2px; border-bottom: 3px solid transparent; }
  .header__nav a:hover { border-bottom-color: var(--orange); color: var(--orange-dark); }
  .section__title { font-size: 1.9rem; }
  /* PCは2列。店舗が増えても自動で折り返します */
  .shop-list { grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .townmap { max-width: 620px; }
  .ig-grid { grid-template-columns: repeat(6, 1fr); }
  .ig-embeds { grid-template-columns: repeat(3, 1fr); }
  .lead { font-size: 1.06rem; padding: 24px; }
}

/* PCでは下部固定ナビを隠す（ヘッダーのメニューで移動できるため） */
@media (min-width: 1024px) {
  .tabbar { display: none; }
  body { padding-bottom: 0; }
  /* 固定ナビが無くなるぶん、TOPへボタンを下げる */
  .totop { bottom: 24px; right: 24px; width: 64px; height: 64px; }
}

/* 印刷 */
@media print {
  .header, .tabbar, .hero__mascot, .hero__bg { display: none !important; }
  body { padding-bottom: 0; background: #fff; }
  .js .reveal { opacity: 1; transform: none; }
}
