/* インスタディレクター（運営用）— Instagram風配色（2026-09-07 たいが指示「GoAlデザインじゃなくてInstagramっぽい色味に」）
   グラデ=オレンジ→ピンク→紫→青（Instagramロゴの色相）。プライマリはピンク #e1306c。
   白文字を乗せる面は黄色端を使わない（コントラスト確保）。文字・線・背景はInstagram本体の実測値。
   サムネイル（競合リールのカバー）が画面の主役。UIは白基調＋ピンクの差し色。 */
:root {
  --red: #e1306c;      /* プライマリ（Instagramピンク） */
  --orange: #f77737;   /* サブ（Instagramオレンジ） */
  --purple: #962fbf;
  /* 2026-09-07 たいが「もう少しだけ淡め」: 小要素（ボタン・バッジ・白文字が乗る面）は白15%混ぜ、大面積の背景は白40%混ぜ */
  --grad: linear-gradient(135deg, #f9925f 0%, #e85a8a 45%, #a95bcb 80%, #7181de 100%);
  --grad-bg: linear-gradient(135deg, #fbb08c 0%, #f088ad 45%, #c898df 80%, #a3aeec 100%);
  --ink: #262626;
  --sub: #8e8e8e;
  --line: #dbdbdb;
  --tint: #fdf0f5;
  --tint2: #f6eef6;
  --bg: #fafafa;
  --card: #fff;
  --ok: #2fa06a;
  --warn: #b06000;
  --danger: #ed4956;   /* Instagramの赤 */
  --link: #0095f6;     /* Instagramのリンク青 */
  --yui: #a76674;
  --taiga: #1c2e69;
  --radius: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { font-size: 16px; }
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", system-ui, sans-serif; /* 2026-09-07 たいが「角ゴシックにして」→同日「全てのアプリでゴシックに」で4アプリ共通の並びへ */
  background: var(--bg); color: var(--ink); line-height: 1.6;
  padding-bottom: env(safe-area-inset-bottom);
}
button, input, textarea, select { font-family: inherit; }
a { color: var(--link); }
[hidden] { display: none !important; }

.loading-screen { min-height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--grad-bg); color: #fff; }
.loading-icon { width: 72px; height: 72px; border-radius: 18px; background: #fff; padding: 8px; margin-bottom: .8rem; }
.loading-logo { font-size: 1.4rem; font-weight: 900; letter-spacing: .06em; }
.loading-sub { opacity: .85; margin-top: .3rem; font-size: .82rem; }

.muted { color: var(--sub); }
.center { text-align: center; }
.small { font-size: .8rem; }
.form-error { color: var(--danger); font-size: .86rem; margin: .5rem 0; min-height: 1.2em; }
.pre { white-space: pre-wrap; word-break: break-word; }

/* ---- auth ---- */
.auth-wrap { min-height: 100%; background: var(--grad-bg); display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.auth-card { background: #fff; border-radius: 20px; padding: 1.8rem 1.4rem; width: 100%; max-width: 420px; box-shadow: 0 18px 50px rgba(90,20,110,.22); }
.auth-brand { text-align: center; margin-bottom: 1.2rem; }
.auth-brand img { width: 56px; height: 56px; border-radius: 14px; margin-bottom: .5rem; }
.auth-brand .b1 { font-size: 1.3rem; font-weight: 900; color: var(--ink); }
.auth-brand .b2 { color: var(--sub); font-size: .86rem; margin-top: .15rem; }
.field { margin-bottom: .85rem; }
.field label { display: block; font-size: .8rem; font-weight: 700; color: var(--ink); margin-bottom: .3rem; }
.field input, .field select, .sel { width: 100%; padding: .78rem .9rem; border: 1.5px solid var(--line); border-radius: 10px; font-size: 16px; background: #fdfbfb; color: var(--ink); }
.field input:focus, textarea:focus, .field select:focus { outline: none; border-color: var(--red); background: #fff; }
textarea { width: 100%; padding: .7rem .8rem; border: 1.5px solid var(--line); border-radius: 10px; font-size: 16px; background: #fdfbfb; color: var(--ink); resize: vertical; min-height: 88px; }
.btn { display: block; width: 100%; padding: .85rem; border: none; border-radius: 12px; background: var(--grad); color: #fff; font-size: 1rem; font-weight: 800; cursor: pointer; }
.btn:disabled { opacity: .5; }
.btn.secondary { background: var(--tint2); color: var(--ink); }
.btn.ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn.small { display: inline-block; width: auto; padding: .5rem .85rem; font-size: .84rem; border-radius: 9px; text-decoration: none; }
.btn.ok { background: var(--ok); }
.btn.gray { background: #9a929c; }
.btn.danger { background: #fff; color: var(--danger); border: 1.5px solid #f0c9c4; }
.seg { display: flex; background: var(--tint2); border-radius: 12px; padding: 4px; margin-bottom: 1rem; }
.seg button { flex: 1; border: none; background: none; padding: .55rem; border-radius: 9px; font-size: .92rem; font-weight: 700; color: var(--sub); cursor: pointer; }
.seg button.on { background: #fff; color: var(--red); box-shadow: 0 2px 8px rgba(90,20,110,.1); }
.auth-switch { text-align: center; margin-top: 1rem; font-size: .84rem; color: var(--sub); }

/* ---- shell ---- */
.topbar { position: sticky; top: 0; z-index: 20; background: #fff; border-bottom: 1px solid var(--line); padding: calc(.55rem + env(safe-area-inset-top)) .9rem .55rem; display: flex; align-items: center; gap: .5rem; }
.topbar .back { background: none; border: none; color: var(--ink); font-size: 1.5rem; padding: 0 .4rem; cursor: pointer; line-height: 1; }
.topbar .title { font-weight: 900; font-size: 1.02rem; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acct-pill { display: inline-flex; align-items: center; gap: .35rem; border: 1.5px solid var(--line); background: #fff; border-radius: 99px; padding: .28rem .7rem .28rem .4rem; font-size: .8rem; font-weight: 800; color: var(--ink); cursor: pointer; }
.acct-pill i { width: 18px; height: 18px; border-radius: 50%; display: inline-block; }
.acct-pill.yui i { background: var(--yui); } .acct-pill.taiga i { background: var(--taiga); }
.acct-sheet { position: fixed; inset: 0; z-index: 60; background: rgba(40,20,25,.45); display: flex; align-items: flex-end; }
.acct-sheet .box { background: #fff; width: 100%; border-radius: 18px 18px 0 0; padding: 1rem 1rem calc(1.2rem + env(safe-area-inset-bottom)); }
.acct-sheet h4 { font-size: .9rem; color: var(--sub); margin-bottom: .5rem; }
.acct-opt { display: flex; align-items: center; gap: .7rem; width: 100%; text-align: left; padding: .8rem .6rem; border: none; background: none; border-radius: 12px; font-size: 1rem; font-weight: 700; color: var(--ink); cursor: pointer; }
.acct-opt.on { background: var(--tint); }
.acct-opt i { width: 26px; height: 26px; border-radius: 50%; flex: none; }
.acct-opt span { font-size: .76rem; color: var(--sub); font-weight: 500; margin-left: auto; }
.container { max-width: 680px; margin: 0 auto; padding: .9rem .9rem 5rem; }
.section { background: var(--card); border-radius: var(--radius); padding: .95rem 1rem; margin-bottom: .9rem; box-shadow: 0 3px 14px rgba(60,20,20,.05); }
.section h3 { font-size: .98rem; font-weight: 900; margin-bottom: .5rem; display: flex; align-items: center; gap: .4rem; }
.section h3 .more { margin-left: auto; font-size: .76rem; color: var(--red); font-weight: 700; background: none; border: none; cursor: pointer; }
.chips { display: flex; gap: .4rem; overflow-x: auto; padding: .1rem 0 .5rem; -webkit-overflow-scrolling: touch; }
.chips::-webkit-scrollbar { display: none; }
.chip { flex-shrink: 0; border: 1.5px solid var(--line); background: #fff; border-radius: 99px; padding: .32rem .8rem; font-size: .8rem; font-weight: 700; color: var(--sub); cursor: pointer; white-space: nowrap; }
.chip.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip b { margin-left: .3rem; font-size: .72rem; opacity: .8; }
.badge { display: inline-block; font-size: .68rem; font-weight: 800; border-radius: 99px; padding: .1rem .5rem; background: var(--tint2); color: var(--sub); vertical-align: middle; }
.badge.red { background: #fdeaea; color: var(--danger); }
.badge.orange { background: #fdf0e2; color: var(--warn); }
.badge.green { background: #e8f5ee; color: var(--ok); }
.badge.blue { background: #e6f2fd; color: #0077c8; }
.badge.pend { background: #fff4d6; color: #8a6200; }
.badge.yui { background: #f6e6ea; color: var(--yui); } .badge.taiga { background: #e6e9f3; color: var(--taiga); }
.toast { position: fixed; left: 50%; bottom: calc(4.6rem + env(safe-area-inset-bottom)); transform: translateX(-50%) translateY(20px); background: rgba(47,38,48,.94); color: #fff; padding: .6rem 1.1rem; border-radius: 99px; font-size: .85rem; opacity: 0; pointer-events: none; transition: all .25s; z-index: 99; white-space: nowrap; max-width: 92vw; overflow: hidden; text-overflow: ellipsis; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---- tabbar ---- */
/* ---- タブバー（LINE型・2026-09-07 たいが指示「LINEみたいなUI/UX」で4アプリ共通化） ----
   白ベタ＋ヘアライン・ベタ塗りアイコン26px＋ラベル10px・アクティブは色だけ変わる・未読は赤バッジ（数字）・
   同じタブの再タップで先頭へ戻る。高さ50px＋セーフエリア（最下部に貼り付け）。 */
.tabbar {
  /* 画面の一番下（ホームバーの奥）まで背景を貼り付け、中身は下辺に寄せる（2026-09-07 たいが「最下部に固定・少し上になってるのが気になる」） */
  position: fixed; left: 0; right: 0; bottom: 0; top: auto; z-index: 50; margin: 0;
  display: flex; align-items: stretch;
  height: calc(50px + env(safe-area-inset-bottom, 0px)); box-sizing: border-box;
  padding: 0 0 env(safe-area-inset-bottom, 0px);
  /* LINEの「水っぽいぼわー」＝半透明の白＋すりガラス。中身がバーの下を通り抜けて透ける */
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: saturate(180%) blur(22px); backdrop-filter: saturate(180%) blur(22px);
  border-top: .5px solid rgba(0,0,0,.09);
}
.tabbar[hidden] { display: none; }
body.kb-open .tabbar { display: none; }
.tabbar button {
  flex: 1; min-width: 0; border: none; background: none; cursor: pointer; font-family: inherit;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 2px;
  padding: 0 0 6px; margin: 0; color: #9ca1a9; position: relative;
  -webkit-tap-highlight-color: transparent; user-select: none;
  transition: transform .12s ease, color .12s ease;
}
.tabbar button:active { transform: scale(.9); }
.tabbar button .ic { position: relative; width: 26px; height: 26px; display: block; }
.tabbar button svg { width: 26px; height: 26px; display: block; }
.tabbar button span { font-size: 10px; font-weight: 600; letter-spacing: -.02em; white-space: nowrap; line-height: 1; max-width: calc(100% - 10px); overflow: hidden; text-overflow: ellipsis; text-align: center; }
.tabbar button.on { color: var(--red); }
.tabbar .dot {
  position: absolute; top: -5px; left: 16px;
  min-width: 18px; height: 18px; border-radius: 9px; box-sizing: border-box;
  background: #ff334b; color: #fff; font-style: normal;
  font-size: 11px; font-weight: 700; line-height: 18px; text-align: center; padding: 0 5px;
  box-shadow: 0 0 0 2px #fff;
}
.tabbar .dot:empty { min-width: 10px; height: 10px; width: 10px; top: -2px; left: 18px; padding: 0; border-radius: 5px; }

/* ---- 動くガラス玉（2026-09-07 たいが指示「水っぽいやつが動くようにしたい」＝LINE iOS26のLiquid Glass型）
   選んだタブの背面にガラスの丸を置き、タブを切り替えると水みたいに横へ伸びながら滑る（バネで少し行き過ぎて戻る）。
   中では光の反射がゆっくり揺れる。位置は --i（選択中のタブ番号）・--n（タブ数）で決まる。 */
.tabbar { --n: 5; --i: 0; overflow: hidden; } /* 玉のバネの行き過ぎ・伸びがバーの外へ出ない */
.tabbar button { z-index: 1; }
.tabbar .glass {
  position: absolute; z-index: 0; top: 3px; bottom: calc(3px + env(safe-area-inset-bottom, 0px));
  /* 幅はボタンと同じ 100%/n（左右の余白は ::before の inset で作る）＝玉の中心とボタンの中心が常に一致 */
  left: 0; width: calc(100% / var(--n));
  transform: translateX(calc(var(--i) * 100%));
  transition: transform .55s cubic-bezier(.34, 1.4, .4, 1);
  pointer-events: none;
}
.tabbar .glass[hidden] { display: none; }
.tabbar .glass::before {
  content: ''; position: absolute; inset: 0 7px; border-radius: 16px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.28));
  -webkit-backdrop-filter: blur(6px) saturate(160%) brightness(1.06); backdrop-filter: blur(6px) saturate(160%) brightness(1.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), inset 0 -1px 0 rgba(0,0,0,.05), inset 0 0 0 .5px rgba(255,255,255,.6), 0 6px 16px rgba(0,0,0,.08);
}
/* 光の反射＝斜めのハイライトが左右にゆっくり揺れる */
.tabbar .glass::after {
  content: ''; position: absolute; inset: 0 7px; border-radius: 16px; overflow: hidden;
  background: radial-gradient(60% 80% at 30% 20%, rgba(255,255,255,.75), rgba(255,255,255,0) 70%);
  animation: glass-shine 3.2s ease-in-out infinite alternate;
}
@keyframes glass-shine { from { transform: translateX(-14%) } to { transform: translateX(14%) } }
/* 移動中は水滴みたいに横へ伸びて、着地で戻る */
.tabbar .glass.move::before { animation: glass-stretch .55s ease-out; }
@keyframes glass-stretch { 0% { transform: scaleX(1) } 35% { transform: scaleX(1.16) scaleY(.92) } 100% { transform: scaleX(1) } }
@media (prefers-reduced-motion: reduce) { .tabbar .glass { transition: none; } .tabbar .glass::after, .tabbar .glass.move::before { animation: none; } }

/* ---- アプリの器（2026-09-07 たいが指示「下部から固定して絶対に動かないように」）
   ページ全体をスクロールさせず #app の中だけをスクロールする。タブバーは #app の外の兄弟なので、
   引っ張り戻り（ラバーバンド）・アドレスバーの伸縮・慣性スクロールのどれでも一切動かない。 */
html, body { height: 100%; overflow: hidden; overscroll-behavior: none; }
#app { position: fixed; inset: 0; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; overscroll-behavior-y: contain; }
body.has-tabbar #app { padding-bottom: calc(50px + env(safe-area-inset-bottom)); }

/* ---- home ---- */
.hero { background: var(--grad); color: #fff; padding: calc(.9rem + env(safe-area-inset-top)) 1rem 2.6rem; }
.hero-top { display: flex; align-items: center; gap: .6rem; }
.hero-top .hi { font-size: .8rem; opacity: .9; flex: 1; }
.hero-top .bell { background: rgba(255,255,255,.18); border: none; color: #fff; border-radius: 9px; padding: .38rem .6rem; font-size: .85rem; cursor: pointer; position: relative; }
.hero-top .bell i { position: absolute; top: -5px; right: -5px; min-width: 16px; height: 16px; border-radius: 99px; background: #fff; color: var(--red); font-size: .62rem; font-weight: 900; line-height: 16px; padding: 0 4px; font-style: normal; }
.hero .acct-pill { background: rgba(255,255,255,.95); border-color: transparent; }
.kpi-card { max-width: 680px; margin: -2rem auto 0; padding: 0 .9rem; position: relative; z-index: 5; }
.kc { display: block; width: 100%; text-align: left; background: #fff; border: none; cursor: pointer; border-radius: 16px; padding: .95rem 1.05rem 1rem; box-shadow: 0 12px 30px rgba(90,20,110,.09); border-top: 4px solid var(--red); }
.kc.yui { border-top-color: var(--yui); } .kc.taiga { border-top-color: var(--taiga); }
.kc-top { display: flex; justify-content: space-between; align-items: center; }
.kc-label { font-size: .74rem; font-weight: 800; color: var(--sub); letter-spacing: .04em; }
.kc-main { display: flex; align-items: flex-end; gap: .6rem; margin-top: .1rem; }
.kc-num { font-size: 2.3rem; font-weight: 900; line-height: 1.15; color: var(--ink); letter-spacing: .01em; }
.kc-num small { font-size: .85rem; color: var(--sub); font-weight: 700; margin-left: .15rem; }
.kc-target { font-size: .8rem; color: var(--sub); padding-bottom: .35rem; }
.kc-target b { color: var(--ink); }
.kc-bar { height: 8px; border-radius: 99px; background: var(--tint2); overflow: hidden; margin-top: .5rem; }
.kc-bar span { display: block; height: 100%; border-radius: 99px; background: var(--grad); }
.kc-pace { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .6rem; }
.kc-pace div { background: var(--tint); border-radius: 10px; padding: .45rem .6rem; font-size: .74rem; color: var(--sub); }
.kc-pace b { display: block; font-size: 1.05rem; color: var(--ink); }
.kc-pace .st-red b { color: var(--danger); } .kc-pace .st-yellow b { color: var(--warn); } .kc-pace .st-green b { color: var(--ok); }
.kc-spark { margin-top: .5rem; }
.kc-spark svg { width: 100%; height: 44px; display: block; }
.kc-foot { font-size: .72rem; color: var(--sub); margin-top: .35rem; }

.todo-list { display: flex; flex-direction: column; gap: .45rem; }
.todo { display: flex; align-items: center; gap: .7rem; width: 100%; text-align: left; padding: .7rem .8rem; border: none; background: var(--tint); border-radius: 12px; cursor: pointer; font-family: inherit; color: var(--ink); }
.todo .n { min-width: 34px; height: 34px; border-radius: 10px; background: var(--grad); color: #fff; font-weight: 900; font-size: 1rem; display: flex; align-items: center; justify-content: center; padding: 0 .4rem; flex: none; }
.todo .n.gray { background: #cfc8cc; }
.todo .t { flex: 1; font-weight: 800; font-size: .9rem; }
.todo .t span { display: block; font-size: .72rem; color: var(--sub); font-weight: 500; }
.todo .go { color: #b8b0b5; }
.todo.done { opacity: .55; }

.reel-strip { display: flex; gap: .55rem; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: .2rem; }
.reel-strip::-webkit-scrollbar { display: none; }
.rs-item { flex: none; width: 116px; text-align: left; border: none; background: none; padding: 0; cursor: pointer; }
.rs-item .th { width: 116px; height: 174px; border-radius: 12px; background: var(--tint2) center/cover no-repeat; position: relative; overflow: hidden; }
.rs-item .th .pl { position: absolute; left: 6px; bottom: 6px; background: rgba(0,0,0,.55); color: #fff; font-size: .68rem; font-weight: 800; border-radius: 6px; padding: .1rem .4rem; }
.rs-item .cap { font-size: .72rem; color: var(--ink); margin-top: .3rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.weekly-sum { font-size: .84rem; white-space: pre-wrap; line-height: 1.7; }

/* ---- kikaku ---- */
.kk { background: #fff; border-radius: var(--radius); margin-bottom: .75rem; box-shadow: 0 3px 14px rgba(60,20,20,.05); overflow: hidden; }
.kk-head { display: flex; gap: .7rem; padding: .8rem .9rem .5rem; }
.kk-th { width: 64px; height: 96px; border-radius: 10px; background: var(--tint2) center/cover no-repeat; flex: none; }
.kk-main { flex: 1; min-width: 0; }
.kk-title { font-weight: 900; font-size: .95rem; line-height: 1.4; }
.kk-hook { font-size: .82rem; color: var(--ink); margin-top: .25rem; background: var(--tint); border-radius: 8px; padding: .35rem .5rem; line-height: 1.45; }
.kk-meta { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; font-size: .7rem; color: var(--sub); margin-top: .3rem; }
.kk-body { padding: 0 .9rem .5rem; font-size: .82rem; color: var(--ink); white-space: pre-wrap; line-height: 1.6; }
.kk-body h5 { font-size: .74rem; color: var(--sub); margin: .5rem 0 .1rem; font-weight: 800; }
.kk-acts { display: flex; gap: .45rem; padding: .3rem .9rem .85rem; flex-wrap: wrap; }
.kk-acts .btn.small { flex: 1; text-align: center; min-width: 30%; }
.kk-toggle { background: none; border: none; color: var(--red); font-weight: 800; font-size: .78rem; padding: .2rem .9rem .5rem; cursor: pointer; text-align: left; }
.fb-box { padding: 0 .9rem .8rem; }
.fb-box textarea { min-height: 70px; font-size: 15px; }
.fb-box .row { display: flex; gap: .45rem; margin-top: .4rem; }

/* ---- scripts ---- */
.sc-row { display: block; width: 100%; text-align: left; background: #fff; border: none; border-radius: 12px; padding: .75rem .9rem; margin-bottom: .55rem; cursor: pointer; box-shadow: 0 3px 14px rgba(60,20,20,.05); font-family: inherit; color: var(--ink); }
.sc-row .t { font-weight: 800; font-size: .92rem; line-height: 1.4; }
.sc-row .m { display: flex; gap: .5rem; align-items: center; font-size: .72rem; color: var(--sub); margin-top: .3rem; flex-wrap: wrap; }
.sc-body { font-size: .9rem; line-height: 1.85; white-space: pre-wrap; word-break: break-word; }
.sc-body h4 { font-size: .8rem; color: var(--red); margin: .9rem 0 .2rem; font-weight: 900; }
.score { font-size: .78rem; color: var(--sub); background: var(--tint); border-radius: 8px; padding: .4rem .6rem; margin-top: .3rem; }
.sc-hook { background: var(--tint); border-radius: 10px; padding: .6rem .7rem; font-size: .86rem; white-space: pre-wrap; line-height: 1.6; }
.copy-btn { background: var(--tint2); border: none; border-radius: 8px; padding: .3rem .6rem; font-size: .74rem; font-weight: 800; color: var(--ink); cursor: pointer; margin-left: auto; }

/* ---- research grid ---- */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.rc { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 3px 14px rgba(60,20,20,.05); border: none; text-align: left; padding: 0; cursor: pointer; font-family: inherit; color: var(--ink); position: relative; }
.rc .th { width: 100%; aspect-ratio: 3/4; background: var(--tint2) center/cover no-repeat; position: relative; }
.rc .th .pl { position: absolute; left: 6px; bottom: 6px; background: rgba(0,0,0,.58); color: #fff; font-size: .7rem; font-weight: 900; border-radius: 6px; padding: .1rem .45rem; }
.rc .th .vi { position: absolute; right: 6px; top: 6px; background: var(--grad); color: #fff; font-size: .66rem; font-weight: 900; border-radius: 6px; padding: .1rem .4rem; }
.rc .th .pk { position: absolute; left: 6px; top: 6px; background: #fff; color: var(--red); font-size: .66rem; font-weight: 900; border-radius: 6px; padding: .1rem .4rem; }
.rc .th .dn { position: absolute; left: 6px; top: 6px; background: rgba(255,255,255,.9); color: var(--sub); font-size: .66rem; font-weight: 900; border-radius: 6px; padding: .1rem .4rem; }
.rc .cap { padding: .45rem .55rem .55rem; }
.rc .acc { font-size: .72rem; font-weight: 800; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rc .sub { font-size: .66rem; color: var(--sub); margin-top: .1rem; }
.rc .grow { font-size: .72rem; color: var(--ink); margin-top: .25rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.search { display: flex; gap: .4rem; margin-bottom: .5rem; }
.search input { flex: 1; padding: .6rem .8rem; border: 1.5px solid var(--line); border-radius: 10px; font-size: 16px; background: #fff; }
.search select { padding: .55rem .5rem; border: 1.5px solid var(--line); border-radius: 10px; font-size: .84rem; background: #fff; }

/* detail sheet (reel) */
.sheet { position: fixed; inset: 0; z-index: 70; background: rgba(40,20,25,.5); display: flex; align-items: flex-end; }
.sheet .box { background: #fff; width: 100%; max-height: 92vh; overflow-y: auto; border-radius: 18px 18px 0 0; padding: .8rem 1rem calc(1.2rem + env(safe-area-inset-bottom)); }
.sheet .grab { width: 40px; height: 5px; border-radius: 99px; background: var(--line); margin: 0 auto .7rem; }
.sh-top { display: flex; gap: .8rem; }
.sh-top .th { width: 96px; height: 144px; border-radius: 12px; background: var(--tint2) center/cover; flex: none; }
.sh-top .t { font-weight: 900; font-size: 1rem; line-height: 1.4; }
.sh-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; margin-top: .6rem; }
.sh-stats div { background: var(--tint); border-radius: 9px; padding: .4rem .5rem; font-size: .68rem; color: var(--sub); }
.sh-stats b { display: block; font-size: .98rem; color: var(--ink); }
.sh-reason { font-size: .86rem; line-height: 1.65; margin-top: .7rem; white-space: pre-wrap; }
.sh-acts { display: flex; flex-direction: column; gap: .5rem; margin-top: .9rem; }

/* ---- presents ---- */
.pr { background: #fff; border-radius: var(--radius); padding: .85rem .95rem; margin-bottom: .7rem; box-shadow: 0 3px 14px rgba(60,20,20,.05); }
.pr .t { font-weight: 900; font-size: .95rem; }
.pr .m { display: flex; gap: .45rem; flex-wrap: wrap; font-size: .72rem; color: var(--sub); margin-top: .3rem; align-items: center; }
.kv { display: grid; gap: .3rem; margin-top: .5rem; }
.kv-row { display: grid; grid-template-columns: 6.6rem 1fr; gap: .5rem; font-size: .82rem; align-items: start; }
.kv-row .k { color: var(--sub); font-size: .76rem; padding-top: .1rem; }
.kv-row .v { overflow-wrap: anywhere; white-space: pre-wrap; }
.kv-row .v input { width: 100%; padding: .45rem .6rem; border: 1.5px solid var(--line); border-radius: 8px; font-size: 15px; }
.pr-acts { display: flex; gap: .45rem; margin-top: .6rem; flex-wrap: wrap; }
.pr-acts .btn.small { flex: 1; text-align: center; }
.pdf-frame { width: 100%; height: 70vh; border: 1px solid var(--line); border-radius: 12px; background: #fff; }

/* ---- schedule ---- */
.sd { display: flex; gap: .8rem; align-items: center; background: #fff; border-radius: 12px; padding: .7rem .85rem; margin-bottom: .5rem; box-shadow: 0 3px 14px rgba(60,20,20,.05); }
.sd.today { border: 2px solid var(--red); }
.sd.past { opacity: .7; }
.sd .d { flex: none; width: 3.6rem; text-align: center; }
.sd .d b { display: block; font-size: 1.1rem; line-height: 1.1; }
.sd .d span { font-size: .68rem; color: var(--sub); }
.sd .th { width: 44px; height: 66px; border-radius: 8px; background: var(--tint2) center/cover; flex: none; }
.sd .main { flex: 1; min-width: 0; }
.sd .t { font-weight: 800; font-size: .88rem; line-height: 1.35; }
.sd .m { font-size: .72rem; color: var(--sub); margin-top: .15rem; display: flex; gap: .4rem; flex-wrap: wrap; align-items: center; }
.sd .acts { display: flex; flex-direction: column; gap: .3rem; }

/* ---- competitors ---- */
.cp { display: flex; align-items: center; gap: .7rem; background: #fff; border-radius: 12px; padding: .65rem .85rem; margin-bottom: .45rem; box-shadow: 0 3px 14px rgba(60,20,20,.05); }
.cp .av { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); color: #fff; font-weight: 900; display: flex; align-items: center; justify-content: center; flex: none; font-size: .95rem; }
.cp.ind .av { background: linear-gradient(135deg, #6b6470, #a39ba6); }
.cp .main { flex: 1; min-width: 0; }
.cp .u { font-weight: 800; font-size: .88rem; }
.cp .s { font-size: .7rem; color: var(--sub); }
.cp .memo { font-size: .74rem; color: var(--ink); margin-top: .15rem; line-height: 1.4; }

/* ---- notices / settings / admin ---- */
.notice-item { padding: .65rem 0; border-bottom: 1px solid var(--line); }
.notice-item:last-child { border-bottom: none; }
.notice-item.unread { background: var(--tint); margin: 0 -1rem; padding: .65rem 1rem; }
.nt-head { display: flex; justify-content: space-between; gap: .5rem; font-size: .9rem; align-items: baseline; }
.nt-date { font-size: .7rem; color: var(--sub); flex: none; }
.nt-body { font-size: .82rem; color: var(--ink); margin-top: .15rem; white-space: pre-wrap; }
.nt-link { font-size: .8rem; font-weight: 800; color: var(--red); text-decoration: none; display: inline-block; margin-top: .2rem; }
.menu-list { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 3px 14px rgba(60,20,20,.05); margin-bottom: .9rem; }
.menu-row { display: flex; align-items: center; gap: .75rem; width: 100%; padding: .85rem .95rem; border: none; background: none; cursor: pointer; border-bottom: 1px solid var(--line); font-family: inherit; text-align: left; color: var(--ink); }
.menu-row:last-child { border-bottom: none; }
.menu-row .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--tint); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex: none; }
.menu-row .t { flex: 1; font-weight: 800; font-size: .92rem; }
.menu-row .t span { display: block; font-size: .72rem; color: var(--sub); font-weight: 500; }
.menu-row .go { color: #b8b0b5; font-size: 1.1rem; }
.adm-row { border-bottom: 1px solid var(--line); padding: .6rem 0; font-size: .86rem; }
.adm-row:last-child { border-bottom: none; }
.adm-row .sub { font-size: .72rem; color: var(--sub); }
.adm-row .acts { display: flex; gap: .4rem; margin-top: .35rem; flex-wrap: wrap; }
.ob-row { font-size: .78rem; padding: .45rem 0; border-bottom: 1px dashed var(--line); }
.ob-row .e { color: var(--danger); }
.pob-wrap { position: fixed; inset: 0; z-index: 80; background: rgba(40,20,25,.55); display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.pob-card { background: #fff; border-radius: 18px; padding: 1.5rem 1.3rem; max-width: 400px; width: 100%; text-align: center; }
.pob-card h2 { font-size: 1.15rem; margin: .3rem 0 .5rem; }
.pob-card p { font-size: .88rem; color: var(--ink); line-height: 1.7; margin-bottom: .9rem; }
.pob-emoji { font-size: 2.2rem; }
.pob-steps { text-align: left; font-size: .84rem; padding-left: 1.3rem; margin-bottom: .9rem; line-height: 1.7; }
.pob-later { display: inline-block; margin-top: .7rem; font-size: .82rem; color: var(--sub); }
.empty { text-align: center; color: var(--sub); font-size: .86rem; padding: 1.4rem 0; }
.kpi-table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.kpi-table th { text-align: left; color: var(--sub); font-weight: 700; font-size: .7rem; padding: .3rem .3rem; border-bottom: 1px solid var(--line); }
.kpi-table td { padding: .4rem .3rem; border-bottom: 1px solid #f3eef0; }
.kpi-table td.r, .kpi-table th.r { text-align: right; }

/* 競合アカのアイコン（R2にあれば頭文字の上にかぶせる。取れていない時は頭文字のまま） */
.cp .av { position: relative; overflow: hidden; }
.cp .av img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

/* 台本ページ: 最終スコアを頭に出す */
.sd-head .sd-score { display: flex; align-items: baseline; gap: .6rem; margin: .7rem 0 .2rem;
  padding: .6rem .8rem; border-radius: 12px; background: linear-gradient(135deg, #fff2ea, #fdeaf1 55%, #efeafb); }
.sd-head .sd-score .n { font-size: 2.1rem; font-weight: 800; line-height: 1; color: #c2185b; letter-spacing: -.02em; }
.sd-head .sd-score .n small { font-size: .9rem; font-weight: 700; margin-left: .1rem; }
.sd-head .sd-score .r { font-size: .78rem; color: #6b6b76; line-height: 1.45; flex: 1; }
#sd-tabs { margin: .2rem 0 .8rem; }

/* 台本の秒割り表示（台本タブ=台詞・映像イメージタブ=画面。同じ行を2つの見方で出す） */
.scenes { margin-top: .3rem; }
.scenes .sl { display: flex; gap: .6rem; padding: .5rem 0; border-bottom: 1px solid #f0eef2; font-size: .92rem; line-height: 1.6; }
.scenes .sl:last-child { border-bottom: 0; }
.scenes .sl .sec { flex: 0 0 4.6rem; color: #a95bcb; font-weight: 700; font-size: .8rem; padding-top: .12rem; letter-spacing: -.01em; }
.scenes .sl .tx { flex: 1; white-space: pre-wrap; word-break: break-word; }
.scenes .sl.note { color: #6b6b76; font-size: .86rem; }
/* プレゼントの出来上がり予想（2026-09-07） */
.pr .eta { font-size: .8rem; font-weight: 700; color: var(--purple); background: var(--tint2); border-radius: 8px; padding: .3rem .6rem; margin: .35rem 0 .2rem; }

/* ---- Threadsディレクター切替（2026-09-08）。Threads側はモノトーン寄せ（Threadsの黒）＋アカ色 ---- */
.acct-pill.th { background: var(--ink); color: #fff; border-color: var(--ink); }
.acct-pill .pf { font-weight: 900; opacity: .85; margin-right: .1rem; }
.hero.th .acct-pill { background: var(--ink); color: #fff; }
.acct-grp { padding: .55rem .6rem .2rem; font-size: .72rem; font-weight: 800; letter-spacing: .06em; color: var(--sub); text-transform: uppercase; }
.acct-grp .pf-threads { color: var(--ink); } .acct-grp .pf-ig { color: var(--red); }
.kc.th { border-top-color: var(--ink); }
.th-score { display: inline-flex; align-items: baseline; font-size: 1.15rem; font-weight: 900; color: var(--ink); margin-right: .2rem; }
.th-score small { font-size: .7rem; color: var(--sub); margin-left: .1rem; }
.th-body { white-space: pre-wrap; word-break: break-word; font-size: .92rem; line-height: 1.65; }
.th-body.small { font-size: .84rem; }
.th-body.clamp { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; cursor: pointer; }
.th-parts { display: flex; flex-direction: column; gap: .5rem; margin-top: .4rem; }
.th-part { display: flex; gap: .55rem; align-items: flex-start; }
.th-part i { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--ink); color: #fff; font-style: normal; font-size: .72rem; font-weight: 900; display: inline-flex; align-items: center; justify-content: center; margin-top: .15rem; }
.th-part .th-body { flex: 1; padding: .55rem .7rem; background: var(--bg); border-radius: 10px; border-left: 3px solid var(--line); }
.tp .kk-meta { margin-bottom: .35rem; }
.th-row { background: var(--card); border-radius: var(--radius); padding: .8rem .95rem; margin-bottom: .6rem; box-shadow: 0 3px 14px rgba(60,20,20,.05); }
.th-row .m { font-size: .8rem; color: var(--sub); margin-bottom: .35rem; display: flex; flex-wrap: wrap; gap: .35rem; align-items: center; }
.th-row .m b { color: var(--ink); font-size: .95rem; }
.th-row .grow { color: var(--sub); margin-top: .35rem; }
.th-stats { margin-bottom: .7rem; }
.th-strategy { white-space: pre-wrap; font-size: .86rem; line-height: 1.6; background: var(--bg); border-radius: 10px; padding: .6rem .75rem; }
.th-ins { padding: .5rem 0; border-top: 1px solid var(--line); }
.th-ins:first-of-type { border-top: none; padding-top: 0; }
.th-ins .m { font-size: .84rem; margin-bottom: .2rem; }
.th-ins h5 { font-size: .76rem; color: var(--sub); margin: .4rem 0 .1rem; }
.ts-row { padding: .65rem 0; border-top: 1px solid var(--line); }
.ts-row:first-of-type { border-top: none; padding-top: 0; }
.ts-row .t { font-weight: 800; font-size: .92rem; }
.ts-row input, .ts-row textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 9px; padding: .5rem .6rem; font-size: .92rem; }
.ts-row textarea { min-height: 64px; margin-top: .3rem; }
.ts-row .row input { flex: 1; }
.dotc { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: .35rem; vertical-align: middle; }
.todo .n.blue { background: #e6f2fd; color: #0077c8; }
.hero.th { background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 55%, #5b5b60 100%); }

/* ===== YouTubeディレクター（2026-09-10）。ピル・ヒーローはYouTube赤、素材チェックは✓✗チップ ===== */
:root { --yt: #c4302b; }
.acct-pill.yt { background: var(--yt); color: #fff; border-color: var(--yt); }
.acct-pill.yt i { background: #fff !important; }
.acct-pill.yt .pf { margin-right: .1rem; font-size: .7rem; }
.hero.yt { background: linear-gradient(135deg, #b3221e 0%, #d1403a 55%, #ef6a5a 100%); }
.hero.yt .acct-pill { background: rgba(255,255,255,.95); color: var(--yt); border-color: transparent; }
.hero.yt .acct-pill i { background: var(--yt) !important; }
.acct-grp .pf-yt { color: var(--yt); }
.kc.yt_yui { border-top-color: var(--yt); }
.badge.yt_yui { background: #fbe4e2; color: var(--yt); }
.reel-strip.yt .rs-item .th { width: 164px; height: 92px; }
.reel-strip.yt .rs-item { width: 164px; }
.mat { display: flex; flex-wrap: wrap; gap: .25rem; margin-top: .35rem; }
.mat span { font-size: .66rem; font-weight: 800; border-radius: 6px; padding: .12rem .4rem; background: #eef0f3; color: var(--sub); }
.mat span.ok { background: #e3f4ea; color: #1f7a45; }
.mat span.ng { background: #fdebe9; color: var(--yt); }
.ys { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: .55rem; overflow: hidden; }
.ys.late { border-color: #f3b5b0; }
.ys.today { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(229,94,14,.12); }
.ys.done { opacity: .82; }
.ys-head { display: flex; gap: .6rem; align-items: flex-start; width: 100%; text-align: left; padding: .7rem .75rem; background: none; border: 0; color: var(--ink); cursor: pointer; }
.ys-head .d { width: 44px; flex: none; text-align: center; line-height: 1.05; }
.ys-head .d b { display: block; font-size: 1.05rem; font-weight: 900; }
.ys-head .d span { font-size: .66rem; color: var(--sub); font-weight: 700; }
.ys.late .ys-head .d b { color: var(--yt); }
.ys-head .th { width: 72px; height: 40px; border-radius: 8px; background: var(--tint2) center/cover; flex: none; }
.ys-head .main { flex: 1; min-width: 0; }
.ys-head .t { font-weight: 800; font-size: .92rem; line-height: 1.35; }
.ys-head .t .no { display: inline-block; min-width: 1.4em; font-size: .72rem; color: #fff; background: var(--ink); border-radius: 6px; padding: 0 .3rem; margin-right: .3rem; text-align: center; }
.ys-head .m { display: flex; flex-wrap: wrap; gap: .3rem; align-items: center; margin-top: .3rem; font-size: .72rem; color: var(--sub); }
.ys-head .next { margin-top: .35rem; font-size: .8rem; font-weight: 700; color: var(--ink); background: #fff7ed; border-radius: 8px; padding: .3rem .5rem; }
.ys-head .go { color: var(--sub); align-self: center; }
.ys-body { border-top: 1px dashed var(--line); padding: .7rem .75rem .9rem; background: #fbfbfc; }
.ys-body .links { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .5rem; }
.ys-body .links a { font-size: .74rem; font-weight: 800; background: #fff; border: 1px solid var(--line); border-radius: 99px; padding: .2rem .6rem; color: var(--ink); text-decoration: none; }
.ys-body .quick { display: flex; flex-wrap: wrap; gap: .4rem; margin: .4rem 0 .7rem; }
.ys-body h5 { margin: .8rem 0 .3rem; font-size: .8rem; color: var(--sub); }
.ys-body .field { margin-bottom: .5rem; }
.ys-body .field label { display: block; font-size: .7rem; font-weight: 800; color: var(--sub); margin-bottom: .15rem; }
.ys-body input, .ys-body select, .ys-body textarea { width: 100%; font: inherit; font-size: .9rem; padding: .5rem .6rem; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; }
.ys-body textarea { min-height: 64px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem .6rem; }
.todo .n.red { background: var(--yt); color: #fff; }

.shv { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; padding: .35rem 0; border-bottom: 1px dashed var(--line); font-size: .82rem; }
.shv .t { flex: 1 1 60%; font-weight: 700; min-width: 0; }
.shv select { font: inherit; font-size: .8rem; padding: .3rem .4rem; border: 1.5px solid var(--line); border-radius: 8px; background: #fff; max-width: 100%; }
.ys-body .row select { width: 100%; font: inherit; font-size: .85rem; padding: .45rem .5rem; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; }
.ys-head .ed { margin-top: .3rem; line-height: 1.4; }

/* ---- 引っ張って更新（全アプリ共通・正本 _shared/design_agent/ptr/ptr.css）---- */
/* 待機=白ピル＋ブランド色の文字 → 離すと更新/更新中/完了=ブランドグラデ地＋白文字（各アプリの :root で --ptr-color/--ptr-grad/--ptr-on-grad を指定） */
#ptr { position: fixed; left: 50%; top: 0; z-index: 60; transform: translate(-50%, calc(var(--pull, 0px) - 52px)); transition: transform .12s, background .2s, color .2s; display: flex; align-items: center; gap: .45rem; height: 40px; padding: 0 18px; border-radius: 999px; background: #fff; color: var(--ptr-color, var(--navy, #333)); box-shadow: 0 8px 22px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.05); font-size: .85rem; font-weight: 800; letter-spacing: .02em; pointer-events: none; opacity: 0; white-space: nowrap; }
#ptr.show { opacity: 1; }
#ptr i { font-style: normal; font-size: 1.35rem; line-height: 1; display: inline-block; transition: transform .2s; }
#ptr.ready, #ptr.loading, #ptr.done { background: var(--ptr-grad, var(--ptr-color, #333)); color: var(--ptr-on-grad, #fff); box-shadow: 0 10px 26px rgba(0,0,0,.22); }
#ptr.ready i { transform: translateY(2px) scale(1.2); }
#ptr.loading i { animation: ptr-spin .8s linear infinite; }
#ptr.done i { transform: scale(1.15); }
@keyframes ptr-spin { to { transform: rotate(360deg); } }

/* ---- 読み込み中（全アプリ共通・正本 _shared/design_agent/ptr/loading.css）---- */
/* 起動スプラッシュ: 浮遊する光の玉＋ロゴがふわっと浮く＋下にブランド色のシマーバー。ページ内: ブランド色のリング＋「読み込み中…」の点が動く */
.loading-screen { position: relative; overflow: hidden; isolation: isolate; }
.loading-screen > * { position: relative; z-index: 1; }
.ld-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ld-orbs b { position: absolute; border-radius: 50%; background: var(--ld-orb, #fff); opacity: .28; filter: blur(42px); animation: ld-drift 10s ease-in-out infinite alternate; }
.ld-orbs b:nth-child(1) { width: 260px; height: 260px; left: -70px; top: 8%; }
.ld-orbs b:nth-child(2) { width: 320px; height: 320px; right: -120px; top: 34%; animation-duration: 13s; animation-delay: -4s; }
.ld-orbs b:nth-child(3) { width: 220px; height: 220px; left: 20%; bottom: -80px; animation-duration: 11s; animation-delay: -7s; }
.loading-icon, .loading-logo-img { animation: ld-float 3.2s ease-in-out infinite, ld-in .7s cubic-bezier(.2,.8,.2,1) both; filter: drop-shadow(0 14px 28px rgba(0,0,0,.22)); }
.loading-logo { animation: ld-in .7s .12s cubic-bezier(.2,.8,.2,1) both; }
.loading-sub { animation: ld-in .7s .24s cubic-bezier(.2,.8,.2,1) both; }
.ld-bar { width: 132px; height: 3px; border-radius: 3px; margin-top: 1.6rem; overflow: hidden; background: color-mix(in srgb, currentColor 22%, transparent); animation: ld-in .7s .36s both; }
.ld-bar i { display: block; width: 42%; height: 100%; border-radius: 3px; background: currentColor; animation: ld-slide 1.15s cubic-bezier(.4,0,.2,1) infinite; }
.ld { display: flex; align-items: center; justify-content: center; gap: .55rem; padding: 1.8rem 0; color: var(--sub, #7a7a8a); font-size: .85rem; font-weight: 600; }
.ld i { width: 20px; height: 20px; border-radius: 50%; border: 2.5px solid rgba(0,0,0,.08); border-top-color: var(--ptr-color, var(--navy, #333)); animation: ptr-spin .8s linear infinite; flex: none; }
.ld span::after { content: '…'; display: inline-block; width: 1.3em; text-align: left; animation: ld-dots 1.2s steps(1, end) infinite; }
@keyframes ld-drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(40px, -50px) scale(1.18); } }
@keyframes ld-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes ld-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ld-slide { 0% { transform: translateX(-120%); } 100% { transform: translateX(260%); } }
@keyframes ld-dots { 0% { content: '.'; } 33% { content: '..'; } 66% { content: '…'; } }
@media (prefers-reduced-motion: reduce) { .ld-orbs b, .loading-icon, .loading-logo-img { animation: none; } }

/* ---- ブランド指定（apply.py が brands.json から生成） ---- */
:root { --ptr-color: #c4302b; --ptr-grad: linear-gradient(135deg, #f9925f 0%, #e85a8a 45%, #a95bcb 80%, #7181de 100%); --ptr-on-grad: #fff; --ld-orb: #fff; }

/* 2026-09-13 概要欄・サムネ大 */
.ys-thumb-lg{width:100%;aspect-ratio:16/9;border-radius:10px;background:#eee center/cover no-repeat;margin:8px 0}
.cap-text{white-space:pre-wrap;font-size:12.5px;line-height:1.55;max-height:260px;overflow:auto}
