/* =============================================================
   AMZ GROUP / LAVICHE — Premium Editorial Redesign
   "100年、健やかに。" × Yellow-forward × Japanese Editorial
============================================================= */

:root {
  --yellow:     #FFE500;
  --yellow-2:   #FFF169;
  --yellow-dim: #E8D100;
  --ink:        #0A0A0A;
  --ink-80:     #1A1A1A;
  --ink-60:     #3A3A3A;
  --ink-40:     #6B6B6B;
  --ink-20:     #B8B8B8;
  --ink-10:     #E5E5E5;
  --paper:      #F7F4EC;
  --cream:      #EFE8D7;
  --white:      #FFFFFF;
  --red:        #E8332F;

  --ff-serif:   "Noto Serif JP", "Playfair Display", "Hiragino Mincho ProN", serif;
  --ff-sans:    "Noto Sans JP", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-display: "Playfair Display", "Noto Serif JP", serif;

  --max:        1280px;
  --max-narrow: 920px;

  --ease:       cubic-bezier(.2, .8, .2, 1);
  --ease-back:  cubic-bezier(.34, 1.56, .64, 1);
}

/* =============================================================
   Reset
============================================================= */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
ul,ol { list-style: none; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; }
button { border: 0; background: transparent; cursor: pointer; font: inherit; color: inherit; }
::selection { background: var(--yellow); color: var(--ink); }

/* =============================================================
   HEADER
============================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(247, 244, 236, 0.86);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background .3s var(--ease);
}
.site-header__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; transition: opacity .3s; }
.brand:hover { opacity: 0.75; }
.brand__img { height: 30px; width: auto; display: block; }

.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav > a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  line-height: 1; padding: 10px 0;
  position: relative;
  transition: color .25s;
}
.site-nav > a span { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; }
.site-nav > a em {
  font-family: var(--ff-display); font-size: 9px;
  letter-spacing: 0.3em; color: var(--ink-40);
}
.site-nav > a::after {
  content: ''; position: absolute; left: 50%; bottom: -2px;
  width: 0; height: 2px; background: var(--ink);
  transition: width .35s var(--ease), left .35s var(--ease);
}
.site-nav > a:hover::after { width: 100%; left: 0; }

.site-nav__cta {
  background: var(--ink) !important; color: var(--yellow) !important;
  padding: 12px 22px !important; border-radius: 100px; overflow: hidden;
}
.site-nav__cta span { font-size: 12px !important; letter-spacing: 0.08em !important; }
.site-nav__cta em { display: none !important; }
.site-nav__cta::after { display: none; }
.site-nav__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }

.site-header__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.site-header__burger span {
  width: 24px; height: 2px; background: var(--ink);
  transition: transform .35s var(--ease), opacity .25s;
}

/* =============================================================
   HERO — split with image + editorial
============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 0;
  background: var(--paper);
  overflow: hidden;
  display: flex; align-items: stretch;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(255,229,0,0.12), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,229,0,0.08), transparent 40%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  width: 100%;
  align-items: stretch;
}

.hero__content {
  padding: 80px 48px 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 720px;
}
.hero__eyebrow {
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--ink-60);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 36px;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--ink); }
.hero__title {
  font-family: var(--ff-serif);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 40px;
}
.hero__title span { display: block; }
.hero__title em {
  display: inline-block;
  padding: 0 0.15em;
  background: var(--yellow);
  transform: rotate(-1.2deg);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero__lead {
  font-size: 16px; line-height: 2.05;
  color: var(--ink-60);
  max-width: 520px; margin-bottom: 44px;
}
.hero__lead strong {
  color: var(--ink); font-weight: 700;
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 2px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  background: var(--yellow);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 40px;
  overflow: hidden;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero__visual::before {
  content: '100 YEARS';
  position: absolute; top: 48px; left: 12%;
  font-family: var(--ff-display);
  font-size: 13px; letter-spacing: 0.4em;
  color: var(--ink); opacity: 0.5; font-weight: 700;
}
.hero__visual::after {
  content: 'LAVICHE × AMZ GROUP';
  position: absolute; bottom: 48px; right: 10%;
  font-family: var(--ff-display);
  font-size: 11px; letter-spacing: 0.35em;
  color: var(--ink); opacity: 0.5; font-weight: 600;
}
.hero__logo-img {
  max-width: 80%; width: 420px; height: auto;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.08));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero__catch {
  font-family: var(--ff-serif); font-weight: 700;
  font-size: clamp(20px, 2.6vw, 34px);
  color: var(--ink); margin-top: 32px;
  letter-spacing: 0.04em; text-align: center;
}
.hero__catch-en {
  max-width: 260px; margin-top: 24px; opacity: 0.9;
}

.hero__scroll {
  position: absolute; left: 28%; bottom: 32px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 5;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--ink), transparent);
  animation: scrollLine 1.8s var(--ease) infinite;
  transform-origin: top;
}
.hero__scroll-text {
  font-family: var(--ff-display);
  font-size: 10px; letter-spacing: 0.35em;
  color: var(--ink-40);
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50%      { transform: scaleY(0.4); opacity: 1; }
}

/* =============================================================
   BUTTONS
============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 100px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn--primary {
  background: var(--ink); color: var(--yellow);
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.3); }
.btn--outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--yellow); transform: translateY(-3px); }
.btn--lg { padding: 20px 44px; font-size: 14px; }

/* =============================================================
   SECTION common
============================================================= */
.section {
  padding: 160px 32px;
  position: relative;
}
.section__inner { max-width: var(--max); margin: 0 auto; }
.section__eyebrow {
  font-family: var(--ff-display);
  font-size: 11px; letter-spacing: 0.4em;
  font-weight: 700;
  color: var(--ink-60); text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 14px;
}
.section__eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--ink); }
.section__title {
  font-family: var(--ff-serif);
  font-weight: 800;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 40px;
}
.section__title em {
  display: inline-block;
  padding: 0 0.15em;
  background: var(--yellow);
  transform: rotate(-1deg);
}
.section__lead {
  font-size: 16px; line-height: 2.05;
  color: var(--ink-60);
  max-width: 720px; margin-bottom: 64px;
}
.section__head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-bottom: 56px;
}
.section__head-link {
  font-family: var(--ff-display);
  font-size: 13px; letter-spacing: 0.15em;
  font-weight: 600;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
  transition: transform .3s;
}
.section__head-link:hover { transform: translateX(6px); }

