@charset "UTF-8";
/* =========================================================
   TASTEM | News & Topics（一覧 / 詳細）
   下層デザインシステム（lower.css）を継承：
   ダークヒーロー → 白ベース本文 → ダークCTA / 定規・1mm・オレンジ差し色
   ※ CMS流し込み前提のテンプレート。掲載文言はサンプル。
   ========================================================= */

/* =========================================================
   一覧：しぼり込み（カテゴリ / タグ / 年・月・並び）
   ========================================================= */
.lp .news-section { padding: 84px 0 120px; }

.lp .news-filter {
  display: grid;
  gap: 14px;
  margin-bottom: 48px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.lp .news-filter__row { display: flex; align-items: flex-start; gap: 10px 18px; }
.lp .news-filter__cap {
  position: relative;
  flex: none;
  width: 86px;
  padding-left: 11px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 40px;
  color: var(--ink);
}
.lp .news-filter__cap::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 3px; height: 13px;
  background: var(--orange);
  transform: translateY(-50%);
}
.lp .news-filter__items { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; }

/* カテゴリ（オレンジのピル） */
.lp .news-filter__item {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-sub);
  background: none;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.lp .news-filter__item:hover { color: var(--ink); border-color: var(--line-2); }
.lp .news-filter__item.is-active {
  color: #000;
  background: var(--orange);
  border-color: var(--orange);
}

/* タグ（カテゴリと区別するため角丸小・墨のベタ塗りで反転） */
.lp .news-tagbtn {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  background: var(--paper-2);
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.lp .news-tagbtn::before { content: "#"; margin-right: 4px; color: var(--orange-d); font-weight: 700; }
.lp .news-tagbtn[data-tag=""]::before { content: none; }
.lp .news-tagbtn:hover { background: var(--paper-3); border-color: var(--line-2); }
.lp .news-tagbtn.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.lp .news-tagbtn.is-active::before { color: var(--orange); }
.lp .news-tagbtn--sm { height: 28px; padding: 0 10px; font-size: 12px; }

/* アーカイブ（年・月）＋並び順 */
.lp .news-filter__row--archive { align-items: center; }
.lp .news-filter__row--archive .news-filter__items { gap: 8px 16px; }
/* 年・月と並び順の区切り（定規の一目盛り） */
.lp .news-filter__sep { width: 1px; height: 20px; background: var(--line-2); }
.lp .news-select { position: relative; display: inline-flex; align-items: center; gap: 8px; }
.lp .news-select__cap { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--ink); }
.lp .news-select::after {
  content: "";
  position: absolute; right: 14px; top: 50%;
  width: 7px; height: 7px;
  border-right: 2px solid var(--orange-d);
  border-bottom: 2px solid var(--orange-d);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.lp .news-select select {
  -webkit-appearance: none; appearance: none;
  height: 40px;
  padding: 0 36px 0 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--paper-2);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: box-shadow 0.3s, background 0.3s;
}
.lp .news-select select:hover { background: var(--paper-3); }
.lp .news-select select:focus-visible { outline: none; background: #fff; box-shadow: inset 0 0 0 1.5px var(--orange), 0 0 0 3px rgba(249,156,0,0.14); }

.lp .news-filter__reset {
  font-family: inherit; font-size: 13px; color: var(--ink-2);
  background: none; border: none; padding: 0; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-2);
  transition: color 0.3s, text-decoration-color 0.3s;
}
.lp .news-filter__reset:hover { color: var(--orange-d); text-decoration-color: var(--orange-d); }
.lp .news-filter__reset:disabled { visibility: hidden; }

.lp .news-filter__count { margin: 0 0 0 auto; font-size: 13px; color: var(--ink-2); white-space: nowrap; }
.lp .news-filter__count b { font-family: var(--font-en); font-size: 16px; font-weight: 600; margin: 0 2px; }

