:root{
  --max: 1120px;
  --gutter: 24px;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.12);
  --accent: #caa86a;
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }
body{
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 12% 18%, rgba(202,166,106,.22), transparent 60%),
    radial-gradient(1000px 700px at 80% 60%, rgba(202,166,106,.10), transparent 65%),
    linear-gradient(180deg, #0b0b0b, #070707);
  font: 16px/1.75 system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  min-height: 100vh;
  background-attachment: fixed;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

/* コンテナ */
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* skip link（これがヘッダ上の隙間の主因になりがち） */
.skip-link{
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus{
  left: 16px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  z-index: 2000;
}

/* ヘッダ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 7, 5, .72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

/* ここがロゴ・ナビ整列の核 */
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding-top: 0;
  padding-bottom: 0;
}

/* ロゴの“微妙なズレ”を潰す */
.site-logo-text{
  display: inline-flex;
  align-items: center;
  line-height: 1;
  letter-spacing: .08em;
  font-weight: 700;
}

/* ナビ（ul/li の初期余白と●を完全に消す） */
.site-nav-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  align-items: center;
}
.site-nav-list a{
  display: inline-block;
  padding: 10px 0;
  color: var(--muted);
}
.site-nav-list a[aria-current="page"]{
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 6px;
}

/* パンくず */
.breadcrumbs{
  margin: 18px 0 0;
}
.breadcrumbs-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}
.breadcrumbs-item + .breadcrumbs-item::before{
  content: "›";
  margin-right: 10px;
  color: rgba(255,255,255,.35);
}

/* 本文 */
main{ padding-top: 28px; padding-bottom: 60px; }

.hero{ padding: 38px 0 42px; }
.hero-title{
  margin: 0 0 10px;
  font-size: 44px;
  letter-spacing: .04em;
}
.hero-lead{ margin: 0 0 16px; color: rgba(255,255,255,.80); }
.hero-text{ margin: 0; color: rgba(255,255,255,.70); }

.section{ margin-top: 46px; }
.section-title{
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: .04em;
}
.section p{ margin: 0 0 12px; color: rgba(255,255,255,.78); }
.section ul{ margin: 10px 0 0 1.2em; color: rgba(255,255,255,.78); }

/* 置き換え推奨：カテゴリカードをダークガラスに */
.category-card{
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255,255,255,0.92);
}

/* カテゴリカード：中身を縦並び＆下揃えに対応 */
.category-card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-grid{
  align-items: stretch;
}

/* 「〜を見る→」を常にカード下へ */
.category-card .category-link{
  margin-top: auto;
}


/* 光の帯が不要なら消す */
.category-card::before{
  display:none;
}

.category-title{ margin: 0 0 6px; font-size: 18px; }
.category-sub{ margin: 0 0 10px; color: rgba(255,255,255,.70); }
.category-desc{ margin: 0 0 12px; color: rgba(255,255,255,.78); }
.category-link{ color: rgba(255,255,255,.90); }

/* フッタ */
.site-footer{
  border-top: 1px solid var(--line);
  background: none;
  padding: 16px 0;
  margin-top: 0;
}
.footer-inner{
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.footer-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
}
.copyright{ color: rgba(255,255,255,.60); }
.breadcrumbs { margin: 16px 0 0; }
.breadcrumbs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumbs__item::before { content: "›"; margin-right: 10px; opacity: .6; }
.breadcrumbs__item:first-child::before { content: ""; margin-right: 0; }
.breadcrumbs__link { color: var(--muted); text-decoration: none; }
.breadcrumbs__link:hover { text-decoration: underline; }
.breadcrumbs__current { color: var(--text); }
.skip-link{
  position:absolute;
  left:12px;
  top:-60px;
  padding:10px 12px;
  background:#fff;
  color:#000;
  border-radius:8px;
  z-index:2000;
}
.skip-link:focus{
  top:12px;
}
.site-title{
  display:flex;
  align-items:center;
  line-height:1;
}

