/* クラベル婚活 — ライトテーマ・共通幅・モバイル前提 */

/* Noto Sans JP（自サイト配信・@fontsource 日本語サブセット。ライセンス: /fonts/Noto-Sans-Jp-LICENSE.txt） */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/fonts/noto-sans-jp-japanese-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("/fonts/noto-sans-jp-japanese-700-normal.woff2") format("woff2");
}

:root {
  --bg: #f0f2f6;
  --surface: #ffffff;
  --text: #1a1f26;
  --muted: #5c6b7a;
  --accent: #c2185b;
  --accent-hover: #880e4f;
  --accent-contrast: #ffffff;
  --border: #d8dee6;
  /* パンくずキャレット（--border より一段濃い） */
  --breadcrumb-caret: #9eacb8;
  --danger: #c62828;
  --danger-border: #e57373;
  --danger-muted: #b71c1c;
  --site-max: 48rem;
  --site-pad: clamp(1rem, 4vw, 1.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ヘッダー・フッター（全幅バー。中身はサイト幅に揃える） */
.site-header {
  flex-shrink: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.site-header-inner {
  max-width: var(--site-max);
  margin-inline: auto;
  padding-inline: var(--site-pad);
  padding-block: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.site-footer-inner {
  max-width: var(--site-max);
  margin-inline: auto;
  padding-inline: var(--site-pad);
  padding-block: 1rem 1.2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem 1.5rem;
}

.site-logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-logo:hover {
  color: var(--accent);
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--accent);
}

.site-footer {
  flex-shrink: 0;
  margin-top: auto;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.site-footer-name {
  flex: 0 1 auto;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  text-decoration: none;
}

.site-footer-name:hover {
  color: var(--accent-hover);
}

.site-nav.site-nav--footer {
  flex: 0 1 auto;
  margin-left: auto;
  text-align: left;
}

.site-footer-nav-groups {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.75rem 1.5rem;
}

.site-nav.site-nav--footer .site-footer-nav-a,
.site-nav.site-nav--footer .site-footer-nav-b {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.site-nav--footer a {
  font-size: 0.8125rem;
}

.site-footer-bottom {
  width: 100%;
  border-top: 1px solid var(--border);
  padding: 0.85rem var(--site-pad);
  box-sizing: border-box;
}

.site-footer-copy {
  margin: 0 auto;
  max-width: var(--site-max);
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer-copy a {
  color: inherit;
  text-decoration: none;
}

.site-footer-copy a:hover {
  color: var(--accent);
}

/* 静的ドキュメント（運営情報・ポリシー等） */
.static-doc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
  max-width: 40rem;
}

.static-doc h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.35rem 0 0.5rem;
  color: var(--text);
}

.static-doc p {
  margin: 0.65rem 0;
}

.static-doc a {
  color: var(--accent);
  font-weight: 400;
}

.static-doc-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* お問い合わせ: Google フォーム埋め込み前のダミー枠 */
.contact-form-placeholder {
  margin: 1rem 0 0.85rem;
  padding: clamp(2rem, 6vw, 3rem) 1.25rem;
  max-width: 40rem;
  text-align: center;
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: 10px;
  color: var(--muted);
}

.contact-form-placeholder__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.contact-form-placeholder__hint {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}

.contact-form-placeholder__hint code {
  font-size: 0.88em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.static-doc > .agency-detail-dl {
  margin-top: 0.75rem;
}

/* メイン：縦に伸ばしてフッターを下へ */
.site-wrap {
  flex: 1 0 auto;
  width: 100%;
  max-width: var(--site-max);
  margin-inline: auto;
  padding-inline: var(--site-pad);
  padding-block: var(--site-pad);
}

/* パンくず（コンテンツエリア先頭） */
.breadcrumb {
  margin: 0 0 1.15rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  gap: 0;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "›";
  margin: 0 0.45rem;
  color: var(--breadcrumb-caret);
  font-weight: 700;
  font-size: 0.75rem;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 400;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

.breadcrumb [aria-current="page"] {
  color: var(--text);
  font-weight: 400;
}

/* 記事詳細: パンくず〜タイトル周りの余白 */
.article-page .breadcrumb {
  margin-bottom: 1.85rem;
}

h1 {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.article-page__title {
  margin-bottom: 0.5rem;
}

.article-page .article-entry {
  min-width: 0;
}

/* 記事詳細: 更新日・カテゴリ */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin: 0 0 1rem;
  font-size: 11px;
  color: var(--muted);
}

.article-meta__date {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}

.article-meta__update-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--muted);
}

.article-meta__update-icon svg {
  display: block;
  width: 12px;
  height: 12px;
}

.article-meta__date-text {
  line-height: 1.4;
}

.article-meta__cat {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  text-decoration: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.article-meta__cat:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.article-meta__cat:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* 記事詳細: 著者一行（アイキャッチ下・控えめ） */
.article-byline {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1.65rem;
  max-width: min(100%, 720px);
}

.article-byline__avatar {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--surface);
}

.article-byline__name {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--muted);
}

/* 記事詳細: 著者紹介（文末） */
.article-author-card {
  margin: 2rem 0 0;
  padding: 1.15rem 1.2rem;
  max-width: min(100%, 720px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.article-author-card__title {
  margin: 0 0 0.85rem;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  border: none;
}

.article-author-card__inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.article-author-card__avatar {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--bg);
}

.article-author-card__body {
  min-width: 0;
  flex: 1;
}

.article-author-card__name {
  margin: 0 0 0.4rem;
  font-size: calc(0.95rem - 1px);
  font-weight: 700;
  color: var(--text);
}

.article-author-card__bio {
  margin: 0;
  font-size: calc(0.875rem - 1px);
  line-height: 1.6;
  color: var(--muted);
}

.lead,
.sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}

.sub a,
.lead a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.sub a:hover,
.lead a:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

a {
  color: var(--accent);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card li {
  margin-bottom: 0.65rem;
}

.card li:last-child {
  margin-bottom: 0;
}

.card a {
  font-weight: 700;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

/* 検索フォーム */
form.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

form.filters label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  flex: 1 1 12rem;
  min-width: min(100%, 12rem);
}

form.filters label.filters-label--full {
  flex: 1 1 100%;
  min-width: 100%;
}

form.filters .filters-slider-heading {
  font-size: 0.8rem;
  color: var(--muted);
}

form.filters label.filters-label--slider {
  flex: 1 1 100%;
  min-width: 100%;
}

form.filters .filters-slider-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  width: 100%;
}

form.filters .filters-slider-row input[type="range"] {
  flex: 1 1 12rem;
  min-width: min(100%, 10rem);
  max-width: 100%;
}

@media (min-width: 48rem) {
  form.filters .filters-slider-row input[type="range"] {
    flex: 0 0 60%;
    width: 60%;
    max-width: 60%;
    min-width: 0;
  }
}

form.filters .filters-slider-val {
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}

form.filters input,
form.filters select {
  width: 100%;
  max-width: 100%;
  min-height: 2.75rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
}

form.filters input[type="range"] {
  min-height: 0;
  height: 2.25rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
  accent-color: var(--accent);
  background: transparent;
  border: none;
}

form.filters select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

form.filters button {
  background: var(--accent);
  color: var(--accent-contrast);
  border: none;
  padding: 0.6rem 1.15rem;
  min-height: 2.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  flex: 0 0 auto;
}

form.filters button:hover {
  background: var(--accent-hover);
}

form.filters button:active {
  transform: scale(0.98);
}

.meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.search-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin: 0.75rem 0 1rem;
}

.search-pager button {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
}

.search-pager button:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.search-pager button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.search-pager-range {
  font-size: 0.85rem;
  color: var(--muted);
}

.search-pager .search-pager-sort {
  margin-left: auto;
  flex: 0 1 auto;
  max-width: 100%;
  min-width: 0;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  cursor: pointer;
}

.search-empty {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.5rem 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: var(--surface);
}

#search-pager-bottom {
  margin-top: 1rem;
}

/* 検索結果一覧: 取得中スケルトン */
li.item.search-item-skeleton {
  pointer-events: none;
}

li.item.search-item-skeleton:hover {
  border-color: var(--border);
}

.search-item-skel-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
}

