/* ========================= RESET & TOKENS ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #f5f5f7;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.06); /* stickyヘッダー対策（#anchor の飛び先） */
  scroll-padding-top: 120px;
} /* ========================= BASE ========================= */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}
main {
  margin-top: 18px;
} /* main-column の余白制御（使ってるページだけ効く） */
.main-column > :first-child {
  margin-top: 0 !important;
}
.main-column > * + * {
  margin-top: 16px;
} /* ========================= HEADER & NAV ========================= */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px;
  min-height: 72px;
  border-radius: 999px;
  background: var(--card);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 16px;
  z-index: 20;
  margin-top: 8px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.logo:hover {
  opacity: 0.9;
}
.logo-image-main {
  height: 40px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}
.site-nav a {
  position: relative;
  padding-bottom: 3px;
  color: #4b5563;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: width 0.16s ease;
}
.site-nav a:hover::after {
  width: 100%;
} /* ========================= MAIN + SIDEBAR LAYOUT ========================= */
@media (min-width: 1024px) {
  .layout-with-side {
    margin-top: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
    align-items: start;
  }
  .layout-with-side .side-info {
    position: sticky;
    top: 100px;
  }
} /* ========================= SIDEBAR ========================= */
.side-banner {
  display: block;
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.side-banner img {
  display: block;
  width: 100%;
  height: auto;
}
.side-box {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.side-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
} /* SNS */
.side-box--sns {
  padding: 20px;
}
.side-box--sns .side-title {
  font-size: 16px;
  margin-bottom: 12px;
}
.social-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 15px;
}
.social-list li + li {
  margin-top: 8px;
}
.social-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 2px;
}
.social-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
}
.side-box--sns .social-item span {
  line-height: 1.25;
} /* APP */
.side-box--app .side-title {
  font-size: 16px;
  margin-bottom: 12px;
}
.app-btn {
  display: block;
}
.store-btn {
  display: block;
  width: 100%;
  max-width: 210px;
  margin-top: 8px;
} /* ========================= HERO VISUAL ========================= */
.hero-visual {
  margin-top: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}