/* =============================================================
   CONCEPT
============================================================= */
.concept {
  background: var(--cream);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.concept::before {
  content: 'CONCEPT';
  position: absolute; top: 80px; right: -60px;
  font-family: var(--ff-display);
  font-size: 240px; font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1; letter-spacing: -0.04em;
  pointer-events: none;
}
.concept .section__title { margin: 0 auto 48px; }
.concept__lead {
  max-width: 680px; margin: 0 auto 72px;
  font-size: 16px; line-height: 2.25;
  color: var(--ink-60);
}
.concept__lead strong { color: var(--ink); font-weight: 700; }
.concept__image {
  max-width: 900px; margin: 0 auto;
  position: relative; border-radius: 4px; overflow: visible;
}
.concept__image::before {
  content: ''; position: absolute;
  inset: 20px -20px -20px 20px;
  background: var(--yellow);
  z-index: 0; border-radius: 4px;
}
.concept__image img {
  width: 100%; height: auto; display: block;
  position: relative; z-index: 1;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* =============================================================
   NEWS
============================================================= */
.news { background: var(--paper); }
.news-list { border-top: 2px solid var(--ink); }
.news-item {
  display: grid;
  grid-template-columns: 140px 100px 1fr 40px;
  align-items: center; gap: 28px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--ink-10);
  position: relative;
  transition: padding .3s var(--ease), background .3s;
  cursor: pointer;
}
.news-item::after {
  content: '→';
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--ink-20);
  transition: color .3s, transform .3s var(--ease);
  text-align: right;
}
.news-item:hover { padding-left: 20px; background: rgba(255,229,0,0.04); }
.news-item:hover::after { color: var(--ink); transform: translateX(6px); }
.news-item__date {
  font-family: var(--ff-display);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.08em; color: var(--ink-40);
}
.news-item__tag {
  font-family: var(--ff-display);
  font-size: 10px; letter-spacing: 0.22em;
  font-weight: 700;
  padding: 6px 12px;
  background: var(--ink); color: var(--yellow);
  border-radius: 100px; text-align: center;
}
.news-item__title { font-size: 16px; font-weight: 500; line-height: 1.6; }

/* =============================================================
   BUSINESS
============================================================= */
.business { background: var(--paper); padding-top: 120px; }