.search-item-skeleton .item-thumb-placeholder.search-skel-shimmer,
.search-item-skeleton .search-skel-line,
.search-item-skeleton .search-skel-chip {
  background: linear-gradient(
    105deg,
    var(--bg) 0%,
    #e2e8f0 35%,
    #eef2f7 50%,
    #e2e8f0 65%,
    var(--bg) 100%
  );
  background-size: 220% 100%;
  animation: home-scroll-skel-gradient 1.35s ease-in-out infinite;
}

.search-skel-line {
  display: block;
  height: 0.72rem;
  border-radius: 5px;
  max-width: 100%;
}

.search-skel-line--title {
  height: 0.85rem;
  width: 72%;
}

.search-skel-line--addr {
  margin-top: 0.32rem;
  width: 48%;
  height: 0.68rem;
}

.search-skel-fees {
  margin-top: 0.38rem;
}

.search-skel-chip {
  display: inline-block;
  width: 4.5rem;
  height: 0.62rem;
  border-radius: 4px;
  vertical-align: middle;
}

@media (prefers-reduced-motion: reduce) {
  .search-item-skeleton .item-thumb-placeholder.search-skel-shimmer,
  .search-item-skeleton .search-skel-line,
  .search-item-skeleton .search-skel-chip {
    animation: none;
    background: var(--bg);
  }
}

