:root {
  --red: #c94030;
  --red-light: #e05040;
  --red-dark: #9e2e22;
  --teal: #2a8c7e;
  --teal-light: #3aaa9a;
  --teal-dark: #1e6e62;
  --indigo: #2e4070;
  --gold: #9a7830;
  --cream: #faf6ee;
  --cream2: #f2ebe0;
  --bg-soft: #f5f1ec;
  --warm-bg: #ede3d0;
  --warm-bg2: #e4d8c4;
  --mid-bg: #d8ccb4;
  --ink: #1e1810;
  --ink-mid: #3a3028;
  --ink-light: #6a5e50;
  --stone: #9a8e80;
  --white: #ffffff;
  --shadow-sm: 0 1px 6px rgba(30,20,10,0.10);
  --shadow-md: 0 3px 14px rgba(30,20,10,0.13);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

body{
  font-family:'Noto Sans JP',sans-serif;
  background:#c8c0b0;
  display:flex;justify-content:center;
  min-height:100vh;
}

.phone{
  width:390px;
  min-height:100vh;
  background:var(--cream);
  position:relative;
  overflow:hidden;
}

/* ======= SCREEN SYSTEM (legacy compat) ======= */
.screen{display:none;flex-direction:column;min-height:100vh;padding-bottom:72px;}
.screen.active{display:flex;}

/* ======= HEADER ======= */
.header{
  background:var(--white);
  padding:10px 14px;
  display:flex;align-items:center;justify-content:space-between;
  position:sticky;top:0;z-index:50;
  border-bottom:1px solid #ede8e0;
  box-shadow:0 1px 8px rgba(30,20,10,0.07);
}

/* LOGO */
.logo-block{
  display:flex;align-items:baseline;gap:4px;
  text-decoration:none;color:inherit;flex-shrink:0;
}
.logo-main{
  font-family:'Zen Maru Gothic',sans-serif;
  font-size:20px;font-weight:900;color:var(--ink);
  letter-spacing:0.02em;
}
.logo-shoten{
  font-family:'Noto Serif JP',serif;
  font-size:11px;font-weight:700;color:var(--stone);
  letter-spacing:0.05em;
}

.header-right{display:flex;align-items:center;gap:8px;}
.header-lang{
  font-size:11px;font-weight:700;color:var(--ink-mid);
  border:none;border-radius:4px;
  padding:3px 8px;cursor:pointer;background:none;font-family:inherit;
  letter-spacing:0.05em;transition:background .15s,color .15s;
}
.header-lang:hover{background:var(--cream2);color:var(--teal);}
.header-contact{
  display:flex;align-items:center;justify-content:center;
  width:40px;height:40px;
  color:var(--ink-mid);text-decoration:none;
  border-radius:8px;transition:color .15s,background .15s;
}
.header-contact:hover{color:var(--teal);background:var(--cream2);}
.header-contact svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:2;}
.pc-nav{display:none;}
.header-menu{
  width:40px;height:40px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;
  cursor:pointer;background:none;border:none;
}
.header-menu span{display:block;width:22px;height:2px;background:var(--ink-mid);border-radius:2px;}
.header-back{
  display:flex;align-items:center;gap:6px;
  background:none;border:none;cursor:pointer;
  font-family:inherit;font-size:14px;font-weight:700;color:var(--ink-mid);
}
.header-back svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:2.5;}

/* ======= HERO (mock-c style) ======= */
.hero{
  position:relative;
  height:320px;
  overflow:visible;
}
.hero > img.hero-img{
  width:100%;height:320px;
  object-fit:cover;object-position:center top;
  display:block;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.55) 70%,rgba(0,0,0,0.7) 100%);
}
.hero-text{
  position:absolute;
  bottom:60px;left:20px;right:20px;
  color:var(--white);
}
.hero-text h1{
  font-family:'Zen Maru Gothic',sans-serif;
  font-weight:900;font-size:26px;line-height:1.25;
  text-shadow:0 2px 8px rgba(0,0,0,0.4);
  margin-bottom:4px;
}
.hero-text .subtitle{
  font-size:12px;font-weight:500;opacity:.88;letter-spacing:0.06em;
}

/* ======= SEARCH CARD (mock-c style) ======= */
.search-card{
  background:var(--white);
  border-radius:12px;
  padding:14px 16px;
  box-shadow:0 4px 20px rgba(0,0,0,0.15);
  margin:-30px 16px 0;
  position:relative;
  z-index:10;
}
.search-card-label{
  font-size:11px;font-weight:700;
  color:var(--stone);letter-spacing:0.05em;text-transform:uppercase;
  margin-bottom:10px;
}
.search-card-btns{display:flex;gap:8px;}
.search-btn{
  flex:1;padding:10px 8px;border-radius:8px;border:none;
  font-size:12px;font-weight:700;cursor:pointer;
  font-family:inherit;
  display:flex;align-items:center;justify-content:center;gap:5px;
  transition:opacity .15s;
}
.search-btn:hover{opacity:.88;}
.search-btn-primary{background:var(--teal);color:var(--white);}
.search-btn-secondary{background:var(--cream2);color:var(--teal-dark);border:1.5px solid var(--teal-light);}

/* ======= SECTION GENERIC (mock-c style) ======= */
.section{padding:36px 16px;}
.section+.section{padding-top:0;}
.section-heading{
  font-family:'Zen Maru Gothic',sans-serif;
  font-weight:900;font-size:17px;color:var(--ink);
  margin-bottom:20px;
  display:flex;align-items:center;gap:8px;
}
.section-heading::before{
  content:'';display:inline-block;
  width:4px;height:18px;
  background:var(--teal);border-radius:2px;
  flex-shrink:0;
}
.section-sub{font-size:11px;color:var(--stone);font-weight:500;margin-left:2px;}
.section-more{
  font-size:12px;font-weight:600;color:var(--teal);
  text-decoration:none;border-bottom:1px solid var(--teal);padding-bottom:1px;
}

/* ======= LEGACY BLOCK STYLES (inner pages / compat) ======= */
.block-light{background:var(--cream);padding:20px 14px 0;}
.block-dark{background:var(--warm-bg);padding:20px 14px 0;}
.block-dark2{background:var(--warm-bg2);padding:20px 14px 0;}
.sect-title-light{
  font-family:'Noto Serif JP',serif;
  font-size:16px;font-weight:900;color:var(--ink);
  display:flex;align-items:center;gap:8px;margin-bottom:12px;
}
.sect-title-light::before{content:'';display:block;width:4px;height:18px;background:var(--red);border-radius:2px;}
.sect-title-dark{
  font-family:'Noto Serif JP',serif;
  font-size:16px;font-weight:900;color:var(--ink);
  display:flex;align-items:center;gap:8px;margin-bottom:12px;
}
.sect-title-dark::before{content:'';display:block;width:4px;height:18px;background:var(--red);border-radius:2px;}
.sect-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px;}
.sect-more-light{font-size:12px;font-weight:600;color:var(--teal);cursor:pointer;text-decoration:none;border-bottom:1px solid var(--teal);padding-bottom:1px;}
.sect-more-dark{font-size:12px;font-weight:600;color:var(--teal);cursor:pointer;border-bottom:1px solid var(--teal);padding-bottom:1px;}