.site-logo-text{
  display:block;
  line-height:1;
}
footer{
  border-top: 1px solid var(--line);
  background: transparent; /* ← ここがポイント */
}
.hero--with-image{
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-content{
  flex: 1;
  min-width: 0;
}

.hero-media{
  flex: 0 0 auto;
}

.hero-image{
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.subhead{
  margin: 18px 0 10px;
  font-size: 16px;
}

.score-breakdown,
.score-levels{
  margin: 10px 0 0 1.2em;
}

.note{
  margin-top: 12px;
  color: var(--muted);
}

.site-nav-list a.is-current{
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 6px;
}
@media (max-width: 760px){
  .hero--with-image{
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-image{
    max-width: 420px;
  }
}
.hero--with-image{
  display:flex;
  align-items:center;
  gap:24px;
  padding:28px 0 36px;
}

.hero-content{ flex:1; }
.hero-media{ flex:0 0 auto; }

.hero-image{
  width:320px;
  max-width:100%;
  height:auto;
  border-radius:14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

@media (max-width: 760px){
  .hero--with-image{
    flex-direction:column;
    align-items:flex-start;
  }
  .hero-image{ width:100%; }
}
.site-title{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
  line-height:1.1;
}

.logo-main{
  font-size:20px;
  font-weight:700;
  letter-spacing:.04em;
}

.logo-sub{
  margin-top:3px;      /* ここが効く */
  font-size:11px;
  letter-spacing:.18em;
  opacity:.6;
}
/* ===== Mobile hamburger nav ===== */
.nav-toggle { display: none; }

@media (max-width: 640px) {
  .site-header .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:12px 16px;
  }

  .site-title{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    line-height:1.1;
  }
  .logo-main{ font-size:16px; }
  .logo-sub{ font-size:11px; margin-top:2px; letter-spacing:.08em; opacity:.75; }

  .nav-toggle{
    display:inline-flex;
    flex-direction:column;
    gap:6px;
    padding:10px;
    background:transparent;
    border:1px solid rgba(255,255,255,.14);
    border-radius:10px;
    cursor:pointer;
  }
  .nav-toggle__bar{
    width:20px;
    height:2px;
    background:rgba(255,255,255,.9);
    display:block;
  }

  /* メニューは閉じるのが初期 */
  .site-nav{
    display:none;
    width:100%;
    margin-top:10px;
  }
  .site-nav.is-open{ display:block; }

  .site-nav ul{
    list-style:none;
    padding:10px;
    margin:0;
    border:1px solid rgba(255,255,255,.12);
    border-radius:12px;
    background:rgba(0,0,0,.25);
    backdrop-filter: blur(8px);
  }
  .site-nav a{
    display:block;
    padding:10px 8px;
  }

  /* header-inner が横並びだけだと nav が入らないので折り返し */
  .site-header .header-inner{ flex-wrap:wrap; }
}
/* ===== Header / Nav ===== */
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.site-title{
  display:flex;
  flex-direction:column;
  gap:2px;
  text-decoration:none;
  color:inherit;
}

.logo-main{
  font-weight:700;
  letter-spacing:.02em;
  line-height:1.1;
}

.logo-sub{
  font-size:11px;
  letter-spacing:.18em;
  opacity:.65;
  line-height:1.1;
}

.site-nav .nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:20px;
  align-items:center;
}

.site-nav a{
  text-decoration:none;
  color:inherit;
  padding:8px 10px;
  border-radius:10px;
}

.site-nav a:hover{
  background:rgba(255,255,255,.06);
}

/* ===== Footer ===== */
.footer-inner{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:20px;
  align-items:start;
}

.footer-title{
  font-weight:700;
  margin-bottom:6px;
}

.footer-desc{
  margin:0;
  opacity:.8;
  max-width:42ch;
}

.footer-heading{
  font-weight:700;
  margin-bottom:8px;
}

.footer-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:8px 14px;
}

.footer-list a{
  text-decoration:none;
  color:inherit;
  opacity:.9;
}

.copyright{
  grid-column: 1 / -1;
  display:block;
  margin-top:10px;
  opacity:.7;
}

/* ===== Mobile: 縦並び + 2列化 ===== */
@media (max-width: 640px){
  .header-inner{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    padding-top:12px;
    padding-bottom:12px;
  }

  .site-title{
    align-items:center;
    text-align:center;
  }

  .site-nav{
    width:100%;
  }

  .site-nav .nav-list{
    width:100%;
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:8px 10px;
  }

  .site-nav a{
    display:block;
    text-align:center;
    border:1px solid var(--line);
    background:rgba(0,0,0,.18);
    padding:10px 12px;
  }

  .footer-inner{
    grid-template-columns: 1fr;
  }

  .footer-desc{
    max-width:none;
  }
}
/* --- Mobile hamburger nav --- */
.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
  border-radius:10px;
  padding:10px 12px;
  line-height:1;
  cursor:pointer;
}

