:root {
  --bg-page: #F8ECF0;
  --dot-color: #F2D8E1;
  --shell-bg: #FFF9F2;
  --shell-border: #F2E0E8;
  --card: #FFFFFF;
  --text: #5A4652;
  --muted: #9B8790;
  --pink: #FF8FB1;
  --pink-hover: #F97BA4;
  --pink-strong: #D95483;
  --pink-strong-hover: #B93E6B;
  --pink-pale: #FFE1EC;
  --pink-pale-2: #FFE3EE;
  --pink-line: #F6DFE7;
  --card-line: #F4E4DB;
  --header-line: #F3E2DA;
  --bubble-bg: #FFF1F6;
  --mint: #6FCFC3;
  --yellow: #FFD666;
  --radius-shell: 34px;
  --radius-lg: 28px;
  --radius-md: 26px;
  --radius-sm: 22px;
  --radius-bubble: 18px;
  --radius-cta: 24px;
  --radius-note: 13px;
  --radius-pill: 999px;
  --shadow-shell: 0 18px 44px rgba(198, 132, 158, .22);
  --shadow-card: 0 10px 26px rgba(214, 146, 171, .16);
  --shadow-candidate: 0 8px 22px rgba(214, 146, 171, .14);
  --shadow-zukan: 0 6px 16px rgba(214, 146, 171, .12);
  --shadow-btn: 0 8px 18px rgba(255, 143, 177, .4);
  --maxw: 420px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg-page);
  color: var(--text);
  font-family: "Hiragino Maru Gothic ProN", "BIZ UDPGothic", "Yu Gothic Medium",
    "Hiragino Sans", "Yu Gothic", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pink-strong); }
a:hover { color: var(--pink-strong-hover); }
img { max-width: 100%; display: block; }

