/*
Theme Name: Lightning Child
Template: lightning
Version: 1.0.0
*/

/* =========================================================
   gunma-deriheru.com  Spacing + Layout + Warm UI (Light)
   既存のカスタムCSSはすべて置き換え
   ========================================================= */

:root{
  --gd-bg: #f6f8fc;
  --gd-surface: #ffffff;
  --gd-surface-2: #f1f5ff;

  --gd-text: #111827;
  --gd-muted: rgba(17,24,39,.72);

  --gd-border: rgba(17,24,39,.12);
  --gd-border-strong: rgba(17,24,39,.18);

  --gd-link: #0b61ff;
  --gd-link-hover: #084ad0;

  --gd-radius: 14px;
  --gd-shadow: 0 10px 28px rgba(17,24,39,.10);
  --gd-shadow-soft: 0 6px 18px rgba(17,24,39,.08);

  --gd-max: 1040px;        /* 文字が読みやすい幅に寄せる */
  --gd-pad: clamp(14px, 3vw, 26px); /* 画面端にくっつかないための左右余白 */
}

/* 1) 背景と基本 */
html, body{ height: 100%; }
body{
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(11,97,255,.08), transparent 55%),
    radial-gradient(900px 500px at 85% 10%, rgba(255,45,114,.06), transparent 55%),
    var(--gd-bg);
  color: var(--gd-text);
  letter-spacing: .02em;
}

a{ color: var(--gd-link); text-decoration: none; }
a:hover{ color: var(--gd-link-hover); text-decoration: underline; }

p{ line-height: 1.95; color: var(--gd-muted); }
ul,ol{ color: var(--gd-muted); }

/* 2) ページ全体の「左右余白」と中央寄せ感を強化
   Lightningはクラスが色々なので広めに拾う
*/
.siteContent,
.site-content,
.content,
.content-body,
main,
.mainSection,
.container,
.inner{
  padding-left: var(--gd-pad);
  padding-right: var(--gd-pad);
}

/* コンテンツ幅を制御して “左寄り感” を消す */
.siteContent > .inner,
.site-content > .inner,
main > .inner,
.content > .inner,
.container,
.inner{
  max-width: var(--gd-max);
  margin-left: auto;
  margin-right: auto;
}

/* 3) ヘッダー：文字が見やすいまま、上下の詰まりを解消 */
header,
.siteHeader,
.site-header,
.header{
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--gd-border);
  box-shadow: 0 6px 18px rgba(17,24,39,.06);
  backdrop-filter: blur(10px);
}

.siteHeader .inner,
.site-header .inner,
header .inner{
  padding-top: 14px;
  padding-bottom: 12px;
}

.siteTitle a,
.site-title a,
.siteHeader a,
header a{
  color: var(--gd-text);
}

/* メニューの可読性 */
.gMenu a,
.global-nav a,
.nav a,
.navbar a,
.menu a,
header nav a{
  color: rgba(17,24,39,.86);
}
.gMenu a:hover,
.global-nav a:hover,
.nav a:hover,
.navbar a:hover,
.menu a:hover,
header nav a:hover{
  color: var(--gd-link-hover);
  text-decoration: none;
}
.current-menu-item > a,
.current_page_item > a,
.current-menu-ancestor > a{
  color: var(--gd-text);
  font-weight: 700;
}

/* 4) 本文を “カード面” にして殺風景を解消 + 文字が上下にくっつかない */
.entry-body,
.entry-content,
.postContent,
.pageContent,
article,
.main-section,
.content-area{
  background: var(--gd-surface);
  border: 1px solid var(--gd-border);
  border-radius: var(--gd-radius);
  box-shadow: var(--gd-shadow);
  padding: clamp(16px, 3.2vw, 26px);
}

/* ページの上下余白（窮屈さを解消） */
.siteContent,
.site-content,
main{
  padding-top: clamp(14px, 3vw, 28px);
  padding-bottom: clamp(18px, 4vw, 38px);
}