.nav-toggle__icon::before{
  content:"☰";
  font-size:18px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before{
  content:"✕";
}

@media (max-width: 768px){
  .site-header .header-inner{
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
  }

  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-left:auto;
  }

  /* 折りたたみ */
  .site-nav{
    width:100%;
    overflow:hidden;
    max-height:0;
    opacity:0;
    pointer-events:none;
    transition:max-height .25s ease, opacity .2s ease;
  }

  .site-header.is-nav-open .site-nav{
    max-height:420px; /* 充分大きめ */
    opacity:1;
    pointer-events:auto;
    margin-top:8px;
  }

  .site-nav ul{
    display:grid;
    grid-template-columns:1fr 1fr; /* 2列 */
    gap:10px 14px;
    padding:10px 0 0;
  }

  .site-nav li{
    margin:0;
  }

  .site-nav a{
    display:block;
    padding:10px 12px;
    border:1px solid var(--line);
    border-radius:12px;
    background:rgba(255,255,255,.03);
  }
}
/* 追記/上書き（SPメニュー + ロゴ2段） */

/* ロゴ：2段表示 */
.site-logo{
  display:flex;
  flex-direction:column;
  gap:2px;
  text-decoration:none;
}
.logo-sub{
  font-size:11px;
  letter-spacing:.18em;
  opacity:.65;
}

/* ナビ（共通） */
.site-nav-list,
.footer-list{
  list-style:none;
  margin:0;
  padding:0;
}

/* SP: ☰で開閉（初期は閉） */
.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(255,255,255,.2);
  color:inherit;
  border-radius:10px;
  padding:8px 10px;
  line-height:1;
}

@media (max-width: 768px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .site-nav{ display:none; }
  .site-nav.is-open{ display:block; }
  .site-nav-list{ display:grid; grid-template-columns:1fr 1fr; gap:10px 14px; margin-top:10px; }
}

/* PC: 横並び */
@media (min-width: 769px){
  .site-nav{ display:block !important; }
  .site-nav-list{ display:flex; gap:22px; }
}
[hidden]{ display:none !important; }
@media (max-width: 768px){
  .site-header.is-nav-open .site-nav,
  .site-nav.is-open{
    display:block !important;
  }
}
/* ===== Mobile nav: single source of truth ===== */
@media (max-width: 768px){
  /* 初期は閉じる */
  #globalNav.site-nav{ display:none !important; }

  /* 開いたときだけ表示 */
  #globalNav.site-nav.is-open{ display:block !important; }

  /* もし過去の方式が残っていても無効化 */
  #globalNav.site-nav{
    max-height:none !important;
    overflow:visible !important;
    pointer-events:auto !important;
    visibility:visible !important;
    opacity:1 !important;
  }
}
/* ===== Top: Category grid ===== */
.section-lead{
    margin-top: 10px;
    color: var(--muted);
}

.category-grid--top{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 16px;
}

