@charset "UTF-8";
/* ==========================================================================
   llmo.css  ―  /tokyo/llmo/ ページ専用スタイル
   既存フレームワーク（bootstrap / style / bamboo.css）に追記する形で読み込みます。
   すべて .llmo- プレフィックスでスコープし、既存スタイルと衝突しません。
   ========================================================================== */

.llmo-accent{color:#fe483b;}

/* ---- badge / keyword chips ---- */
.llmo-badge{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;font-weight:700;letter-spacing:.12em;
  color:#fe483b;background:rgba(254,72,59,.08);
  border:1px solid rgba(254,72,59,.35);border-radius:999px;
  padding:6px 16px;
}
.llmo-badge i{width:7px;height:7px;border-radius:50%;background:#fe483b;display:inline-block;}
.llmo-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px;}
.llmo-chip{
  font-weight:700;font-size:13px;padding:7px 14px;border-radius:8px;
  background:#0d2746;color:#fff;
}
.llmo-chip.is-key{background:#fe483b;}

/* ---- number band ---- */
.llmo-stats{
  display:grid;grid-template-columns:repeat(4,1fr);gap:14px;
  background:#fff;border:1px solid #e7e9ec;border-radius:16px;
  padding:28px 18px;box-shadow:0 12px 34px rgba(13,34,70,.10);
}
.llmo-stat{text-align:center;position:relative;}
.llmo-stat:not(:last-child)::after{content:"";position:absolute;right:-7px;top:16%;height:68%;width:1px;background:#e7e9ec;}
.llmo-stat .n{font-family:"Oswald",sans-serif;font-size:clamp(30px,4.5vw,46px);font-weight:700;line-height:1;color:#0d2746;}
.llmo-stat .n em{color:#fe483b;font-style:normal;font-size:.5em;vertical-align:super;}
.llmo-stat .t{font-size:12px;color:#4a525c;margin-top:8px;line-height:1.5;}

/* ---- trend cards ---- */
.llmo-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;}
.llmo-card{
  background:#fff;border:1px solid #e7e9ec;border-radius:16px;padding:24px;
  position:relative;transition:.25s;
}
/* overflow:hidden は付けない（fds_tooltip の吹き出しが切れるため）。
   上部アクセントバーは ::before 側を上だけ角丸にして角を揃える。 */
.llmo-card::before{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:#fe483b;border-radius:16px 16px 0 0;transform:scaleX(0);transform-origin:left;transition:.3s;}
.llmo-card:hover{transform:translateY(-4px);box-shadow:0 16px 34px rgba(13,34,70,.12);z-index:5;}
.llmo-card:hover::before{transform:scaleX(1);}
.llmo-card .no{font-family:"Oswald",sans-serif;font-size:13px;font-weight:600;color:#fe483b;letter-spacing:.1em;}
.llmo-card .ic{font-size:30px;line-height:1;margin:6px 0 8px;}
.llmo-card h3{font-size:17px;font-weight:900;color:#0d2746;margin-bottom:8px;}
.llmo-card p{font-size:13px;color:#4a525c;line-height:1.75;margin:0;text-align:justify;}

/* ---- 4-layer stack diagram ---- */
.llmo-stack{
  background:linear-gradient(160deg,#0d2746,#11365f);border-radius:18px;padding:30px;color:#fff;
}
.llmo-stack-row{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;}
.llmo-layer{
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.18);
  border-radius:12px;padding:18px 14px;text-align:center;position:relative;
}
.llmo-layer .lc{font-family:"Oswald",sans-serif;font-size:12px;letter-spacing:.08em;color:#fe9a91;}
.llmo-layer .lt{font-weight:900;font-size:14px;margin:6px 0 4px;}
.llmo-layer .ld{font-size:11.5px;color:rgba(255,255,255,.78);line-height:1.6;}
.llmo-layer .num-b{position:absolute;top:-10px;left:14px;width:24px;height:24px;border-radius:50%;background:#fe483b;font-family:"Oswald";font-weight:700;font-size:13px;display:grid;place-items:center;}

/* ---- self-check ---- */
.llmo-check{list-style:none;margin:0;padding:0;}
.llmo-check li{
  background:#fff;border:1px solid #e7e9ec;border-radius:12px;
  padding:16px 18px 16px 50px;margin-bottom:10px;position:relative;
  font-size:14px;color:#161a1f;font-weight:700;
}
.llmo-check li::before{
  content:"✓";position:absolute;left:16px;top:14px;
  width:22px;height:22px;border-radius:6px;background:rgba(254,72,59,.12);color:#fe483b;
  display:grid;place-items:center;font-size:13px;font-weight:900;
}
.llmo-check li span{display:block;font-weight:400;font-size:12.5px;color:#4a525c;margin-top:4px;}

/* ---- pillar links to existing pages ---- */
.llmo-route{
  display:grid;grid-template-columns:1fr 1fr;gap:16px;
}
.llmo-route a{
  display:block;text-decoration:none;border-radius:16px;padding:26px;
  border:1px solid #e7e9ec;background:#fff;transition:.25s;color:#161a1f;
}
.llmo-route a:hover{transform:translateY(-4px);box-shadow:0 16px 34px rgba(13,34,70,.12);border-color:#fe483b;}
.llmo-route .rk{font-family:"Oswald",sans-serif;font-size:12px;letter-spacing:.12em;color:#fe483b;font-weight:600;}
.llmo-route .rt{font-size:18px;font-weight:900;color:#0d2746;margin:6px 0;}
.llmo-route .rd{font-size:13px;color:#4a525c;line-height:1.7;}
.llmo-route .rgo{display:inline-block;margin-top:12px;color:#fe483b;font-weight:700;font-size:13px;}

/* ---- responsive ---- */
@media(max-width:767px){
  .llmo-stats{grid-template-columns:repeat(2,1fr);gap:22px 12px;}
  .llmo-stat:not(:last-child)::after{display:none;}
  .llmo-cards{grid-template-columns:1fr;}
  .llmo-stack-row{grid-template-columns:1fr 1fr;gap:18px 12px;}
  .llmo-route{grid-template-columns:1fr;}
}
/* 4層スタックは 575.98px 以下で 1カラムに */
@media(max-width:575.98px){
  .llmo-stack-row{grid-template-columns:1fr;}
}