@media (max-width: 768px) {
  .lp .news-filter__row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .lp .news-filter__cap { width: auto; line-height: 1.6; }
  .lp .news-filter__cap::before { height: 11px; }
  .lp .news-filter__count { margin-left: 0; }
  .lp .news-filter__sep { display: none; }   /* 折り返すため区切り線は不要 */
}
@media (max-width: 600px) {
  .lp .news-section { padding: 52px 0 96px; }
  .lp .news-filter { margin-bottom: 32px; }
  .lp .news-filter__item { height: 36px; padding: 0 14px; font-size: 13px; }
  .lp .news-select { gap: 6px; }
  .lp .news-select select { height: 38px; padding: 0 32px 0 12px; font-size: 13.5px; }
}

/* =========================================================
   一覧：カードグリッド
   ========================================================= */
.lp .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}
@media (max-width: 900px) { .lp .news-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; } }
@media (max-width: 560px) { .lp .news-grid { grid-template-columns: 1fr; gap: 32px; } }

.lp .news-card { display: block; color: inherit; }
.lp .news-card[hidden] { display: none; }   /* しぼり込みで非表示（news.js） */
.lp .news-card__link { display: block; color: inherit; }
.lp .news-card__ph {
  position: relative;
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
  overflow: hidden;
  background: var(--paper-3);
}
.lp .news-card__ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--lp-ease); }
.lp .news-card:hover .news-card__ph img { transform: scale(1.06); }
/* 画像未設定時のダミー（定規目盛りの淡い地） */
.lp .news-card__ph--empty::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(20,20,25,0.05) 0 1px, transparent 1px 26px),
    var(--paper-3);
}
.lp .news-card__ph--empty::after {
  content: "TASTEM"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 12px; letter-spacing: 0.4em; color: rgba(20,20,25,0.16);
}

.lp .news-card__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.lp .news-card__date {
  font-family: var(--font-en);
  font-size: 13px; letter-spacing: 0.06em; color: var(--ink-muted);
}
.lp .news-card__cat {
  display: inline-flex; align-items: center; height: 24px; padding: 0 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; color: var(--orange-d);
  border: 1px solid rgba(249,156,0,0.5); border-radius: 100px;
}
.lp .news-card__title {
  font-size: 16px; font-weight: 700; line-height: 1.65; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  transition: color 0.3s;
}
.lp .news-card:hover .news-card__title { color: var(--orange-d); }

.lp .news-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }

/* 該当なし */
.lp .news-empty {
  margin: 0; padding: 64px 0;
  text-align: center; font-size: 15px; color: var(--ink-2);
}

/* =========================================================
   一覧：ページネーション
   ========================================================= */
