:root {
  --bg: #f7f4ec;
  --panel: #ffffff;
  --text: #202124;
  --muted: #667085;
  --line: #e4ded2;
  --accent: #1f7668;
  --accent-soft: #e7f4ef;
  --yellow-soft: #fff7db;
  --blue: #315a8a;
  --blue-soft: #eaf1f8;
  --pink: #b85d72;
  --pink-soft: #fcecf0;
  --warm: #9b5a2c;
  --warm-soft: #fff1d9;
  --ink: #344054;
  --shadow: 0 18px 45px rgba(58, 42, 24, .12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

a { color: var(--accent); font-weight: 700; text-decoration-thickness: 1px; }

header {
  background:
    linear-gradient(180deg, #fffaf0 0%, #fffdf8 62%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.wrap {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand-stack {
  display: grid;
  line-height: 1.18;
}

.brand-stack small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-logo-rabbit {
  filter: none;
}

.mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.topbar nav,
nav.global-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
  background: #fff;
  font-size: 14px;
}

.topbar nav a,
nav.global-nav a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 6px;
  padding: 6px 12px;
  color: var(--ink);
  text-decoration: none;
}

.topbar nav a[aria-current="page"],
nav.global-nav a[aria-current="page"] {
  background: var(--accent);
  color: #fff;
}

.hero {
  padding: 38px 0 34px;
}

.hero-omochi {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.hero-copy {
  max-width: 820px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 10px;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--warm);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.eyebrow img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 7px 14px rgba(96, 69, 35, .1));
}

.eyebrow-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid #ead7b8;
  border-radius: 999px;
  padding: 4px 12px;
  background: #fffaf0;
  box-shadow: 0 8px 20px rgba(96, 69, 35, .08);
}

h1 {
  margin: 0;
  max-width: 920px;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin: 34px 0 14px;
  font-size: 22px;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: 0;
}

p { color: var(--muted); }

.lead {
  max-width: 780px;
  margin: 14px auto 0;
  font-size: 16px;
}

.hero-advisor {
  display: grid;
  width: 100%;
  max-width: 680px;
  justify-items: center;
}

.hero-mochi {
  position: relative;
  display: grid;
  z-index: 2;
  width: min(232px, 70%);
  margin: 0 auto -22px;
  place-items: center;
}

.hero-mochi img {
  position: relative;
  width: min(190px, 100%);
  filter: drop-shadow(0 20px 28px rgba(96, 69, 35, .18));
  transform-origin: 50% 70%;
  animation: mochi-breathe 3.8s ease-in-out infinite;
}

.hero-mochi p {
  width: max-content;
  max-width: 100%;
  margin: -4px 0 0;
  border: 1px solid #ead7b8;
  border-radius: 999px;
  padding: 4px 10px;
  background: #fffaf0;
  color: var(--warm);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  box-shadow: 0 8px 22px rgba(58, 42, 24, .08);
}

.hero-consult {
  width: 100%;
  border: 1px solid #ead7b8;
  border-radius: 8px;
  padding: 32px 14px 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
  text-align: left;
}

.hero-consult label {
  display: block;
  color: var(--warm);
  font-size: 13px;
  font-weight: 850;
}

.consult-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}

.consult-row input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.consult-row button {
  position: relative;
  min-height: 46px;
  border: 1px solid #1f7668;
  border-radius: 8px;
  padding: 10px 14px;
  background: #1f7668;
  color: #fff;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(31, 118, 104, .18);
  overflow: hidden;
}

.consult-row button::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 18px;
  height: 12px;
  border: 1.5px solid #fff;
  border-radius: 7px 7px 5px 5px;
  background: rgba(255, 255, 255, .2);
  transform: translateY(-50%) rotate(-2deg);
}

.consult-row button span {
  position: relative;
  display: inline-block;
  padding-left: 18px;
}

.consult-note {
  margin: 9px 0 0;
  font-size: 13px;
}