.biz-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 56px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 20px 60px rgba(0,0,0,0.06);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 40px 80px rgba(0,0,0,0.12);
}
.biz-card--hero::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dim));
  z-index: 3;
}
.biz-card--reverse { grid-template-columns: 1fr 1.1fr; }
.biz-card--reverse .biz-card__photo { order: 2; }
.biz-card--reverse .biz-card__body  { order: 1; }

.biz-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}
.biz-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.biz-card:hover .biz-card__photo img { transform: scale(1.06); }
.biz-card__photo-logo {
  position: absolute;
  bottom: 20px; left: 20px;
  max-width: 180px; max-height: 48px;
  height: auto !important;
  background: rgba(255,255,255,0.92);
  padding: 10px 16px;
  border-radius: 4px;
  object-fit: contain !important;
}

.biz-card__body {
  padding: 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.biz-card__brand {
  font-family: var(--ff-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--ink-40);
  margin-bottom: 10px;
}
.biz-card__sub {
  font-size: 11px; font-weight: 400; letter-spacing: 0.1em;
  display: block; margin-top: 2px;
}
.biz-card__caption {
  font-family: var(--ff-serif);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 600;
}
.biz-card__title {
  font-family: var(--ff-serif);
  font-weight: 800; font-size: 28px;
  line-height: 1.45;
  margin-bottom: 24px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.biz-card__body p { color: var(--ink-60); font-size: 15px; line-height: 2; }
.biz-card__body strong {
  color: var(--ink); font-weight: 700;
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 3px;
}

.biz-card__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-10);
}
.biz-card__stats > div { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.biz-card__stat-num {
  font-family: var(--ff-display);
  font-size: 42px; font-weight: 800;
  line-height: 1; color: var(--ink);
  letter-spacing: -0.02em;
}
.biz-card__stat-unit {
  font-size: 10px; color: var(--ink-40);
  letter-spacing: 0.15em; font-weight: 600;
}

/* Stores */
.stores {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 56px;
  border-radius: 8px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.stores::before {
  content: 'STORES';
  position: absolute;
  top: -30px; right: 40px;
  font-family: var(--ff-display);
  font-size: 220px; font-weight: 900;
  color: rgba(255,229,0,0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  line-height: 1;
}
.stores__title {
  font-family: var(--ff-serif);
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.005em;
  margin-bottom: 40px;
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  position: relative; z-index: 2;
}
.stores__count {
  font-family: var(--ff-display);
  font-size: 14px; letter-spacing: 0.3em;
  color: var(--yellow); font-weight: 700;
}
.stores__link {
  margin-left: auto;
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--paper);
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--yellow);
  transition: color .3s, transform .3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.stores__link em { color: var(--yellow); transition: transform .3s; }
.stores__link:hover { color: var(--yellow); }
.stores__link:hover em { transform: translateX(4px); }
.stores__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px;
  position: relative; z-index: 2;
}
.stores__list li {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  transition: background .3s, padding .3s;
  position: relative; cursor: default;
}
.stores__list li:hover { background: rgba(255,229,0,0.08); padding-left: 24px; }
.stores__num {
  font-family: var(--ff-display);
  font-size: 12px; color: var(--yellow);
  font-weight: 700; letter-spacing: 0.05em;
  min-width: 24px; opacity: 0.7;
}
.stores__new { background: rgba(255,229,0,0.04); }
.stores__new em {
  font-family: var(--ff-display);
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.2em;
  padding: 3px 8px;
  background: var(--yellow); color: var(--ink);
  border-radius: 3px; margin-left: auto;
}

/* =============================================================
   VISION
============================================================= */
.vision {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.vision::before {
  content: '100';
  position: absolute;
  top: -80px; right: -60px;
  font-family: var(--ff-display);
  font-size: 600px; font-weight: 900;
  color: rgba(0,0,0,0.03);
  line-height: 0.8;
  letter-spacing: -0.08em;
  pointer-events: none;
}
.vision__quote {
  max-width: 860px;
  margin: 48px 0 96px;
  padding: 56px 64px;
  background: var(--white);
  border-left: 6px solid var(--yellow);
  font-family: var(--ff-serif);
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.vision__quote::before {
  content: '"';
  font-family: var(--ff-display);
  position: absolute;
  top: -10px; left: 24px;
  font-size: 140px;
  color: var(--yellow);
  line-height: 1; font-weight: 900;
  opacity: 0.6;
}
.vision__quote p {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.9;
  color: var(--ink);
  margin-bottom: 16px;
  position: relative; z-index: 2;
}
.vision__quote-by {
  font-size: 13px !important;
  font-family: var(--ff-sans) !important;
  font-weight: 500 !important;
  color: var(--ink-40) !important;
  letter-spacing: 0.08em;
  margin: 24px 0 0 !important;
}

/* =============================================================
   TIMELINE — 100年横スクロール
============================================================= */
.timeline {
  position: relative;
  margin-top: 32px;
}

/* --- 年代軸 (上部) --- */
.timeline__axis {
  position: relative;
  margin-bottom: 28px;
  padding: 0 12px;
}
.timeline__axis-line {
  position: relative;
  height: 2px;
  background: var(--ink-10);
  margin: 0 18px 22px;
  border-radius: 2px;
  overflow: hidden;
}
.timeline__axis-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-2) 100%);
  transition: width .35s var(--ease);
  border-radius: 2px;
}
.timeline__axis-marks {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline__axis-mark {
  position: relative;
  flex: 0 0 auto;
  text-align: center;
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-40);
  transition: color .3s var(--ease);
  cursor: pointer;
}
.timeline__axis-mark::before {
  content: '';
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink-10);
  transition: all .3s var(--ease);
  z-index: 2;
}
.timeline__axis-mark.is-active {
  color: var(--ink);
}
.timeline__axis-mark.is-active::before {
  background: var(--yellow);
  border-color: var(--ink);
  transform: translateX(-50%) scale(1.4);
  box-shadow: 0 0 0 6px rgba(255, 229, 0, 0.18);
}
.timeline__axis-mark span {
  display: block;
  white-space: nowrap;
}
.timeline__axis-mark em {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 6px;
  background: var(--ink);
  color: var(--yellow);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.16em;
  border-radius: 2px;
  vertical-align: 1px;
}

