/* ================= SHOP LIST ================= */
/* .shoplist { padding-top: 110px; padding-bottom: 80px; } */
.sl-title { text-align:center; font-size: clamp(28px, 4vw, 40px); margin: 20px 0 60px; }

/* 地域（大きいバー） */
.sl-region {
  border: 1px solid var(--c-border);
  border-radius: 8px;
  background: var(--c-brand) ; /* 画像のトーンに合わせた薄グレー */
  margin: 24px 0;
  overflow: hidden;
}
.sl-region[open] { background: var(--c-accent); }
.sl-region__head {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px 18px;
  font-size: clamp(20px, 3vw, 20px); font-weight: 900;
  cursor: pointer; user-select: none;
  color: #fff
}
.sl-region__head::-webkit-details-marker { display: none; }
.sl-caret { width: 22px; height: 22px; transition: .2s; opacity: .6; }
.sl-caret.sm { width: 16px; height: 16px; }
.sl-region[open] > .sl-region__head .sl-caret { transform: rotate(180deg); }

.sl-region__body { background: #fff; padding: 8px 0 12px; }

/* 都道府県（小見出し） */
.sl-pref { border-top: 1px solid var(--c-border); }
.sl-pref:first-of-type { border-top: 0; }
.sl-pref__head {
  list-style: none; display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; font-weight: 700; font-size: clamp(16px, 2.3vw, 18px);
  cursor: pointer;
}
.sl-pref__head::-webkit-details-marker { display: none; }
.sl-pref[open] > .sl-pref__head .sl-caret { transform: rotate(180deg); opacity:.8; }

/* 店舗リスト */
.sl-stores { list-style: none; margin: 0; padding: 0 18px 6px; }
.sl-store { padding: 18px 0; border-top: 1px solid var(--c-border); }
.sl-store:first-child { border-top: 0; }

/* 店名  バッジ */
.sl-nameRow { display:flex; align-items:center; gap:10px; flex-wrap: wrap; }
.sl-name { margin: 0; font-size: clamp(18px, 2.6vw, 22px); font-weight: 900; }
.sl-badge {
  display:inline-block; padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing:.04em; color:#fff;
  background:#222;
}
.sl-badge.is-adults { background:#111; }
.sl-badge.is-kids   { background: var(--c-brand); }

/* 住所・マップリンク・TEL */
.sl-addr, .sl-tel { margin: 6px 0 0; }
.sl-map { display:inline-flex; align-items:center; gap:8px; text-decoration: none; }
.sl-map svg { width:18px; height:18px; }
.sl-tel a { text-decoration: none; border-bottom: 1px dashed rgba(0,0,0,.25); }
.sl-empty { color: var(--c-sub); padding: 8px 0 20px; }

/* ==== POPUP SHOP 追加スタイル ==== */
.sl-badge.is-popup{
  background: #111; color:#fff; border:1px solid rgba(255,255,255,.35);
  text-transform: uppercase;
}
.sl-date, .sl-venue, .sl-note{
  display:block; margin:.35rem 0 0; font-size:.92rem; color:#5c6b7a;
}
.sl-date svg, .sl-venue svg{
  width:1em; height:1em; margin-right:.35em; vertical-align:-0.15em;
}
.sl-note{ font-size:.85rem; color:#7b8a99; }

/* 小さめ画面の余白調整 */
@media (max-width: 720px){
  .shoplist { padding-top: 90px; }
  .sl-stores { padding: 0 14px 6px; }
}

/* ================= STORY LIST ================= */

.story-filter select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 2px solid #1e4cb3;
  border-radius: 10px;
  padding: 10px 36px 10px 20px;
  font-weight: bold;
  font-family: inherit;
  cursor: pointer;
  position: relative;
}

/* ▼グレーのくの字矢印 */
.story-filter {
  position: relative;
  display: inline-block;
}

.story-filter::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}
/* .story { padding-top: 110px; padding-bottom: 80px; } */
.story-head{
  display:flex; align-items:center; justify-content:space-between;
  gap: 16px; margin: 20px 0 60px;
}
.story-head h1{ margin:0; font-size: clamp(26px, 4vw, 36px); }

.story-filter select{
  appearance:none;
  border:1px solid var(--c-border);
  border-radius:10px;
  padding:10px 14px;
  background:#fff;
  min-width: 180px;
  font-weight:700;
}

/* グリッド */
.story-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 880px){
  .story-grid{ grid-template-columns: 1fr 1fr; gap: 34px 28px; }
}