.intent-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.intent-chips button {
  min-height: 32px;
  border: 1px solid #d6e8e2;
  border-radius: 999px;
  padding: 5px 10px;
  background: #f6fffb;
  color: var(--accent);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
}

.consult-result {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f0f8f5;
}

.consult-result span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.result-list {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.result-item {
  display: grid;
  gap: 3px;
  border: 1px solid #d6e8e2;
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, .76);
  color: var(--ink);
  text-decoration: none;
}

.result-item small {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

.result-item strong {
  display: block;
  line-height: 1.4;
}

.result-item em {
  color: var(--warm);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.45;
}

.result-item p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}

.takeout-area {
  margin-top: 12px;
  border-top: 1px solid #f0e2ca;
  padding-top: 12px;
  text-align: center;
}

.takeout-button {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9b778;
  border-radius: 8px;
  padding: 9px 14px;
  background: #fff4d8;
  color: #7a4a1f;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(122, 74, 31, .09);
}

.takeout-button-disabled {
  cursor: not-allowed;
  opacity: .9;
}

.takeout-area p {
  margin: 7px 0 0;
  color: var(--warm);
  font-size: 12px;
  font-weight: 750;
}

.takeout-area .takeout-note {
  max-width: 480px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

main { padding: 28px 0 56px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.signal-list {
  display: grid;
  gap: 14px;
}

.card,
.panel,
.article-card,
.callout {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}

.article-card {
  display: grid;
  gap: 10px;
}

.signal-list .article-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  padding: 20px;
}

.signal-list .article-card .meta,
.signal-list .article-card h3,
.signal-list .article-card p {
  grid-column: 1;
}

.signal-list .article-card .button {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  white-space: nowrap;
}

.signal-list .article-card .source-link {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: start;
  justify-self: end;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.signal-list .article-card .source-link::after {
  content: " ->";
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.tag {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  padding: 2px 9px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.tag.warn { background: var(--yellow-soft); color: #8a5a00; }
.tag.blue { background: var(--blue-soft); color: var(--blue); }
.tag.pink { background: var(--pink-soft); color: var(--pink); }

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 7px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.button.ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.callout {
  border-color: #99f6e4;
  background: var(--accent-soft);
  color: var(--ink);
}

.omochi-flow,
.note {
  margin-top: 28px;
}

.widget-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(32, 33, 36, .05);
}

.widget-copy h2 {
  margin-top: 0;
}

.widget-copy p {
  margin-bottom: 0;
}

.inline-widget {
  border: 1px solid #ead7b8;
  border-radius: 8px;
  padding: 16px;
  background: #fffaf0;
}

.inline-widget label {
  display: block;
  margin-bottom: 8px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 850;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.flow-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}

.step {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 8px;
  background: var(--warm-soft);
  color: var(--warm);
  font-weight: 900;
}

@keyframes mochi-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-4px) scale(1.018, .985); }
  68% { transform: translateY(-2px) scale(.992, 1.01); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mochi img { animation: none; }
}

.note-interface {
  --line: #e2e8e4;
  --accent: #2f7d5f;
  --accent-soft: #eef7f1;
  background: #fff;
}

.note-interface header {
  background: rgba(255, 255, 255, .98);
  border-bottom-color: #edf2ee;
}

.note-interface .global-nav {
  border: 0;
  padding: 0;
  background: transparent;
}

.note-interface .global-nav a {
  min-height: 32px;
  border-radius: 0;
  padding: 4px 2px;
  color: var(--ink);
}

.note-interface .global-nav a[aria-current="page"] {
  border-bottom: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
}

.global-topbar {
  min-height: 68px;
}

.note-interface main.wrap {
  width: min(980px, calc(100% - 32px));
  margin-top: 34px;
  padding-bottom: 64px;
}

.note-interface h1 {
  font-size: clamp(38px, 5.4vw, 60px);
}

.note-interface h2 {
  margin-top: 0;
}

.note-interface .lead,
.note-interface .note p,
.note-interface .article-card p {
  color: #475467;
}

.note-interface .eyebrow-label,
.note-interface .tag {
  border: 0;
  border-radius: 4px;
  background: #eef7f1;
  color: #25644d;
  box-shadow: none;
}

.note-interface .note {
  position: relative;
  border: 1px solid #cfe2d5;
  border-radius: 8px;
  padding: 18px 20px 18px 24px;
  background: rgba(247, 252, 248, .82);
}

.note-interface .note::before {
  position: absolute;
  inset: 14px auto 14px 10px;
  width: 3px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.note-interface .signal-list {
  gap: 22px;
}

.note-interface .signal-list .review-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfffc;
  box-shadow: 0 10px 28px rgba(28, 91, 64, .06);
}

.note-interface .signal-list .review-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.note-interface .signal-list .review-item summary::-webkit-details-marker {
  display: none;
}

.note-interface .signal-list .review-item summary::after {
  content: "開く";
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.note-interface .signal-list .review-item[open] summary::after {
  content: "閉じる";
}

.note-interface .signal-list .review-item summary .meta,
.note-interface .signal-list .review-title {
  grid-column: 1;
}

.note-interface .signal-list .review-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  padding: 16px 18px;
  color: inherit;
  text-decoration: none;
}

.note-interface .signal-list .review-link::after {
  content: "読む";
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.note-interface .signal-list .review-link .meta,
.note-interface .signal-list .review-link .review-title {
  grid-column: 1;
}

.note-interface .signal-list .review-link-card:hover {
  border-color: rgba(31, 122, 76, .36);
}

.note-interface .signal-list .review-title {
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.45;
}

.review-detail {
  border-top: 1px solid var(--line);
  padding: 16px 18px 18px;
}

.article-back {
  margin: 0 0 14px;
}

.review-page h1 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.16;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.archive-fold {
  border: 1px dashed #b8d3c2;
  border-radius: 8px;
  background: #f8fcf9;
}

.archive-fold > summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  color: var(--accent);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.archive-fold > summary::-webkit-details-marker {
  display: none;
}

.archive-fold > summary::after {
  content: "開く";
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
  color: var(--muted);
  font-size: 12px;
}

.archive-fold[open] > summary::after {
  content: "閉じる";
}

.folded-list {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 12px;
}

.watch-section {
  margin-top: 34px;
}

.watch-masthead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  background: #fff;
  margin-bottom: 34px;
}

.watch-masthead-copy {
  min-width: 0;
}

.watch-masthead h1 {
  margin: 0;
  color: #183f31;
}

.watch-masthead .h1-emphasis {
  display: inline-block;
  font-size: 1.08em;
  white-space: nowrap;
  word-break: keep-all;
}

.watch-masthead .lead {
  max-width: 680px;
  margin: 14px 0 0;
  color: #2a4d3d;
  font-weight: 800;
}

.watch-masthead-visual {
  max-width: 560px;
  margin: 0;
  justify-self: center;
}

.watch-masthead-visual img {
  display: block;
  width: 100%;
  background: transparent;
}

.weekly-default {
  margin-top: 0;
}

.watch-section .section-head {
  margin-bottom: 12px;
}

.weekly-default .section-head {
  align-items: center;
  margin-bottom: 14px;
}

.summary-card,
.review-teaser article,
.news-item {
  border: 1px solid #e2e8e4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(28, 91, 64, .04);
}

.summary-card {
  padding: 22px;
}

.summary-card h3,
.news-item h3 {
  margin-top: 8px;
}

.summary-card p {
  margin: 10px 0 0;
}

.summary-card p:first-of-type {
  margin-top: 12px;
}

.summary-block {
  margin-top: 18px;
}

.summary-block h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 15px;
}

.summary-points {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
  color: #475467;
}

.summary-points li {
  padding-left: 2px;
}

.data-section {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.review-teaser {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.review-teaser.featured-review-teaser {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-teaser article {
  padding: 16px;
}

.review-teaser h3 {
  font-size: 16px;
}

.review-teaser p {
  margin-bottom: 0;
  font-size: 14px;
}

.news-list {
  display: grid;
  gap: 10px;
}

.news-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  padding: 16px;
}

.news-item .meta,
.news-item h3,
.news-item p {
  grid-column: 1;
}

.news-item .source-link {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
}

.news-item p {
  margin: 0;
  font-size: 14px;
}

.archive-note {
  margin: 12px 0 0;
  font-size: 13px;
}

.note-interface .signal-list .article-card {
  position: relative;
  border-color: #e1d7c7;
  border-radius: 8px;
  padding: 22px 20px 22px 24px;
  background:
    linear-gradient(90deg, rgba(31, 118, 104, .35) 0 4px, transparent 4px),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 252, 246, .98));
  box-shadow: 0 8px 20px rgba(80, 60, 32, .06);
}

.note-interface .signal-list .article-card h3 {
  margin-top: 2px;
  font-size: 19px;
}

.note-interface .signal-list .article-card p {
  margin: 4px 0 0;
}

.note-interface .signal-list .article-card .description {
  color: #2f3a48;
  font-size: 15px;
  line-height: 1.75;
}

.note-interface .signal-list .article-card .view {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 8px;
}

.note-interface .signal-list .article-card .view-label {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-left: 2px solid var(--accent);
  padding: 2px 8px;
  background: rgba(231, 244, 239, .75);
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.note-interface .button {
  border-radius: 4px;
}

.note-interface .button.ghost {
  background: #fffdf8;
}

.article {
  max-width: 860px;
}

.article h1 {
  font-size: 34px;
}

.answer {
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--accent-soft);
}

.prompt {
  overflow-x: auto;
  border-radius: 8px;
  padding: 16px;
  background: #111827;
  color: #f9fafb;
  line-height: 1.65;
}

.source-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfcfb;
}