/* --- スワイプヒント --- */
.timeline__hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin: 0 0 18px;
  padding-left: 4px;
}
.timeline__hint-icon {
  display: inline-flex;
  color: var(--ink);
  animation: timeline-hint-pulse 2.4s var(--ease) infinite;
}
@keyframes timeline-hint-pulse {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50%      { transform: translateX(8px); opacity: 1; }
}

/* --- 横スクロールビューポート --- */
.timeline__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--ink-20) transparent;
  padding: 8px 0 28px;
  margin: 0 -24px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
}
.timeline__viewport::-webkit-scrollbar { height: 8px; }
.timeline__viewport::-webkit-scrollbar-track { background: transparent; }
.timeline__viewport::-webkit-scrollbar-thumb {
  background: var(--ink-20);
  border-radius: 4px;
}
.timeline__viewport::-webkit-scrollbar-thumb:hover { background: var(--ink-40); }
.timeline__viewport:focus { outline: none; }
.timeline__viewport:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.timeline__track {
  display: flex;
  gap: 28px;
  padding: 0 24px;
  width: max-content;
}

/* --- 各パネル --- */
.timeline__panel {
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  flex: 0 0 auto;
  width: min(560px, 78vw);
  min-height: 460px;
  background: var(--white);
  padding: 48px 44px 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.06);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.timeline__panel::before {
  content: attr(data-decor);
  position: absolute;
  inset: auto -40px -120px auto;
  font-family: var(--ff-display);
  font-size: 380px;
  font-weight: 900;
  color: rgba(10, 10, 10, 0.025);
  line-height: 0.8;
  pointer-events: none;
  letter-spacing: -0.06em;
}
.timeline__panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(10, 10, 10, 0.12);
}

.timeline__chapter {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin: 0 0 28px;
  position: relative; z-index: 2;
}
.timeline__chapter::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--ink-40);
  vertical-align: 4px;
  margin-right: 10px;
}

.timeline__year {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 0 0 8px;
  position: relative; z-index: 2;
}

.timeline__heading {
  font-family: var(--ff-serif);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 12px 0 24px;
  position: relative; z-index: 2;
}

.timeline__body {
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 2;
  color: var(--ink-60);
  margin: 0;
  position: relative; z-index: 2;
}
.timeline__body strong {
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 3px;
}

.timeline__caption {
  margin-top: auto;
  padding-top: 32px;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-40);
  position: relative; z-index: 2;
}

/* --- パネルの個別意匠 --- */
.timeline__panel--past {
  background: linear-gradient(160deg, var(--white) 0%, var(--cream) 100%);
}
.timeline__panel--past::before { content: 'I'; }