.lp .news-pager {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-top: 80px;
}
.lp .news-pager:empty { margin-top: 0; }
.lp .news-pager__num,
.lp .news-pager__ctrl {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 8px;
  font-family: var(--font-en); font-size: 14px; color: var(--ink-sub);
  background: none; cursor: pointer;
  border: 1px solid var(--line); transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.lp .news-pager__num:hover,
.lp .news-pager__ctrl:hover { color: var(--ink); border-color: var(--line-2); }
.lp .news-pager__num.is-current {
  color: #000; background: var(--orange); border-color: var(--orange); font-weight: 700; pointer-events: none;
}
.lp .news-pager__dots { color: var(--ink-sub); padding: 0 4px; }
.lp .news-pager__ctrl { gap: 8px; padding: 0 18px; font-family: var(--font-base); font-size: 13px; }
.lp .news-pager__ctrl[aria-disabled="true"] { opacity: 0.35; pointer-events: none; }
.lp .news-pager__ctrl .ar { position: relative; width: 16px; height: 8px; }
.lp .news-pager__ctrl .ar::before { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: currentColor; transform: translateY(-50%); }
.lp .news-pager__ctrl--prev .ar::after { content: ""; position: absolute; left: 0; top: 50%; width: 7px; height: 7px; border-left: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.lp .news-pager__ctrl--next .ar::after { content: ""; position: absolute; right: 0; top: 50%; width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: translateY(-50%) rotate(45deg); }

@media (max-width: 600px) {
  .lp .news-pager { margin-top: 56px; gap: 6px; }
  .lp .news-pager__num, .lp .news-pager__ctrl { min-width: 40px; height: 40px; }
  .lp .news-pager__ctrl { padding: 0 12px; }
  .lp .news-pager__ctrl span.txt { display: none; }
}

/* 詳細：ヘッダー補正（白基調のため初期状態から黒文字ロゴに固定。
   スクロール後の frosted 白地は既存 is-scrolled がそのまま担う） */
.lp.news-detail-page .header--lower .gnav__en,
.lp.news-detail-page .header--lower .header__logo { color: var(--ink); }
.lp.news-detail-page .header--lower .gnav__jp { color: var(--ink-muted); }
.lp.news-detail-page .header--lower .sp-hamburger__line { background: var(--ink); }
.lp.news-detail-page .header--lower .header__logo-img--light { display: none; }
.lp.news-detail-page .header--lower .header__logo-img--dark { display: block; }

/* 詳細：パンくず（画像ヒーロー廃止 → 白背景。固定ヘッダーの下に見やすく配置） */
.lp .news-crumb { background: var(--paper); padding-top: 128px; }
.lp .news-crumb__index {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px 12px;
  margin: 0;
  font-family: var(--font-en); font-size: 12.5px; letter-spacing: 0.08em; color: var(--ink-muted);
}
.lp .news-crumb__index a {
  color: var(--ink); font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px;
  text-decoration-color: var(--line-2);
  transition: color 0.3s, text-decoration-color 0.3s;
}
.lp .news-crumb__index a:hover { color: var(--orange-d); text-decoration-color: var(--orange-d); }
.lp .news-crumb__index .sep { color: var(--line-2); }
.lp .news-crumb__index .cur {
  color: var(--ink-muted); font-weight: 400;
  max-width: 52vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
@media (max-width: 768px) {
  .lp .news-crumb { padding-top: 92px; }
  .lp .news-crumb__index { font-size: 11.5px; }
  .lp .news-crumb__index .cur { max-width: 58vw; }
}

/* =========================================================
   詳細：記事ヘッダー
   ========================================================= */
.lp .article { padding: 46px 0 120px; }
.lp .article__inner { max-width: 860px; margin: 0 auto; }

.lp .article__head { padding-bottom: 34px; margin-bottom: 44px; border-bottom: 1px solid var(--line); }
.lp .article__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.lp .article__date { font-family: var(--font-en); font-size: 14px; letter-spacing: 0.06em; color: var(--ink-muted); }
.lp .article__cat {
  display: inline-flex; align-items: center; height: 26px; padding: 0 14px;
  font-size: 12px; font-weight: 700; color: var(--orange-d);
  border: 1px solid rgba(249,156,0,0.5); border-radius: 100px;
}
.lp .article__title {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 40px); font-weight: 700; line-height: 1.45; letter-spacing: 0.01em; color: var(--ink);
}

/* 記事本文（wysiwyg 風） */
.lp .article__body > * { margin: 0; }
.lp .article__body > * + * { margin-top: 26px; }
.lp .article__body p { font-size: 16px; line-height: 2.05; color: var(--ink-2); }
.lp .article__lead { font-size: 17px !important; font-weight: 700; color: var(--ink) !important; line-height: 1.9 !important; }

.lp .article__figure { margin: 44px 0; }
.lp .article__figure .ph { aspect-ratio: 16 / 9; }
.lp .article__figure figcaption { margin-top: 12px; font-size: 12.5px; color: var(--ink-muted); letter-spacing: 0.02em; }

.lp .article__h2 {
  position: relative; margin: 56px 0 22px; padding-left: 20px;
  font-size: clamp(20px, 2vw, 26px); font-weight: 700; line-height: 1.5; color: var(--ink);
}
.lp .article__h2::before { content: ""; position: absolute; left: 0; top: 0.18em; width: 4px; height: 1.05em; background: var(--orange); }

.lp .article__list { margin: 0; padding: 0; display: grid; gap: 12px; }
.lp .article__list li { position: relative; padding-left: 24px; font-size: 15.5px; line-height: 1.85; color: var(--ink-2); }
.lp .article__list li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 7px; height: 7px; background: var(--orange); transform: rotate(45deg); }

.lp .article__note {
  margin: 40px 0; padding: 26px 30px;
  background: var(--paper-2); border: 1px solid var(--line); border-left: 3px solid var(--orange);
  font-size: 14.5px; line-height: 1.9; color: var(--ink-sub);
}

@media (max-width: 600px) {
  .lp .article { padding: 28px 0 96px; }
  .lp .article__body p { font-size: 15.5px; }
}

/* =========================================================
   詳細：ショート動画（縦型 9:16）
   ========================================================= */
.lp .article-short { margin: 44px 0; }
.lp .article-short__frame {
  position: relative;
  width: min(340px, 74vw);
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
}
/* 縁に定規の目盛りを1本（ブランドモチーフ） */
.lp .article-short__frame::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--orange);
  pointer-events: none;
}
.lp .article-short__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp .article-short figcaption {
  margin-top: 12px; text-align: center;
  font-size: 12.5px; color: var(--ink-muted); letter-spacing: 0.02em;
}