/* ===== Luxury depth for category cards ===== */
.category-card--top{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;

    box-shadow:
        0 8px 18px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.06);

    transition: box-shadow .25s ease, border-color .25s ease;

    padding: 18px 22px;
}
.category-card--top h3,
.category-card--top h4{
  margin-top: 0;
}
.category-card--top:hover{
    box-shadow:
        0 10px 22px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.14);
}
/* カテゴリカード：影を上品に、面に薄い奥行き */
.category-card--top{
  background: linear-gradient(180deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.025)
  );
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    0 10px 26px rgba(0,0,0,.32),
    0 1px 0 rgba(255,255,255,.05) inset;
}

.category-card--top:hover{
  border-color: rgba(202,168,106,.25); /* アクセントを“枠線だけ”に */
  box-shadow:
    0 14px 34px rgba(0,0,0,.40),
    0 1px 0 rgba(255,255,255,.06) inset;
}

.category-title{
    margin: 0;
    font-size: 18px;
    letter-spacing: .02em;
    color: #f5e6c8; /* ほんのりゴールド寄り */
}

.category-sub{
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.category-desc{
    margin: 6px 0 0;
    color: rgba(255,255,255,.85);
    line-height: 1.65;

    /* 説明文を揃える（PCはだいたい3〜4行） */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-link{
    margin-top: auto; /* 下に揃える */
}

.category-link a{
    text-decoration: none;
}

.category-link a:hover{
    text-decoration: underline;
}

/* ===== Mobile: 2 columns + shorter text ===== */
@media (max-width: 768px){
    .category-grid--top{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .category-title{
        font-size: 16px;
    }

    .category-card--top{
        box-shadow:
            0 6px 14px rgba(0,0,0,0.32),
            inset 0 1px 0 rgba(255,255,255,0.05);
    }
  }
@media (max-width: 720px){
  .category-card--top{ padding: 16px 18px; }
}

/* ===== Top: section spacing rhythm ===== */
body.home main.container{
    padding-top: 16px;
}

body.home .section{
    margin-top: 34px;
}

body.home .section:first-of-type{
    margin-top: 22px;
}

/* 見出し下のリズム */
body.home .section-title{
    margin: 0 0 12px;
}

body.home .section-lead{
    margin: 0 0 16px;
}

/* 段落の行間と塊感 */
body.home .section p{
    margin: 0 0 12px;
}

body.home .section p:last-child{
    margin-bottom: 0;
}

/* Hero と次セクションの距離を気持ち詰める */
body.home .hero{
    margin-bottom: 10px;
}

@media (max-width: 768px){
    body.home .section{
        margin-top: 26px;
    }

    body.home .section-title{
        margin-bottom: 10px;
    }

    body.home .section-lead{
        margin-bottom: 14px;
    }
}
/* ===== SUGOI SCORE: visual guidance ===== */
.score-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.score-item{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px 16px;

    box-shadow:
        0 10px 24px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.score-head{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.score-name{
    font-weight: 700;
    letter-spacing: .02em;
}

.score-points{
    font-size: 12px;
    letter-spacing: .12em;
    opacity: .85;
}

.score-text{
    margin: 8px 0 0;
    color: rgba(255,255,255,.86);
    line-height: 1.65;
    font-size: 14px;
}

.score-badges{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.score-badge{
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(202,168,106,.28);
    background: rgba(0,0,0,.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    font-size: 13px;
    letter-spacing: .02em;
}

@media (max-width: 768px){
    .score-grid{
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ===== Hero image polish ===== */
.hero--with-image{
    align-items: center;
}

.hero-media{
    flex: 0 0 auto;
}

.hero-image{
    width: 360px;           /* PCの基準サイズ */
    max-width: 100%;
    height: auto;
    border-radius: 14px;    /* カードと統一 */
    border: 1px solid rgba(255,255,255,.10);

    /* “黒い影”ではなく、柔らかい深み */
    box-shadow:
        0 18px 46px rgba(0,0,0,.32),
        0 2px 0 rgba(255,255,255,.06) inset;
}

@media (max-width: 768px){
    .hero-image{
        width: 100%;
        border-radius: 12px;
        box-shadow:
            0 14px 34px rgba(0,0,0,.28),
            0 1px 0 rgba(255,255,255,.05) inset;
    }
}

/* ===== Category cards: bottom alignment ===== */
.category-card--top{
    display: flex;
    flex-direction: column;
}

/* 説明文の行数を揃える（PC） */
.category-card--top .category-desc{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
      line-height: 1.6;
}

/* リンクは常に下へ */
.category-card--top .category-link{
    margin-top: auto;
    padding-top: 10px;
}
/* ===== category-desc：PC3行 / スマホ2行（このブロックだけに統一） ===== */
.category-card--top .category-desc{
    line-height: 1.6;
    overflow: hidden !important;
    display: block; /* 余計なdisplay競合を避ける */
}

/* PC：3行ぶん */
@media (min-width: 769px){
    .category-card--top .category-desc{
        max-height: calc(1.6em * 3) !important;
    }
}

/* スマホ：2行ぶん */
@media (max-width: 768px){
    .category-card--top .category-desc{
        max-height: calc(1.6em * 2) !important;
    }
}
/* ===== Hero: copy & rhythm ===== */
.hero-lead{
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,.9);
    max-width: 60ch;
}

.hero-points{
    margin: 14px 0 0;
    padding-left: 18px;
    color: rgba(255,255,255,.85);
    line-height: 1.75;
}

.hero-points li{
    margin: 6px 0;
}

.hero-points strong{
    color: #f5e6c8;
}
/* ===== Hero final spacing ===== */
.hero-title{
  margin: 0;
  line-height: 1.15;
}

.hero-lead{
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.7;
  max-width: 60ch;
}

.hero-points{
  margin: 14px 0 0;
  padding-left: 18px;
  line-height: 1.75;
}

.hero-points li{
  margin: 6px 0;
}

@media (max-width: 768px){
  .hero-lead{ font-size: 15px; }
  .hero-points{ margin-top: 12px; }
}
/* ===== Mobile nav: tap-friendly ===== */
@media (max-width: 768px){
  #globalNav.site-nav{
    padding: 10px 0;
  }

  #globalNav.site-nav a{
    display: block;
    padding: 14px 14px;
    border-radius: 12px;
    margin: 6px 0;
    line-height: 1.2;
  }

  #globalNav.site-nav a:active{
    background: rgba(255,255,255,0.06);
  }
}
/* ===== Mobile nav: tap-friendly ===== */
@media (max-width: 768px){
  #globalNav.site-nav{
    padding: 10px 0;
  }

  #globalNav.site-nav a{
    display: block;
    padding: 14px 14px;
    border-radius: 12px;
    margin: 6px 0;
    line-height: 1.2;
  }

  #globalNav.site-nav a:active{
    background: rgba(255,255,255,0.06);
  }
}
/* ===== Footer: final tighten ===== */
.site-footer{
    padding: 26px 0 16px;
}

.footer-desc{
    margin: 8px 0 0;
    max-width: 56ch;
    line-height: 1.55;
    font-size: 13px;
    opacity: .78;
}

.footer-cols{
    gap: 18px;
}

.footer-heading{
    margin: 0 0 10px;
    font-size: 13px;
    letter-spacing: .02em;
    opacity: .9;
}

.footer-list{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list a{
    display: inline-block;
    padding: 6px 0;
    text-decoration: none;
    opacity: .88;
}

.footer-list a:hover{
    opacity: 1;
    text-decoration: underline;
}

.copyright{
    margin-top: 14px;
    font-size: 12px;
    opacity: .65;
}

/* Mobile: breathing room */
@media (max-width: 768px){
    .site-footer{
        padding: 22px 0 14px;
    }
    .footer-desc{
        max-width: none;
        font-size: 12.5px;
    }
    .footer-list a{
        padding: 10px 0; /* タップしやすく */
    }
}
/* ===== Mobile nav: tap-friendly ===== */
@media (max-width: 768px){
  #globalNav.site-nav{
    padding: 10px 0;
  }

  #globalNav.site-nav a{
    display: block;
    padding: 14px 14px;
    border-radius: 12px;
    margin: 6px 0;
    line-height: 1.2;
  }

  #globalNav.site-nav a:active{
    background: rgba(255,255,255,0.06);
  }
}
/* ===== Home: ultra finish (rhythm & typography) ===== */
body.home{
    --home-section-gap-pc: 36px;
    --home-section-gap-sp: 28px;
    --home-title-gap: 12px;
    --home-lead-gap: 16px;
}