.table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

th {
  background: #eef1ec;
  color: var(--ink);
}

tr:last-child td { border-bottom: 0; }

footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  background: var(--panel);
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 720px) {
  .wrap {
    width: min(1120px, calc(100% - 40px));
  }

  .hero {
    padding: 58px 0 48px;
  }

  .hero-omochi {
    gap: 20px;
  }

  .hero-advisor {
    max-width: 720px;
  }

  .hero-mochi {
    width: 300px;
    margin-bottom: -26px;
  }

  .hero-mochi img {
    width: 230px;
  }

  .hero-consult {
    padding: 36px 18px 18px;
  }

  .consult-row {
    grid-template-columns: minmax(0, 1fr) 132px;
  }

  .takeout-button {
    width: auto;
    min-width: 220px;
  }

  h1 {
    font-size: 56px;
  }

  .lead {
    font-size: 17px;
  }

  .flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .widget-panel {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  }

  .watch-masthead {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    gap: 22px;
  }

  .article h1 {
    font-size: 48px;
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .topbar nav,
  nav.global-nav {
    width: 100%;
  }

  .topbar nav a,
  nav.global-nav a {
    flex: 1 1 120px;
    justify-content: center;
  }

  .watch-masthead .h1-emphasis {
    white-space: nowrap;
    word-break: keep-all;
  }

  .note-interface {
    background: #f8faf9;
  }

  .note-interface main.wrap {
    width: min(100% - 20px, 1120px);
    padding-bottom: 44px;
  }

  .note-interface h1 {
    font-size: 42px;
  }

  .review-teaser {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 1fr;
  }

  .news-item .source-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .signal-list .article-card {
    grid-template-columns: 1fr;
  }

  .signal-list .article-card .button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    white-space: normal;
  }

  .signal-list .article-card .source-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: end;
  }

  .note-interface .signal-list .article-card .view {
    grid-template-columns: 1fr;
    gap: 3px;
  }

}