/* 5) 見出しの間隔を整える（線の近くに詰まるのを防ぐ） */
h1{
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.25;
  margin: 6px 0 14px;
  color: var(--gd-text);
}
h2{
  font-size: clamp(18px, 2.1vw, 26px);
  margin: 34px 0 12px;
  color: var(--gd-text);
}
h3{
  font-size: clamp(16px, 1.7vw, 20px);
  margin: 26px 0 10px;
  color: var(--gd-text);
}

/* セクション区切りの線が強すぎる/近すぎる場合を緩和 */
hr{
  border: none;
  height: 1px;
  background: rgba(17,24,39,.14);
  margin: 26px 0;
}
.entry-content hr{ margin: 28px 0; }

/* 6) 重要リンク（ランキング一覧を見る 等）をボタン風にして導線を作る */
.entry-content a[href*="/ranking"],
.entry-content a[href*="/business_type"],
.entry-content a[href*="/type"],
.entry-content a[href*="/latest"],
.entry-content a.more-link,
.more-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11,97,255,.18);
  background: linear-gradient(180deg, #ffffff, #f2f6ff);
  color: var(--gd-text);
  box-shadow: var(--gd-shadow-soft);
  text-decoration: none;
}
.entry-content a[href*="/ranking"]:hover,
.entry-content a[href*="/business_type"]:hover,
.entry-content a[href*="/type"]:hover,
.entry-content a[href*="/latest"]:hover,
.entry-content a.more-link:hover,
.more-link:hover{
  transform: translateY(-1px);
  transition: .15s ease;
  border-color: rgba(11,97,255,.28);
}