/* =========================================================
   詳細：ロング動画（YouTube 埋め込み 16:9／再生前は自前の待ち受け画面）
   ========================================================= */
.lp .article-embed { margin: 44px 0; }
.lp .article-embed__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 26px),
    var(--d-bg);
}
.lp .article-embed__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.lp .article-embed__play {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  width: 100%;
  font-family: inherit;
  background: none; border: none; cursor: pointer;
}
.lp .article-embed__icon {
  position: relative;
  width: 68px; height: 68px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  transition: background 0.4s var(--lp-ease), border-color 0.4s;
}
.lp .article-embed__icon::before {
  content: "";
  position: absolute; top: 50%; left: 52%;
  width: 0; height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  transform: translate(-50%, -50%);
  transition: border-left-color 0.4s;
}
.lp .article-embed__txt { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: #fff; }
.lp .article-embed__play:hover .article-embed__icon { background: var(--orange); border-color: var(--orange); }
.lp .article-embed__play:hover .article-embed__icon::before { border-left-color: #000; }
.lp .article-embed figcaption { margin-top: 12px; font-size: 12.5px; color: var(--ink-muted); letter-spacing: 0.02em; }

@media (max-width: 600px) {
  .lp .article-embed__icon { width: 56px; height: 56px; }
  .lp .article-embed__icon::before { border-left-width: 12px; border-top-width: 8px; border-bottom-width: 8px; }
}

/* =========================================================
   詳細：この記事のタグ
   ========================================================= */
.lp .article-tags { margin-top: 56px; padding-top: 30px; border-top: 1px solid var(--line); }
.lp .article-tags__cap,
.lp .article-archive__cap {
  position: relative;
  margin: 0 0 14px;
  padding-left: 11px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; color: var(--ink);
}
.lp .article-tags__cap::before,
.lp .article-archive__cap::before {
  content: ""; position: absolute; left: 0; top: 0.2em;
  width: 3px; height: 1em; background: var(--orange);
}
.lp .article-tags__list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.lp .article-tag {
  display: inline-flex; align-items: center; height: 32px; padding: 0 12px;
  font-size: 13px; color: var(--ink-2);
  background: var(--paper-2); border: 1px solid transparent; border-radius: 2px;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.lp .article-tag::before { content: "#"; margin-right: 4px; color: var(--orange-d); font-weight: 700; }
.lp .article-tag:hover { color: #fff; background: var(--ink); border-color: var(--ink); }
.lp .article-tag:hover::before { color: var(--orange); }

/* =========================================================
   詳細：アーカイブ（年・月から一覧へ）
   ========================================================= */
.lp .article-archive { margin-top: 34px; }
.lp .article-archive__rows { display: grid; gap: 10px; }
.lp .article-archive__row {
  display: flex; align-items: baseline; gap: 8px 20px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.lp .article-archive__year {
  flex: none; width: 84px;
  font-family: var(--font-en); font-size: 15px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink);
  transition: color 0.3s;
}
.lp .article-archive__year:hover { color: var(--orange-d); }
.lp .article-archive__months { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.lp .article-archive__months a {
  font-size: 13.5px; color: var(--ink-2);
  transition: color 0.3s;
}
.lp .article-archive__months a:hover { color: var(--orange-d); }

@media (max-width: 600px) {
  .lp .article-tags { margin-top: 44px; }
  .lp .article-archive__row { flex-direction: column; gap: 8px; }
  .lp .article-archive__year { width: auto; }
}

/* =========================================================
   詳細：前後ナビ
   ========================================================= */
.lp .article-nav {
  max-width: 860px; margin: 0 auto; padding: 40px 0 0;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
  border-top: 1px solid var(--line);
}
.lp .article-nav__link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--ink-sub); transition: color 0.3s;
}
.lp .article-nav__link:hover { color: var(--orange-d); }
.lp .article-nav__link--prev { justify-self: start; }
.lp .article-nav__link--next { justify-self: end; }
.lp .article-nav__link[aria-disabled="true"] { opacity: 0.3; pointer-events: none; }
.lp .article-nav__ar { position: relative; width: 22px; height: 8px; flex: none; }
.lp .article-nav__ar::before { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: currentColor; transform: translateY(-50%); }
.lp .article-nav__link--prev .article-nav__ar::after { content: ""; position: absolute; left: 0; top: 50%; width: 8px; height: 8px; border-left: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.lp .article-nav__link--next .article-nav__ar::after { content: ""; position: absolute; right: 0; top: 50%; width: 8px; height: 8px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.lp .article-nav__index {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px; font-family: var(--font-en); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); border: 1px solid var(--line-2); border-radius: 100px; transition: 0.3s;
}
.lp .article-nav__index:hover { color: var(--orange-d); border-color: var(--orange); }
.lp .article-nav__index .dots { display: flex; gap: 3px; }
.lp .article-nav__index .dots span { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }

@media (max-width: 600px) {
  .lp .article-nav { grid-template-columns: 1fr 1fr; gap: 14px; }
  .lp .article-nav__index { grid-column: 1 / -1; order: -1; }
  .lp .article-nav__link span.txt { font-size: 13px; }
}

/* =========================================================
   WordPress エディタ出力（.article__body 内のプレーンタグ）
   静的HTMLの article__h2 / article__list 等と同じ見た目を適用
   ========================================================= */
.lp .article__body h2,
.lp .article__body h3 {
  position: relative; margin: 56px 0 22px; padding-left: 20px;
  font-size: clamp(20px, 2vw, 26px); font-weight: 700; line-height: 1.5; color: var(--ink);
}

.lp .article__body h3 { font-size: clamp(18px, 1.8vw, 22px); }

.lp .article__body h2::before,
.lp .article__body h3::before {
  content: ""; position: absolute; left: 0; top: 0.18em; width: 4px; height: 1.05em; background: var(--orange);
}

.lp .article__body ul:not([class]) { margin: 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.lp .article__body ul:not([class]) li { position: relative; padding-left: 24px; font-size: 15.5px; line-height: 1.85; color: var(--ink-2); }
.lp .article__body ul:not([class]) li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 7px; height: 7px; background: var(--orange); transform: rotate(45deg); }

.lp .article__body ol:not([class]) { margin: 0; padding-left: 1.5em; display: grid; gap: 12px; }
.lp .article__body ol:not([class]) li { font-size: 15.5px; line-height: 1.85; color: var(--ink-2); }

.lp .article__body figure { margin: 44px 0; }
.lp .article__body figure img { width: 100%; height: auto; display: block; }
.lp .article__body figcaption { margin-top: 12px; font-size: 12.5px; color: var(--ink-muted); letter-spacing: 0.02em; }

.lp .article__body a { color: var(--orange-d); text-decoration: underline; }

.lp .article__body video { max-width: 100%; height: auto; display: block; }