/* ======= ROUTE CARDS (mock-c style) ======= */
.routes-grid{display:flex;flex-direction:column;gap:12px;}
.route-card{
  background:var(--white);border-radius:12px;padding:18px;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  display:flex;flex-direction:column;gap:10px;
  text-decoration:none;color:inherit;
  transition:box-shadow .2s;
}
.route-card:hover{box-shadow:0 4px 16px rgba(0,0,0,0.13);}
.route-card-top{display:flex;align-items:flex-start;gap:14px;}
.route-icon-circle{
  width:64px;height:64px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:34px;flex-shrink:0;
  box-shadow:0 2px 8px rgba(0,0,0,0.10);
}
.route-icon-circle .icon-dark{filter:brightness(0.55);}
.route-card-info{flex:1;}
.route-card-title{font-weight:700;font-size:14px;color:var(--ink);margin-bottom:4px;line-height:1.35;}
.route-stops{font-size:11px;color:var(--ink-light);line-height:1.6;}
.route-stops span{display:inline;}
.route-stops span+span::before{content:' → ';color:var(--teal);font-weight:700;}
.route-badge{
  display:inline-flex;align-items:center;gap:5px;
  background:var(--cream2);border-radius:20px;
  padding:6px 14px;font-size:13px;font-weight:700;color:var(--ink-mid);
  align-self:flex-start;
}