/* 7) リスト（ランキング/最近更新/タイプ一覧）をカード化して情報の塊を作る
   影響を抑えるため、本文直下のリストだけを対象にする
*/
.entry-content > ul,
.entry-content > ol{
  list-style: none;
  padding: 0;
  margin: 14px 0 6px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.entry-content > ul > li,
.entry-content > ol > li{
  background: var(--gd-surface);
  border: 1px solid var(--gd-border);
  border-radius: var(--gd-radius);
  padding: 14px 14px;
  box-shadow: 0 8px 20px rgba(17,24,39,.08);
}

/* リスト内のテキストが詰まらないように */
.entry-content > ul > li p,
.entry-content > ol > li p{
  margin: 8px 0 0;
}

/* タイプ一覧など、単なる箇条書きが多い場所は “軽いチップ” に */
.entry-content > ul > li > a,
.entry-content > ol > li > a{
  font-weight: 700;
}

/* PCは2カラムで “余白があるのに情報量もある” 状態に */
@media (min-width: 860px){
  .entry-content > ul,
  .entry-content > ol{
    grid-template-columns: 1fr 1fr;
  }
}

/* 8) フッター：余白と見た目を付ける（コピーライト白化も防止） */
footer,
.siteFooter,
.site-footer,
.footer{
  margin-top: 34px;
  background: #ffffff;
  border-top: 1px solid var(--gd-border);
  box-shadow: 0 -6px 18px rgba(17,24,39,.05);
  color: rgba(17,24,39,.80);
}

footer .inner,
.siteFooter .inner,
.site-footer .inner{
  max-width: var(--gd-max);
  margin-left: auto;
  margin-right: auto;
  padding: 18px var(--gd-pad);
}

footer a,
.siteFooter a,
.site-footer a{
  color: rgba(17,24,39,.82);
}
footer a:hover,
.siteFooter a:hover,
.site-footer a:hover{
  color: var(--gd-link-hover);
}

/* コピーライトが白になるテーマ上書き対策 */
.footer-copyright,
.copyright,
.siteFooter small,
footer small{
  color: rgba(17,24,39,.70) !important;
}

/* 9) モバイルの窮屈さをさらに緩和 */
@media (max-width: 520px){
  .siteHeader .inner,
  header .inner{
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .entry-body,
  .entry-content,
  article{
    padding: 14px 12px;
    border-radius: 12px;
  }

  h2{ margin-top: 26px; }
  hr{ margin: 22px 0; }
}

/* ランキングページ全体 */
.ranking-page {
  background: #f6f7f9;
  padding: 40px 0;
}

.ranking-container {
  max-width: 1140px; /* LightningのPC幅 */
  margin: 0 auto;
  padding: 0 15px;
}

/* 一覧全体 */
.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 24px; /* カード間隔 */
  margin-top: 40px;
}

/* 各カード */
.ranking-item {
  background: #fff;
  border-radius: 12px;
  padding: 24px 24px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  position: relative;
}

.ranking-rank {
  position: absolute;
  top: -12px;
  left: -12px;
  background: linear-gradient(135deg, #ff6a00, #ff9800);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.ranking-h2 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 8px;
  padding-left: 40px; /* 順位分の余白 */
}

.ranking-h2 a {
  color: #222;
  font-weight: 700;
  text-decoration: none;
}

.ranking-h2 a:hover {
  color: #337ab7;
}
.ranking-catch {
  color: #555;
  font-size: 14px;
  margin: 0 0 12px;
}

.ranking-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
}

.ranking-meta li {
  color: #444;
}

/* バッジ */
.ranking-badge {
  background: #eaf4ff;
  color: #337ab7;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.ranking-cta {
  text-align: right;
}

/* ボタン */
.ranking-btn {
  display: inline-block;
  background: linear-gradient(135deg, #337ab7, #2e6da4);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.ranking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  color: #fff;
}

@media (max-width: 768px) {
  .ranking-item {
    padding: 20px 16px;
  }

  .ranking-h2 {
    font-size: 16px;
    padding-left: 36px;
  }

  .ranking-cta {
    text-align: center;
  }

  .ranking-btn {
    width: 100%;
    text-align: center;
  }
}
/* ================================
   営業タイプ一覧（taxonomy-business_type）デザイン
   対象: .business-type-archive 以下
   ================================ */

.business-type-archive {
  padding: 24px 0 48px;
}

.business-type-archive .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.business-type-archive .archive-head {
  margin: 0 0 18px;
}

.business-type-archive h1 {
  font-size: 24px;
  line-height: 1.35;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.business-type-archive .archive-intro {
  background: #f7f9fc;
  border: 1px solid #e6ecf5;
  border-radius: 12px;
  padding: 14px 16px;
}

.business-type-archive .archive-intro p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #334155;
}

/* 一覧：カードグリッド */
.business-type-archive .shop-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0 22px;
  padding: 0;
}

/* 2カラム */
@media (max-width: 991px) {
  .business-type-archive .shop-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 1カラム */
@media (max-width: 575px) {
  .business-type-archive .shop-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .business-type-archive h1 {
    font-size: 20px;
  }
}

.business-type-archive .shop-item {
  background: #ffffff;
  border: 1px solid #e6ecf5;
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.business-type-archive .shop-item:hover {
  transform: translateY(-2px);
  border-color: rgba(51, 122, 183, 0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

.business-type-archive .shop-item__title {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.5;
}

.business-type-archive .shop-item__title a {
  color: #0f172a;
  text-decoration: none;
}

.business-type-archive .shop-item__title a:hover {
  color: #337ab7;
  text-decoration: underline;
}

.business-type-archive .shop-item__catch {
  margin: 0 0 10px;
  color: #334155;
  font-size: 13px;
  line-height: 1.7;
}

/* メタ情報 */
.business-type-archive .shop-meta {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 6px;
}

.business-type-archive .shop-meta li {
  font-size: 12.5px;
  line-height: 1.6;
  color: #475569;
  padding-left: 10px;
  position: relative;
}

.business-type-archive .shop-meta li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #94a3b8;
  position: absolute;
  left: 0;
  top: 0.78em;
}

/* CTA */
.business-type-archive .shop-item__link {
  margin: 0;
}

.business-type-archive .shop-item__link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  background: #337ab7;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.2;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.business-type-archive .shop-item__link a:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ページネーション（paginate_links type=list） */
.business-type-archive .archive-pagination {
  margin: 8px 0 22px;
}

.business-type-archive .archive-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.business-type-archive .archive-pagination li {
  margin: 0;
  padding: 0;
}

.business-type-archive .archive-pagination a,
.business-type-archive .archive-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid #e6ecf5;
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  font-size: 13px;
}

.business-type-archive .archive-pagination a:hover {
  border-color: rgba(51, 122, 183, 0.35);
  color: #337ab7;
}

.business-type-archive .archive-pagination .current {
  background: #337ab7;
  border-color: #337ab7;
  color: #ffffff;
}

/* データなし */
.business-type-archive .archive-empty {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 16px 0 22px;
}

.business-type-archive .archive-empty p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

/* フッター誘導 */
.business-type-archive .archive-footer-note {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid #e6ecf5;
}

.business-type-archive .archive-footer-note p {
  margin: 0;
  color: #334155;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.business-type-archive .archive-footer-note a {
  color: #337ab7;
  text-decoration: underline;
}

.business-type-archive .archive-footer-note a:hover {
  opacity: 0.9;
}

/* ================================
   店舗詳細（single-shop）デザイン
   対象: body.single-shop .shop-single
   ================================ */

body.single-shop .shop-single {
  padding: 22px 0 56px;
  background: #f6f8fb;
}

body.single-shop .shop-single__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 共通：見出し */
body.single-shop .shop-single h2 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #0f172a;
}

body.single-shop .shop-single h3 {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #0f172a;
}

/* ヒーロー（タイトル周辺） */
body.single-shop .shop-single__header {
  background: #ffffff;
  border: 1px solid #e6ecf5;
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
  body.single-shop .shop-single__header {
    padding: 22px 24px 18px;
  }
}

/* ランク表示 */
body.single-shop .shop-single__rank {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(51, 122, 183, 0.10);
  color: #2e6da4;
  border: 1px solid rgba(51, 122, 183, 0.20);
  margin: 0 0 10px;
}

/* タイトル */
body.single-shop .shop-single__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
  color: #0f172a;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  body.single-shop .shop-single__title {
    font-size: 26px;
  }
}