/* ---- ふわふわアニメーション ---- */
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-6px) rotate(2deg); } }
@keyframes drift { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(28px); } }
@keyframes twinkle { 0%, 100% { opacity: .15; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.1); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes walk { 0% { left: -64px; } 100% { left: 104%; } }
@keyframes waddle { 0%, 100% { transform: rotate(-7deg); } 50% { transform: rotate(7deg); } }

/* ---- プレビューバナー ---- */
.preview-banner {
  background: repeating-linear-gradient(45deg, #fff2a8, #fff2a8 12px, #ffe17a 12px, #ffe17a 24px);
  color: #5a4400;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 12px;
  letter-spacing: .02em;
}

/* ---- ページ背景（ドット柄）とサイト本体カラム ---- */
.page-bg {
  min-height: 100vh;
  background-color: var(--bg-page);
  background-image: radial-gradient(var(--dot-color) 1.5px, transparent 1.6px);
  background-size: 24px 24px;
  padding: 28px 12px 40px;
}

.site-shell {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  background: var(--shell-bg);
  border: 1px solid var(--shell-border);
  border-radius: var(--radius-shell);
  box-shadow: var(--shadow-shell);
}

/* ---- ヘッダー / ナビ（横スクロールのピル型。JS・checkbox不使用） ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 249, 242, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--header-line);
  border-radius: var(--radius-shell) var(--radius-shell) 0 0;
}

.site-header__row { display: flex; align-items: center; gap: 9px; padding: 12px 18px 8px; }

.site-header__brand { display: flex; align-items: center; gap: 9px; text-decoration: none; color: inherit; }

.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-name { font-size: 16px; font-weight: 800; letter-spacing: .01em; }
.brand-sub { font-size: 8.5px; font-weight: 700; letter-spacing: .22em; color: #C9A3B2; }

.header-sparkle { margin-left: auto; color: #FFB6CD; font-size: 15px; animation: twinkle 2.6s ease-in-out infinite; }

.site-nav {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 14px 11px;
}
.site-nav::-webkit-scrollbar { display: none; }
.site-nav a {
  flex-shrink: 0;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.site-nav a[aria-current="page"] { background: var(--pink-pale); color: #C2497C; }

/* ---- ヒーロー（トップページのみ） ---- */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 34px 20px 36px;
  background: linear-gradient(180deg, #FFF1F6 0%, #FFF9F2 100%);
}

.hero-cloud { position: absolute; left: 6%; top: 16px; width: 74px; height: 26px; background: #FFF; border-radius: var(--radius-pill); opacity: .95; animation: drift 9s ease-in-out infinite; }
.hero-cloud::before, .hero-cloud::after { content: ""; position: absolute; background: #FFF; border-radius: 50%; }
.hero-cloud::before { left: 12px; top: -12px; width: 28px; height: 28px; }
.hero-cloud::after { left: 34px; top: -16px; width: 34px; height: 34px; }
.hero-cloud--right { left: auto; right: 5%; top: 76px; width: 54px; height: 19px; opacity: .8; animation-duration: 13s; animation-delay: -5s; }
.hero-cloud--right::before { left: 9px; top: -9px; width: 21px; height: 21px; }
.hero-cloud--right::after { left: 25px; top: -12px; width: 25px; height: 25px; }

.sparkle { position: absolute; animation: twinkle 3s ease-in-out infinite; }
.hero-sparkle-1 { left: 14%; top: 108px; color: var(--yellow); font-size: 14px; animation-duration: 2.8s; }
.hero-sparkle-2 { right: 16%; top: 34px; color: #FF9FBB; font-size: 12px; animation-duration: 3.4s; animation-delay: -1.2s; }
.hero-sparkle-3 { right: 24%; top: 148px; color: #8ADBC9; font-size: 11px; animation-duration: 3s; animation-delay: -2s; }

.hero-logo { display: inline-block; animation: bob 3.6s ease-in-out infinite; }
.hero-title { font-size: 24px; font-weight: 800; letter-spacing: .02em; margin: 12px 0 8px; color: var(--text); }
.hero-tagline { font-size: 13px; line-height: 2; color: var(--muted); margin: 0 auto; max-width: 21em; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; margin-top: 14px;
  background: var(--card); border: 1px solid var(--pink-line); border-radius: var(--radius-pill);
  padding: 6px 14px; font-size: 11.5px; font-weight: 700; color: #C77E97;
}

/* ---- 共通セクション見出し ---- */
.section--candidates { padding: 26px 0 4px; }
.section-head { padding: 0 18px; }
.section-title { font-size: 18px; font-weight: 800; margin: 0; display: flex; align-items: center; gap: 7px; }
.section-lead { font-size: 12.5px; color: var(--muted); line-height: 1.9; margin: 6px 0 14px; }
.section--zukan-link { text-align: center; padding: 30px 18px 8px; }
.section--zukan-link .section-title { justify-content: center; }
.section--zukan-link .section-lead { margin: 6px 0 16px; }

/* ---- 今週のデビュー候補（横スクロールカルーセル） ---- */
.candidate-scroller {
  display: flex; gap: 13px; overflow-x: auto; padding: 4px 18px 18px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.candidate-scroller::-webkit-scrollbar { display: none; }

.candidate-card {
  flex-shrink: 0; width: 228px; scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-candidate); text-decoration: none; color: var(--text);
  transition: transform .15s ease;
}
.candidate-card:hover { transform: translateY(-3px); }
.candidate-card__visual {
  position: relative; height: 186px; display: flex; align-items: center; justify-content: center;
  border-radius: 26px 26px 0 0; overflow: hidden;
}
.candidate-card__body { padding: 13px 16px 16px; }
.candidate-card__name { font-size: 16px; font-weight: 800; margin: 0; }
.candidate-card__kana { font-size: 11px; color: var(--muted); margin: 2px 0 0; }
.candidate-card__catch {
  font-size: 12px; line-height: 1.7; color: #7A5B6A; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.candidate-card__body .chip-row { margin-top: 10px; }

/* ---- 空状態 ---- */
.candidates-empty-wrap { margin: 0 18px; }
.zukan-empty-wrap { margin: 20px 18px 0; }

.empty-state {
  position: relative; overflow: hidden; text-align: center;
  background: var(--card); border: 2px dashed #F3DCE6; border-radius: var(--radius-md);
  padding: 32px 20px 28px;
}
.empty-glow {
  position: absolute; left: 0; right: 0; top: 0; height: 120px;
  background: radial-gradient(130px 95px at 50% 0%, rgba(255, 234, 168, .55), transparent);
}
.empty-sparkle-1 { left: 18%; top: 42px; color: var(--yellow); font-size: 13px; animation-duration: 2.8s; }
.empty-sparkle-2 { right: 16%; top: 66px; color: #FF9FBB; font-size: 11px; animation-duration: 3.2s; animation-delay: -1.4s; }
.empty-sparkle-3 { left: 16%; top: 38px; color: #8ADBC9; font-size: 12px; animation-duration: 3s; }
.empty-sparkle-4 { right: 14%; top: 58px; color: var(--yellow); font-size: 13px; animation-duration: 2.6s; animation-delay: -1s; }

.empty-title { font-size: 15.5px; font-weight: 800; margin: 16px 0 6px; position: relative; }
.empty-desc { font-size: 12px; line-height: 2; color: var(--muted); margin: 0; position: relative; }

/* トップの空状態イラスト：たまごの殻から顔を出す寝顔 */
.empty-egg { position: relative; display: inline-block; animation: bob 3.8s ease-in-out infinite; }
.empty-egg__body {
  position: relative; width: 72px; height: 86px; background: #FFF7E8; border: 2.5px solid #6B5560;
  border-radius: 50% 50% 46% 46% / 62% 62% 40% 40%; margin: 0 auto;
}
.empty-egg__eye { position: absolute; top: 36px; width: 9px; height: 5px; border-bottom: 2.5px solid #6B5560; border-radius: 0 0 9px 9px; }
.empty-egg__eye--l { left: 17px; }
.empty-egg__eye--r { right: 17px; }
.empty-egg__cheek { position: absolute; top: 44px; width: 9px; height: 9px; background: #FFC6D8; border-radius: 50%; }
.empty-egg__cheek--l { left: 10px; }
.empty-egg__cheek--r { right: 10px; }
.empty-egg__zzz { position: absolute; right: -22px; top: -6px; font-size: 16px; animation: floaty 2.6s ease-in-out infinite; }
.empty-shadow { width: 108px; height: 18px; background: var(--pink-pale-2); border-radius: 50%; margin: -6px auto 0; }

/* 図鑑の空状態イラスト：雲の寝顔 */
.empty-cloud { position: relative; display: inline-block; animation: floaty 3.6s ease-in-out infinite; }
.empty-cloud__base { position: relative; width: 96px; height: 34px; background: #EFF7FD; border: 2.5px solid #6B5560; border-radius: var(--radius-pill); }
.empty-cloud__bump { position: absolute; background: #EFF7FD; border: 2.5px solid #6B5560; border-radius: 50%; }
.empty-cloud__bump--sm { left: 16px; top: -15px; width: 34px; height: 34px; }
.empty-cloud__bump--lg { left: 44px; top: -21px; width: 42px; height: 42px; }
.empty-cloud__mask { position: absolute; left: 14px; top: -13px; width: 96px; height: 40px; background: #EFF7FD; border-radius: var(--radius-pill); }
.empty-cloud__eye { position: absolute; top: 6px; width: 9px; height: 5px; border-bottom: 2.5px solid #6B5560; border-radius: 0 0 9px 9px; }
.empty-cloud__eye--l { left: 26px; }
.empty-cloud__eye--r { left: 48px; }
.empty-cloud__cheek { position: absolute; left: 66px; top: 10px; width: 8px; height: 8px; background: #FFC6D8; border-radius: 50%; }
.empty-cloud__zzz { position: absolute; right: -26px; top: -14px; font-size: 16px; animation: floaty 2.8s ease-in-out -1s infinite; }

/* ---- 投票CTA ---- */
.vote-cta {
  margin: 16px 18px 0; background: var(--card); border: 2px dashed var(--pink-line);
  border-radius: var(--radius-cta); padding: 20px 18px; text-align: center;
}
.vote-cta__note { font-size: 12px; color: var(--muted); line-height: 1.9; margin: 10px 0 0; }

/* ---- ボタン ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: none; cursor: pointer; white-space: nowrap; font-family: inherit;
  border-radius: var(--radius-pill); font-weight: 800; text-decoration: none;
}
.btn--primary { padding: 14px 32px; font-size: 14px; background: var(--pink); color: #fff; box-shadow: var(--shadow-btn); }
.btn--primary:hover { background: var(--pink-hover); color: #fff; }
.btn--ghost { padding: 12px 28px; font-size: 13px; border: 1.5px solid #FFB6CD; background: var(--card); color: var(--pink-strong); }
.btn--ghost:hover { background: var(--bubble-bg); color: var(--pink-strong); }
.btn--disabled { padding: 14px 32px; font-size: 14px; background: #F3EAEE; color: #B5A3AD; cursor: not-allowed; }

/* ---- ページ見出し（サブページ共通） ---- */
.page-head { text-align: center; padding: 28px 20px 4px; }
.page-title { font-size: 20px; font-weight: 800; margin: 0; }
.page-lead { font-size: 12.5px; color: var(--muted); line-height: 1.9; margin: 8px 0 0; }

/* ---- キャラクター図鑑 ---- */
.zukan-group { padding: 20px 18px 0; }
.zukan-group__title { font-size: 15px; font-weight: 800; margin: 0 0 12px; display: flex; align-items: center; gap: 7px; }
.zukan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.zukan-card {
  display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--card-line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-zukan); text-decoration: none; color: var(--text);
  transition: transform .15s ease;
}
.zukan-card:hover { transform: translateY(-3px); }
.zukan-card__visual {
  position: relative; height: 126px; display: flex; align-items: center; justify-content: center;
  border-radius: 22px 22px 0 0; overflow: hidden;
}
.zukan-card__body { padding: 10px 12px 13px; display: flex; flex-direction: column; gap: 4px; }
.zukan-card__name { font-size: 14px; font-weight: 800; margin: 0; }
.zukan-card__kana { font-size: 10px; font-weight: 700; color: var(--muted); margin-left: 5px; }
.zukan-card__catch {
  font-size: 11px; line-height: 1.7; color: #8A6E7B; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ---- キャラ見た目（画像 or フォールバック絵文字。三面図・カード共用） ---- */
.candidate-card__img, .zukan-card__img, .detail-hero__img, .mood-card__visual img {
  width: 100%; height: 100%; object-fit: contain;
}
.candidate-card__img { padding: 12px; }
.zukan-card__img { padding: 8px; }
.detail-hero__img { padding: 10px; }
.mood-card__visual img { padding: 6px; }

.visual-emoji { animation: floaty 3.2s ease-in-out infinite; }
.visual-emoji--lg { font-size: 62px; }
.visual-emoji--md { font-size: 46px; }
.visual-emoji--xl { font-size: 84px; }

/* ---- ステータスバッジ（全9種） ---- */
.badge { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; border-radius: var(--radius-pill); font-weight: 800; }
.badge--card { padding: 4px 10px; font-size: 10.5px; position: absolute; top: 11px; left: 11px; }
.badge--tiny { padding: 3px 8px; font-size: 10px; position: absolute; top: 9px; left: 9px; }
.badge--lg { padding: 5px 11px; font-size: 11px; }

.badge-draft { background: #EFEAF7; color: #7A6BA8; }
.badge-internal_review { background: #E8EFF9; color: #4C7BAF; }
.badge-rejected { background: #F1EFE9; color: #8B8574; }
.badge-roster { background: #FFF3C9; color: #A57B00; }
.badge-stage_a { background: var(--pink-pale); color: #C2497C; }
.badge-stage_b { background: #DFF5EE; color: #1F8A72; }
.badge-stage_c { background: #FFE9D6; color: #BD6A2A; }
.badge-reserve { background: #E4EDF7; color: #5B7CA6; }
.badge-retired { background: #EFE4F4; color: #8E5BA6; }
.badge-unknown { background: #F1EFE9; color: #8B8574; }

/* ---- チップ／タグ ---- */
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; border-radius: var(--radius-pill); font-weight: 700; }
.chip--tag { padding: 5px 12px; font-size: 11.5px; background: #FDF1F5; border: 1px solid var(--pink-line); color: #A0687D; }
.chip--motif { padding: 4px 10px; font-size: 11px; }
.chip--motif-sm { align-self: flex-start; padding: 3px 9px; font-size: 10px; }
.chip--motif-badge { padding: 5px 11px; font-size: 11px; }

/* ---- 吹き出し（決めゼリフ表示） ---- */
.bubble { position: relative; background: var(--bubble-bg); border-radius: var(--radius-bubble); }
.bubble--sm { padding: 8px 12px; margin-top: 10px; }
.bubble--sm::before { content: ""; position: absolute; top: -4px; left: 20px; width: 9px; height: 9px; background: var(--bubble-bg); transform: rotate(45deg); }
.bubble--sm p { font-size: 12px; line-height: 1.7; color: #7A5B6A; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bubble--lg { display: inline-block; margin-top: 16px; max-width: 90%; padding: 12px 18px; }
.bubble--lg::before { content: ""; position: absolute; top: -5px; left: 50%; margin-left: -5px; width: 11px; height: 11px; background: var(--bubble-bg); transform: rotate(45deg); }
.bubble--lg p { font-size: 13.5px; font-weight: 800; line-height: 1.8; color: #7A4B60; margin: 0; }

/* ---- キャラクター詳細 ---- */
.detail-back { display: inline-block; margin: 16px 18px 0; font-size: 12.5px; font-weight: 700; color: #C2497C; text-decoration: none; }
.detail-hero {
  margin: 12px 18px 0; background: var(--card); border: 1px solid var(--card-line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 22px 18px; text-align: center;
}
.detail-hero__portrait {
  position: relative; width: 196px; height: 196px; margin: 0 auto; border-radius: 24px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.detail-hero__badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-top: 15px; }
.detail-hero__name { font-size: 23px; font-weight: 800; margin: 12px 0 2px; }
.detail-hero__kana { font-size: 11.5px; color: var(--muted); margin: 0; }
.detail-hero__en { font-size: 10px; letter-spacing: .16em; color: #C9B4BE; margin: 3px 0 0; font-weight: 700; }
.detail-hero .chip-row { justify-content: center; margin-top: 15px; }

.section--mood { padding: 26px 18px 0; }
.section--quotes { padding: 26px 18px 0; }
.section-title--sm { font-size: 16px; font-weight: 800; margin: 0; display: flex; align-items: center; gap: 7px; }
.section-title--tight { margin: 0 0 12px; }

.mood-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.mood-card { background: var(--card); border: 1px solid #F5E8EF; border-radius: var(--radius-bubble); padding: 11px; text-align: center; }
.mood-card__visual { height: 72px; border-radius: 13px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mood-card__emoji { font-size: 30px; }
.mood-card__name { font-size: 12.5px; font-weight: 800; margin: 8px 0 3px; }
.mood-card__desc { font-size: 10.5px; line-height: 1.7; color: var(--muted); margin: 0; }

.quote-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.quote-item { background: var(--card); border: 1px solid var(--card-line); border-radius: 5px 18px 18px 18px; padding: 11px 15px; font-size: 12.5px; line-height: 1.9; color: #6B5560; }
.quote-mark { color: var(--pink); font-weight: 800; margin-right: 5px; }

.detail-more { text-align: center; padding: 24px 18px 6px; }

/* ---- 記事ページ（スタジオについて・ガイドライン） ---- */
.prose { margin: 14px 18px 0; background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius-md); box-shadow: var(--shadow-card); padding: 24px 20px; }
.prose-heading { display: flex; align-items: center; gap: 8px; font-size: 15.5px; font-weight: 800; margin: 0 0 10px; }
.prose-heading--spaced { margin-top: 26px; }
.prose-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.prose-dot--pink { background: var(--pink); }
.prose-dot--mint { background: var(--mint); }
.prose-dot--yellow { background: var(--yellow); }
.prose p { font-size: 13px; line-height: 2.1; color: #6B5560; margin: 0 0 12px; }
.prose p:last-of-type { margin-bottom: 0; }

.note { border-radius: var(--radius-note); padding: 11px 15px; font-size: 11.5px; line-height: 1.9; margin-top: 18px; }
.note--green { background: #E9F7F1; color: #4E8A78; }
.note--draft { background: #FFF7E3; color: #97782E; }

/* ---- フッター ---- */
.site-footer { margin-top: 34px; }
.footer-scallop {
  height: 18px; background-image: radial-gradient(circle at 12px 21px, var(--pink-pale-2) 14px, transparent 14.6px);
  background-size: 24px 18px; background-repeat: repeat-x;
}
.footer-band { position: relative; overflow: hidden; background: var(--pink-pale-2); border-radius: 0 0 var(--radius-shell) var(--radius-shell); text-align: center; padding: 20px 18px 34px; }

.footer-walker { position: absolute; bottom: 10px; left: -64px; animation: walk 26s linear infinite; }
.footer-walker__wobble { animation: waddle .7s ease-in-out infinite; }
.footer-walker__body { position: relative; width: 34px; height: 41px; background: #FFF7E8; border: 2px solid #6B5560; border-radius: 50% 50% 46% 46% / 62% 62% 40% 40%; }
.footer-walker__eye { position: absolute; top: 16px; width: 5px; height: 5px; background: #6B5560; border-radius: 50%; }
.footer-walker__eye--l { left: 7px; }
.footer-walker__eye--r { right: 7px; }
.footer-walker__cheek { position: absolute; top: 22px; width: 6px; height: 6px; background: #FFC6D8; border-radius: 50%; }
.footer-walker__cheek--l { left: 4px; }
.footer-walker__cheek--r { right: 4px; }

.footer-content { position: relative; }
.footer-content p { margin: 0; }
.footer-brand { font-size: 12px; font-weight: 800; color: #B5748D; margin-bottom: 4px !important; }
.footer-copy { font-size: 11px; color: #C08BA0; }
.footer-copy a { color: #B5748D; }
.footer-gen { font-size: 10px; color: #D0A3B4; margin-top: 6px !important; }

/* ---- 動きの停止（アクセシビリティ） ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
