/*
Theme Name: Campaign Original
Author: Your Name
Version: 1.0
Description: オリジナルテーマ（選挙サイト用）
*/

/* =========================================================
   Tokens / Base
========================================================= */
:root{
  --main:#6EC1E4;
  --sub:#54595F;
  --text:#7A7A7A;
  --accent:#61CE70;
  --bg:#ffffff;
  --bg-alt:#f6f7f9;
  --footer:#1f3b66;

  --container: 1100px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;

  --fs-h1: clamp(26px, 4vw, 40px);
  --fs-h2: clamp(20px, 3vw, 28px);
  --fs-body: 16px;
  --lh: 1.6;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-size:var(--fs-body);
  line-height:var(--lh);
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover, a:focus-visible{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.container{ width:min(var(--container), 92%); margin:0 auto; }
.center{ text-align:center; }
.muted{ opacity:.75; }

/* =========================================================
   Header
========================================================= */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.header-inner{
  width:min(var(--container), 92%);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--space-2);
  padding: 22px var(--space-3);
}

.site-brand{ display:flex; flex-direction:column; gap:2px; }
.brand-sub{ font-size:12px; color:var(--sub); opacity:.8; }
.brand-main{ font-weight:900; color:var(--sub); letter-spacing:.02em; }

.site-nav .nav-list{
  list-style:none;
  display:flex;
  gap:18px;
  margin:0;
  padding:0;
  align-items:center;
  flex-wrap:wrap;
}
.site-nav .nav-list a{
  color:var(--sub);
  font-weight:800;
  font-size:14px;
}
.site-nav .nav-list a:hover{ opacity:.85; text-decoration:none; }

/* Hamburger button (mobile only) */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:10px;
  background:#fff;
  cursor:pointer;

  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
}
.nav-toggle__bar{
  display:block;
  width:22px;
  height:2px;
  background: var(--sub);
  border-radius:2px;
  opacity:.85;
  transition: transform .2s ease, opacity .2s ease;
}

/* Overlay (for off-canvas) */
.nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:9998;
}
.nav-overlay.is-open{
  opacity:1;
  visibility:visible;
}
body.nav-open{ overflow:hidden; }

/* =========================================================
   Hero (single source of truth)
   - theme outputs .hero.hero--ref sometimes; keep both
========================================================= */
.hero,
.hero--ref{
  position: relative;
  min-height: clamp(360px, 42vw, 520px);
  display:flex;
  align-items:center;
  padding: 56px 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38)),
    url("./assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
}
.hero-inner{
  width:min(var(--container), 92%);
  margin:0 auto;
  display:flex;
  justify-content:flex-start;
}