/* ======= MAP SECTION ======= */
.map-section{background:var(--white);}
.map-wrap{margin:0 -16px;}
.access-chips{
  display:flex;gap:8px;overflow-x:auto;
  padding:14px 0 4px;scrollbar-width:none;
}
.access-chips::-webkit-scrollbar{display:none;}
.access-chip{
  flex-shrink:0;background:var(--white);border-radius:16px;
  padding:14px 16px;text-align:center;min-width:84px;
  border:1.5px solid var(--warm-bg2);
  box-shadow:var(--shadow-sm);
  display:flex;flex-direction:column;align-items:center;gap:4px;
}
.access-chip-icon{
  display:flex;align-items:center;justify-content:center;
  width:52px;height:52px;border-radius:50%;
  font-size:26px;margin-bottom:2px;
}
.ac-train .access-chip-icon{background:#dff0fb;}
.ac-subway .access-chip-icon{background:#e0f4f2;}
.ac-car .access-chip-icon{background:#fde8e5;}
.access-chip-name{font-size:13px;font-weight:700;color:var(--ink-mid);display:block;}
.access-chip-sub{font-size:11px;color:var(--ink-light);display:block;font-weight:500;}

/* ======= CATEGORIES (chip style) ======= */
.cats-section{background:var(--bg-soft);}
.category-chips{
  display:flex;gap:8px;overflow-x:auto;
  padding-bottom:4px;scrollbar-width:none;
}
.category-chips::-webkit-scrollbar{display:none;}
.cat-chip{
  flex-shrink:0;border:1.5px solid var(--teal);border-radius:20px;
  padding:6px 16px;font-size:12px;color:var(--teal);
  background:var(--white);cursor:pointer;
  font-family:inherit;font-weight:500;
  transition:background .15s,color .15s;white-space:nowrap;
  text-decoration:none;display:inline-block;
}
.cat-chip:hover,.cat-chip.active{background:var(--teal);color:var(--white);}

/* ======= SHOP CARDS — OLD STYLE (mod_articles_category override) ======= */
.shop-tabs{
  display:flex;background:#e4ddd0;border-radius:7px;padding:3px;gap:3px;margin-bottom:10px;
}
.stab{
  flex:1;border:none;background:none;
  font-family:inherit;font-size:11px;font-weight:700;color:var(--stone);
  cursor:pointer;padding:7px 4px;border-radius:5px;transition:all .2s;
}
.stab.active{background:var(--white);color:var(--red-dark);box-shadow:var(--shadow-sm);}

.shop-list{display:flex;flex-direction:column;gap:8px;}
.shop-card{
  background:var(--white);
  border-radius:10px;border:1px solid #e8e0d0;
  display:flex;overflow:hidden;cursor:pointer;
  box-shadow:var(--shadow-sm);transition:transform .15s;
}
.shop-card:active{transform:scale(.98);}
.shop-thumb{
  width:88px;height:82px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:700;color:var(--stone);
  text-align:center;line-height:1.4;
  background:#ede4d4;overflow:hidden;
}
.shop-thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.shop-thumb.has-photo{background:none;}
.st-waraku{background:#ede4d4;}
.st-nobi{background:#f4e8de;}
.st-cibi{background:#dce8e4;}
a.shop-card{text-decoration:none;color:inherit;}
a.shop-card:hover{transform:scale(.98);}
.shop-date{font-size:10px;color:var(--stone);margin-top:2px;}
.shop-info{flex:1;padding:9px 12px 9px 10px;display:flex;flex-direction:column;justify-content:space-between;}
.shop-name-row{display:flex;justify-content:space-between;align-items:flex-start;}
.shop-name{font-family:'Noto Serif JP',serif;font-size:14px;font-weight:700;color:var(--ink);line-height:1.3;}
.shop-dist{font-size:10px;color:var(--stone);font-weight:600;white-space:nowrap;padding-top:2px;}
.shop-genre{font-size:11px;color:var(--ink-light);margin-top:2px;}
.shop-foot{display:flex;align-items:center;justify-content:space-between;margin-top:6px;}
.s-open{font-size:11px;font-weight:700;background:#e8f4e8;color:#2a7a3a;padding:2px 9px;border-radius:20px;border:1px solid #c0dcc0;}
.s-closed{font-size:11px;font-weight:700;background:#f0ede8;color:var(--stone);padding:2px 9px;border-radius:20px;border:1px solid #d8d0c4;}
.shop-arrow{color:var(--stone);font-size:16px;}

/* ======= SHOP CARDS — HORIZONTAL (mock-c home style) ======= */
.shops-grid{display:flex;flex-direction:column;gap:10px;}
.shop-card-h{
  background:var(--white);border-radius:10px;overflow:hidden;
  display:flex;box-shadow:0 2px 8px rgba(0,0,0,0.07);
  text-decoration:none;color:inherit;transition:box-shadow .2s;
}
.shop-card-h:hover{box-shadow:0 4px 16px rgba(0,0,0,0.13);}
.shop-photo-h{
  width:80px;height:80px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:22px;font-weight:900;color:var(--ink-light);
  font-family:'Noto Serif JP',serif;overflow:hidden;
}
.shop-photo-h img{width:100%;height:100%;object-fit:cover;display:block;}
.shop-info-h{
  flex:1;padding:10px 12px;
  display:flex;flex-direction:column;justify-content:center;gap:3px;
}
.shop-name-h{font-weight:700;font-size:13px;color:var(--ink);line-height:1.3;}
.shop-genre-h{font-size:10px;color:var(--stone);line-height:1.4;}
.shop-status{
  display:inline-flex;align-items:center;gap:4px;
  font-size:10px;font-weight:700;margin-top:2px;
}
.shop-status::before{content:'';width:6px;height:6px;border-radius:50%;display:inline-block;}
.status-open{color:#2a9d2a;}
.status-open::before{background:#2a9d2a;}
.status-closed{color:var(--stone);}
.status-closed::before{background:var(--stone);}

/* ======= NEWS (mock-c style) ======= */
.news-section{background:var(--white);}
.news-list{display:flex;flex-direction:column;}
.news-item{
  padding:18px 0;border-bottom:1px solid #eee8de;
  display:flex;flex-direction:column;gap:6px;
}
.news-item:last-child{border-bottom:none;}
.news-meta{display:flex;align-items:center;gap:8px;}
.news-date{font-size:11px;color:var(--stone);font-weight:500;}
.news-tag{
  font-size:10px;font-weight:700;padding:2px 8px;border-radius:4px;
  background:var(--cream2);color:var(--teal-dark);
}
.news-title{font-size:13px;font-weight:500;color:var(--ink-mid);line-height:1.45;}
.news-item-link{display:block;text-decoration:none;color:inherit;}
.news-item-link:hover .news-title{color:var(--teal-dark);text-decoration:underline;}

/* ======= ABOUT SECTION ======= */
.about-section{background:var(--cream);}
.about-block{border-left:4px solid var(--teal);padding-left:16px;}
.about-block h3{
  font-family:'Zen Maru Gothic',sans-serif;font-weight:900;font-size:15px;
  color:var(--ink);margin-bottom:8px;
}
.about-block p{font-size:13px;color:var(--ink-light);line-height:1.8;margin-bottom:10px;}
.about-block p:last-child{margin-bottom:0;}

/* ======= BLOCK PADDING BOTTOM ======= */
.pb16{padding-bottom:16px;}
.pb20{padding-bottom:20px;}

/* ======= FOOTER (mock-c style) ======= */
.footer{
  background:var(--ink);padding:24px 16px;color:var(--white);
}
.footer-inner{display:flex;flex-direction:column;gap:16px;}
.footer-brand{display:flex;flex-direction:column;gap:4px;}
.footer-logo-text{
  font-family:'Zen Maru Gothic',sans-serif;font-weight:900;font-size:14px;color:var(--white);
}
.footer-tagline{font-size:11px;color:var(--stone);}
.footer-links{display:flex;flex-direction:column;gap:6px;}
.footer-links a{font-size:12px;color:var(--teal-light);text-decoration:none;transition:color .15s;}
.footer-links a:hover{color:var(--white);}
.footer-copy{
  margin-top:16px;font-size:10px;color:var(--stone);
  padding-top:12px;border-top:1px solid rgba(255,255,255,0.08);
}

/* ======= BOTTOM NAV (mock-c style) ======= */
.bottom-nav{
  position:fixed;bottom:0;left:50%;transform:translateX(-50%);
  width:390px;background:var(--white);
  border-top:1px solid #e8e0d0;
  display:flex;
  z-index:100;
  box-shadow:0 -3px 14px rgba(30,20,10,0.10);
}
.bn-item{
  flex:1;display:flex;flex-direction:column;align-items:center;
  padding:6px 4px 10px;text-decoration:none;
  color:var(--stone);font-size:11px;font-weight:600;
  gap:3px;transition:color .15s;
}
.bn-item:hover{color:var(--teal);}
.bn-item.active{color:var(--teal-dark);}
.bn-icon{
  font-size:26px;line-height:1;
  width:46px;height:46px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  transition:background .18s;
}
.bn-item:hover .bn-icon{background:var(--cream2);}
.bn-item.active .bn-icon{background:rgba(42,140,126,.14);}

/* ======= DETAIL PAGE ======= */
.detail-hero{
  width:100%;aspect-ratio:16/9;
  background:linear-gradient(160deg,#ede4d4 0%,#d8ccb8 100%);
  position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.detail-hero-bg-text{
  position:absolute;
  font-family:'Noto Serif JP',serif;
  font-size:60px;font-weight:900;
  color:rgba(100,80,55,0.07);
  letter-spacing:6px;white-space:nowrap;
  bottom:10px;right:-10px;
}
.detail-hero-icon{font-size:min(30vw,160px);z-index:1;position:relative;}
.detail-hero-badge{
  position:absolute;top:12px;right:12px;
  background:var(--white);border-radius:20px;
  padding:4px 10px;font-size:11px;font-weight:700;
  border:1px solid #e8e0d0;
  display:flex;align-items:center;gap:5px;
}
.badge-open{width:11px;height:11px;border-radius:50%;background:#3a9a4a;display:inline-block;}
.badge-closed{width:11px;height:11px;border-radius:50%;background:var(--stone);display:inline-block;}
.badge-irregular{width:11px;height:11px;border-radius:50%;background:var(--gold);display:inline-block;}
.detail-head{
  background:var(--white);
  padding:20px 22px 18px;
  border-bottom:1px solid #ede8e0;
}
.d-cat-tag{
  font-size:10px;font-weight:700;
  background:#dce8f0;color:var(--indigo);
  padding:2px 9px;border-radius:20px;
  display:inline-block;margin-bottom:7px;
}
.d-name{
  font-family:'Noto Serif JP',serif;
  font-size:22px;font-weight:900;color:var(--ink);
  line-height:1.2;margin-bottom:4px;
}
.d-sub{font-size:12px;color:var(--stone);font-weight:500;}
.d-rating{display:flex;align-items:center;gap:8px;margin-top:8px;}
.stars{color:var(--gold);font-size:18px;letter-spacing:1px;}
.rating-num{font-size:14px;font-weight:700;color:var(--ink-mid);}
.review-ct{font-size:12px;color:var(--stone);}

.d-actions{
  padding:14px 20px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:10px;
  background:var(--white);border-bottom:1px solid #ede8e0;
}
.abt{
  display:flex;flex-direction:column;align-items:center;gap:6px;
  border:1.5px solid #e4ddd0;border-radius:8px;
  padding:14px 8px;cursor:pointer;background:var(--cream);
  transition:background .15s;font-family:inherit;
}
.abt:active{background:var(--cream2);}
.abt svg{width:26px;height:26px;stroke:var(--ink-mid);fill:none;stroke-width:2.2;}
.abt-label{font-size:12px;font-weight:700;color:var(--ink-mid);}
.abt.hl{background:var(--red);border-color:var(--red-dark);}
.abt.hl svg{stroke:#fff;}
.abt.hl .abt-label{color:#fff;}

/* ここへ行く — Google Maps CTA */
.d-maps-cta-wrap{
  padding:16px 16px 4px;
}
.d-maps-cta{
  display:flex;align-items:center;gap:14px;
  background:#fff;
  border:2px solid #34A853;
  border-radius:12px;
  padding:14px 16px;
  text-decoration:none;
  color:var(--ink);
  transition:background .18s,box-shadow .18s;
  box-shadow:0 2px 10px rgba(52,168,83,.15);
}
.d-maps-cta:hover,.d-maps-cta:active{
  background:#f0faf2;
  box-shadow:0 4px 18px rgba(52,168,83,.25);
}
.d-maps-cta-icon{
  width:44px;height:44px;border-radius:50%;
  background:#e8f5e9;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.d-maps-cta-body{flex:1;}
.d-maps-cta-main{
  font-size:16px;font-weight:800;color:#1e7e34;
  line-height:1.2;
}
.d-maps-cta-sub{
  font-size:11px;color:var(--stone);margin-top:2px;
}
.d-maps-cta-arrow{
  stroke:#34A853;flex-shrink:0;
}

.d-info-block{
  background:var(--white);
  border-radius:10px;border:1px solid #e8e0d0;
  overflow:hidden;box-shadow:var(--shadow-sm);
}
.info-row{
  display:flex;padding:14px 16px;
  border-bottom:1px solid #f0ece4;align-items:flex-start;gap:14px;
}
.info-row:last-child{border-bottom:none;}
.info-lbl{font-size:10px;font-weight:700;color:var(--stone);min-width:52px;padding-top:2px;flex-shrink:0;letter-spacing:.04em;}
.info-val{font-size:13px;color:var(--ink-mid);font-weight:400;line-height:1.65;}
.info-val a{color:var(--indigo);text-decoration:underline;}

.d-desc{
  margin:18px 16px 0;background:var(--white);
  border-radius:10px;border:1px solid #e8e0d0;
  padding:16px;box-shadow:var(--shadow-sm);
}
.d-desc-title{
  font-family:'Noto Serif JP',serif;font-size:13px;font-weight:700;color:var(--ink);
  margin-bottom:12px;padding-bottom:9px;border-bottom:1px solid #f0ece4;
}
.d-desc-body{font-size:12px;color:var(--ink-mid);line-height:1.85;}

/* NEARBY */
.nearby-scroll{
  display:flex;gap:10px;overflow-x:auto;padding-bottom:4px;scrollbar-width:none;
}
.nearby-scroll::-webkit-scrollbar{display:none;}
.nearby-card{
  min-width:140px;background:var(--white);
  border-radius:10px;border:1px solid #e0d8c8;
  overflow:hidden;cursor:pointer;flex-shrink:0;
  box-shadow:var(--shadow-sm);transition:transform .15s;
}
.nearby-card:active{transform:scale(.97);}
.nearby-thumb{
  width:100%;height:80px;
  display:flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:700;color:var(--stone);
  text-align:center;line-height:1.4;
}
.nt1{background:#f8e8e0;}
.nt2{background:#e0ede8;}
.nt3{background:#dce4f0;}
.nearby-info{padding:8px 10px 10px;}
.nearby-name{font-size:12px;font-weight:700;color:var(--ink);margin-bottom:2px;}
.nearby-genre{font-size:10px;color:var(--stone);}
.nearby-dist{font-size:10px;color:var(--ink-light);font-weight:600;margin-top:4px;}

.to-cat-btn{
  width:100%;background:var(--white);border:1.5px solid #e4ddd0;border-radius:10px;
  padding:13px;font-family:inherit;font-size:13px;font-weight:700;
  color:var(--indigo);cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;
}
.to-cat-btn svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2;}

/* ======= CATEGORY PAGE ======= */
.cat-pg-tabs{
  display:flex;background:#e4ddd0;padding:4px;gap:3px;margin:12px 14px;border-radius:8px;
}
.cptab{
  flex:1;border:none;border-radius:5px;
  font-family:inherit;font-size:11px;font-weight:700;
  padding:8px 4px;cursor:pointer;color:var(--stone);background:none;transition:all .2s;
}
.cptab.active{background:var(--white);color:var(--red-dark);box-shadow:var(--shadow-sm);}

.cat-filter{
  display:flex;gap:7px;margin:0 14px 12px;
  overflow-x:auto;scrollbar-width:none;padding-bottom:2px;
}
.cat-filter::-webkit-scrollbar{display:none;}
.cfchip{
  white-space:nowrap;border:1.5px solid #d8d0c4;
  background:var(--white);border-radius:20px;
  padding:5px 12px;font-family:inherit;font-size:11px;font-weight:700;
  color:var(--stone);cursor:pointer;transition:all .2s;flex-shrink:0;
}
.cfchip.active{background:var(--red);border-color:var(--red-dark);color:#fff;}

.cat-shop-list{display:flex;flex-direction:column;gap:8px;padding:0 14px;}
.cat-card{
  background:var(--white);border:1px solid #e8e0d0;border-radius:10px;
  overflow:hidden;display:flex;cursor:pointer;
  box-shadow:var(--shadow-sm);transition:transform .15s;
}
.cat-card:active{transform:scale(.98);}
.cc-thumb{
  width:90px;height:90px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:700;color:var(--stone);text-align:center;line-height:1.4;
}
.cct1{background:#ede4d4;}
.cct2{background:#f4e8de;}
.cct3{background:#dce8e4;}
.cct4{background:#e4ecd8;}
.cc-info{flex:1;padding:10px 12px 10px 10px;display:flex;flex-direction:column;justify-content:space-between;}
.cc-name{font-family:'Noto Serif JP',serif;font-size:14px;font-weight:700;color:var(--ink);margin-bottom:2px;}
.cc-genre{font-size:11px;color:var(--ink-light);margin-bottom:5px;}
.cc-tags{display:flex;flex-wrap:wrap;gap:4px;}
.cc-tag{font-size:10px;color:var(--indigo);background:#dce4f0;padding:1px 7px;border-radius:10px;font-weight:600;}
.cc-foot{display:flex;align-items:center;justify-content:space-between;margin-top:6px;}

/* ======= ANIMS ======= */
@keyframes fadeUp{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
.shop-card{animation:fadeUp .35s ease both;}
.shop-card:nth-child(1){animation-delay:.04s;}
.shop-card:nth-child(2){animation-delay:.1s;}
.shop-card:nth-child(3){animation-delay:.16s;}
.shop-card-h{animation:fadeUp .35s ease both;}
.shop-card-h:nth-child(1){animation-delay:.04s;}
.shop-card-h:nth-child(2){animation-delay:.1s;}
.shop-card-h:nth-child(3){animation-delay:.16s;}

/* ======= DRAWER MENU ======= */
.drawer-overlay{
  display:none;
  position:fixed;inset:0;
  background:rgba(30,20,10,0.45);
  z-index:200;
}
.drawer-overlay.open{display:block;}

.drawer{
  position:fixed;top:0;right:0;
  width:280px;height:100vh;
  background:var(--cream);
  z-index:300;
  transform:translateX(100%);
  transition:transform .28s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;
  box-shadow:-4px 0 24px rgba(30,20,10,0.18);
  overflow-y:auto;
}
.drawer.open{transform:translateX(0);}

.drawer-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid #e8e0d0;
  background:var(--white);
  flex-shrink:0;
}
.drawer-logo{display:flex;align-items:baseline;gap:4px;}
.drawer-logo-yo{
  font-family:'Zen Maru Gothic',sans-serif;
  font-size:18px;font-weight:900;color:var(--ink);
}
.drawer-logo-rest{
  font-family:'Noto Serif JP',serif;
  font-size:11px;font-weight:700;color:var(--stone);
}
.drawer-close{
  width:40px;height:40px;border:none;background:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  color:var(--ink-mid);border-radius:8px;transition:background .15s;
}
.drawer-close:hover{background:var(--cream2);}
.drawer-close svg{width:24px;height:24px;stroke:currentColor;fill:none;stroke-width:2.5;}

.drawer-body{padding:12px 0;}

/* mod_menu output override inside drawer */
.drawer-body ul,.drawer-nav-fallback{
  list-style:none;margin:0;padding:0;
}
.drawer-body ul li a,.drawer-nav-fallback li a{
  display:block;
  padding:13px 20px;
  font-size:14px;font-weight:700;
  color:var(--ink-mid);
  text-decoration:none;
  border-bottom:1px solid #f0ece4;
  transition:background .15s;
}
.drawer-body ul li a:hover,.drawer-nav-fallback li a:hover{background:var(--cream2);}
.drawer-body ul li.active > a{color:var(--red-dark);}

/* ── CONTACT FORM ────────────────────────────────────── */
.com-contact__form .form-horizontal.well{
  background:transparent;border:none;box-shadow:none;padding:0;margin:0;
}
.com-contact__form fieldset{border:none;padding:0;margin:0;min-width:0;}
.com-contact__form legend{display:none;}

/* ======= INNER PAGE ======= */
.inner-page-wrap{
  flex:1;
  padding:16px 14px 16px;
  min-height:calc(100vh - 56px - 72px);
}

/* com_content article output */
.inner-page-wrap h1{
  font-family:'Noto Serif JP',serif;
  font-size:20px;font-weight:900;color:var(--ink);
  margin-bottom:16px;line-height:1.3;
}
.inner-page-wrap h2{
  font-family:'Noto Serif JP',serif;
  font-size:17px;font-weight:700;color:var(--ink-mid);
  margin:24px 0 12px;
}
.inner-page-wrap h3{
  font-size:14px;font-weight:700;color:var(--ink-mid);
  margin:18px 0 8px;
}
.inner-page-wrap p{
  font-size:13px;color:var(--ink-mid);line-height:1.85;margin-bottom:14px;
}
.inner-page-wrap a{color:var(--indigo);text-decoration:underline;}

/* blog layout */
.inner-page-wrap .blog-item{
  background:var(--white);border-radius:10px;border:1px solid #e8e0d0;
  padding:14px;margin-bottom:10px;
  box-shadow:var(--shadow-sm);
}
.inner-page-wrap .blog-item .item-title a{
  font-family:'Noto Serif JP',serif;
  font-size:15px;font-weight:700;color:var(--ink);text-decoration:none;
}
.inner-page-wrap .article-body{
  font-size:13px;color:var(--ink-mid);line-height:1.85;
}

/* contact form */
.inner-page-wrap .contact-form label{
  display:block;font-size:12px;font-weight:700;color:var(--stone);margin-bottom:4px;
}
.inner-page-wrap .contact-form input,
.inner-page-wrap .contact-form textarea{
  width:100%;padding:10px 12px;font-size:13px;
  border:1.5px solid #d8d0c4;border-radius:8px;
  font-family:inherit;background:var(--white);color:var(--ink);
  margin-bottom:12px;
}
.inner-page-wrap .contact-form input:focus,
.inner-page-wrap .contact-form textarea:focus{
  outline:none;border-color:var(--indigo);
}
.inner-page-wrap .contact-form button[type="submit"],
.inner-page-wrap button[type="submit"],
.inner-page-wrap input[type="submit"],
.inner-page-wrap .btn-primary,
.inner-page-wrap .btn{
  background:var(--red);color:#fff;
  border:none!important;outline:none;border-radius:8px;padding:12px 24px;
  font-family:inherit;font-size:14px;font-weight:700;cursor:pointer;
  box-shadow:none;
}

/* breadcrumb */
.inner-page-wrap .breadcrumb,.inner-page-wrap #breadcrumbs{
  font-size:11px;color:var(--stone);margin-bottom:12px;
  display:flex;flex-wrap:wrap;gap:4px;align-items:center;
}
.inner-page-wrap .breadcrumb a,.inner-page-wrap #breadcrumbs a{
  color:var(--indigo);text-decoration:none;
}
.inner-page-wrap .breadcrumb .divider{color:var(--stone);}

/* pagination */
.inner-page-wrap .pagination{
  display:flex;gap:6px;justify-content:center;margin-top:16px;
}
.inner-page-wrap .pagination a,
.inner-page-wrap .pagination span{
  display:inline-flex;align-items:center;justify-content:center;
  width:32px;height:32px;border-radius:6px;font-size:12px;font-weight:700;
  border:1.5px solid #e0d8c8;text-decoration:none;color:var(--ink-mid);
}
.inner-page-wrap .pagination .active span,
.inner-page-wrap .pagination .current{
  background:var(--red);color:#fff;border-color:var(--red-dark);
}

/* ======= LANGUAGE SWITCHER ======= */
.mod-languages ul{
  list-style:none;margin:0;padding:0;
  display:flex;gap:4px;align-items:center;
}
.mod-languages ul li a,
.mod-languages ul li span{
  display:inline-block;
  font-size:10px;font-weight:700;
  color:var(--indigo);
  border:1px solid var(--indigo);border-radius:4px;
  padding:3px 7px;text-decoration:none;
  font-family:inherit;cursor:pointer;
}
.mod-languages ul li.lang-active a,
.mod-languages ul li.lang-active span{
  background:var(--indigo);color:#fff;
}
/* header — toggle: hide current language */
.header-right .mod-languages{display:flex;align-items:center;}
.header-right .mod-languages ul li.lang-active{display:none;}

/* drawer placement */
.drawer-body .mod-languages{
  padding:12px 20px;border-bottom:1px solid #f0ece4;
}
.drawer-body .mod-languages ul{gap:8px;}
.drawer-body .mod-languages ul li a,
.drawer-body .mod-languages ul li span{
  font-size:12px;padding:5px 14px;
}

/* nav-btn as anchor tag (legacy compat) */
.nav-btn{text-decoration:none;}

/* ======= ACCESSIBILITY UTILITIES ======= */
.visually-hidden,.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
/* mod_languages のラベル文を非表示 */
.mod-languages p{display:none!important;}

/* ======= SHOP DETAIL (article override) ======= */
.shop-detail-wrap{
  display:flex;flex-direction:column;padding-bottom:8px;
  margin:-16px -14px 0; /* cancel .inner-page-wrap padding → edge-to-edge */
}
.detail-back-bar{
  background:var(--white);
  padding:10px 16px;
  display:flex;align-items:center;justify-content:space-between;
  border-bottom:1px solid #ede8e0;
}
.detail-back-title{
  font-family:'Noto Serif JP',serif;
  font-size:13px;font-weight:700;color:var(--ink-mid);
}
.d-name-en{font-size:12px;color:var(--stone);font-weight:500;margin-top:2px;letter-spacing:.5px;}
.d-meta-row{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-top:8px;}
.d-price-badge{font-size:13px;font-weight:700;color:var(--gold);background:#f8f0e0;border:1.5px solid #e8d8a0;padding:4px 11px;border-radius:20px;letter-spacing:.5px;white-space:nowrap;}

/* ── セクショングループ (3分割) ── */
.d-section-group{
  margin:16px 16px 0;
  background:var(--white);
  border-radius:12px;
  border:1px solid #e8e0d0;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.d-section-last{margin-bottom:16px;}
.d-section-group-hd{
  background:var(--bg-soft);
  border-bottom:1px solid #ede8e0;
  padding:12px 18px;
}
.d-section-group-lbl{
  font-family:'Noto Serif JP',serif;
  font-size:11px;font-weight:700;
  color:var(--stone);letter-spacing:.1em;
}
/* info-block inside group: no independent borders/shadow */
.d-section-group .d-info-block{
  border-radius:0;border:none;box-shadow:none;
  border-bottom:1px solid #ede8e0;
}
/* tags inside group */
.d-tags-inner{padding:14px 16px 6px;}
.d-tag-group{display:flex;align-items:flex-start;flex-wrap:wrap;gap:6px;margin-bottom:10px;}
.d-tag-lbl{font-size:10px;font-weight:700;color:var(--stone);flex-shrink:0;padding-top:4px;min-width:56px;}
.d-tag{font-size:11px;font-weight:600;padding:4px 10px;border-radius:20px;white-space:nowrap;}
.d-tag-scene{background:#e8f0f8;color:var(--indigo);}
.d-tag-intl{background:#e8f4e8;color:#2a7a3a;}
.d-tag-seasonal{background:#fff0e0;color:var(--gold);}
/* ── 付帯情報ブロック ── */
.d-fuki-wrap{
  margin:14px 16px 20px;
  background:var(--cream);
  border-radius:12px;
  border:1px solid #e0d8c4;
  overflow:hidden;
}
.d-fuki-item{
  padding:18px 18px;
  border-bottom:1px solid #e8e0d0;
}
.d-fuki-item:last-child{border-bottom:none;}
.d-fuki-label{
  font-size:10px;font-weight:700;
  color:var(--stone);letter-spacing:.08em;
  margin-bottom:9px;
}
.d-fuki-body{font-size:13px;color:var(--ink-mid);line-height:1.85;}
.d-fuki-body h2{font-size:14px;font-weight:700;color:var(--ink);margin:16px 0 7px;}
.d-fuki-body p{margin:0 0 10px;}
.d-products-body,.d-story-body,.d-media-body,.d-intro-en-body{font-size:13px;color:var(--ink-mid);line-height:1.85;}
.d-owner-quote{margin:0;padding:12px 16px;border-left:3px solid var(--red);background:rgba(255,255,255,.6);border-radius:0 8px 8px 0;font-size:13px;color:var(--ink-mid);line-height:1.9;font-style:normal;}
.d-sns-links{display:flex;flex-wrap:wrap;gap:8px;}
.sns-btn{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:700;padding:7px 14px;border-radius:8px;text-decoration:none;transition:opacity .15s;}
.sns-btn:active{opacity:.75;}
.sns-btn svg{stroke:currentColor;fill:none;stroke-width:1.8;flex-shrink:0;}
.sns-ig{background:#fce4ec;color:#c2185b;}
.sns-tw{background:#e8f0fe;color:#1a73e8;}
.sns-fb{background:#e8eaf6;color:#3949ab;}

/* =====================================================
   RESPONSIVE
   768px  : タブレット — フルwidth、2列
   1024px : PC — 横ナビ、sections wide
   1280px : ワイドPC — 3列、広いpadding
   ===================================================== */

/* ---- 768px+ : タブレット ---- */
@media (min-width:768px){
  body{background:var(--cream2);align-items:flex-start;}

  .phone{
    width:100%;max-width:900px;overflow:visible;
    box-shadow:0 0 48px rgba(30,20,10,.14);
  }

  /* bottom-nav固定幅を解除 */
  .bottom-nav{width:100%;left:0;transform:none;}

  /* お店 2列 */
  .shops-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;}
  .shop-list{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;}

  /* ルート 2列 */
  .routes-grid{flex-direction:row;flex-wrap:wrap;}
  .route-card{flex:1 1 calc(50% - 6px);}

  /* フッターリンク横並び */
  .footer-links{flex-direction:row;flex-wrap:wrap;gap:8px 16px;}
}

/* ---- 1024px+ : デスクトップ（横ナビ型） ---- */
@media (min-width:1024px){
  body{background:var(--bg-soft);}

  .phone{
    max-width:100%;width:100%;
    overflow:visible;background:transparent;
    box-shadow:none;
  }

  /* ドロワー、ハンバーガー、mobile contact icon、bottom-nav すべて非表示 */
  .drawer,.drawer-overlay,.header-menu,.header-contact,.bottom-nav{display:none!important;}

  /* HEADER */
  .header{
    position:sticky;top:0;z-index:100;
    height:60px;padding:0 40px;
    border-bottom:3px solid var(--teal);
    box-shadow:0 2px 8px rgba(30,20,10,.06);
    gap:0;max-width:100%;
  }
  .logo-block{flex-shrink:0;}

  /* PC NAV */
  .pc-nav{
    display:flex;align-items:center;gap:4px;
    flex:1;justify-content:flex-end;margin-right:16px;
  }
  .pc-nav a{
    text-decoration:none;color:var(--ink-mid);
    font-size:13px;font-weight:500;
    padding:6px 12px;border-radius:6px;
    transition:color .15s,background .15s;white-space:nowrap;
  }
  .pc-nav a:hover{color:var(--teal);background:var(--cream2);}
  .pc-nav-contact{
    display:flex!important;align-items:center;gap:5px;
    margin-left:4px;
    background:var(--teal)!important;
    color:var(--white)!important;border-radius:6px!important;
    border:none!important;
  }
  .pc-nav-contact:hover{opacity:.85;}
  .pc-nav-contact svg{width:16px;height:16px;stroke:var(--white);fill:none;stroke-width:2;flex-shrink:0;}

  /* MAIN CONTENT */
  .site-main{max-width:1100px;margin:0 auto;padding:0 24px;}

  /* HERO */
  .hero{height:500px;margin:0 -24px;}
  .hero > img.hero-img{height:500px;}
  .hero-text{left:60px;right:60px;bottom:80px;}
  .hero-text h1{font-size:42px;}
  .hero-text .subtitle{font-size:16px;}

  /* SEARCH CARD */
  .search-card{margin:-30px 0 0;display:flex;align-items:center;gap:24px;padding:18px 24px;}
  .search-card-label{margin-bottom:0;white-space:nowrap;font-size:12px;}
  .search-card-btns{flex:1;max-width:400px;}
  .search-btn{padding:10px 16px;font-size:13px;}

  /* SECTIONS */
  .section{padding:36px 0;}
  .section+.section{padding-top:0;}

  /* ROUTES 3列 */
  .routes-grid{flex-direction:row;flex-wrap:nowrap;gap:16px;}
  .route-card{flex:1;}

  /* MAP */
  .map-section{border-radius:12px;overflow:hidden;}
  .map-wrap{margin:0;}
  .access-chips{gap:12px;padding:20px 0 8px;justify-content:center;}
  .access-chip{min-width:120px;padding:12px 20px;}
  .access-chip-name{font-size:13px;}
  .access-chip-sub{font-size:11px;}

  /* CATEGORIES */
  .cats-section{background:transparent;padding:20px 0;}
  .category-chips{gap:10px;}
  .cat-chip{font-size:13px;padding:7px 20px;}

  /* SHOPS 2列 */
  .shops-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;}

  /* NEWS */
  .news-section{border-radius:12px;overflow:hidden;padding:28px;}

  /* ABOUT */
  .about-section{border-radius:12px;}
  .about-block p{font-size:14px;}

  /* FOOTER */
  .footer{border-radius:12px;margin-bottom:32px;}
  .footer-inner{flex-direction:row;justify-content:space-between;align-items:flex-start;}
  .footer-links{flex-direction:row;flex-wrap:wrap;gap:8px 24px;}

  /* INNER PAGE */
  .inner-page-wrap{max-width:840px;margin:0 auto;padding:28px 0;min-height:auto;}
  .inner-page-wrap h1{font-size:24px;}
  .inner-page-wrap p{font-size:14px;}
  .inner-page-wrap .blog-items{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;}
  /* cancel mobile negative margins on desktop */
  .shop-detail-wrap{margin:0;}
  .shop-detail-wrap .d-actions{padding-left:24px;padding-right:24px;}
  .shop-detail-wrap .detail-head{padding-left:24px;padding-right:24px;}
  .shop-detail-wrap .d-section-group{margin-left:0;margin-right:0;border-radius:0;border-left:none;border-right:none;}
  .shop-detail-wrap .d-fuki-wrap{margin-left:0;margin-right:0;border-radius:0;border-left:none;border-right:none;}
  .d-maps-cta-main{font-size:17px;}
  .d-maps-cta-icon{width:48px;height:48px;}
  /* PC: detail hero icon — 16/9 hero at 840px = 472px tall, ~50% = 200px */
  .detail-hero-icon{font-size:200px;}
}

/* ---- 1280px+ : ワイドデスクトップ ---- */
@media (min-width:1280px){
  .site-main{max-width:1200px;}
  .header{padding:0 60px;}
  .shops-grid{grid-template-columns:1fr 1fr 1fr;}
}

/* ============================================================
   SHOP LIST PAGE (category blog override)
   ============================================================ */
.shoplist-wrap{padding:0 0 32px;margin:0 -14px;}
.shoplist-header{padding:28px 16px 20px;background:transparent;border-bottom:1px solid var(--warm-bg2);}
.shoplist-title{font-size:22px;font-weight:700;color:var(--ink);letter-spacing:.05em;margin-bottom:4px;}
.shoplist-sub{font-size:12px;color:var(--ink-light);}
.shoplist-empty{padding:40px 16px;text-align:center;color:var(--ink-light);font-size:14px;}

/* カテゴリアンカーナビ */
.shopcat-nav{
  display:flex;flex-wrap:wrap;gap:8px;
  padding:14px 16px;
  background:var(--bg-soft);
  border-bottom:1px solid var(--warm-bg2);
  position:sticky;top:0;z-index:50;
}
.shopcat-chip{
  padding:6px 14px;
  background:var(--white);
  border:1.5px solid var(--warm-bg2);
  border-radius:20px;
  font-size:13px;font-weight:600;
  color:var(--ink-mid);
  cursor:pointer;
  transition:background .18s,color .18s,border-color .18s;
  font-family:inherit;
}
.shopcat-chip:hover{background:var(--cream2);border-color:var(--teal-light);}
.shopcat-chip.active{background:var(--teal);border-color:var(--teal);color:var(--white);}

/* カテゴリセクション */
.shopcat-section{
  padding:28px 16px 12px;
  scroll-margin-top:56px;  /* sticky nav height */
}
.shopcat-heading{
  display:flex;align-items:baseline;gap:10px;
  padding-bottom:12px;
  border-bottom:2px solid var(--teal-light);
  margin-bottom:18px;
}
.shopcat-label{
  font-size:16px;font-weight:700;color:var(--teal-dark);letter-spacing:.04em;
}
.shopcat-desc{font-size:11px;color:var(--ink-light);}

/* お店カードグリッド（縦型・写真全幅正方形） */
.shopcat-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:12px;
}
.shopcat-card{
  display:flex;flex-direction:column;  /* 縦型カード */
  background:var(--white);
  border-radius:10px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  text-decoration:none;
  color:inherit;
  transition:box-shadow .18s,transform .18s;
}
.shopcat-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px);}

/* 写真エリア：全幅・正方形 */
.shopcat-card .shop-photo-h{
  width:100%;
  aspect-ratio:1/1;
  background:var(--warm-bg);
  overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  font-size:48px;
  flex-shrink:0;
}
.shopcat-card .shop-photo-h img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.shop-photo-placeholder{
  width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  font-size:48px;
}

/* 情報エリア */
.shopcat-card .shop-info-h{
  flex:1;padding:12px 14px 14px;
  display:flex;flex-direction:column;gap:5px;min-width:0;
}
.shopcat-card .shop-name-h{font-size:13px;font-weight:700;color:var(--ink);line-height:1.4;}
.shopcat-card .shop-genre-h{font-size:11px;color:var(--ink-light);line-height:1.45;}
.shopcat-card-cat{
  font-size:10px;color:var(--teal-dark);
  background:rgba(42,140,126,.1);
  border-radius:4px;padding:2px 6px;
  align-self:flex-start;margin-top:auto;
}

/* ---- responsive 768px+ ---- */
@media (min-width:768px){
  .shoplist-header{padding:28px 24px 18px;}
  .shopcat-nav{padding:14px 24px;}
  .shopcat-section{padding:24px 24px 10px;}
  .shopcat-grid{grid-template-columns:1fr 1fr 1fr;gap:14px;}
}

/* ---- responsive 1024px+ ---- */
@media (min-width:1024px){
  .shoplist-wrap{margin:0;}
  .shoplist-header{padding:32px 0 20px;}
  .shopcat-nav{padding:14px 0;background:transparent;border-bottom:none;position:static;
    padding-bottom:0;}
  .shopcat-section{padding:24px 0 12px;}
  .shopcat-grid{grid-template-columns:repeat(4,1fr);gap:16px;}
}

/* ── SHOP MAP ─────────────────────────────────────────────── */
.shopmap-section{
  margin:0 0 8px;
  padding:0 16px;
}
.shopmap-leaflet{
  width:100%;
  height:220px;
  border-radius:12px;
  overflow:hidden;
  background:var(--warm-bg);
  box-shadow:var(--shadow-sm);
}
.shopmap-copy{
  margin:10px 0 0;
  font-size:12px;
  color:var(--ink-light);
  text-align:center;
  line-height:1.6;
  letter-spacing:.02em;
}

/* Leaflet numbered pin */
.smap-pin{
  width:26px;height:26px;
  background:var(--red);
  color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:10px;font-weight:700;font-family:'Noto Sans JP',sans-serif;
  border:2px solid #fff;
  box-shadow:0 2px 6px rgba(0,0,0,.4);
  line-height:1;
}

/* Number badge on shop card */
.shopcat-card{position:relative;}
.shop-num-badge{
  position:absolute;
  top:7px;left:7px;
  width:22px;height:22px;
  background:var(--red);
  color:#fff;
  border-radius:50%;
  font-size:10px;font-weight:700;font-family:'Noto Sans JP',sans-serif;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 1px 5px rgba(0,0,0,.35);
  z-index:1;
  line-height:1;
}

@media (min-width:768px){
  .shopmap-leaflet{height:260px;}
  .shopmap-section{padding:0 24px;}
}
@media (min-width:1024px){
  .shopmap-leaflet{height:300px;}
  .shopmap-section{padding:0;}
  .shopmap-copy{font-size:13px;}
}

/* ── NEWS LIST PAGE ──────────────────────────────────── */
.news-list-page{padding:0 0 40px;margin:0 -14px;}
.news-page-header{padding:20px 16px 12px;}
.news-page-title{font-size:1.15rem;font-weight:700;color:var(--ink);margin:0;padding-bottom:8px;border-bottom:2px solid var(--accent);}
.news-empty{padding:40px 16px;color:var(--stone);text-align:center;font-size:.9rem;}
.news-items-list{display:flex;flex-direction:column;}
.news-list-item{
  padding:16px;border-bottom:1px solid #e8e0d6;
  display:flex;flex-direction:column;gap:8px;
}
.news-list-item:last-child{border-bottom:none;}
.news-list-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap;}
.news-list-date{font-size:.8rem;color:var(--stone);font-weight:500;letter-spacing:.04em;}
.news-list-badge{
  font-size:.72rem;font-weight:700;
  padding:2px 8px;border-radius:2px;
  letter-spacing:.04em;white-space:nowrap;
}
.news-list-title{
  font-size:.95rem;font-weight:700;color:var(--ink);
  text-decoration:none;line-height:1.5;
}
.news-list-title:hover{color:var(--accent);}
.news-list-body{display:flex;gap:12px;align-items:flex-start;}
.news-list-thumb-link{flex-shrink:0;}
.news-list-thumb{width:80px;height:60px;object-fit:cover;border-radius:4px;display:block;}
.news-list-snippet{font-size:.85rem;color:#555;line-height:1.65;margin:0;flex:1;}
.news-list-more{
  font-size:.8rem;color:var(--accent);font-weight:600;
  text-decoration:none;align-self:flex-end;
}
.news-list-more:hover{text-decoration:underline;}
@media(min-width:768px){
  .news-page-header{padding:24px 24px 14px;}
  .news-list-item{padding:20px 24px;}
  .news-list-thumb{width:100px;height:75px;}
  .news-list-title{font-size:1rem;}
}
@media(min-width:1024px){
  .news-list-page{margin:0;}
  .news-page-header{padding:28px 0 14px;}
  .news-list-item{padding:22px 0;}
  .news-list-thumb{width:120px;height:90px;}
}

/* ── NEWS ARTICLE DETAIL ─────────────────────────────── */
.news-article-wrap{padding:0 0 40px;margin:0 -14px;}
.news-article-hero{width:100%;height:200px;overflow:hidden;}
.news-article-hero img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;}
.news-article-inner{padding:20px 16px 0;}
.news-article-meta{display:flex;align-items:center;gap:8px;margin-bottom:10px;}
.news-article-date{font-size:.8rem;color:var(--stone);font-weight:500;}
.news-article-title{font-size:1.1rem;font-weight:700;color:var(--ink);margin:0 0 20px;line-height:1.5;}
.news-article-body{font-size:.9rem;color:#444;line-height:1.8;}
.news-article-body h2{font-size:1rem;font-weight:700;color:var(--ink);margin:20px 0 8px;padding-left:10px;border-left:3px solid var(--accent);}
.news-article-body ul{padding-left:1.4em;margin:0 0 14px;}
.news-article-body ul li{margin-bottom:4px;}
.news-article-body p{margin:0 0 12px;}
.news-article-back{margin-top:32px;padding-top:16px;border-top:1px solid #e8e0d6;}
.news-back-link{display:inline-flex;align-items:center;gap:4px;font-size:.85rem;color:var(--accent);text-decoration:none;font-weight:600;}
.news-back-link:hover{text-decoration:underline;}
.news-back-link svg{stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
@media(min-width:768px){
  .news-article-hero{height:280px;}
  .news-article-inner{padding:24px 24px 0;}
  .news-article-title{font-size:1.2rem;}
}
@media(min-width:1024px){
  .news-article-wrap{margin:0;}
  .news-article-hero{height:340px;}
  .news-article-inner{padding:28px 0 0;}
}

/* ── ABOUT PAGE ──────────────────────────────────────── */
.about-page-wrap{padding:0 0 40px;margin:0 -14px;}
.about-page-hero{width:100%;height:200px;overflow:hidden;}
.about-page-hero img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block;}
.about-page-content{padding:24px 16px 0;}
.about-page-content h1{font-size:1.2rem;font-weight:700;color:var(--ink);margin:0 0 20px;padding-bottom:10px;border-bottom:2px solid var(--accent);}
.about-page-content h2{font-size:1.05rem;font-weight:700;color:var(--ink);margin:24px 0 8px;padding-left:10px;border-left:3px solid var(--accent);}
.about-page-content h3{font-size:.95rem;font-weight:700;color:var(--ink);margin:16px 0 6px;}
.about-page-content p{font-size:.9rem;color:#444;line-height:1.75;margin:0 0 12px;}
.about-page-content ul{padding-left:1.4em;margin:0 0 12px;}
.about-page-content ul li{font-size:.9rem;color:#444;line-height:1.75;}
@media(min-width:768px){
  .about-page-hero{height:300px;}
  .about-page-content{padding:32px 24px 0;}
}
@media(min-width:1024px){
  .about-page-wrap{margin:0;}
  .about-page-hero{height:360px;}
  .about-page-content{padding:36px 0 0;}
}

/* ── YANESEN MAP PAGE ─────────────────────────────────── */
.yanesen-map-wrap{padding:0 0 32px;margin:0 -14px;}

.ymap-header{
  padding:20px 16px 14px;
  border-bottom:1px solid var(--warm-bg2);
}
.ymap-title{
  font-family:'Noto Serif JP',serif;
  font-size:20px;font-weight:700;color:var(--ink);
  margin:0 0 4px;
}
.ymap-sub{
  font-size:12px;color:var(--ink-light);
  margin:0;line-height:1.5;
}

/* Map container + legend overlay */
.ymap-container{position:relative;margin:0;}
.ymap-leaflet{
  width:100%;height:280px;
  background:var(--warm-bg);
}
.ymap-legend{
  position:absolute;bottom:12px;left:12px;
  background:rgba(250,246,238,.92);
  backdrop-filter:blur(4px);
  border-radius:8px;
  padding:8px 12px;
  box-shadow:0 2px 8px rgba(0,0,0,.15);
  z-index:500;
  display:flex;flex-direction:column;gap:5px;
}
.ymap-legend-item{
  display:flex;align-items:center;gap:6px;
  font-size:11px;color:var(--ink-mid);font-family:'Noto Sans JP',sans-serif;
}
.ymap-leg-line{
  display:inline-block;width:20px;height:3px;border-radius:2px;flex-shrink:0;
}
.ymap-leg-line.yomise{background:#c94030;}
.ymap-leg-line.ginza{background:#d97c2a;}
.ymap-leg-line.sansaki{background:#2a8c7e;}
.ymap-leg-dot{
  display:inline-block;width:10px;height:10px;border-radius:50%;flex-shrink:0;
}
.ymap-leg-dot.station{background:#2a6abf;border:1.5px solid #1a4e8a;}
.ymap-leg-dot.shrine{font-size:11px;background:none;}

/* Leaflet custom tooltips */
.ymap-street-tip{
  background:rgba(250,246,238,.88)!important;
  border:none!important;
  border-radius:4px!important;
  padding:2px 6px!important;
  font-size:10px!important;
  font-family:'Noto Sans JP',sans-serif!important;
  font-weight:700!important;
  color:var(--ink-mid)!important;
  box-shadow:0 1px 4px rgba(0,0,0,.2)!important;
  white-space:nowrap!important;
}
.ymap-street-tip::before{display:none!important;}
.ymap-area-label{
  font-family:'Noto Serif JP',serif;
  font-size:11px;font-weight:700;
  color:rgba(60,48,36,.45);
  letter-spacing:1px;
  text-align:center;
  white-space:nowrap;
  text-shadow:0 1px 2px rgba(255,255,255,.8);
}
.ymap-shrine-pin{
  font-size:18px;line-height:1;
  filter:drop-shadow(0 1px 2px rgba(0,0,0,.3));
}

/* History / content section */
.ymap-content{padding:20px 16px 0;}
.ymap-content h2{
  font-family:'Noto Serif JP',serif;
  font-size:16px;font-weight:700;color:var(--ink);
  margin:20px 0 6px;padding-left:10px;
  border-left:3px solid var(--red);
}
.ymap-content h3{
  font-family:'Noto Serif JP',serif;
  font-size:14px;font-weight:700;color:var(--ink-mid);
  margin:16px 0 4px;
}
.ymap-content p{
  font-size:13px;line-height:1.8;color:var(--ink-light);
  margin:0 0 10px;
}
.ymap-content .street-block{
  background:var(--bg-soft);border-radius:10px;
  padding:14px 16px;margin:10px 0;
}
.ymap-content .street-block-title{
  display:flex;align-items:center;gap:8px;
  font-family:'Noto Serif JP',serif;
  font-size:14px;font-weight:700;color:var(--ink);
  margin:0 0 6px;
}
.ymap-content .street-dot{
  width:10px;height:10px;border-radius:50%;flex-shrink:0;
}

@media (min-width:768px){
  .ymap-leaflet{height:360px;}
  .ymap-header{padding:24px 24px 16px;}
  .ymap-content{padding:24px 24px 0;}
  .ymap-title{font-size:24px;}
}
@media (min-width:1024px){
  .yanesen-map-wrap{margin:0;}
  .ymap-leaflet{height:420px;}
  .ymap-header{padding:28px 0 18px;}
  .ymap-content{padding:28px 0 0;}
}
