/* ============================================================
   さっぽろ大交流会 2026 PLAYBACK（振り返りページ）
   世界観: さっぽろ大交流会DNA = 北海道の夏 × リベカラー
   （オレンジ×グリーン×クリーム、清潔感・伝達力優先）
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
html, body { overflow-x: clip; }
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: "palt";
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol, figure { list-style: none; }

:root {
  --orange: #E8793B;
  --orange-deep: #D4622A;
  --orange-light: #FFF0E6;
  --green: #4CAF93;
  --green-deep: #2E7D6A;
  --green-light: #E8F5F0;
  --teal: #128187;
  --ink: #333333;
  --ink-soft: #666666;
  --ink-muted: #9C8F82;
  --bg: #FFFAF5;
  --bg-white: #FFFFFF;
  --line: #F0E6DC;
  --radius: 18px;
  --max: 1080px;
  --en: 'Inter', 'Noto Sans JP', sans-serif;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.pc-only { display: none; }
.sp-only { display: inline; }
@media (min-width: 768px) {
  .pc-only { display: inline; }
  .sp-only { display: none; }
}

/* ===== 共通パーツ ===== */
.section { padding: 88px 0; }
.section__label {
  font-family: var(--en);
  font-size: 13px; font-weight: 800; letter-spacing: 0.22em;
  color: var(--orange-deep);
  margin-bottom: 10px;
}
.section__label::before { content: "✦ "; color: var(--green); }
.section__title {
  font-size: clamp(26px, 4.6vw, 40px);
  font-weight: 900; line-height: 1.35;
  margin-bottom: 18px;
}
.section__lead { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 44px; }
.section__label--light { color: #FFD9BF; }
.section__label--light::before { color: #9FE0CB; }
.section__title--light { color: #fff; }
.section__lead--light { color: rgba(255, 255, 255, 0.85); }

.btn {
  display: inline-block;
  font-weight: 800; font-size: 15.5px;
  padding: 15px 34px; border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 6px 18px rgba(232, 121, 59, 0.35);
}
.btn--primary:hover { box-shadow: 0 8px 24px rgba(232, 121, 59, 0.45); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.9); color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--green {
  background: var(--green-deep); color: #fff;
  box-shadow: 0 6px 18px rgba(46, 125, 106, 0.3);
}

/* スクロールで現れる */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.on { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
/* ?noanim（スクリーンショット用）: すべて即時表示 */
html.noanim { scroll-behavior: auto; }
html.noanim .rv { opacity: 1; transform: none; transition: none; }
html.noanim .marquee__track { animation: none; }
html.noanim .hero__video { display: none; }
html.noanim .hero { min-height: 680px; }

/* ===== ナビ ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(255, 250, 245, 0.88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(240, 230, 220, 0.7);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 13px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav__logo { font-weight: 900; font-size: 15px; white-space: nowrap; }
.nav__logo span { color: var(--orange-deep); font-family: var(--en); }
.nav__links { display: flex; gap: 4px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.nav__links a {
  font-size: 12.5px; font-weight: 700; color: var(--ink-soft);
  padding: 6px 11px; border-radius: 999px; white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav__links a:hover { background: var(--orange-light); color: var(--orange-deep); }

/* ===== ヒーロー ===== */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  padding: 130px 24px 90px;
  overflow: hidden; isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__video { width: 100%; height: 100%; object-fit: cover; }
.hero__poster-fallback { display: none; width: 100%; height: 100%; object-fit: cover; }
html.noanim .hero__poster-fallback { display: block; position: absolute; inset: 0; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.9) 0%, rgba(255, 250, 245, 0.62) 45%, rgba(255, 250, 245, 0.95) 100%),
    radial-gradient(55% 55% at 82% 18%, rgba(232, 121, 59, 0.16), transparent 70%),
    radial-gradient(50% 50% at 12% 85%, rgba(76, 175, 147, 0.18), transparent 70%);
}
.hero__inner { max-width: var(--max); margin: 0 auto; width: 100%; position: relative; }
.hero__eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.14em;
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 18px; border-radius: 999px;
  margin-bottom: 26px;
  box-shadow: 0 4px 14px rgba(46, 125, 106, 0.14);
}
.hero__ghost {
  position: absolute; top: -18px; right: -8px;
  font-family: var(--en); font-weight: 800;
  font-size: clamp(60px, 12vw, 150px);
  letter-spacing: 0.02em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(232, 121, 59, 0.18);
  user-select: none; pointer-events: none;
}
.hero__title {
  font-size: clamp(34px, 6.4vw, 62px);
  font-weight: 900; line-height: 1.3;
  letter-spacing: 0.005em;
  margin-bottom: 26px;
  text-shadow: 0 2px 24px rgba(255, 250, 245, 0.65);
}
.hero__accent {
  background: linear-gradient(115deg, var(--orange) 10%, var(--orange-deep) 55%, var(--green-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  font-size: clamp(14.5px, 1.6vw, 17px);
  font-weight: 500; line-height: 2;
  background: rgba(255, 255, 255, 0.78);
  padding: 16px 20px; border-radius: var(--radius);
  display: inline-block;
  margin-bottom: 34px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__tag {
  font-family: var(--en); font-size: 13.5px; font-weight: 800;
  color: var(--orange-deep); letter-spacing: 0.06em;
}

/* ===== マーキー ===== */
.marquee { overflow: hidden; padding: 13px 0; }
.marquee--orange { background: var(--orange); transform: rotate(-1.2deg) scale(1.02); margin: -6px 0 6px; }
.marquee--green { background: var(--green-deep); }
.marquee__track { display: flex; white-space: nowrap; animation: marquee 26s linear infinite; }
.marquee__track span {
  font-family: var(--en); font-weight: 800; font-size: 15px;
  letter-spacing: 0.18em; color: rgba(255, 255, 255, 0.95);
  padding-right: 12px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ===== イントロ ===== */
.section--intro { padding: 96px 0 72px; text-align: center; }
.section--intro .section__label { text-align: center; }
.intro__title { font-size: clamp(24px, 4vw, 34px); font-weight: 900; margin-bottom: 30px; }
.intro__body { max-width: 680px; margin: 0 auto 18px; font-size: 15.5px; color: var(--ink-soft); }
.intro__body--em { color: var(--ink); font-weight: 700; }

/* ===== 数字 ===== */
.section--numbers { background: var(--bg-white); }
.num-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.num-card {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.num-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(232, 121, 59, 0.12); }
.num-card__label { font-size: 12.5px; font-weight: 800; color: var(--green-deep); letter-spacing: 0.04em; }
.num-card__value { margin: 6px 0 4px; line-height: 1.1; }
.num {
  font-family: var(--en); font-weight: 800;
  font-size: clamp(44px, 6vw, 60px);
  color: var(--orange-deep);
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}
.num-card__unit { font-size: 20px; font-weight: 900; color: var(--ink); margin-left: 4px; }
.num-card__approx { font-size: 12px; font-weight: 700; color: var(--ink-muted); vertical-align: super; }
.num-card__sub { font-size: 12.5px; color: var(--ink-soft); font-weight: 500; }
.num-note { margin-top: 18px; font-size: 12px; color: var(--ink-muted); }

/* ===== タイムライン ===== */
.tl { position: relative; max-width: 720px; }
.tl::before {
  content: ""; position: absolute; left: 74px; top: 8px; bottom: 8px;
  width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange) 62%, var(--green-deep) 78%, var(--teal) 100%);
  opacity: 0.35;
}
.tl__item { display: flex; gap: 22px; padding: 9px 0; position: relative; }
.tl__time {
  flex-shrink: 0; width: 56px; text-align: right;
  font-family: var(--en); font-weight: 800; font-size: 15px;
  color: var(--ink-soft); padding-top: 16px;
  font-variant-numeric: tabular-nums;
}
.tl__item::after {
  content: ""; position: absolute; left: 69px; top: 24px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--orange); border: 3px solid #fff;
  box-shadow: 0 0 0 2px rgba(232, 121, 59, 0.35);
}
.tl__item:nth-last-child(2)::after { background: var(--green-deep); box-shadow: 0 0 0 2px rgba(46, 125, 106, 0.35); }
.tl__item:last-child::after { background: var(--teal); box-shadow: 0 0 0 2px rgba(18, 129, 135, 0.3); }
.tl__card {
  flex: 1; background: var(--bg-white);
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 16px 22px; margin-left: 18px;
}
.tl__card h3 { font-size: 16.5px; font-weight: 900; }
.tl__card p { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }
.tl__chip {
  display: inline-block; font-size: 10.5px; font-weight: 900;
  padding: 2px 10px; border-radius: 999px; margin-bottom: 6px;
  letter-spacing: 0.06em;
}
.tl__chip--pre { background: #EFEAE4; color: var(--ink-muted); }
.tl__chip--day { background: var(--orange-light); color: var(--orange-deep); }
.tl__chip--night { background: var(--green-light); color: var(--green-deep); }
.tl__chip--after { background: #E3F2F3; color: var(--teal); }

/* ===== アーカイブ ===== */
.section--archive {
  background:
    radial-gradient(70% 60% at 85% 10%, rgba(232, 121, 59, 0.25), transparent 60%),
    radial-gradient(60% 50% at 10% 95%, rgba(18, 129, 135, 0.35), transparent 65%),
    var(--green-deep);
}
.ar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ar-card {
  background: var(--bg-white); border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease;
}
.ar-card:hover { transform: translateY(-5px); }
.ar-card__thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.ar-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ar-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 11.5px; font-weight: 900; letter-spacing: 0.05em;
  padding: 5px 13px; border-radius: 999px;
  color: #fff; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.ar-badge--soon { background: #8B8378; }
.ar-badge--editing { background: var(--orange); }
.ar-badge--ready { background: var(--green); }
.ar-card__body { padding: 20px 22px 22px; }
.ar-card__track { font-size: 11.5px; font-weight: 900; letter-spacing: 0.08em; margin-bottom: 4px; }
.ar-card__track--yt { color: var(--orange-deep); }
.ar-card__track--web { color: var(--green-deep); }
.ar-card__title { font-size: 18px; font-weight: 900; line-height: 1.4; margin-bottom: 12px; }
.ar-card__speakers { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ar-avatars { display: flex; flex-shrink: 0; }
.ar-avatars img {
  width: 34px; height: 34px; border-radius: 50%; object-fit: cover;
  border: 2.5px solid #fff; background: #fff;
  margin-left: -9px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.ar-avatars img:first-child { margin-left: 0; }
.ar-names { font-size: 11.5px; color: var(--ink-soft); font-weight: 600; line-height: 1.5; }
.ar-card__btn {
  display: block; text-align: center;
  font-size: 13.5px; font-weight: 800;
  padding: 11px 16px; border-radius: 999px;
}
.ar-card__btn.is-disabled {
  background: #F2EDE7; color: var(--ink-muted); cursor: default;
}
.ar-card__btn:not(.is-disabled) {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 14px rgba(232, 121, 59, 0.35);
}
.ar-note {
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 16px 22px;
}
.ar-note p { color: #fff; font-size: 13.5px; font-weight: 500; }
.ar-note strong { color: #FFE3D1; }

/* ===== 写真 ===== */
.ph-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ph-item {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-white);
}
.ph-item img { width: 100%; height: 100%; object-fit: cover; }
.ph-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-size: 11.5px; font-weight: 800; color: #fff;
  padding: 22px 14px 10px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
}
.ph-item--empty {
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--line); background: #FFFDFA;
}
.ph-item--empty span { font-size: 13px; font-weight: 700; color: var(--ink-muted); }
.ph-note { margin-top: 18px; font-size: 13px; color: var(--ink-soft); text-align: center; }

/* ===== つくったもの ===== */
.section--making { background: var(--bg-white); }
.mk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mk-card {
  position: relative;
  background: var(--bg); border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px 22px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mk-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07); }
.mk-card__no {
  position: absolute; top: 12px; right: 18px;
  font-family: var(--en); font-weight: 800; font-size: 34px;
  color: transparent; -webkit-text-stroke: 1.5px rgba(232, 121, 59, 0.3);
  line-height: 1;
}
.mk-chip {
  align-self: flex-start;
  font-size: 10.5px; font-weight: 900; letter-spacing: 0.06em;
  padding: 3px 11px; border-radius: 999px;
}
.mk-chip--site { background: var(--green-light); color: var(--green-deep); }
.mk-chip--ops { background: #EFEAE4; color: var(--ink-muted); }
.mk-chip--event { background: var(--orange-light); color: var(--orange-deep); }
.mk-card__title { font-size: 17.5px; font-weight: 900; }
.mk-card__desc { font-size: 13.5px; color: var(--ink-soft); flex: 1; }
.mk-card__link {
  align-self: flex-start;
  font-size: 13.5px; font-weight: 800; color: var(--orange-deep);
  border-bottom: 2px solid rgba(232, 121, 59, 0.35);
  transition: border-color 0.15s ease;
}
.mk-card__link:hover { border-color: var(--orange-deep); }

/* ===== 旅のしおり ===== */
.section--guide { background: var(--green-light); }
.section--guide .section__label { color: var(--green-deep); }
.gd-themes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 720px; margin-bottom: 36px; }
.gd-theme {
  background: var(--bg-white); border-radius: var(--radius);
  padding: 22px 16px; text-align: center;
  box-shadow: 0 6px 18px rgba(46, 125, 106, 0.08);
}
.gd-theme__icon { font-size: 30px; display: block; margin-bottom: 6px; }
.gd-theme__name { font-size: 16px; font-weight: 900; color: var(--green-deep); }
.gd-theme__sub { font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; }
.gd-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.gd-cta__note { font-size: 13px; color: var(--green-deep); font-weight: 600; }

/* ===== 前日から翌日まで ===== */
.ad-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ad-card {
  background: var(--bg-white); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 20px 20px 18px;
}
.ad-card__day {
  font-family: var(--en); font-size: 20px; font-weight: 800; color: var(--orange-deep);
  margin-bottom: 10px;
}
.ad-card__day span { font-family: 'Noto Sans JP', sans-serif; font-size: 11.5px; font-weight: 800; color: var(--ink-muted); margin-left: 4px; }
.ad-card ul li {
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  padding: 5px 0 5px 16px; position: relative;
  border-bottom: 1px dashed var(--line);
}
.ad-card ul li:last-child { border-bottom: none; }
.ad-card ul li::before { content: "•"; color: var(--green); position: absolute; left: 2px; }
.ad-card--main { border-color: var(--orange); box-shadow: 0 8px 22px rgba(232, 121, 59, 0.12); }
.ad-card--main ul li strong { color: var(--orange-deep); }
.ad-card--unkai { background: linear-gradient(160deg, #FFF6EE 0%, #FFEFDD 100%); border-color: #F5D9BF; }
.ad-card__unkai-title { font-size: 15.5px; font-weight: 900; margin-bottom: 6px; }
.ad-card__unkai-desc { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 12px; }
.ad-card__link { font-size: 12.5px; font-weight: 800; color: var(--orange-deep); border-bottom: 2px solid rgba(232, 121, 59, 0.35); }

/* ===== 声 ===== */
.section--voices { background: var(--bg-white); }
.vc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vc-card {
  border-radius: var(--radius); padding: 24px 22px;
  background: var(--bg); border: 1.5px solid var(--line);
  font-size: 13.5px; color: var(--ink-soft);
  position: relative;
}
.vc-card::before {
  content: "“"; position: absolute; top: 4px; left: 14px;
  font-family: var(--en); font-size: 44px; font-weight: 800;
  color: rgba(232, 121, 59, 0.25); line-height: 1;
}
.vc-card--empty { border-style: dashed; text-align: center; color: var(--ink-muted); }
.vc-card--empty::before { content: none; }

/* ===== クレジット ===== */
.cr-group { margin-bottom: 36px; }
.cr-group__title {
  font-size: 14px; font-weight: 900; color: var(--green-deep);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.cr-group__title::after { content: ""; flex: 1; height: 1.5px; background: var(--line); }
.cr-avatars { display: flex; flex-wrap: wrap; gap: 14px 18px; }
.cr-avatar { display: flex; align-items: center; gap: 8px; }
.cr-avatar img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 2.5px solid #fff; background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}
.cr-avatar span { font-size: 13px; font-weight: 800; }
.cr-avatar em {
  display: inline-block; font-style: normal;
  font-size: 9.5px; font-weight: 900; color: #fff;
  background: var(--green); border-radius: 999px;
  padding: 1px 8px; margin-left: 5px; vertical-align: 1px;
}
.cr-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.cr-chips span {
  font-size: 12.5px; font-weight: 700; color: var(--ink-soft);
  background: var(--bg-white); border: 1.5px solid var(--line);
  padding: 5px 14px; border-radius: 999px;
}
.cr-chips--pending span { border-style: dashed; color: var(--ink-muted); }
.cr-thanks {
  margin-top: 10px; text-align: center;
  font-size: 15px; font-weight: 900; color: var(--orange-deep);
  letter-spacing: 0.04em;
}

/* ===== 開催情報 ===== */
.section--info { background: var(--bg-white); padding-bottom: 100px; }
.info-box {
  background: var(--bg); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 26px 30px;
  max-width: 720px;
}
.info-box dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 22px; font-size: 14.5px; }
.info-box dt { font-weight: 900; color: var(--orange-deep); white-space: nowrap; }
.info-box dd { color: var(--ink-soft); font-weight: 500; }

/* ===== フッター ===== */
.footer {
  background: var(--green-deep); color: #fff;
  padding: 46px 0 40px; text-align: center;
}
.footer__logo { font-size: 17px; font-weight: 900; margin-bottom: 18px; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 22px; }
.footer__links a {
  font-size: 12.5px; font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px; border-radius: 999px;
  transition: background 0.15s ease;
}
.footer__links a:hover { background: rgba(255, 255, 255, 0.24); }
.footer__copy { font-size: 12px; color: rgba(255, 255, 255, 0.75); }

/* ===== レスポンシブ ===== */
@media (max-width: 900px) {
  .num-grid { grid-template-columns: 1fr 1fr; }
  .ad-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { min-height: 86vh; padding-top: 110px; }
  .hero__ghost { top: -30px; right: 0; }
  .num-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .num-card { padding: 18px 16px 16px; }
  .ar-grid { grid-template-columns: 1fr; }
  .ph-grid { grid-template-columns: 1fr 1fr; }
  .mk-grid { grid-template-columns: 1fr; }
  .gd-themes { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .gd-theme { padding: 16px 10px; }
  .ad-grid { grid-template-columns: 1fr; }
  .vc-grid { grid-template-columns: 1fr; }
  .tl::before { left: 62px; }
  .tl__time { width: 44px; font-size: 13px; }
  .tl__item::after { left: 57px; }
  .tl__card { margin-left: 12px; padding: 13px 16px; }
  .info-box dl { grid-template-columns: 1fr; gap: 2px 0; }
  .info-box dt { margin-top: 10px; }
}