.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
} /* ========================= HERO (text + highlight + buttons) ========================= */
.hero {
  margin-top: 24px;
  padding: 22px 26px 24px;
  border-radius: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: 14px;
  align-items: start;
} /* 左 */
.hero-main {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-badge {
  display: inline-block;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid var(--line);
  color: var(--muted);
}
.hero-title {
  font-size: 20px;
  line-height: 1.55;
  margin-top: 6px;
  color: var(--text);
}
.hero-lead {
  font-size: 12px;
  line-height: 1.6;
  color: #4b5563;
  margin-top: 10px;
}
.hero-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 6px;
} /* 右 */
.hero-highlight {
  grid-column: 2;
  grid-row: 1;
  background: #f3f7ff;
  border-radius: 18px;
  border: 1px solid #dbe3ff;
  padding: 14px 16px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.hero-highlight-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: -2px;
}
.hero-highlight-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.hero-highlight-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.hero-highlight-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}
.hero-highlight-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11px;
  color: #16a34a;
}
.hero-tags {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hero-tags span {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dbeafe;
  color: #2563eb;
  white-space: nowrap;
} /* 下段ボタン */
.hero-buttons {
  grid-column: 1/3;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
} /* ========================= BUTTONS ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.btn:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}
.btn-primary {
  background: #111827;
  color: #fff;
  border-color: #111827;
}
.btn-primary:hover {
  background: #020617;
  border-color: #020617;
}
.hero-buttons .btn {
  width: 100%;
} /* ========================= COMMON SECTIONS ========================= */
.section {
  background: var(--card);
  border-radius: 24px;
  padding: 18px 22px 22px;
  border: 1px solid var(--line);
  margin-top: 16px;
}
.section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.section-lead {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
} /* ========================= FLOW BLOCKS ========================= */
.flow-block {
  margin-top: 16px;
  scroll-margin-top: 120px;
}
.flow-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 20px 20px 12px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
}
.flow-image {
  flex: 0 0 240px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
}
.flow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flow-content {
  flex: 1;
  padding-right: 40px;
  margin-left: 16px;
}
.flow-content .section-title {
  font-size: 20px;
  margin-bottom: 8px;
}
.flow-content .section-lead,
.flow-content ol {
  font-size: 15px;
  line-height: 1.8;
}
.flow-content ol {
  margin-left: 1.2em;
}
.flow-content ol li + li {
  margin-top: 4px;
} /* ========================= ABOUT / FAQ 共通見出し ========================= */
.section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 2px 0 12px;
  letter-spacing: 0.02em;
}
.section-head::before {
  content: "";
  width: 10px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7c3aed, #2563eb);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
}
.section-head::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 8px;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.35),
    rgba(37, 99, 235, 0)
  );
} /* ABOUT：上の3ボタン */
.about-topnav {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.about-navbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  color: var(--text);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
}
.about-navbtn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}
.about-navicon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #efeaff;
  color: #5b21b6;
  font-size: 12px;
} /* ABOUT：メディアカード */
.media-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
}
.media-thumb {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16/9;
  margin-top: 8px;
}
.media-video,
.media-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.media-body {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f9fafb;
  border: 1px solid #eef2f7;
}
.media-lead {
  font-size: 13px;
  color: #374151;
  line-height: 1.75;
}
.media-points {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.media-points li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  color: var(--text);
}
.media-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  opacity: 0.9;
}
.media-cta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.media-cta-label {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  color: #3730a3;
}
.media-link {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 3px;
} /* ABOUT：ミクメイト側（二重カード回避） */
#about-mikumate.section {
  padding: 18px;
  border-radius: 24px;
}
#about-mikumate.section > .media-card {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}
#about-mikumate .media-thumb {
  background: #11182710;
} /* ========================= FAQ PAGE ========================= */
.faq-page .faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-page .faq-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.faq-page .faq-card:nth-child(odd) {
  background: #fff;
}
.faq-page .faq-card:nth-child(even) {
  background: #e0e7ff;
}
.faq-page .faq-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.faq-q {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.7;
}
.faq-a {
  margin-top: 8px;
  font-size: 13px;
  color: #374151;
  line-height: 1.8;
}
.faq-q::before {
  content: "Q. ";
  color: #4f46e5;
  font-weight: 900;
}
.faq-a::before {
  content: "A. ";
  color: #10b981;
  font-weight: 900;
} /* ========================= CONTACT PAGE ========================= */
.contact-lead {
  margin-top: 8px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.75;
}
.contact-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}
.contact-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: clamp(260px, 34%, 340px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
.contact-card__img {
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
}
.contact-card__img img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
}
.contact-card__body {
  min-width: 0;
  justify-self: stretch;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.contact-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}