/* セクション間 */
body.home .section{
    margin-top: var(--home-section-gap-pc);
}
body.home .section:first-of-type{
    margin-top: 22px;
}

/* 見出し（H2相当） */
body.home .section-title{
    margin: 0 0 var(--home-title-gap);
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: .02em;
}

/* リード文 */
body.home .section-lead{
    margin: 0 0 var(--home-lead-gap);
    line-height: 1.7;
    max-width: 70ch;
}

/* セクション内の段落リズム */
body.home .section p{
    margin: 0 0 12px;
}
body.home .section p:last-child{
    margin-bottom: 0;
}

/* Hero → 次のセクションだけ少し詰める */
body.home .hero{
    margin-bottom: 12px;
}

/* SUGOI SCORE のブロック間を整える */
body.home .score-grid{
    margin-top: 14px;
}
body.home .score-badges{
    margin-top: 14px;
}

/* カテゴリ見出し〜カードの距離 */
body.home .category-grid--top{
    margin-top: 16px;
}

@media (max-width: 768px){
    body.home .section{
        margin-top: var(--home-section-gap-sp);
    }
    body.home .section-title{
        font-size: 20px;
        margin-bottom: 10px;
    }
    body.home .section-lead{
        margin-bottom: 14px;
    }
    body.home .hero{
        margin-bottom: 10px;
    }
}
/* ===== Breadcrumbs : final ===== */
.breadcrumbs{
    margin: 12px 0 22px;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255,255,255,0.65);
}