/* キャッチ */
body.single-shop .shop-single__catch {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
}

/* 更新日＋バッジ */
body.single-shop .shop-single__submeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  margin: 0 0 12px;
}

body.single-shop .shop-single__updated {
  font-size: 12.5px;
  color: #64748b;
}

body.single-shop .shop-single__badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
}

/* 導入文（向いてる人/理由） */
body.single-shop .shop-single__intro {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px dashed #e6ecf5;
}

body.single-shop .shop-single__intro p {
  margin: 0 0 8px;
  font-size: 13.5px;
  line-height: 1.75;
  color: #334155;
}

body.single-shop .shop-single__intro p:last-child {
  margin-bottom: 0;
}

/* 予約アクション */
body.single-shop .shop-single__actions {
  margin-top: 14px;
  background: #ffffff;
  border: 1px solid #e6ecf5;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
  body.single-shop .shop-single__actions {
    padding: 16px;
  }
}

body.single-shop .shop-single__actions-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 576px) {
  body.single-shop .shop-single__actions-inner {
    grid-template-columns: 1fr 1fr;
  }
}

body.single-shop .shop-single__action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  background: #337ab7;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  border: 1px solid #337ab7;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

body.single-shop .shop-single__action-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

body.single-shop .shop-single__action-btn.is-sub {
  background: #ffffff;
  color: #337ab7;
  border-color: rgba(51, 122, 183, 0.35);
}

body.single-shop .shop-single__actions-note {
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: #64748b;
}

/* セクション共通：カード化 */
body.single-shop .shop-single__basic,
body.single-shop .shop-single__reason,
body.single-shop .shop-single__content,
body.single-shop .shop-single__nav {
  margin-top: 14px;
  background: #ffffff;
  border: 1px solid #e6ecf5;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
  body.single-shop .shop-single__basic,
  body.single-shop .shop-single__reason,
  body.single-shop .shop-single__content,
  body.single-shop .shop-single__nav {
    padding: 18px 20px;
  }
}