.contact-card__text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
  max-width: none;
}
.contact-card__btn {
  margin-top: 12px;
  width: fit-content;
  padding: 12px 16px;
} /* ========================= RANKING PAGE（一本化） ========================= */
.ranking-head {
  margin-top: 12px;
}
.ranking-tabs {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ranking-tab {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.ranking-tab:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.ranking-tab.is-active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}
.ranking-note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}
.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}
.ranking-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 110px;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  transition: box-shadow 0.2s ease;
}
.ranking-row:nth-child(even) {
  background: #eef2ff;
  border-color: #e0e7ff;
}
.ranking-row:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.ranking-rank {
  font-weight: 900;
  font-size: 18px;
  text-align: center;
}
.ranking-user {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.ranking-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
  flex-shrink: 0;
}
.ranking-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ranking-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.ranking-meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.ranking-point {
  text-align: right;
  font-weight: 900;
  font-size: 15px;
  color: var(--text);
} /* TOP3（演出は維持、transformは最小） */
.ranking-row--1 {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%) !important;
  border: 2px solid #f59e0b !important;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.15);
}
.ranking-row--1 .ranking-rank {
  color: #d97706;
  font-size: 28px;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.8);
}
.ranking-row--1 .ranking-rank::before {
  content: "👑";
  display: block;
  font-size: 20px;
  line-height: 1;
  margin-bottom: -4px;
  animation: floatCrown 2s infinite ease-in-out;
}
.ranking-row--2 {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%) !important;
  border: 2px solid #94a3b8 !important;
  box-shadow: 0 4px 12px rgba(148, 163, 184, 0.4);
}
.ranking-row--2 .ranking-rank {
  color: #334155;
  font-size: 24px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
.ranking-row--2 .ranking-rank::before {
  content: "🥈";
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}
.ranking-row--3 {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%) !important;
  border: 2px solid #fdba74 !important;
  box-shadow: 0 4px 12px rgba(251, 146, 60, 0.2);
}
.ranking-row--3 .ranking-rank {
  color: #c2410c;
  font-size: 24px;
}
.ranking-row--3 .ranking-rank::before {
  content: "🥉";
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}
@keyframes floatCrown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
} /* ========================= STREAMERS PAGE（ここが今回の主役） ========================= */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 14px;
}
.page-hero h1 {
  font-size: 22px;
  margin: 0 0 6px;
}
.page-hero .sub {
  margin: 0 0 18px;
  opacity: 0.8;
}
.controls {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0 16px;
  flex-wrap: wrap;
}
.input,
.select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: min(360px, 100%);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 680px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
} /* --- streamer card 本体 --- */
.streamer-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  padding: 16px;
} /* “好きだったレイアウト”に固定：左サムネ + 右meta */
.streamer-card .card-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.12s ease;
}
.streamer-card .card-link:hover {
  /* transformは使わない（バッジが動くのキモい問題を根絶） */
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
} /* 左アクセント */
.streamer-card .card-link::before {
  content: "";
  width: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
} /* サムネ */
.streamer-card .thumb {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  background: #f2f2f2;
}
.streamer-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.streamer-card .thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eee, #f7f7f7);
} /* 右側 */
.streamer-card .meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
} /* タイトル行：名前左 / バッジ右（スクショの感じ） */
.streamer-card .title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.streamer-card .name {
  font-size: 16px;
  margin: 0;
  line-height: 1.2;
  white-space: normal;
  word-break: keep-all;
}
.streamer-card .rank {
  margin-left: auto;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.07);
  white-space: nowrap;
} /* キャッチ */
.streamer-card .catch {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
} /* タグ：横並び固定 */
.streamer-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}
.streamer-card .tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.07);
  white-space: nowrap;
  word-break: keep-all;
} /* CTA */
.streamer-card .cta {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
} /* カードの色分け（外枠はcard-linkで統一するので、ここは“薄く”） */
.streamer-card.is-pickup .card-link {
  border-color: rgba(255, 183, 3, 0.45);
  box-shadow: 0 10px 22px rgba(255, 183, 3, 0.12);
}
.streamer-card.is-pickup .rank {
  background: #ffb703;
  border-color: #ffb703;
  color: #fff;
}
.streamer-card.is-rookie .card-link {
  border-color: rgba(108, 168, 255, 0.45);
  box-shadow: 0 10px 22px rgba(108, 168, 255, 0.12);
} /* ========================= FOOTER ========================= */
.site-footer {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
} /* ========================= RESPONSIVE（GLOBAL） ========================= */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 18px;
    padding: 12px 14px;
    margin-top: 4px;
  }
  .wrapper {
    padding-top: 12px;
  }
  .site-nav {
    flex-wrap: nowrap; /* 折り返さない */
    overflow-x: auto; /* 横スクロール */
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 6px; /* スクロールバーの余白 */
    width: 100%;
  }
  .site-nav a {
    flex: 0 0 auto; /* 1個ずつ固定 */
    white-space: nowrap; /* 文字を折らない */
  } /* スクロールバーを目立たなく（任意） */
  .site-nav::-webkit-scrollbar {
    height: 4px;
  }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 16px;
  }
  .hero-buttons {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr;
  }
  .flow-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .flow-image {
    width: 100%;
    height: auto;
  }
  .flow-image img {
    width: 100%;
    height: auto;
  }
  .about-topnav {
    justify-content: flex-start;
  }
  .contact-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-card__img img {
    height: auto;
  }
  .contact-card__btn {
    width: 100%;
    justify-content: center;
  }
  .ranking-row {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 10px;
  }
  .ranking-name {
    font-size: 14px;
  }
  .ranking-point {
    font-size: 13px;
  }
} /* ===== streamers: layout break fix (put at END of CSS) ===== */ /* タイトル行とCTAが1文字ずつ改行されないようにする */
.streamer-card .cta,
.streamer-card .rank {
  white-space: nowrap;
} /* 右側(meta)がちゃんと伸びるようにする */
.streamer-card .card-link {
  display: flex !important;
  align-items: center;
  width: 100%;
}
.streamer-card .meta {
  flex: 1 !important;
  min-width: 0 !important;
} /* ピックアップ/新人のグリッドが “2列固定で右が空白” になってるのも直す */
#pickupGrid.card-grid,
#rookieGrid.card-grid {
  grid-template-columns: 1fr !important;
} /* ========================= Streamers layout (FINAL) ========================= */ /* 3列グリッド（スマホは1列） */
.streamer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 900px) {
  .streamer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .streamer-grid {
    grid-template-columns: 1fr;
  }
} /* カード本体 */
.streamer-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  overflow: hidden;
} /* 中身：画像＋右側 */
.streamer-card .card-link {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  align-items: center; /* ホバーで動かさない */
  transition: box-shadow 0.12s ease;
}
.streamer-card .card-link:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
} /* 画像 */
.streamer-card .thumb {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  background: #f2f2f2;
}
.streamer-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} /* 右側 */
.streamer-card .meta {
  min-width: 0; /* 重要：これないと崩れる */
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.streamer-card .title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.streamer-card .name {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
} /* ピックアップバッジ：右上っぽく見える位置に（行内右寄せ） */
.streamer-card .rank {
  margin-left: auto;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  white-space: nowrap; /* 1文字縦化を防ぐ */
} /* キャッチ */
.streamer-card .catch {
  margin: 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.75);
} /* タグ */
.streamer-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.streamer-card .tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.07);
  white-space: nowrap; /* 重要：タグの縦化を防ぐ */
} /* CTA */
.streamer-card .cta {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
  white-space: nowrap; /* “配信ページを見る→” 縦化防止 */
} /* ===== Card layout: vertical (image top) ===== */
.streamer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 900px) {
  .streamer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .streamer-grid {
    grid-template-columns: 1fr;
  }
}
.streamer-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}
.streamer-card .card-link {
  display: block; /* ← 横並びを完全にやめる */
  padding: 14px;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.12s ease;
}
.streamer-card .card-link:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}
.streamer-card .thumb {
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形で安定 */
  border-radius: 14px;
  overflow: hidden;
  background: #f2f2f2;
}
.streamer-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.streamer-card .thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eee, #f7f7f7);
}
.streamer-card .meta {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.streamer-card .name {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}
.streamer-card .catch {
  margin: 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.6;
}
.streamer-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.streamer-card .tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.07);
  white-space: nowrap; /* ← 1文字縦化防止 */
  word-break: keep-all;
}
.streamer-card .cta {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
  white-space: nowrap; /* ← 縦化防止 */
} /* PICKUP badge */
.streamer-card .pickup-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffb703;
  color: #fff;
} /* ピックアップのカードだけ薄く色 */
.streamer-card.is-pickup {
  background: linear-gradient(135deg, #fff7e6, #ffffff);
  border-color: rgba(255, 183, 3, 0.45);
} /* ===== 強制：上=画像 / 下=テキスト の縦カード ===== */
.streamer-card .card-link {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
} /* 画像は上で横いっぱい */
.streamer-card .thumb {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important; /* 好みで 1/1 でもOK */
  border-radius: 14px !important;
  overflow: hidden !important;
} /* テキストは下で縦に並ぶ */
.streamer-card .meta {
  margin-top: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
} /* タグが縦にならない保険 */
.streamer-card .tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}
.streamer-card .tag,
.streamer-card .cta {
  white-space: nowrap !important;
  word-break: keep-all !important;
} /* ===== Column cards ===== */
.column-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 900px) {
  .column-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .column-grid {
    grid-template-columns: 1fr;
  }
}
.column-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}
.column-link {
  display: block;
  color: inherit;
}
.column-thumb {
  aspect-ratio: 16/9;
  background: #f3f4f6;
}
.column-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.column-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eee, #f7f7f7);
}
.column-meta {
  padding: 12px 14px 14px;
  display: grid;
  gap: 8px;
}
.column-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.column-tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.04);
  white-space: nowrap;
}
.column-date {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}
.column-title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
}
.column-cta {
  font-size: 12px;
  color: #374151;
  opacity: 0.85;
  margin: 0;
} /* ▼▼▼ 新しいTOP画像のデザイン ▼▼▼ */
.hero-visual-custom {
  width: 100%;
  height: 400px; /* 画像の高さ */ /* ここで背景画像を指定！ */
  background-image: url("assets/bg_new.png");
  background-size: cover;
  background-position: center; /* ロゴをど真ん中に置く魔法のコード */
  display: flex;
  justify-content: center;
  align-items: center; /* ちょっと角を丸くする */
  border-radius: 16px;
  margin-bottom: 40px;
  position: relative;
} /* ▼▼▼ ロゴの設定 ▼▼▼ */
.hero-logo-floating {
  width: 400px; /* ロゴの大きさ（ここで変更できます！） */
  max-width: 80%; /* スマホなら画面の8割 */
  height: auto; /* 影をつけて浮いてる感を出す */
  filter: drop-shadow(
    0 10px 20px rgba(0, 0, 0, 0.15)
  ); /* ふわふわ浮くアニメーション */
  animation: float 6s ease-in-out infinite;
} /* ふわふわ動くアニメーション */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
} /* スマホの時は高さを少し低くする */
@media (max-width: 768px) {
  .hero-visual-custom {
    height: 250px;
  }
}
.admin-card,
.admin-card * {
  position: relative;
  z-index: 2;
} /* ライバー画像をカード幅いっぱいに、綺麗にトリミング */
.streamer-card .thumb {
  width: 100%;
  aspect-ratio: 1 / 1; /* 横長にしたいなら16/9 */
  overflow: hidden;
  border-radius: 14px;
}
.streamer-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 余白出さずにトリミング */
  display: block;
} /* === Column Detail (Card Layout) === */
.article-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.article-thumb img {
  width: 100%;
  display: block;
  height: auto;
}
.article-head {
  padding: 18px 18px 8px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.article-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
}
.article-date {
  font-size: 12px;
  color: #666;
}
.article-title {
  font-size: 22px;
  line-height: 1.35;
  margin: 0;
}
.article-content {
  padding: 6px 18px 18px;
  line-height: 1.9;
  color: #222;
}
.article-content h2 {
  font-size: 18px;
  margin: 22px 0 8px;
}
.article-content h3 {
  font-size: 16px;
  margin: 18px 0 6px;
}
.article-content p {
  margin: 10px 0;
}
.article-content ul,
.article-content ol {
  margin: 10px 0 10px 1.2em;
}
.article-actions {
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.article-back {
  text-decoration: none;
} /* Related */
.related-section {
  margin-top: 18px;
}
.related-title {
  font-size: 16px;
  margin: 16px 0 10px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 720px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}
.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.related-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.related-thumb-placeholder {
  height: 120px;
  background: rgba(0, 0, 0, 0.04);
}
.related-body {
  padding: 12px 12px 14px;
}
.related-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.related-tag {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
}
.related-date {
  font-size: 11px;
  color: #666;
}
.related-title-text {
  font-size: 13px;
  line-height: 1.45;
}
.article-content h2 {
  margin: 32px 0 16px;
  padding-left: 12px;
  border-left: 4px solid #ff8a00;
  font-size: 1.4rem;
  font-weight: 700;
}
.article-content h3 {
  margin: 24px 0 12px;
  font-size: 1.1rem;
  font-weight: 600;
}
.article-content ul {
  margin: 16px 0;
  padding-left: 0;
}
.article-content li {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
}
.article-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff8a00;
}
.article-box {
  background: #fff7ef;
  border-radius: 12px;
  padding: 16px;
  margin: 24px 0;
}
.article-cta {
  background: #f9fafb;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin-top: 40px;
} /* 左側（順位＋ユーザー情報）が伸縮する */
.ranking-user {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0; /* 超重要：省略を効かせるため */
} /* 名前は省略表示（…） */
.ranking-name {
  display: block;
  max-width: 100%;
  min-width: 0; /* 超重要 */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
} /* 右のポイントは縮まない＆右寄せ固定 */
.ranking-point {
  flex: 0 0 auto; /* 縮まない */
  margin-left: auto;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
} /* ===== Ranking fix (keep GRID, prevent overlap) ===== */ /* ranking-row は既に grid なので display を変えない */
.ranking-user {
  min-width: 0; /* これがないと省略が効かない */
}
.ranking-user > div {
  min-width: 0; /* JSの<div><div class="ranking-name"></div></div>対策 */
}
.ranking-name {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
} /* ptは右で固定＆改行させない */
.ranking-point {
  white-space: nowrap;
}
.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px;
  margin: 12px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 123, 255, 0.12);
  color: #0b5ed7;
}
.thumb {
  width: 100%;
  display: block;
  border-radius: 14px;
  margin-top: 10px;
  border: 1px solid #e5e7eb;
}
.ttl {
  margin: 10px 0 6px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}