.breadcrumbs ol{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li{
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.breadcrumbs li + li::before{
    content: "›";
    margin: 0 6px;
    color: rgba(255,255,255,0.4);
}

.breadcrumbs a{
    color: inherit;
    text-decoration: none;
}

.breadcrumbs a:hover{
    text-decoration: underline;
}

.breadcrumbs [aria-current="page"]{
    color: rgba(255,255,255,0.85);
}

/* Mobile */
@media (max-width: 768px){
    .breadcrumbs{
        margin: 10px 0 18px;
        font-size: 11.5px;
    }
}
/* 銘柄ページのメイン画像 */
.brand-hero-img{
  width: 100%;
  max-width: 420px;   /* PCでデカすぎ防止 */
  height: auto;       /* 縦横比を維持 */
  display: block;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
}
.brand-hero-img{
  width: 100%;
  max-width: 360px;   /* PCでもデカすぎない */
  height: auto;       /* 縦横の不自然さを消す */
  display: block;
  border-radius: 16px;
}
.score-total {
    font-size: 1.4rem;      /* 今より少し大きく */
    font-weight: 700;
    margin-top: 1.2rem;
}
.score-total-value {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.score-summary {
    margin-top: 2rem;
    padding: 1.2rem 1.4rem;
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid rgba(255, 200, 120, 0.7);
}
/* --- brands list --- */
.brand-list { margin-top: 32px; }

.brand-title{
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.2;
}
.brand-title a{ text-decoration:none; color: inherit; }

.brand-meta{
  margin: 0 0 10px;
  opacity: .85;
  font-size: 13px;
}