/* 基本情報DL */
body.single-shop .shop-single__dl {
  margin: 0;
}

body.single-shop .shop-single__dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 12px;
  padding: 10px 0;
  border-top: 1px solid #eef2f7;
}

body.single-shop .shop-single__dl > div:first-child {
  border-top: 0;
  padding-top: 0;
}

body.single-shop .shop-single__dl dt {
  margin: 0;
  font-size: 12.5px;
  color: #64748b;
  font-weight: 600;
}

body.single-shop .shop-single__dl dd {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #0f172a;
}

/* スマホ：DLを縦並び */
@media (max-width: 575px) {
  body.single-shop .shop-single__dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  body.single-shop .shop-single__dl dt {
    font-size: 12px;
  }
}

/* 営業タイプリンク */
body.single-shop .shop-single__type-links a {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(51, 122, 183, 0.35);
  background: rgba(51, 122, 183, 0.08);
  color: #2e6da4;
  text-decoration: none;
  font-size: 12.5px;
  line-height: 1;
}

body.single-shop .shop-single__type-links a:hover {
  opacity: 0.9;
}

/* 特徴：ボックス */
body.single-shop .shop-single__box {
  border: 1px solid #eef2f7;
  border-radius: 14px;
  padding: 12px 12px 10px;
  background: #fbfdff;
  margin: 12px 0 0;
}

@media (min-width: 768px) {
  body.single-shop .shop-single__box {
    padding: 14px 14px 12px;
  }
}

body.single-shop .shop-single__box p {
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.8;
  color: #334155;
}

body.single-shop .shop-single__box p:last-child {
  margin-bottom: 0;
}

/* 向いている人：タグ */
body.single-shop .shop-single__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.single-shop .shop-single__tags li {
  border: 1px solid #e6ecf5;
  background: #ffffff;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12.5px;
  line-height: 1;
  color: #0f172a;
}

/* 店舗紹介（本文） */
body.single-shop .shop-single__entry {
  font-size: 14px;
  line-height: 1.9;
  color: #334155;
}

body.single-shop .shop-single__entry p {
  margin: 0 0 12px;
}

body.single-shop .shop-single__entry p:last-child {
  margin-bottom: 0;
}

/* 下部ナビ */
body.single-shop .shop-single__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

body.single-shop .shop-single__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(51, 122, 183, 0.35);
  background: #ffffff;
  color: #337ab7;
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1;
}

body.single-shop .shop-single__back:hover {
  opacity: 0.9;
}

/* ================================
   モバイル：下部固定CTA（電話/公式）
   ================================ */
@media (max-width: 575px) {
  body.single-shop .shop-single {
    padding-bottom: 92px;
  }

  body.single-shop .shop-single__actions {
    position: sticky;
    bottom: 10px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
  }

  body.single-shop .shop-single__actions-note {
    display: none;
  }

  body.single-shop .shop-single__action-btn {
    min-height: 44px;
  }
}
/* ================================
   パンくず
   ================================ */
/* ===== 共通パンくず ===== */
.gdr-breadcrumb{
  margin:0 0 18px;
}

.gdr-breadcrumb ol{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  list-style:none;
  gap:8px;
  margin:0;
  padding:10px 14px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:12px;
  font-size:14px;
  line-height:1.4;
}

.gdr-breadcrumb li{
  display:flex;
  align-items:center;
  color:#666;
  margin: 0;
}

/* 区切り */
.gdr-breadcrumb li + li::before{
  content:"›";
  margin:0 6px;
  color:#aaa;
  font-size:13px;
}

.gdr-breadcrumb a{
  color:#ef222a;
  text-decoration:none;
}

.gdr-breadcrumb a:hover{
  text-decoration:underline;
}

.gdr-breadcrumb li[aria-current="page"]{
  color:#333;
  font-weight:600;
}

@media (max-width:575.98px){
  .gdr-breadcrumb ol{
    font-size:13px;
    padding:8px 10px;
  }
}