.meta {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
}
.btns {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.btn {
  flex: 1;
  min-width: 160px;
  text-align: center;
  text-decoration: none;
  padding: 12px;
  border-radius: 14px;
  font-weight: 900;
  border: 2px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
}
.btn.primary {
  background: #ff8c00;
  border-color: #ff8c00;
  color: #fff;
}
.btn.copy {
  border-color: #007bff;
  color: #007bff;
}
.empty {
  color: #6b7280;
  font-size: 13px;
}
.layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
  }
} /* 2カラム（main + side） */
.content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 980px) {
  .content {
    grid-template-columns: 1fr;
  }
} /* 見出しを少し小さく＆余白調整 */
.main-content h1 {
  font-size: 26px;
  margin: 6px 0 12px;
  letter-spacing: 0.02em;
}
.main-content h2 {
  font-size: 18px;
  margin: 18px 0 10px;
}
.main-content section {
  margin-bottom: 18px;
} /* おすすめイベント：帯見出し */
.main-content h1 {
  display: inline-block;
  padding: 10px 14px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  margin: 6px 0 14px;
}
.main-content h2 {
  position: relative;
  padding: 10px 12px 10px 14px;
  margin: 18px 0 12px;
  background: rgba(0, 123, 255, 0.08); /* 青のうすい帯 */
  border-radius: 12px;
  font-size: 19px;
  font-weight: 900;
} /* 左にアクセントライン */
.main-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 6px;
  border-radius: 6px;
  background: #007bff; /* 青ライン */
} /* ===== 見出し（ランキング風：左アクセント＋横ライン） ===== */
.main-content > h1,
.main-content > h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  margin: 14px 0 12px;
} /* 左のアクセント（紫っぽいピル） */
.main-content h1::before,
.main-content h2::before {
  content: "";
  width: 8px;
  height: 22px;
  border-radius: 999px;
  background: #5b6bff; /* ここはランキングの色に合わせて調整OK */
  flex: 0 0 auto;
} /* 右の細いライン */
.main-content h1::after,
.main-content h2::after {
  content: "";
  height: 2px;
  background: rgba(17, 24, 39, 0.1);
  flex: 1 1 auto;
  border-radius: 999px;
} /* サイズ感（h1とh2で少し差をつける） */
.main-content h1 {
  font-size: 26px;
}
.main-content h2 {
  font-size: 18px;
  margin-top: 18px;
} /* ページ見出し */
.page-title {
  font-size: 22px;
  font-weight: 900;
  margin: 8px 0 16px;
} /* カテゴリごとのカード */
.panel {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 16px;
}
.panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(17, 24, 39, 0.02);
}
.panel-accent {
  width: 8px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand2, #007bff);
  flex: 0 0 auto;
}
.panel-title {
  margin: 0;
  font-size: 16px;
  font-weight: 900; /* “白いラベル”っぽさ */
  background: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.08);
}
.panel-line {
  height: 2px;
  background: rgba(17, 24, 39, 0.1);
  flex: 1 1 auto;
  border-radius: 999px;
}
.panel-body {
  padding: 14px 16px 16px;
} /* 見出し行（ズレ防止） */
.panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: transparent; /* ここ重要：帯を消す */
} /* タイトル（白いラベル化をやめる） */
.panel-title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  background: transparent; /* ← これで“ボタン感”消える */
  padding: 0; /* ← 余計な余白消す */
  border: none; /* ← 枠消す */
  border-radius: 0;
} /* 横線はそのまま綺麗に */
.panel-line {
  height: 2px;
  background: rgba(17, 24, 39, 0.1);
  flex: 1 1 auto;
  border-radius: 999px;
} /* 左アクセントを少しだけ“見出しっぽく” */
.panel-accent {
  width: 8px;
  height: 20px;
  border-radius: 999px;
  background: var(--brand2, #007bff);
}
.panel-head {
  background: rgba(17, 24, 39, 0.02);
  border-radius: 14px;
} /* panelの見出しは、h2疑似要素の棒を出さない（2本問題対策） */
.panel-title::before,
.panel-title::after {
  content: none !important;
} /* おすすめイベント：ボタン1個用（参加するだけ） */
.btns {
  display: block;
  margin-top: 12px;
}
.btns .btn {
  width: 100%;
  min-width: 0;
}
/* 記事コンテンツの基本 */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
  line-height: 1.9;
}