.timeline__panel--growth {
  background: var(--white);
}
.timeline__panel--growth::before { content: '22'; }

.timeline__panel--now {
  background: linear-gradient(160deg, #0F0F0F 0%, var(--ink) 100%);
  color: var(--paper);
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.28);
  transform: translateY(-8px);
}
.timeline__panel--now::before {
  content: 'NOW';
  color: rgba(255, 229, 0, 0.08);
  font-size: 280px;
  inset: auto -10px -100px auto;
}
.timeline__panel--now .timeline__chapter { color: var(--yellow); }
.timeline__panel--now .timeline__chapter::before { background: var(--yellow); }
.timeline__panel--now .timeline__year { color: var(--yellow); }
.timeline__panel--now .timeline__heading { color: var(--paper); }
.timeline__panel--now .timeline__body { color: rgba(247, 244, 236, 0.78); }
.timeline__panel--now .timeline__body strong {
  color: var(--ink);
  background: var(--yellow);
  padding: 0 4px;
}
.timeline__panel--now .timeline__caption { color: rgba(255, 229, 0, 0.7); }
.timeline__panel--now:hover { transform: translateY(-12px); }

.timeline__badge {
  display: inline-block;
  margin: 0 0 16px;
  padding: 5px 10px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  position: relative; z-index: 2;
  animation: timeline-badge-blink 2.6s var(--ease) infinite;
}
@keyframes timeline-badge-blink {
  0%, 100% { opacity: 1; transform: translateX(0); }
  50%      { opacity: 0.65; transform: translateX(-2px); }
}

.timeline__panel--asia {
  background: linear-gradient(160deg, var(--white) 0%, #FFFBE3 100%);
}
.timeline__panel--asia::before { content: 'ASIA'; font-size: 200px; }

.timeline__panel--dream {
  background: linear-gradient(160deg, var(--yellow-2) 0%, var(--yellow) 100%);
  color: var(--ink);
}
.timeline__panel--dream::before {
  content: '100';
  color: rgba(10, 10, 10, 0.06);
}
.timeline__panel--dream .timeline__heading,
.timeline__panel--dream .timeline__year,
.timeline__panel--dream .timeline__chapter,
.timeline__panel--dream .timeline__caption { color: var(--ink); }
.timeline__panel--dream .timeline__chapter::before { background: var(--ink); }
.timeline__panel--dream .timeline__body { color: rgba(10, 10, 10, 0.7); }
.timeline__panel--dream .timeline__body strong {
  background: linear-gradient(transparent 60%, rgba(10, 10, 10, 0.18) 60%);
  color: var(--ink);
}

/* --- ナビ (前後 + カウンター) --- */
.timeline__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}
.timeline__nav-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-10);
  background: var(--white);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.timeline__nav-btn:hover:not(:disabled) {
  background: var(--yellow);
  border-color: var(--ink);
  transform: scale(1.08);
}
.timeline__nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.timeline__nav-label {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin: 0;
  min-width: 64px;
  text-align: center;
}
.timeline__nav-label span {
  color: var(--ink-40);
  font-weight: 500;
}

/* =============================================================
   OVERSEAS
============================================================= */
.overseas { color: var(--paper); position: relative; }
.overseas .section__eyebrow { color: var(--yellow); }
.overseas .section__eyebrow::before { background: var(--yellow); }
.overseas .section__title { color: var(--paper); }
.overseas .section__title em { background: var(--yellow); color: var(--ink); }
.overseas .section__lead { color: rgba(247,244,236,0.75); }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 64px;
  border: 1px solid rgba(255,255,255,0.1);
}
.stat {
  background: var(--ink);
  padding: 48px 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: background .4s;
  position: relative; overflow: hidden;
}
.stat::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.stat:hover { background: #111; }
.stat:hover::before { transform: scaleX(1); }
.stat__num {
  font-family: var(--ff-display);
  font-size: 72px; font-weight: 800;
  line-height: 0.95;
  color: var(--yellow);
  letter-spacing: -0.03em;
}
.stat__num span { font-size: 28px; margin-left: 6px; font-weight: 600; }
.stat__label {
  font-size: 13px; line-height: 1.8;
  color: rgba(247,244,236,0.7);
  letter-spacing: 0.02em;
}

/* =============================================================
   COMPANY
============================================================= */
.company { background: var(--paper); }
.company__dl {
  max-width: var(--max-narrow);
  margin-top: 64px;
  border-top: 2px solid var(--ink);
}
.company__dl > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 28px 8px;
  border-bottom: 1px solid var(--ink-10);
  align-items: baseline;
  transition: background .3s, padding .3s;
}
.company__dl > div:hover { background: rgba(255,229,0,0.08); padding-left: 20px; }
.company__dl dt {
  font-family: var(--ff-display);
  font-size: 12px; letter-spacing: 0.22em;
  color: var(--ink-40); font-weight: 700;
  text-transform: uppercase;
}
.company__dl dd { font-size: 15px; color: var(--ink); line-height: 1.8; }
.company__sub { color: var(--ink-40); font-size: 13px; margin-left: 8px; }