@media (max-width: 380px) {
  h1 {
    font-size: 34px;
  }
}















































/* Aiじゃないか trend system start */
.trend-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.note-interface .wrap,
.note-interface main.wrap,
.watch-section,
.watch-masthead,
.trend-card,
.review-item,
.article-card {
  max-width: 100%;
}
.watch-masthead {
  overflow: hidden;
}
.watch-masthead-visual,
.watch-masthead-copy,
.trend-card,
.review-item,
.article-card {
  min-width: 0;
}
.watch-masthead-visual img {
  max-width: 100%;
}
.trend-card a,
.read-axis-card,
.reading-card,
.timeline-item,
.read-brief,
.review-section,
.article-trend-context,
.article-neighbor-nav,
.trend-hero {
  display: block;
  border: 1px solid #e2e8e4;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(28, 91, 64, .04);
}
.trend-card a,
.read-axis-card,
.reading-card,
.timeline-item,
.read-brief,
.review-section,
.article-trend-context,
.article-neighbor-nav,
.trend-hero {
  padding: 16px;
}
.trend-card-head,
.filter-chips,
.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.trend-card-head {
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}
.trend-card a {
  display: grid;
  min-height: 184px;
  height: 100%;
  grid-template-columns: 98px minmax(0, 1fr);
  grid-template-areas:
    "meta title"
    "meta body"
    "read read";
  gap: 12px;
  align-items: stretch;
}
.trend-card-head {
  grid-area: meta;
  align-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid var(--line);
  padding-right: 12px;
}
.trend-card h3 {
  grid-area: title;
  align-self: start;
  margin: 0 0 6px;
}
.trend-card p {
  grid-area: body;
  align-self: start;
  margin: 0;
  padding-left: 0;
}
.trend-card strong {
  grid-area: read;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-size: 14px;
  line-height: 1.65;
}
.phase-badge,
.trend-badge,
.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
  background: #fff;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}