ul.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

li.item {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

li.item:hover {
  border-color: var(--accent);
}

li.item a.item-link {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  color: inherit;
  text-decoration: none;
}

li.item a.item-link:hover {
  color: var(--text);
}

/* 検索一覧サムネ（相談所: 表示枠 4:3。画像は 1200×630 の thumb でも object-fit: cover で収める） */
.item-thumb-wrap {
  flex-shrink: 0;
  width: 5.25rem;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  align-self: center;
}

/* 記事一覧・関連記事: 一覧の枠は相談所と同じ 4:3（画像は 1200×630 でも object-fit: cover） */
.item-thumb-wrap.item-thumb-wrap--article {
  aspect-ratio: 4 / 3;
}

.item-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item-thumb-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: linear-gradient(145deg, #e8ecf2 0%, #dfe5ed 55%, #e8ecf2 100%);
}

.item-body {
  flex: 1;
  min-width: 0;
}

.item-body .name {
  font-weight: 700;
}

.item-body .addr {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.item-body .fees {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.item-fees-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1rem;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.item-fee-piece {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  white-space: nowrap;
}

.item-fee-label {
  font-weight: 700;
  color: var(--text);
}

.item-fee-val {
  font-variant-numeric: tabular-nums;
}

.item-body .item-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.45;
}

.item-body .item-date {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* 他ページで .name 単体を使う場合の互換 */
.name {
  font-weight: 700;
}

/* 結婚相談所一覧・記事一覧・記事下の同カテゴリ — サムネとテキストを上揃え */
ul.list li.item a.item-link {
  align-items: flex-start;
}

ul.list .item-thumb-wrap {
  align-self: flex-start;
}

/* スマホ: 一覧のタイトル・記事カードの補助テキストをやや小さく */
@media (max-width: 47.99rem) {
  ul.list .item-body .name {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  ul.list .item-body .item-desc {
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  ul.list .item-body .item-date {
    font-size: 0.75rem;
  }
}

.addr {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.fees {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.err {
  color: var(--danger);
}

/* 記事アイキャッチ（1200×630 と同比率・管理画面アップロードと一致） */
.article-eyecatch {
  position: relative;
  margin: 0.35rem 0 1.25rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  max-width: min(100%, 720px);
  aspect-ratio: 40 / 21;
}

.article-eyecatch img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  margin-top: 1rem;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-size: calc(1rem - 1px);
}

.site-wrap:has(.article-eyecatch) .article-body {
  margin-top: 0;
}

.article-body :first-child {
  margin-top: 0;
}

.article-body :last-child {
  margin-bottom: 0;
}

.article-body h2 {
  position: relative;
  font-size: calc(1.15rem + 1px);
  margin: 2.55rem 0 0.9rem;
  font-weight: 700;
}

/* h2 直上：装飾区切り（SVG） */
.article-body h2::before {
  content: "";
  display: block;
  width: 100%;
  max-width: min(28rem, 100%);
  height: 18px;
  margin: 0.4rem auto 1.1rem;
  background: url("/icons/article-h2-ornament.svg") no-repeat center / contain;
}

.article-body h3 {
  font-size: 1rem;
  margin: 2rem 0 0.4rem;
  font-weight: 700;
  padding-left: 0.65rem;
  border-left: 2px solid color-mix(in srgb, var(--accent) 40%, var(--border));
}

.article-body p {
  margin: 0.65rem 0;
  color: var(--text);
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
  color: var(--text);
}

.article-body a {
  color: var(--accent);
  font-weight: 400;
}

.article-body .agency-embed {
  margin: 1rem 0;
}

/* 記事本文：視覚ブレイク（画像なし） */
.article-body .article-callout {
  margin: 1.15rem 0;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  border-left-width: 3px;
  border-left-style: solid;
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.article-body .article-callout p {
  margin: 0.45rem 0;
  color: var(--text);
}

.article-body .article-callout p:first-child {
  margin-top: 0;
}

.article-body .article-callout p:last-child {
  margin-bottom: 0;
}

.article-body .article-callout__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.article-body .article-callout--tip {
  border-left-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 7%, var(--surface));
}

.article-body .article-callout--note {
  border-left-color: color-mix(in srgb, var(--muted) 55%, var(--border));
  background: color-mix(in srgb, var(--bg) 65%, var(--surface));
}

.article-body .article-callout--note .article-callout__label {
  color: var(--muted);
}

.article-body .article-callout--takeaway {
  border-left-color: color-mix(in srgb, var(--accent) 50%, var(--border));
  background: color-mix(in srgb, var(--accent) 5.5%, var(--surface));
}

.article-body blockquote {
  margin: 1.15rem 0;
  padding: 1rem 1.15rem 1rem 2.35rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: color-mix(in srgb, var(--muted) 9%, var(--surface));
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  color: var(--text);
  font-size: calc(1em + 1px);
  line-height: 1.55;
  position: relative;
}

.article-body blockquote::before {
  content: "\201C";
  position: absolute;
  left: 0.65rem;
  top: 0.55rem;
  font-size: 1.85rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  color: color-mix(in srgb, var(--muted) 55%, var(--border));
  pointer-events: none;
}

.article-body blockquote p {
  margin: 0.35rem 0;
}

.article-body blockquote > p:first-of-type {
  position: relative;
  padding-right: 1.35rem;
}

.article-body blockquote > p:first-of-type::after {
  content: "\201D";
  position: absolute;
  right: 0;
  bottom: 0.05em;
  font-size: 1.5rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  color: color-mix(in srgb, var(--muted) 55%, var(--border));
  pointer-events: none;
}

.article-body blockquote p:first-child {
  margin-top: 0;
}

.article-body blockquote p:last-child {
  margin-bottom: 0;
}

/* 引用元（marked では cite が p 内に入ることが多い） */
.article-body blockquote cite,
.article-body blockquote .article-blockquote-cite {
  display: block;
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
  font-size: 0.8125rem;
  font-style: normal;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.article-body blockquote p:has(cite) {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
}

.article-body blockquote p:has(cite) cite,
.article-body blockquote p:has(cite) .article-blockquote-cite {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article-body blockquote cite a,
.article-body blockquote .article-blockquote-cite a {
  color: var(--accent);
  font-weight: 400;
  text-decoration: none;
}

.article-body blockquote cite a:hover,
.article-body blockquote .article-blockquote-cite a:hover {
  text-decoration: underline;
}

.article-body details.article-details {
  margin: 1.15rem 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.article-body details.article-details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  cursor: pointer;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.4;
  list-style: none;
  background: color-mix(in srgb, var(--bg) 55%, var(--surface));
}

.article-body details.article-details > summary::-webkit-details-marker {
  display: none;
}

.article-body details.article-details > summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  line-height: 1.35rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
}

.article-body details.article-details[open] > summary::after {
  content: "−";
}

.article-body details.article-details .article-details__body {
  padding: 0.75rem 0.9rem 0.95rem;
  border-top: 1px solid var(--border);
  font-size: inherit;
}

.article-body details.article-details .article-details__body p {
  margin: 0.5rem 0;
  color: var(--text);
}

.article-body details.article-details .article-details__body p:first-child {
  margin-top: 0;
}

.article-body details.article-details .article-details__body p:last-child {
  margin-bottom: 0;
}

.article-body ol.article-steps {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  counter-reset: article-step;
}

.article-body ol.article-steps > li {
  position: relative;
  counter-increment: article-step;
  margin: 0 0 0.8rem;
  padding-left: 2.4rem;
  min-height: 1.65rem;
  line-height: 1.55;
  color: var(--text);
}

.article-body ol.article-steps > li:last-child {
  margin-bottom: 0;
}

.article-body ol.article-steps > li::before {
  content: counter(article-step);
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 1.55rem;
  height: 1.55rem;
  line-height: 1.55rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-contrast);
  background: color-mix(in srgb, var(--accent) 90%, #1a1f26);
  border-radius: 50%;
}

/* 記事一覧: カテゴリバッジ */
.article-cat-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0.85rem 0 1rem;
}

.article-cat-badge {
  margin: 0;
  padding: 0.32rem 0.7rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.article-cat-badge:hover:not(.is-active) {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
}

.article-cat-badge.is-active {
  color: var(--accent-contrast);
  background: var(--accent);
  border-color: var(--accent);
}

.article-cat-badge:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* 記事一覧（検索一覧と同じ ul.list / li.item。空状態のみ専用） */
.article-index-list li.item.empty {
  border-style: dashed;
}

.article-index-list li.item.empty .empty-inner {
  margin: 0;
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* 店舗詳細 */
.agency-screenshot-hero {
  margin: 0.65rem 0 1.1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  aspect-ratio: 40 / 21;
  max-width: min(100%, 720px);
}

.agency-screenshot-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agency-screenshot-placeholder {
  margin: 0.65rem 0 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 40 / 21;
  max-width: min(100%, 720px);
  border-radius: 10px;
  border: 1px dashed var(--border);
  background: var(--bg);
  color: var(--muted);
  font-size: 0.9rem;
}

.agency-screenshot-placeholder-label {
  font-weight: 700;
}

/* 相談所詳細：全データ表示 */
.agency-detail-all {
  margin-top: 0.5rem;
}

/* 公式サイト CTA（agency_info「Webサイト」・IBJ ではない） */
.agency-official-site-cta-wrap {
  margin: 0;
  text-align: center;
}

.agency-official-site-cta-wrap--before {
  margin: 0 0 2rem;
  padding: 0.35rem 0 0.5rem;
}

.agency-official-site-cta-wrap--after {
  margin: 0.75rem 0 2rem;
  padding: 0.5rem 0 0.15rem;
}

.agency-official-site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.6rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  color: var(--accent-contrast);
  background: var(--accent);
  border-radius: 8px;
  border: none;
  box-sizing: border-box;
}

.agency-official-site-cta:hover {
  background: var(--accent-hover);
}

.agency-official-site-cta:active {
  transform: scale(0.98);
}

/* 詳細ページ下部・同エリア一覧（検索結果と同じ ul.list / li.item） */
.agency-same-area {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.agency-same-area-heading {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.agency-detail-section {
  margin-bottom: 1.75rem;
}

.agency-detail-section h2 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.agency-detail-lead {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.agency-detail-dl {
  margin: 0;
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: minmax(7.5rem, 11rem) 1fr;
  gap: 0.55rem 1.15rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.agency-detail-dl dt {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--muted);
}

.agency-detail-dl dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  min-width: 0;
  word-break: break-word;
}

/* 住所行の直上の区切り（相談所詳細・agency_info dl） */
.agency-detail-dl dt.agency-detail-dt-rule {
  grid-column: 1 / -1;
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  font-size: 0;
}

.agency-detail-dl dd.agency-detail-dd-rule {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.5rem 0 0.15rem;
}

.agency-detail-dl .agency-detail-hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

.agency-detail-dl--compact {
  padding: 0.65rem 0.85rem;
  margin-top: 0.35rem;
  grid-template-columns: minmax(6.5rem, 9rem) 1fr;
}

/* スマホ: dt:dd ≈ 3:7（dd が読みやすい幅になるよう dt の固定幅をやめる） */
@media (max-width: 47.99rem) {
  .agency-detail-dl {
    grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
    gap: 0.5rem 0.75rem;
  }

  .agency-detail-dl--compact {
    grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  }
}

.agency-plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1rem 1rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.agency-plan-card:last-child {
  margin-bottom: 0;
}

.agency-plan-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
}

.agency-plan-sub {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--muted);
}

.agency-plan-sub:first-of-type {
  margin-top: 0;
}

.agency-plan-body {
  font-size: 0.9rem;
}

/*
 * PLAN_INNER_PANEL_V2 — プラン内「料金 / お見合い」ブロック（ニュートラル・低装飾）。
 * 差し戻し: このコメントから「agency-multiline」直前まで削除。
 */
.agency-plan-card h4.agency-plan-sub:not(:first-of-type) {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.agency-plan-card .agency-detail-dl {
  background: #fbfbfb;
  border: none;
  border-radius: 8px;
  box-shadow: none;
  gap: 0.5rem 1rem;
}

.agency-plan-card .agency-detail-dl dt {
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.agency-plan-card .agency-detail-dl--compact {
  padding: 0.75rem 1rem;
  margin-top: 0.3rem;
}

.agency-plan-card .agency-plan-body {
  margin-top: 0.3rem;
  padding: 0.75rem 1rem;
  background: #fbfbfb;
  border: none;
  border-radius: 8px;
  line-height: 1.55;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
}

.agency-multiline {
  white-space: normal;
  line-height: 1.55;
}

.agency-json-chunk {
  margin: 0;
  padding: 0.5rem 0.65rem;
  font-size: 0.75rem;
  line-height: 1.45;
  overflow-x: auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  max-height: 20rem;
  overflow-y: auto;
}

.agency-map-wrap {
  margin-top: 0.15rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}

.agency-map-iframe {
  display: block;
  width: 100%;
  height: min(280px, 50vw);
  min-height: 200px;
  border: 0;
}

code {
  font-size: 0.88em;
  background: var(--bg);
  padding: 0.12em 0.35em;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* 記事内 結婚相談所カード（article-embeds.js が付与するクラス） */
.agency-embed-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.agency-embed-name {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.agency-embed-name a {
  color: var(--accent);
  text-decoration: none;
}

.agency-embed-name a:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

.agency-embed-meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.agency-embed-error {
  color: var(--danger);
  font-size: 0.85rem;
}

.article-body .agency-embed-card {
  font-size: calc(0.9rem - 1px);
}

.article-body .agency-embed-meta,
.article-body .agency-embed-error {
  font-size: calc(0.85rem - 1px);
}

/* ---------- トップページ ---------- */

.home-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  align-self: stretch;
  flex-shrink: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* aspect-ratio + max-height だと高さ上限時に「幅だけ」狭まり左寄りに見えるため、幅100%固定で高さだけ MV（1920:640）に合わせる */
/* 画像読み込み前は検索・トップ横スクロールのスケルトンと同系のシマー */
.home-hero-media {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  height: min(420px, 52vh, calc(100vw * 640 / 1920));
  min-height: 200px;
  background: linear-gradient(
    105deg,
    var(--bg) 0%,
    #e2e8f0 35%,
    #eef2f7 50%,
    #e2e8f0 65%,
    var(--bg) 100%
  );
  background-size: 220% 100%;
  animation: home-scroll-skel-gradient 1.35s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-media {
    animation: none;
    background: var(--bg);
  }
}

.home-hero-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.8);
}

.site-wrap.home {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-section {
  margin-top: 0;
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-bottom: 0.25rem;
}

.home-section:first-of-type {
  padding-top: 0;
}

.home-section h2 {
  font-size: clamp(1.1rem, 2.8vw, 1.3rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
  line-height: 1.35;
}

.home-section-lead {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 40rem;
}

.home-search-link-wrap {
  margin: 0;
  text-align: right;
}

.home-search-text-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.home-search-sub-more {
  margin: 0.55rem 0 0;
  text-align: right;
}

.home-search-text-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.home-search-text-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.home-search-subsections {
  margin-top: 0.25rem;
  margin-bottom: 0.35rem;
}

.home-search-sub {
  margin-top: 1.15rem;
}

.home-search-sub:first-child {
  margin-top: 0.5rem;
}

.home-search-subheading {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.55rem;
  color: var(--text);
  line-height: 1.35;
}

.home-area-tabs {
  margin-top: 0.15rem;
}

.home-area-tablist {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.15rem 0.25rem;
  margin: 0 0 0.55rem;
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.home-area-tab {
  margin: 0 0 -1px;
  padding: 0.42rem 0.55rem 0.38rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 6px 6px 0 0;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.home-area-tab:hover {
  color: var(--text);
  background: rgba(194, 24, 91, 0.06);
}

.home-area-tab[aria-selected="true"] {
  font-weight: 700;
  color: var(--accent);
  background: rgba(194, 24, 91, 0.05);
  border-bottom-color: var(--accent);
}

.home-area-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 40rem) {
  .home-area-tablist {
    flex-wrap: nowrap;
    gap: 0.2rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: thin;
    scrollbar-color: var(--breadcrumb-caret) transparent;
    margin-left: calc(-1 * var(--site-pad));
    margin-right: calc(-1 * var(--site-pad));
    padding-left: var(--site-pad);
    padding-right: var(--site-pad);
  }

  .home-area-tablist::-webkit-scrollbar {
    height: 4px;
  }

  .home-area-tablist::-webkit-scrollbar-thumb {
    background: var(--breadcrumb-caret);
    border-radius: 999px;
  }

  .home-area-tab {
    flex-shrink: 0;
  }
}

.home-area-panels {
  min-height: 2.5rem;
}

.home-area-panel {
  margin: 0;
}

.home-area-muni-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.home-area-muni-badge {
  display: inline-block;
  padding: 0.32rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.home-area-muni-badge:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
}

.home-area-muni-badge:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.home-fee-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

/* トップ：選び方・特集の横スクロールカード */
.home-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  margin: 0 -0.25rem;
  padding-bottom: 0.15rem;
}

.home-scroll-track {
  display: flex;
  gap: 0.85rem;
  padding: 0.25rem 0.5rem 0.65rem;
  scroll-snap-type: x mandatory;
}

.home-scroll-card {
  flex: 0 0 min(78vw, 260px);
  scroll-snap-align: start;
  margin: 0;
}

.home-scroll-card a {
  display: block;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.home-scroll-card a:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 10px rgba(194, 24, 91, 0.14);
}

.home-scroll-card a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.home-scroll-card a:hover h3 {
  color: var(--accent);
}

/* トップ横スクロール: 記事アイキャッチ・店舗 thumb とも 1200:630 系 */
.home-scroll-thumb {
  aspect-ratio: 40 / 21;
  overflow: hidden;
  background: var(--border);
}

.home-scroll-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-scroll-card-body {
  padding: 0.75rem 0.85rem 0.9rem;
}

.home-scroll-card h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  transition: color 0.15s ease;
}

.home-scroll-desc {
  margin: 0.4rem 0 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--muted);
}

/* ピックアップ: 所在地と月会費を別行（記事カードの desc マージンはそのまま） */
.home-pickup-meta {
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.home-pickup-meta .home-scroll-desc {
  margin-top: 0;
}

/* トップ featured 取得待ち: カード型スケルトン */
@keyframes home-scroll-skel-gradient {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.home-scroll-card--skeleton {
  pointer-events: none;
}

.home-scroll-card-skel-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.home-scroll-card--skeleton .home-scroll-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  align-items: stretch;
}

.home-scroll-card--skeleton .home-scroll-thumb.home-scroll-skel-shimmer,
.home-scroll-card--skeleton .home-scroll-skel-line {
  background: linear-gradient(
    105deg,
    var(--bg) 0%,
    #e2e8f0 35%,
    #eef2f7 50%,
    #e2e8f0 65%,
    var(--bg) 100%
  );
  background-size: 220% 100%;
  animation: home-scroll-skel-gradient 1.35s ease-in-out infinite;
}

.home-scroll-skel-line {
  display: block;
  height: 0.7rem;
  border-radius: 5px;
  max-width: 100%;
}

.home-scroll-skel-line--lg {
  height: 0.82rem;
  width: 88%;
}

.home-scroll-skel-line--sm {
  width: 62%;
}

@media (prefers-reduced-motion: reduce) {
  .home-scroll-card--skeleton .home-scroll-thumb.home-scroll-skel-shimmer,
  .home-scroll-card--skeleton .home-scroll-skel-line {
    animation: none;
    background: var(--bg);
  }
}