/* =============================================================
   RECRUIT
============================================================= */
.recruit {
  background: var(--yellow);
  position: relative;
  padding-top: 0;
  overflow: hidden;
}
.recruit__hero {
  width: 100%; height: 60vh; max-height: 520px;
  overflow: hidden; position: relative;
}
.recruit__hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--yellow) 100%);
  z-index: 2;
}
.recruit__hero img { width: 100%; height: 100%; object-fit: cover; }
.recruit .section__inner { padding-top: 80px; }
.recruit .section__eyebrow { color: var(--ink); }
.recruit .section__eyebrow::before { background: var(--ink); }
.recruit .section__title em { background: var(--ink); color: var(--yellow); }
.recruit__lead {
  max-width: 760px;
  font-size: 16px; line-height: 2.05;
  color: var(--ink);
  margin-bottom: 72px;
  font-weight: 500;
}

.recruit__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 64px;
}
.rc-card {
  background: var(--paper);
  padding: 40px 32px;
  border-radius: 6px;
  transition: transform .4s var(--ease), box-shadow .4s;
  position: relative;
  overflow: hidden;
}
.rc-card::before {
  content: '';
  position: absolute; inset: auto 0 0 0; height: 0;
  background: var(--ink);
  transition: height .5s var(--ease);
  z-index: 0;
}
.rc-card:hover::before { height: 100%; }
.rc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.rc-card:hover .rc-card__num { color: var(--yellow); }
.rc-card:hover h3 { color: var(--paper); }
.rc-card:hover p { color: rgba(247,244,236,0.7); }
.rc-card > * { position: relative; z-index: 1; transition: color .4s; }
.rc-card__num {
  font-family: var(--ff-display);
  font-size: 48px; font-weight: 800;
  color: var(--yellow-dim);
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.rc-card h3 {
  font-family: var(--ff-serif);
  font-size: 22px; font-weight: 800;
  margin-bottom: 14px;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.rc-card__new {
  font-family: var(--ff-display);
  font-size: 10px; letter-spacing: 0.22em;
  background: var(--red); color: var(--white);
  padding: 4px 10px; border-radius: 100px;
  font-weight: 800;
}
.rc-card p { font-size: 14px; color: var(--ink-60); line-height: 1.85; }
.rc-card--accent { background: var(--ink); color: var(--paper); }
.rc-card--accent::before { background: var(--yellow); }
.rc-card--accent:hover .rc-card__num { color: var(--ink); }
.rc-card--accent:hover h3 { color: var(--ink); }
.rc-card--accent:hover p { color: var(--ink-60); }
.rc-card--accent h3 { color: var(--paper); }
.rc-card--accent p { color: rgba(247,244,236,0.75); }
.rc-card--accent .rc-card__num { color: var(--yellow); }

.recruit__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* =============================================================
   CTA
============================================================= */
.cta {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content: '100';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-size: 720px; font-weight: 900;
  color: rgba(255,229,0,0.04);
  line-height: 0.8; letter-spacing: -0.08em;
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 2; }
.cta .section__eyebrow { color: var(--yellow); }
.cta .section__eyebrow::before { background: var(--yellow); }
.cta__title {
  font-family: var(--ff-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800; line-height: 1.25;
  color: var(--yellow);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.cta__lead {
  font-size: 17px; line-height: 2;
  color: rgba(247,244,236,0.8);
  margin-bottom: 56px;
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.cta__actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 64px;
}
.cta .btn--primary { background: var(--yellow); color: var(--ink); }
.cta .btn--primary:hover { background: var(--yellow-2); }
.cta .btn--outline { color: var(--paper); border-color: rgba(247,244,236,0.4); }
.cta .btn--outline:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta__info {
  font-size: 13px; line-height: 2;
  color: rgba(247,244,236,0.6);
  padding-top: 56px;
  border-top: 1px solid rgba(247,244,236,0.12);
  max-width: 500px; margin: 0 auto;
}
.cta__info strong { color: var(--paper); font-weight: 600; }

/* =============================================================
   FOOTER
============================================================= */
.footer {
  background: #040404;
  color: rgba(247,244,236,0.85);
  padding: 80px 32px 40px;
}
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 48px;
}
.footer__brand {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.footer__logo-img {
  height: 80px; width: auto;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(255,229,0,0.2);
}
.footer__tagline {
  font-family: var(--ff-serif);
  font-size: 20px; font-weight: 600;
  color: var(--paper);
}
.footer__tagline-en {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 13px; letter-spacing: 0.08em;
  color: var(--yellow);
  font-weight: 500;
}
.footer__nav {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(247,244,236,0.1);
  border-bottom: 1px solid rgba(247,244,236,0.1);
}
.footer__nav a {
  font-size: 13px; letter-spacing: 0.08em;
  font-weight: 500;
  color: rgba(247,244,236,0.95);
  transition: color .3s;
}
.footer__nav a:hover { color: var(--yellow); }
.footer__copyright {
  text-align: center;
  font-family: var(--ff-display);
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(247,244,236,0.6);
}

/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 1024px) {
  .section { padding: 120px 28px; }
  .hero__content { padding: 60px 32px; }
  .biz-card, .biz-card--reverse { grid-template-columns: 1fr; }
  .biz-card--reverse .biz-card__photo { order: 1; }
  .biz-card--reverse .biz-card__body { order: 2; }
  .biz-card__body { padding: 40px 32px; }
  .timeline__panel { width: min(520px, 80vw); padding: 40px 36px 36px; min-height: 420px; }
  .timeline__heading { font-size: 34px; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-header__burger { display: flex; }
  .site-header__inner { padding: 14px 20px; }

  .hero { padding-top: 80px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__content { padding: 60px 24px 40px; order: 2; }
  .hero__visual { padding: 60px 32px; clip-path: none; order: 1; min-height: 50vh; }
  .hero__logo-img { width: 240px; }
  .hero__visual::before, .hero__visual::after { display: none; }
  .hero__scroll { display: none; }

  .section { padding: 80px 20px; }
  .section__title { font-size: clamp(28px, 7vw, 44px); }

  .biz-card { margin-bottom: 32px; }
  .biz-card__body { padding: 32px 24px; }
  .biz-card__title { font-size: 22px; }
  .biz-card__stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .biz-card__stat-num { font-size: 32px; }

  .stores { padding: 48px 24px; }
  .stores::before { font-size: 120px; top: -10px; }
  .stores__title { font-size: 22px; }

  .vision__quote { padding: 40px 28px; }
  .vision__quote p { font-size: 18px; }

  /* --- timeline モバイル --- */
  .timeline__axis { padding: 0 4px; }
  .timeline__axis-line { margin: 0 14px 18px; }
  .timeline__axis-mark { font-size: 10px; }
  .timeline__axis-mark span { font-size: 10px; }
  .timeline__axis-mark em { font-size: 8px; padding: 1px 4px; }
  .timeline__axis-mark::before { width: 10px; height: 10px; top: -25px; }
  .timeline__hint { font-size: 11px; letter-spacing: 0.1em; }
  .timeline__viewport { margin: 0 -20px; }
  .timeline__track { gap: 18px; padding: 0 20px; }
  .timeline__panel {
    width: 86vw;
    padding: 36px 28px 32px;
    min-height: 420px;
    border-radius: 6px;
  }
  .timeline__panel::before { font-size: 240px; inset: auto -30px -80px auto; }
  .timeline__panel--now::before { font-size: 180px; }
  .timeline__panel--asia::before { font-size: 140px; }
  .timeline__chapter { font-size: 10px; margin-bottom: 22px; }
  .timeline__year { font-size: 22px; }
  .timeline__heading { font-size: 30px; line-height: 1.35; margin: 8px 0 18px; }
  .timeline__body { font-size: 14px; line-height: 1.95; }
  .timeline__caption { font-size: 10px; padding-top: 24px; }
  .timeline__nav { gap: 14px; margin-top: 22px; }
  .timeline__nav-btn { width: 44px; height: 44px; }
  .timeline__nav-label { font-size: 14px; }

  .stat__num { font-size: 54px; }

  .company__dl > div { grid-template-columns: 1fr; gap: 6px; padding: 20px 8px; }
  .company__dl > div:hover { padding-left: 8px; }

  .news-item { grid-template-columns: 1fr 90px; grid-template-rows: auto auto; gap: 8px; padding: 22px 4px; }
  .news-item__date { grid-column: 1; grid-row: 1; }
  .news-item__tag   { grid-column: 2; grid-row: 1; justify-self: end; }
  .news-item__title { grid-column: 1 / -1; grid-row: 2; }
  .news-item::after { display: none; }
  .news-item:hover { padding-left: 8px; }

  .recruit__hero { height: 40vh; }
  .cta__title { font-size: clamp(32px, 8vw, 56px); }
  .cta::before { font-size: 360px; }

  .footer__nav { gap: 14px; }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media print {
  .site-header, .hero__scroll, .cta__actions, .recruit__cta, .footer__nav { display: none; }
  body { background: white; color: black; }
  .hero__visual { background: white; clip-path: none; }
}

/* =============================================================
   POLISH v2 — Link audit / Mobile optimization / Access hardening
============================================================= */

/* Scroll anchor offset so sticky header doesn't cover section titles */
html { scroll-padding-top: 80px; }
section[id], :target { scroll-margin-top: 80px; }

/* Prevent horizontal scroll from marquees / decorative elements */
html, body { max-width: 100%; overflow-x: clip; }
.marquee, .store-marquee { overflow: hidden; max-width: 100vw; }

/* Better focus state for keyboard users */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Section head — link on right */
.section__head--row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.section__head-link {
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  transition: background .3s, color .3s, transform .3s var(--ease);
  white-space: nowrap;
}
.section__head-link:hover {
  background: var(--ink); color: var(--paper);
  transform: translateX(4px);
}

/* Store-card now <article>, not <a> — keep hover affordance subtle */
article.store-card { cursor: default; }
article.store-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Minimum tap target size on mobile (WCAG AA / iOS guideline = 44px) */
@media (max-width: 768px) {
  .btn, .site-nav__cta, .site-header__burger,
  .pref-btn, .footer__nav a, .section__head-link {
    min-height: 44px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .site-nav--open a { min-height: 52px; }

  /* Hide desktop-only decorations on mobile to save space */
  .hero__catch-en { max-width: 160px; }
  .marquee { font-size: 38px; }
  .store-marquee { font-size: 22px; padding: 14px 0; }

  /* Reduce vision quote and section padding */
  .vision__quote { padding: 32px 22px; }
  .vision__quote p { font-size: 17px; line-height: 1.9; }

  /* Company DL reads naturally on narrow screens */
  .company__dl > div { padding: 18px 4px; }

  /* Section head row stacks vertically on mobile */
  .section__head--row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .section__head-link { align-self: flex-end; }

  /* News list readability */
  .news-item__title { font-size: 15px; line-height: 1.7; }

  /* CTA on mobile — stack buttons */
  .cta__actions, .recruit__cta, .hero__cta { flex-direction: column; gap: 12px; }
  .cta__actions .btn, .recruit__cta .btn, .hero__cta .btn { width: 100%; text-align: center; }
}

/* Very small phones (≤ 380px) */
@media (max-width: 380px) {
  .section { padding: 64px 18px; }
  .section__title { font-size: clamp(24px, 6.8vw, 32px); }
  .hero__title { font-size: clamp(28px, 8vw, 40px); }
  .hero__content { padding: 48px 20px 32px; }
  .hero__logo-img { width: 200px; }
  .biz-card__stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .biz-card__stat-num { font-size: 26px; }
  .stat__num { font-size: 40px; }
  .cta__title { font-size: clamp(26px, 8vw, 36px); }
  .footer { padding: 56px 20px 32px; }
  .footer__nav { gap: 10px 14px; }
  .footer__nav a { font-size: 12px; }

  /* timeline 極小端末 */
  .timeline__panel { width: 88vw; padding: 32px 22px 28px; min-height: 380px; }
  .timeline__heading { font-size: 26px; }
  .timeline__year { font-size: 20px; }
  .timeline__axis-mark span { font-size: 9px; }
  .timeline__axis-mark em { display: none; }
}