.phase-accelerating { background: #fff4d6; color: #9a6700; }
.phase-seed { background: #eef7ff; color: #2563a6; }
.phase-stable { background: #e8f1ec; color: #557463; }
.trend-card h3,
.timeline-item h3,
.read-axis-card h2,
.read-brief h2,
.review-section h2,
.article-trend-context h2,
.article-neighbor-nav h2 {
  margin: 10px 0 8px;
}
.trend-card p,
.trend-card strong,
.timeline-item p,
.reading-card p,
.read-axis-card p,
.review-section p,
.article-trend-context p {
  color: var(--muted);
  overflow-wrap: anywhere;
}
.review-tags {
  grid-column: 1;
}
.note-interface .signal-list .review-link .review-tags {
  margin-top: 2px;
}
.timeline-list,
.read-axis-grid {
  display: grid;
  gap: 12px;
}
.read-axis-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.read-brief,
.review-section,
.article-trend-context,
.article-neighbor-nav {
  margin-top: 14px;
}
.read-brief ul {
  margin: 0;
  padding-left: 1.2em;
  color: #475467;
}
@media (max-width: 860px) {
  .trend-map {
    grid-template-columns: 1fr;
  }
  .read-axis-grid {
    grid-template-columns: 1fr;
  }
  .note-interface .global-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    width: 100%;
    max-width: 100%;
  }
  .note-interface .global-nav a {
    min-width: 0;
    justify-content: center;
    white-space: nowrap;
    font-size: 13px;
  }
  .trend-card a {
    min-height: 0;
    grid-template-columns: 96px minmax(0, 1fr);
  }
  .trend-card-head {
    padding-right: 10px;
  }
  .trend-card p {
    margin: 6px 0 0;
    padding-left: 0;
  }
  .trend-card strong {
    padding: 12px 0 0;
  }
  .trend-card p,
  .trend-card strong {
    word-break: break-all;
  }
}
/* Aiじゃないか trend system end */