.article h1 {
  font-size: 26px;
  margin: 8px 0 12px;
}
.article h2 {
  font-size: 20px;
  margin: 28px 0 10px;
}
.article h3 {
  font-size: 16px;
  margin: 18px 0 8px;
}

.article p {
  margin: 10px 0;
}
.article ul,
.article ol {
  padding-left: 20px;
  margin: 10px 0;
}
.article li {
  margin: 6px 0;
}

/* 結論ボックス / 注意ボックス */
.box {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 14px 0;
  background: #fff;
}

.box strong {
  display: block;
  margin-bottom: 6px;
}

/* 目次 */
.toc {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 14px 0 22px;
  background: #fff;
}

.toc a {
  text-decoration: none;
}
.toc a:hover {
  text-decoration: underline;
}
/* コラム詳細：結論ボックス・目次 */
.box {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 14px;
  margin: 14px 0;
  background: #fff;
}

.box-summary ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.summary-lead {
  margin-top: 10px;
  font-weight: 700;
}

.toc {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 10px 12px;
  margin: 14px 0 22px;
  background: #fff;
}

.toc summary {
  cursor: pointer;
  font-weight: 700;
}

.toc-body a {
  text-decoration: none;
  display: block;
  padding: 6px 0;
}

.toc-body a:hover {
  text-decoration: underline;
}