.hero-copy{
  width: min(560px, 92%);
  max-width: 560px;
  background: rgba(255,255,255,.92);
  border-radius: 18px;
  padding: clamp(16px, 3.2vw, 28px);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.hero-kicker{ margin:0 0 8px; color:var(--sub); font-weight:900; }
.hero-title{
  margin:0 0 10px;
  color:var(--sub);
  font-weight:900;
  font-size: var(--fs-h1);
  line-height: 1.25;
}
.hero-lead{
  margin:0;
  color:var(--sub);
  opacity:.85;
  line-height:1.6;
  font-size: clamp(13px, 3.2vw, 16px);
}
.hero-ribbon{
  display:inline-block;
  margin-top: 14px;
  background: var(--footer);
  color:#fff;
  font-weight:900;
  letter-spacing:.06em;
  padding: 14px 18px;
  box-shadow: 0 18px 30px rgba(0,0,0,.22);
  transform: skewX(-10deg);
}
.hero-ribbon span{
  display:inline-block;
  transform: skewX(10deg);
}

/* =========================================================
   Sections
========================================================= */
.section{ padding: 54px 0; }
.section--alt{ background:var(--bg-alt); }

.section-head{ text-align:center; margin-bottom: 22px; }
.section-en{ font-weight:900; color:var(--sub); letter-spacing:.06em; opacity:.85; }
.section-ja{ margin:6px 0 0; color:var(--sub); font-weight:900; }

.section-head--light .section-en,
.section-head--light .section-ja{ color:#fff; }

.message-box{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 22px;
  line-height: 2.0;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  color:#222;
}
.message-box p{
  max-width: 720px;
  margin: 0 auto 18px;
}

/* Buttons */
.btn{
  display:inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(84,89,95,.10);
  color: var(--sub);
  font-weight:900;
}
.btn:hover{ opacity:.85; text-decoration:none; }
.btn--light{ background: rgba(255,255,255,.92); }
.btn--primary{
  background: var(--footer);
  color: #fff;
  border-radius: 0;
  padding: 18px 22px;
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
}
.btn--wide{
  width: min(420px, 92%);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
}

/* Support section helpers */
.support-text{ text-align:center; width:min(760px, 92%); margin:0 auto; line-height:1.9; opacity:.95; }
.support-actions{ display:flex; gap:12px; justify-content:center; margin-top: 16px; flex-wrap:wrap; }

/* =========================================================
   Cards (default / blog list)
========================================================= */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
}
.card-thumb{ height: 170px; background: rgba(0,0,0,.06); overflow:hidden; }
.card-thumb img{ width:100%; height:100%; object-fit:cover; }
.card-body{ padding: 14px; }
.card-date{ font-size: 12px; color:var(--sub); opacity:.7; margin-bottom:6px; }
.card-title{ margin:0 0 8px; color:var(--sub); font-weight:900; font-size:16px; line-height:1.35; }
.card-excerpt{ margin:0; font-size:14px; }

/* =========================================================
   Blog (reference-like) - optional
========================================================= */
.section--blogref{ background:#fff; padding: 84px 0 80px; }
.cards--blogref{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0;
  row-gap: 44px;
  margin-top: 26px;
}
.card--blogref{
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0 34px;
  position: relative;
  border-right: 1px solid rgba(31,59,102,.35);
}
.card--blogref:nth-child(3n+1){ border-left: 1px solid rgba(31,59,102,.35); }

.card--blogref .card-link{ display:block; color: inherit; text-decoration:none; }
.card--blogref .card-date{
  font-size: 13px;
  font-weight: 900;
  color: var(--footer);
  opacity: .9;
  margin: 0 0 10px;
}
.card--blogref .card-thumb{ height: 210px; background: rgba(0,0,0,.06); overflow:hidden; }
.card--blogref .card-thumb img{ width:100%; height:100%; object-fit:cover; }
.card--blogref .card-body{ padding: 14px 0 0; }
.card--blogref .card-title{
  font-size: 18px;
  font-weight: 900;
  color: var(--footer);
  margin: 0 0 10px;
}
.card--blogref .card-excerpt{
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: var(--sub);
  opacity: .92;
}

/* =========================================================
   Essay teaser / band
========================================================= */
.essay-teaser{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.essay-teaser__text{ display:flex; flex-direction:column; gap:6px; }
.essay-teaser__lead{ margin:0; color:var(--sub); font-weight:900; text-align:center; }
.essay-teaser__note{ margin:0; font-size:14px; opacity:.78; }
.essay-teaser__cta{ display:flex; align-items:center; justify-content:center; }
.essay-teaser__cta .btn{ margin:0; }

.essay-band{
  width: 100%;
  background: #f1f3f5;
  padding: 22px 0;
  margin: 18px 0 34px;
}
.essay-band__text{
  margin: 0;
  color: var(--sub);
  opacity: .88;
  font-weight: 700;
  line-height: 1.9;
  font-size: 14px;
  text-align: center;
}

/* =========================================================
   Page hero (blog archive etc.)
========================================================= */
.page-hero{
  position: relative;
  height: 340px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.page-hero__inner{
  width:min(var(--container), 92%);
  margin:0 auto;
  text-align:center;
  position: relative;
  z-index: 2;
}
.page-hero__en{
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 56px;
  color:#fff;
}
.page-hero__ja{
  margin-top: 10px;
  font-weight: 900;
  font-size: 16px;
  color: rgba(255,255,255,.95);
}
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.38), rgba(0,0,0,.12)),
    url("./assets/images/blog-hero.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Pagination */
.pagination{ margin-top: 60px; text-align: center; }
.pagination a,
.pagination span{
  display: inline-block;
  margin: 0 6px;
  padding: 8px 14px;
  border: 1px solid #ddd;
  text-decoration: none;
}
.pagination .current{
  background: var(--footer);
  color: #fff;
  border-color: var(--footer);
}

/* =========================================================
   Profile page (optional)
========================================================= */
.profile-hero{
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("./assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
}
.profile-hero-inner{ width: min(var(--container), 92%); margin: 0 auto; }
.profile-title{ color:#fff; font-size: 42px; font-weight: 900; }

.profile-page .profile-content{
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 80px;
  line-height: 2;
  font-size: 16px;
}
.profile-page h2{
  font-size: 26px;
  font-weight: 900;
  margin: 64px 0 18px;
  letter-spacing: .02em;
  color:#000;
}
.profile-page h3{
  font-size: 18px;
  font-weight: 800;
  margin: 36px 0 12px;
  color:#000;
}
.profile-page p,
.profile-page li,
.profile-page strong{ color:#000; }
.profile-page p{ margin: 0 0 18px; }
.profile-page ul,
.profile-page ol{ margin: 12px 0 24px; padding-left: 1.4em; }
.profile-page li{ margin: 6px 0; }
.profile-page hr{
  border: 0;
  height: 1px;
  background: rgba(0,0,0,.12);
  margin: 34px 0;
}

/* =========================================================
   Footer
========================================================= */
.site-footer{
  background: var(--footer);
  color: rgba(255,255,255,.92);
  padding: 34px 0;
}
.footer-inner{ width:min(var(--container), 92%); margin:0 auto; }
.footer-brand{ font-weight:900; margin-bottom: 10px; }
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom: 10px;
  list-style:none;
  padding:0;
}
.footer-links a{ color: rgba(255,255,255,.92); text-decoration:none; }
.footer-copy{ font-size: 12px; opacity:.85; }

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 900px){
  .header-inner{ padding: 18px var(--space-3); }
  .cards{ grid-template-columns: 1fr; }
  .section--blogref{ padding: 56px 0; }
  .cards--blogref{ grid-template-columns: 1fr; row-gap: 0; }
  .card--blogref{
    padding: 18px 0;
    border-left: 0;
    border-right: 0;
  }
  .card--blogref + .card--blogref{ border-top: 1px solid rgba(31,59,102,.25); }
}

@media (max-width: 768px){
  /* Header: show hamburger + off-canvas nav */
  .nav-toggle{ display:flex; }

  .site-nav{
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 82vw);
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 84px 24px 24px;
    overflow: auto;
    transition: right .35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,.08);
  }
  .site-nav.is-open{ right: 0; }

  .site-nav .nav-list{
    flex-direction: column;
    gap: 0;
  }
  .site-nav .nav-list a{
    display:block;
    padding: 14px 6px;
  }
  .site-nav .nav-list a:hover{
    background: rgba(0,0,0,.03);
    text-decoration:none;
  }

  /* Hero: left + avoid face */
  .hero, .hero--ref{
    min-height: 360px;
    padding: 26px 0 20px;
    background-position: 78% center;
  }
  .hero-inner{
    width: 100%;
    margin: 0;
    padding-left: 12px;
    padding-right: 10px;
  }
  .hero-copy{
    width: min(300px, 78vw);
    border-radius: 12px;
  }
  .hero-title{ font-size: clamp(20px, 6vw, 28px); }
  .hero-ribbon{ padding: 10px 12px; font-size: 13px; }

  .message-box{
    padding: 18px 16px;
    line-height: 2.05;
  }
  .message-box p{ margin: 0 0 14px; }

  .essay-teaser{ flex-direction:column; align-items:stretch; }
  .essay-teaser__cta{ text-align:center; }
}

@media (max-width: 640px){
  body{ font-size: 15px; }
  .page-hero__en{ font-size: 44px; }
  .profile-title{ font-size: 34px; }
}

@media (max-width: 768px){

  /* hero全体 */
  .hero{
    padding: clamp(20px, 6vw, 32px) 0;
    background-position: 75% center;
  }

  /* 固定余白をやめる */
  .hero-inner{
    width: 100%;
    margin: 0;
    padding-left: clamp(12px, 5vw, 28px);
    padding-right: clamp(12px, 5vw, 28px);
  }

  /* 白枠を流体化 */
  .hero-copy{
    width: clamp(240px, 80vw, 340px);
    padding: clamp(12px, 4vw, 20px);
  }

  /* 文字も流体 */
  .hero-title{
    font-size: clamp(20px, 6vw, 28px);
  }

  .hero-lead{
    font-size: clamp(12px, 3.5vw, 14px);
  }

}

/* PC以外：白枠だけ消す */
@media (max-width: 1024px){

  .hero-copy{
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
}

/* PC以外：白背景（白枠）だけ消す。文字・リボンは残す */
@media (max-width: 1024px){
  .hero-copy{
    background: transparent;
    box-shadow: none;
  }
}

/* PC以外：白背景だけ消す（文字・青リボンは残す） */
@media (max-width: 1024px){
  body .hero .hero-copy{
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 1024px){

  .hero-copy h1{
    color: #ffffff;
  }

}

@media (max-width: 1024px){

  .hero-copy h1{
    color: #ffffff;
    margin-bottom: 24px; /* ←ここで間隔確保 */
  }

  .hero-copy .hero-catch{
    margin-top: 0;
  }

}

@media (max-width: 1024px){

  /* タイトルとリボンの間隔を確保 */
  .hero-copy h1{
    margin-bottom: 28px;
  }

  /* リボンを下にずらす（positionで重なってても効く） */
  .hero-copy .hero-ribbon,
  .hero-copy .hero-catch,
  .hero-copy .hero-tagline{
    position: relative;
    top: 16px;
  }
}

@media (max-width: 1024px){

  /* タイトル */
  .hero-copy h1{
    margin-bottom: 24px;
  }

  /* リボンを横幅いっぱいに */
  .hero-copy .hero-catch,
  .hero-copy .hero-ribbon,
  .hero-copy .hero-tagline{
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: center;
    white-space: nowrap; /* 改行防止 */
  }

}

@media (max-width: 1024px){

  .hero-copy .hero-catch{
    width: 115%;           /* ← 少し長く */
    left: -7.5%;             /* ← 中央バランス取る */
    position: relative;

    margin-top: -12px;     /* ← 少し上に上げる */
  }

}

@media (max-width: 1024px){

  .hero-copy{
    position: relative;
  }

  .hero-copy .hero-catch{
    display: block;
    width: 120%;
    margin-left: -10%;
    text-align: center;
    white-space: nowrap;

    position: relative;
    top: -20px;
  }

}

@media (max-width: 1024px){

  .hero--ref .hero-ribbon{
    text-align: left;
    padding-left: 20px;   /* ← 左に寄せる量（調整可） */
  }

}

/* PC以外：リボンを少し長く＋文字を左に寄せる */
@media (max-width: 1024px){
  .hero--ref .hero-ribbon{
    display: inline-block;              /* 中身幅基準 */
    width: auto;                        /* 100%にしない */
    padding-left: 20px;                 /* 文字の左寄せ量（そのまま） */
    padding-right: 28px;                /* ← 右側だけ長くする（ここで調整） */

    text-align: left;
    white-space: nowrap;

    transform: translateY(-16px) skewX(-10deg);
  }
} 

@media (max-width: 1024px){
  .hero, .hero-inner, .hero-copy{ overflow: visible; }

  .hero--ref .hero-ribbon{
    display: inline-block;
    max-width: none;
  }
} 

/* =========================
   Footer fix (PC含む全幅)
========================= */
.site-footer,
footer.site-footer,
footer{
  position: relative;
}

/* フッターの中身を縦に整列 */
.site-footer .footer-inner,
footer .footer-inner{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

/* フッターのメニューを横並びに（PC用） */
.site-footer ul,
footer ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
}

/* “重なり”の原因を殺す */
.site-footer * ,
footer *{
  float: none;
}

/* フッター内で position:absolute が残ってる時の保険 */
.site-footer nav,
.site-footer ul,
.site-footer li,
.site-footer a,
.site-footer .copyright,
.site-footer small{
  position: static;
}

/* =========================
   Footer Redesign (PC)
   - Left: brand/info
   - Right: nav (2 cols)
========================= */

.site-footer,
footer.site-footer,
footer{
  background: #213a63; /* 今の濃紺に近い */
  color: #fff;
}

.site-footer a,
footer a{
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover,
footer a:hover{
  text-decoration: underline;
}

/* 余白 */
.site-footer,
footer{
  padding: 44px 0 28px;
}

/* 中身の横幅 */
.site-footer .footer-inner,
footer .footer-inner{
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* 2カラムの骨組み
   既存に footer-inner が無い場合でも崩れにくいように
   “footer直下の主要ブロック”を横並びに寄せる */
.site-footer .footer-inner,
footer .footer-inner,
.site-footer > .container,
footer > .container{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 56px;
}

/* 左側（ブランド・住所など） */
.site-footer .footer-brand,
footer .footer-brand,
.site-footer .footer-info,
footer .footer-info{
  max-width: 420px;
}

.site-footer .footer-brand h3,
footer .footer-brand h3{
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
}

.site-footer .footer-brand p,
footer .footer-brand p,
.site-footer .footer-info p,
footer .footer-info p{
  margin: 0 0 10px;
  line-height: 1.9;
  opacity: .95;
}

/* 右側（ナビ） */
.site-footer nav,
footer nav{
  margin-top: 6px;
}

/* メニューを2列に */
.site-footer nav ul,
footer nav ul{
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px 40px;
  align-items: start;
}

.site-footer nav li,
footer nav li{
  margin: 0;
  padding: 0;
}

.site-footer nav a,
footer nav a{
  display: inline-block;
  font-size: 16px;
  line-height: 1.6;
}

/* コピーライトは下に */
.site-footer .copyright,
footer .copyright,
.site-footer small,
footer small{
  display: block;
  text-align: center;
  margin-top: 26px;
  opacity: .9;
}

/* PC以外は縦積み */
@media (max-width: 900px){
  .site-footer .footer-inner,
  footer .footer-inner,
  .site-footer > .container,
  footer > .container{
    flex-direction: column;
    gap: 20px;
  }

  .site-footer nav ul,
  footer nav ul{
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* =============================
   Footer Layout Fix (PC only)
============================= */

@media (min-width: 901px){

  footer,
  .site-footer{
    text-align: left;   /* ← 中央寄せ解除 */
  }

  /* 横並び化 */
  footer .footer-inner,
  .site-footer .footer-inner,
  footer > .container,
  .site-footer > .container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  /* 左ブロック */
  footer .footer-brand,
  footer .footer-info{
    max-width: 420px;
  }

  /* ナビを右に */
  footer nav{
    margin-left: auto;   /* ← これが重要 */
  }

  /* ナビ2列 */
  footer nav ul{
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 12px 48px;
  }

  /* コピーライトは中央下に */
  footer .copyright,
  footer small{
    display: block;
    text-align: center;
    margin-top: 40px;
  }

}

/* Footer: PC以外はナビを出さない */
@media (max-width: 900px){
  footer nav,
  .site-footer nav{
    display: none;
  }
}

/* モバイル：記事カードの左線を消す */
@media (max-width: 768px){

  .card,
  .post-card,
  .blog-card,
  .card--blogref{
    border-left: none !important;
  }

}

/* モバイル：記事カードの左線を消す */
@media (max-width: 768px){

  .card,
  .post-card,
  .blog-card,
  .card--blogref{
    border-left: none !important;
  }

}

/* モバイル：論考 teaser の文字が二重に見える/重なる問題を潰す */
@media (max-width: 768px){

  .essay-teaser__lead{
    /* まず見た目の“二重化”原因を除去 */
    text-shadow: none !important;
    filter: none !important;
    -webkit-text-stroke: 0 !important;
    transform: none !important;

    /* レイアウト面も安定化 */
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.7;
    font-size: clamp(14px, 4.2vw, 18px);
  }

  /* もし疑似要素で同じ文字を描いてる場合の保険 */
  .essay-teaser__lead::before,
  .essay-teaser__lead::after{
    content: none !important;
    display: none !important;
  }
}

/* =========================
   Footer bottom mobile fix ONLY
========================= */
@media (max-width: 900px){

  .site-footer .footer-bottom .footer-bottom-inner{
    display: block !important;     /* ← flex解除 */
    text-align: center;
  }

  .site-footer .footer-bottom-copy{
    display: block;
    width: 100%;
    margin-top: 14px;
    text-align: center;
    line-height: 1.6;
    white-space: normal;
  }

}