/* カード */
.story-card{
  display:grid; gap:12px;
  grid-template-rows: auto 1fr;
  border-bottom:1px solid var(--c-border);
  padding-bottom: 24px;
}
.story-thumb{
  display:block; border-radius:12px; overflow:hidden;
}
.story-thumb img{
  width:100%; height:auto; display:block;
  aspect-ratio: 16 / 9; object-fit: cover;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.story-thumb:hover img{ transform: scale(1.02); }

.story-title{ font-size: clamp(18px, 2.6vw, 20px); line-height: 1.6; margin: 0 0 6px; }
.story-title a{ text-decoration: none; color: var(--c-text); }
.story-title a:hover{ text-decoration: underline; }

.story-cat{
  list-style:none; margin:0 0 8px; padding:0; display:flex; gap:10px; flex-wrap: wrap;
  font-size: 12px; letter-spacing:.04em;
}
.story-cat a{
  display:inline-block; padding:4px 8px; border-radius:999px;
  border:1px solid var(--c-border); text-decoration:none; color: inherit;
  background:#fff;
}

.story-excerpt{
  margin:0;
  color: var(--c-sub);
  display:-webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow:hidden;
}

/* ページャ */
.pager{
  display:flex; gap:8px; justify-content:center; align-items:center;
  margin-top: 26px;
}
.pager .page{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:38px; height:38px; border-radius:8px;
  border:1px solid var(--c-border); background:#fff; text-decoration:none; color:inherit;
  font-weight:700;
}
.pager .page.is-current{ background: var(--c-brand); color:#fff; border-color: var(--c-brand); }
.pager .page.next{ padding:0 12px; }


/* ===== STORY: single ===== */
.story-single {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 28px) 0 64px;
}
.ss-head { margin-bottom: 20px; }
.ss-title {
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.25;
  letter-spacing: .02em;
  margin: 0 0 8px;
}
.ss-tags {
  display: flex; flex-wrap: wrap; gap: 8px 10px; margin: 0; padding: 0; list-style: none;
}
.ss-tags a {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--c-border, #e6e8ec);
  border-radius: 999px;
  color: var(--c-text, #111);
  text-decoration: none;
  font-size: 13px;
  background: #fff;
}
.ss-tags a:hover { border-color: var(--c-brand, #3b82f6); }

.ss-thumb { margin: 14px 0 26px; }
.ss-thumb img { width: 100%; height: auto; border-radius: 14px; }

.ss-body {
  font-size: 16.5px;
  line-height: 1.9;
  color: var(--c-text, #111);
}
.ss-body p { margin: 0 0 1.2em; }
.ss-body h2, .ss-body h3, .ss-body h4 {
  margin: 2em 0 .6em;
  line-height: 1.35;
  letter-spacing: .01em;
}
.ss-body figure { margin: 1.2em 0; }
.ss-body img { border-radius: 10px; }

.ss-recommend { margin: 48px 0 10px; }
.ss-recommend__title {
  font-size: clamp(18px, 2.4vw, 22px);
  margin: 0 0 14px;
}

/* カード（トップのラインナップとトーン合わせ） */
.rec-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: clamp(12px, 2vw, 18px);
}
@media (min-width: 768px){
  .rec-grid > .card { grid-column: span 6; }
}
@media (min-width: 1024px){
  .rec-grid > .card { grid-column: span 4; }
}
.card {
  background: #fff;
  border: 1px solid var(--c-border, #e9edf2);
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(16,24,40,.02);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(16,24,40,.06); }

.card__thumb { display:block; aspect-ratio: 4/3; background:#f6f8fb; }
.card__thumb img { width:100%; height:100%; object-fit:contain; }
.card__thumb .ph{width:100%;height:100%;}

.card__body { padding: 16px; display:flex; flex-direction:column; gap:10px; }
.card__title { font-size: 16px; line-height:1.5; margin:0; }
.card__title a { color:inherit; text-decoration:none; }
.card__title a:hover { text-decoration: underline; text-underline-offset: 3px; }

.card__excerpt { margin:0; color:#596174; font-size: 13.5px; line-height:1.7; }

.card__actions {
  display:flex; flex-wrap:wrap; gap:10px; margin-top: 6px;
}

/* ボタン微調整（ページ内） */
.story-single .btn-pill {
  padding-inline: 18px;
  height: 40px;
  border-radius: 999px;
}
.story-single .btn-pill.is-sub {
  background: #eef6ff;
  color: var(--c-brand, #2f6edc);
  border: 1px solid rgba(47,110,220,.2);
}
.story-single .btn-pill.is-sub:hover{ filter: brightness(0.98); }

/* フッターナビの余白調整 */
.ss-foot { margin: 36px 0 0; display:flex; justify-content:center; }
.ss-foot .btn-pill { min-width: 200px; }

  .single-story main.story-single {
    padding-top: 60px;
  }

/* セレクト等のフォームに被らない全体余白の調整が必要ならここで */

/* ===== NEWS: archive/list layout ===== */
.archive-news .news-archive {
  margin: 30px auto 90px;
  padding: 15px 0;
}
@media (max-width: 768px){
  .archive-news { padding: 0 16px; } /* SPで左右に余白を確保 */
  .archive-news .news-archive { margin: 40px auto 80px; }
}

.archive-news .section-header{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; margin-bottom:16px;
}
.archive-news .section-title{
  font-size: clamp(20px, 2.6vw, 28px);
  letter-spacing:.02em; font-weight:900; margin:0;
}
.archive-news .btn-more{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 14px; border:1px solid var(--c-border);
  border-radius:999px; background:#fff; font-size:13px; line-height:1;
  text-decoration:none; white-space:nowrap;
}
.archive-news .btn-more:hover{ opacity:.85; }

.archive-news .news-list{ margin:0; padding:0; list-style:none; }
.archive-news .news-item{
  padding:18px 0; border-top:1px solid rgba(0,0,0,.08);
}
.archive-news .news-item:first-child{ border-top:1px solid rgba(0,0,0,.16); }
.archive-news .news-item:last-child{ border-bottom:1px solid rgba(0,0,0,.16); }
.archive-news .news-date{
  display:block; font-size:12px; color:#7a7a7a; margin-bottom:6px;
}
.archive-news .news-title{
  display:inline-block; font-weight:800; color:#111;
  font-size: clamp(15px, 2.2vw, 18px); line-height:1.55; text-decoration:none;
}
.archive-news .news-title:hover{ text-decoration:underline; }
.archive-news .news-excerpt{
  margin-top:6px; color:#4b4b4b; font-size:13px; line-height:1.7;
}

/* 既存の“白いカード”系が残ってたら殺す */
.archive-news .news-card,
.archive-news .news-box{
  background:transparent!important; border:0!important; box-shadow:none!important;
  padding:0!important; border-radius:0!important;
}

/* ページャの見た目を軽く整える（既存トーンに合わせる） */
.archive-news .pager{ display:flex; gap:8px; justify-content:center; margin-top:26px; }
.archive-news .pager .page-numbers{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:38px; height:38px; padding:0 12px;
  border:1px solid var(--c-border); border-radius:8px; background:#fff; text-decoration:none;
  font-weight:700; color:inherit;
}
.archive-news .pager .current{
  background:var(--c-brand); color:#fff; border-color:var(--c-brand);
}

/* ===== Story: トークン ===== */
:root{
  --story-radius: 12px;
  --story-shadow: 0 10px 30px rgba(0,0,0,.08);
  --story-space: clamp(32px, 6vw, 72px);
}
 .story-article section{ margin-block: var(--story-space); }
 .story-article .content{ 
  max-width: 780px; /* 少し幅を広げて読みやすく */
  margin-inline:auto; 
}
.story-article .content p{ 
  line-height: 2; /* 行間を広げて可読性UP */
  margin: 0 0 1.5em; /* 段落間の余白を調整 */
  font-size: 17px; 
  color: #333; 
  letter-spacing: .03em;
}

/* ===== Hero（汎用） ===== */

main > section.story-hero {
  padding: 25px 0 1px;
}

.story-hero {
  padding: clamp(24px, 5vw, 64px) 16px; /* 上下の余白を確保 */
}
.story-hero-inner{ 
  max-width: 1024px; /* コンテンツ幅を制御 */
  margin: 0 auto;
  text-align: center; /* 全体を中央揃えに */
}
.story-title{ 
  font-size: clamp(28px, 4.5vw, 48px); 
  letter-spacing:.01em; 
  margin:0 0 16px; 
  line-height: 1.3;
}
.story-excerpt{ 
  font-size: clamp(16px, 2vw, 18px); 
  color:#555; 
  margin:0 auto 24px; 
  line-height:1.8; 
  max-width: 720px;
}
.story-hero-visual {
  margin-top: clamp(24px, 5vw, 48px);
}
.story-hero-visual img{ 
  display:block; width:100%; height:auto; 
  border-radius: var(--story-radius); 
  box-shadow: var(--story-shadow); 
 }

article.story-content h3
 {
    font-size: 1.9em;
    line-height: 1.77em;
    letter-spacing: 0.7px;
}

article.story-content img {
    border-radius: 10px;
  }

/* ===== 目次（冒頭） ===== */
.story-toc{ 
  max-width: 780px; 
  margin: 0 auto 40px;
  padding:20px 24px; 
  background:#f7f9fc; 
  border:1px solid var(--c-border); 
  border-radius:10px; 
}
.story-toc-label{ display:block; font-size:13px; color:#666; margin-bottom:6px; }
.story-toc-list{ margin:0; padding-left: 1.2em; }
.story-toc-list li{ margin:2px 0; }
.story-toc-list li.lvl-3{ margin-left: 1em; font-size: 106%; }

/* ===== 追従ミニドック ===== */
.story-dock{
  position: fixed; /* stickyからfixedに変更し、常に表示 */
  bottom: 20px; 
  right: 20px; 
  z-index:99;
  display:flex; gap:8px; align-items:center; justify-content:flex-end;
}

 .dock-btn{
  border:1px solid rgba(0,0,0,0.1); 
  background:rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color:#111; 
  border-radius:999px;
  padding:10px 16px; 
  font-size:14px; 
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  text-decoration:none; 
  display:inline-flex; 
  align-items:center; 
  gap:8px;
  transition: transform 0.2s ease;
}
.dock-btn:hover {
  transform: translateY(-2px);
}
.dock-btn.products{ 
  color:var(--c-brand); 
  border-color: rgba(0, 172, 228, 0.3);
}

.dock-toc-panel{
  position: fixed; right:12px; bottom:64px; width:min(88vw, 320px); max-height:60vh; overflow:auto;
  background:#fff; border:1px solid var(--c-border); border-radius:12px; box-shadow: 0 15px 40px rgba(0,0,0,.18); padding:10px 12px;
}
.dock-toc-panel header{ display:flex; justify-content:space-between; align-items:center; font-weight:600; margin-bottom:6px; }
.dock-toc-panel ol{ margin:0; padding-left:1.1em; }
.dock-toc-panel li{ margin:4px 0; }
.dock-toc-panel li.lvl-3{ margin-left: .8em; font-size:95%; }

/* ===== Story: Meta Mini Card（functions.php 版と同じ） ===== */
.story-meta-card{max-width:720px;margin:12px auto 0;padding:12px;background:#f6f7f8;border:1px solid var(--c-border);border-radius:12px;position:relative}
.story-meta-rows{display:grid;gap:8px}
.meta-row{display:flex;gap:10px;align-items:flex-start}
.meta-label{flex:0 0 92px;font-size:12px;color:#555;line-height:1.6}
.meta-value{flex:1 1 auto;font-size:13.5px;color:#222;line-height:1.7}
.meta-chips{display:flex;flex-wrap:wrap;gap:6px}
.chip{display:inline-block;border:1px solid var(--c-border);background:#fff;border-radius:999px;padding:3px 8px;font-size:12px;line-height:1.6}
.chip.more{background:#eef3ff;border-color:#dbe6ff;color:#2b57d9;cursor:pointer}
.story-meta-card.is-collapsed .story-meta-rows{max-height:40px;overflow:hidden;position:relative}
.story-meta-card.is-collapsed .story-meta-rows::after{content:"";position:absolute;inset:0;background:linear-gradient(to bottom,rgba(246,247,248,0) 0%,#f6f7f8 60%)}
.meta-toggle{margin-top:8px;font-size:12px;color:#444;background:transparent;border:0;cursor:pointer;text-decoration:underline}



/* ===== おすすめ（横スワイプ） ===== */
.story-products{ margin:56px 0 24px; }
.story-products > h2{ font-size: clamp(18px,2vw,24px); margin: 0 0 10px; }
.p-carousel{ position:relative; overflow:hidden; }
.p-track{ display:flex; gap:16px; overflow:auto; scroll-snap-type:x mandatory; padding:6px; }
.p-card{ flex:0 0 clamp(220px, 28vw, 280px); background:#fff; border-radius:14px;
         box-shadow: var(--story-shadow); text-decoration:none; color:inherit; scroll-snap-align:start; border:1px solid var(--c-border); }
.p-card figure{ margin:0; border-bottom:1px solid #eee; aspect-ratio: 4 / 3; overflow:hidden;
                border-top-left-radius:14px; border-top-right-radius:14px; }
.p-card img{ width:100%; height:100%; object-fit:cover; display:block; }
.p-meta{ padding:12px; }
.p-meta h3{ font-size:16px; margin:0 0 6px; }
.p-cta{ display:inline-block; margin-top:8px; color:var(--c-brand); font-weight:600; }
.p-nav{ position:absolute; top:50%; transform:translateY(-50%); width:36px; height:36px; border-radius:50%;
        background:#fff; border:1px solid var(--c-border); box-shadow:0 6px 20px rgba(0,0,0,.15); }
.p-nav.prev{ left:8px; } 
.p-nav.next{ right:8px; }
@media (hover:hover){ .p-card:hover{ transform:translateY(-2px); box-shadow:0 12px 28px rgba(0,0,0,.10);} }


/* ===== SINGLE NEWS ===== */
.single-news-wrap { margin: 56px auto 96px; }
@media (max-width: 768px){
  .single-news-wrap { margin: 40px auto 88px; padding: 0 16px; } /* 念のためSP余白を強制 */
}

.news-article{
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(16,24,40,.04);
  padding: clamp(18px, 3vw, 32px);
}
.news-article__date{
  display:block;
  font-size: 12px;
  color: #7a7a7a;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.news-article__title{
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.55;
  font-weight: 900;
  margin: 0 0 14px;
}
.news-article__thumb{ margin: 14px 0 20px; }
.news-article__thumb img{ width:100%; height:auto; border-radius: 12px; }
.news-article__body{
  font-size: 16.5px;
  line-height: 1.9;
  color: var(--c-text);
}
.news-article__body p{ margin: 0 0 1.2em; }
.news-article__body h2,
.news-article__body h3,
.news-article__body h4{ margin: 2em 0 .6em; line-height:1.35; }

/* 前後ナビは“箱の外”で余白を確保して並べる */
.news-nav{
  display:flex; justify-content:space-between; align-items:center;
  gap: 12px;
  margin: 18px 0 0;
  padding: 16px 2px 0;
}
.news-nav__btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-width: 180px; height: 40px; padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  background:#fff;
  font-weight: 800; text-decoration: none;
}
.news-nav__btn.is-prev{ }
.news-nav__btn.is-next{ }
.news-nav__btn.is-disabled{ opacity:.4; pointer-events:none; }
@media (max-width: 560px){
  .news-nav{ flex-direction:column; align-items:stretch; }
  .news-nav__btn{ width:100%; min-width:0; }
}

/* ================= SIZE GUIDE ================= */
/* .sizeguide { padding-top: 110px; padding-bottom: 80px; } */
.sizeguide__head { margin: 10px 0 24px; }
.size-hero { margin: 0 0 24px; border:1px solid var(--c-border); border-radius: 12px; overflow: hidden; }
.size-hero img { display:block; width:100%; height:auto; }
.size-hero .visually-hidden {display: none;}

.size-block { margin-top: 40px; }
.size-h2 { font-size: clamp(20px, 3.6vw, 26px); font-weight: 900; margin: 0 0 14px; }
.size-h3 { font-size: clamp(16px, 2.6vw, 18px); font-weight: 800; margin: 10px 0 8px; }

.table-scroll { overflow: auto; border:1px solid var(--c-border); border-radius: 10px; background:#fff; }
.tbl { width: 100%; border-collapse: collapse; min-width: 720px; }
.tbl th, .tbl td { padding: 10px 12px; border-bottom: 1px solid var(--c-border); text-align: center; }
.tbl thead th { position: sticky; top: 0; background: #f9fbfc; font-weight: 900; }
.tbl tbody th { text-align: left; font-weight: 800; background:#fff; }
.tbl tr:nth-child(even) td { background: #fcfdff; }

.size-note { color: var(--c-sub); line-height: 1.9; }
.size-ul { margin: 0; padding-left: 1.1em; color: var(--c-sub); line-height: 1.9; }
.size-ul li { margin: 4px 0; }

@media (max-width: 720px){
  .sizeguide { padding-top: 90px; }
}