/* ==================================================
   株式会社VIVA コーポレートHP デザインモック
   共通スタイル
================================================== */

:root {
  --viva-red: #E63329;
  --viva-orange: #F37A1F;
  --viva-yellow: #F5C232;
  --viva-black: #0D0D12;
  --viva-white: #FFFFFF;
  --viva-gray: #F7F7F8;
  --viva-text: #1A1A1F;
  --viva-text-muted: #6B7280;
  --gradient-sun: linear-gradient(180deg, var(--viva-red) 0%, var(--viva-orange) 50%, var(--viva-yellow) 100%);
  --gradient-sun-rev: linear-gradient(0deg, var(--viva-red) 0%, var(--viva-orange) 50%, var(--viva-yellow) 100%);
  --gradient-v-stroke: linear-gradient(90deg, var(--viva-yellow) 0%, var(--viva-orange) 50%, var(--viva-red) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: var(--viva-text);
  line-height: 1.7;
  background: var(--viva-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.text-keep { white-space: nowrap; }
.mobile-break { display: none; }

/* === ロゴSVG === */
.viva-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.viva-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--viva-red);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.viva-logo-mark::before {
  content: "V";
  color: white;
  font-weight: 900;
  font-size: 22px;
  font-family: "Outfit", sans-serif;
  letter-spacing: -1px;
}
.viva-logo-mark::after {
  content: "";
  position: absolute;
  top: 30%;
  right: -2px;
  width: 18px;
  height: 4px;
  background: var(--viva-yellow);
  transform: rotate(-25deg);
  border-radius: 2px;
}
.viva-logo-text {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--viva-black);
}
.viva-logo-text.is-white { color: white; }

.viva-logo-mark.is-large { width: 96px; height: 96px; }
.viva-logo-mark.is-large::before { font-size: 60px; }
.viva-logo-mark.is-large::after {
  width: 48px;
  height: 10px;
  right: -8px;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--viva-text);
  position: relative;
  padding: 6px 0;
}
.site-nav__link:hover { color: var(--viva-red); }
.site-nav__link.is-active { color: var(--viva-red); }
.site-nav__link.is-active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--viva-red);
}
.site-cta {
  background: var(--viva-red);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.site-cta:hover {
  background: #c8281e;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(230, 51, 41, 0.4);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--viva-black);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === ボタン === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--viva-red);
  color: white;
}
.btn--primary:hover {
  background: #c8281e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 51, 41, 0.4);
}
.btn--ghost {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn--ghost:hover {
  background: white;
  color: var(--viva-black);
}
.btn--white {
  background: white;
  color: var(--viva-red);
  border: none;
}
.btn--white:hover {
  background: var(--viva-yellow);
  color: var(--viva-black);
}
.btn--outline {
  background: white;
  color: var(--viva-black);
  border: 2px solid var(--viva-red);
}
.btn--outline:hover {
  color: var(--viva-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 51, 41, 0.16);
}
.btn--large {
  padding: 20px 48px;
  font-size: 18px;
}

/* === Vストローク === */
.v-stroke {
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-v-stroke);
  margin: 16px 0;
  border-radius: 2px;
}
.v-stroke--center { margin-left: auto; margin-right: auto; }
.v-stroke--small { width: 48px; height: 3px; }
.section-divider {
  height: 6px;
  background: var(--gradient-v-stroke);
  transform: skewY(-1.5deg);
  margin: -3px 0;
}

/* === セクションラベル === */
.section-label {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--viva-orange);
  text-transform: uppercase;
}
.section-label--white { color: var(--viva-yellow); }

/* === セクション === */
.section {
  padding: 96px 32px;
}
.section--dark {
  background: var(--viva-black);
  color: white;
}
.section--gray {
  background: var(--viva-gray);
}
.section__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section__title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.3;
  margin: 12px 0;
}
.section__title--white { color: white; }
.section__lead {
  font-size: 18px;
  line-height: 1.9;
  color: var(--viva-text-muted);
  max-width: 720px;
}
.section__lead--white {
  color: rgba(255,255,255,0.85);
}

/* === FV === */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--viva-black);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__sun {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at center,
    var(--viva-yellow) 0%,
    var(--viva-orange) 30%,
    var(--viva-red) 55%,
    transparent 75%);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: sun-rise 3s ease-out forwards;
}
@keyframes sun-rise {
  0% {
    bottom: -800px;
    opacity: 0;
  }
  100% {
    bottom: -200px;
    opacity: 0.6;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__title {
  font-size: 80px;
  font-weight: 900;
  line-height: 1.2;
  margin: 32px 0 16px;
  letter-spacing: -0.02em;
}
.hero__lead {
  font-size: 18px;
  line-height: 2;
  color: rgba(255,255,255,0.85);
  margin: 24px 0 48px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.2em;
  font-family: "Outfit", sans-serif;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* === 3カード === */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.card {
  background: white;
  padding: 40px 32px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.card__num {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--viva-red);
}
.card__num.is-orange { color: var(--viva-orange); }
.card__num.is-yellow { color: var(--viva-yellow); }
.card__title {
  font-size: 22px;
  font-weight: 900;
  margin: 16px 0 12px;
  line-height: 1.5;
}
.card__body {
  color: var(--viva-text-muted);
  font-size: 14px;
  line-height: 1.8;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--viva-red);
  font-weight: 700;
  font-size: 14px;
  margin-top: 20px;
}

/* === JOIN VIVA セクション === */
.join-viva {
  background: var(--gradient-sun-rev);
  padding: 120px 32px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.join-viva__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}
.join-viva__inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.join-viva__title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.3;
  margin: 16px 0 24px;
}
.join-viva__lead {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* === FOOTER === */
.site-footer {
  background: var(--viva-black);
  color: white;
  padding: 80px 32px 40px;
}
.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.site-footer__brand {
  margin-bottom: 48px;
}
.site-footer__title {
  font-size: 32px;
  font-weight: 900;
  margin: 24px 0 12px;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--viva-yellow);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.site-footer__col ul {
  list-style: none;
}
.site-footer__col li {
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.site-footer__col a:hover { color: var(--viva-yellow); }
.site-footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* === Aboutページ専用 === */
.page-header {
  background: var(--viva-black);
  color: white;
  padding: 120px 32px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header__sun {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100px;
  background: var(--gradient-sun);
  filter: blur(30px);
  opacity: 0.3;
}
.page-header__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.page-header__title {
  font-size: 56px;
  font-weight: 900;
  margin: 16px 0 24px;
}
.page-header__lead {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
}

/* === Mission 2カラム === */
.mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mission-visual {
  height: 400px;
  background: var(--gradient-sun-rev);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mission-visual::before {
  content: "🌅";
  font-size: 120px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

/* === Value 5カード === */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: white;
  padding: 40px 32px;
  border-radius: 8px;
  border-top: 4px solid var(--viva-red);
  transition: all 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.value-card:nth-child(2) { border-top-color: var(--viva-orange); }
.value-card:nth-child(3) { border-top-color: var(--viva-yellow); }
.value-card:nth-child(4) { border-top-color: var(--viva-orange); }
.value-card:nth-child(5) { border-top-color: var(--viva-red); }
.value-card__num {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--viva-red);
  margin-bottom: 12px;
}
.value-card:nth-child(2) .value-card__num { color: var(--viva-orange); }
.value-card:nth-child(3) .value-card__num { color: var(--viva-yellow); }
.value-card:nth-child(4) .value-card__num { color: var(--viva-orange); }
.value-card:nth-child(5) .value-card__num { color: var(--viva-red); }
.value-card__title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}
.value-card__body { color: var(--viva-text-muted); font-size: 14px; }

/* === 代表メッセージ === */
.message-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.message-portrait {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--viva-red), var(--viva-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: white;
  position: relative;
  overflow: hidden;
}
.message-portrait::before {
  content: "👤";
  filter: brightness(0) invert(1);
  opacity: 0.5;
}
.message-portrait + p {
  text-align: center;
  margin-top: 16px;
  font-weight: 700;
}
.message-portrait-wrap small {
  display: block;
  text-align: center;
  color: var(--viva-text-muted);
  font-size: 12px;
  margin-top: 4px;
}
.message-text h3 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.5;
}
.message-text p {
  margin-bottom: 16px;
  line-height: 2;
  color: var(--viva-text);
}
.message-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-weight: 700;
}

/* === 会社概要テーブル === */
.company-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.company-table th, .company-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.company-table th {
  background: var(--viva-gray);
  font-weight: 700;
  font-size: 14px;
  color: var(--viva-text-muted);
  width: 200px;
}
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }

/* === BUSINESS 事業ブロック === */
.business-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.business-block--reverse { direction: rtl; }
.business-block--reverse > * { direction: ltr; }
.business-block__num {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 96px;
  line-height: 1;
  color: var(--viva-red);
}
.business-block--orange .business-block__num { color: var(--viva-orange); }
.business-block--yellow .business-block__num { color: var(--viva-yellow); }
.business-block__english {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--viva-text-muted);
  letter-spacing: 0.05em;
  margin: 24px 0 12px;
}
.business-block__title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.3;
}
.business-block__lead {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--viva-text);
}
.business-block__list {
  list-style: none;
  margin: 24px 0;
}
.business-block__list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  color: var(--viva-text-muted);
}
.business-block__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--viva-red);
  font-weight: 900;
}
.business-block__visual {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--viva-red), var(--viva-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: white;
}
.business-block--orange .business-block__visual {
  background: linear-gradient(135deg, var(--viva-orange), var(--viva-yellow));
}
.business-block--yellow .business-block__visual {
  background: linear-gradient(135deg, var(--viva-yellow), var(--viva-red));
}

/* === RECRUIT === */
.recruit-hero {
  background: linear-gradient(135deg, var(--viva-red), #B82420);
  position: relative;
}
.recruit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(245,194,50,0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.position-list {
  display: grid;
  gap: 16px;
}
.position {
  background: white;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid var(--viva-red);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  transition: all 0.2s;
}
.position:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.position__title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 4px;
}
.position__meta {
  font-size: 12px;
  color: var(--viva-text-muted);
  margin-bottom: 8px;
}
.position__lead {
  font-size: 14px;
  color: var(--viva-text);
}
.position__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--viva-red);
  white-space: nowrap;
}
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-sun-rev);
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--viva-red);
  border: 4px solid white;
  box-shadow: 0 0 0 2px var(--viva-red);
}
.timeline-time {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--viva-red);
  margin-bottom: 4px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.benefit {
  background: white;
  padding: 32px 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.benefit__icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.benefit__title {
  font-size: 14px;
  font-weight: 700;
}
.selection-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
  position: relative;
}
.selection-step {
  text-align: center;
  background: white;
  padding: 24px 16px;
  border-radius: 8px;
  border-top: 3px solid var(--viva-red);
  position: relative;
}
.selection-step__num {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--viva-red);
  margin-bottom: 8px;
}
.selection-step__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.selection-step__days {
  font-size: 12px;
  color: var(--viva-text-muted);
}

/* === フォーム === */
.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-label .required {
  color: var(--viva-red);
  margin-left: 4px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--viva-red);
  box-shadow: 0 0 0 3px rgba(230,51,41,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--viva-red);
  color: white;
  font-weight: 900;
  font-size: 18px;
  border-radius: 4px;
  margin-top: 16px;
  transition: all 0.2s;
}
.form-submit:hover {
  background: #c8281e;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(230,51,41,0.4);
}

/* === NEWS === */
.news-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 0;
}
.news-tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--viva-text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.news-tab.is-active {
  color: var(--viva-red);
  border-bottom-color: var(--viva-red);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.2s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.news-card__thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--viva-red), var(--viva-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.news-card__body {
  padding: 24px;
}
.news-card__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.news-card__date {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  color: var(--viva-text-muted);
}
.news-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  background: var(--viva-red);
  color: white;
}
.news-tag--orange { background: var(--viva-orange); }
.news-tag--yellow { background: var(--viva-yellow); color: var(--viva-black); }
.news-tag--black { background: var(--viva-black); }
.news-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

/* === Top page refined UI === */
.viva-hero {
  position: relative;
  background:
    radial-gradient(circle at 46% 24%, rgba(245,194,50,.16), transparent 16%),
    linear-gradient(180deg, #fff 0%, #fff 72%, #fff8f2 100%);
  color: var(--viva-black);
  overflow: visible;
  padding: 42px 32px 0;
}
.viva-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(590px, .98fr) minmax(520px, 1.02fr);
  gap: 26px;
  align-items: center;
}
.viva-hero__copy {
  padding: 34px 0 62px;
}
.viva-hero__kicker {
  color: var(--viva-red);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.viva-hero__title {
  font-size: clamp(60px, 5.8vw, 82px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: 0;
}
.viva-hero__title .accent {
  color: var(--viva-orange);
}
.viva-hero__lead {
  max-width: 540px;
  font-size: 16px;
  line-height: 2.1;
  color: var(--viva-text);
  font-weight: 500;
}
.viva-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.viva-hero__actions .btn {
  min-width: 224px;
  border-radius: 999px;
  padding: 18px 34px;
}
.viva-hero__actions .btn::after {
  content: "→";
  width: 28px;
  height: 28px;
  margin-left: 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--viva-red);
  font-size: 16px;
  line-height: 1;
}
.viva-hero__actions .btn--outline::after {
  border: 1px solid var(--viva-red);
}
.viva-hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  border-radius: 0 0 0 120px;
  overflow: hidden;
}
.viva-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 58% center;
  display: block;
  border-radius: 0 0 0 120px;
}
.viva-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.28) 27%, transparent 52%);
  pointer-events: none;
}
.viva-hero__burst {
  position: absolute;
  left: 72px;
  top: 44px;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, var(--viva-orange) 0deg 2deg, transparent 2deg 10deg);
  opacity: .62;
  mask: radial-gradient(circle, transparent 0 54%, #000 55% 100%);
  -webkit-mask: radial-gradient(circle, transparent 0 54%, #000 55% 100%);
}
.viva-hero__circle {
  position: absolute;
  right: 34px;
  bottom: 36px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--viva-yellow), var(--viva-orange));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  line-height: 1.7;
  box-shadow: 0 18px 42px rgba(243, 122, 31, .32);
}
.viva-hero__nav {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: -26px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: white;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(13,13,18,.12);
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
}
.viva-hero__nav a {
  min-height: 82px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  border-right: 1px solid rgba(0,0,0,.08);
}
.viva-hero__nav a:last-child { border-right: 0; }
.viva-hero__nav span {
  grid-row: span 2;
  color: var(--viva-red);
  font-weight: 900;
  font-size: 24px;
}
.viva-hero__nav strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}
.viva-hero__nav small {
  color: var(--viva-text-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}
.pickup-section {
  padding: 88px 32px 96px;
  background: white;
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
}
.section-head__text {
  max-width: 480px;
  color: var(--viva-text-muted);
}
.pickup-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
}
.pickup-card {
  min-height: 280px;
  padding: 32px;
  border-radius: 8px;
  background: var(--viva-black);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.pickup-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% 20%;
  height: 70%;
  background: var(--gradient-sun);
  border-radius: 50% 50% 0 0;
  opacity: .72;
}
.pickup-card > * { position: relative; z-index: 1; }
.pickup-card__eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--viva-yellow);
  margin-bottom: 12px;
}
.pickup-card h3 {
  font-size: 26px;
  line-height: 1.35;
  font-weight: 900;
  margin-bottom: 10px;
}
.pickup-card p { color: rgba(255,255,255,.82); }
.intro-section { background: #fffaf1; }
.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.intro-copy {
  font-size: 18px;
  line-height: 2;
}
.intro-copy p + p { margin-top: 18px; }
.contents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.content-panel {
  min-height: 360px;
  padding: 32px;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.content-panel:hover,
.pickup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.1);
}
.content-panel__num {
  font-family: "Outfit", sans-serif;
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  color: var(--viva-red);
}
.content-panel:nth-child(2) .content-panel__num { color: var(--viva-orange); }
.content-panel:nth-child(3) .content-panel__num { color: var(--viva-yellow); }
.content-panel h3 {
  margin-top: 28px;
  font-size: 26px;
  font-weight: 900;
}
.content-panel p {
  margin-top: 14px;
  color: var(--viva-text-muted);
}
.content-panel strong {
  margin-top: auto;
  color: var(--viva-red);
  font-family: "Outfit", sans-serif;
}
.story-band,
.final-cta {
  color: white;
  background: linear-gradient(135deg, var(--viva-red), var(--viva-orange) 58%, var(--viva-yellow));
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}
.story-band::before,
.final-cta::before {
  content: "VIVA";
  position: absolute;
  right: -24px;
  bottom: -52px;
  font-family: "Outfit", sans-serif;
  font-size: 180px;
  font-weight: 900;
  color: rgba(255,255,255,.16);
}
.story-band__inner,
.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}
.story-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.story-band h2,
.final-cta h2 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 900;
  margin: 10px 0 18px;
}
.story-band p {
  max-width: 620px;
  line-height: 2;
}
.position-list--compact { margin-top: 0; }
.news-list {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
}
.news-row {
  display: grid;
  grid-template-columns: 120px 140px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.news-row:last-child { border-bottom: 0; }
.news-row time {
  font-family: "Outfit", sans-serif;
  color: var(--viva-text-muted);
  font-size: 14px;
}
.text-link {
  color: var(--viva-red);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}
.final-cta { text-align: center; background: var(--viva-black); }
.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.fixed-entry {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 998;
  display: flex;
  gap: 8px;
}
.fixed-entry a {
  background: var(--viva-red);
  color: white;
  border-radius: 4px;
  padding: 12px 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(230,51,41,.28);
}
.fixed-entry a:last-child {
  background: var(--viva-black);
}

/* === ナビゲーション（ページ間切り替え用・モック専用） === */
.mock-pages-nav {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--viva-black);
  color: white;
  padding: 12px;
  border-radius: 8px;
  z-index: 999;
  display: flex;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.mock-pages-nav a {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: white;
}
.mock-pages-nav a:hover { background: var(--viva-red); }
.mock-pages-nav a.is-active { background: var(--viva-red); }

/* === レスポンシブ === */
@media (max-width: 1024px) {
  .cards-3, .news-grid, .values { grid-template-columns: repeat(2, 1fr); }
  .business-block, .mission-row, .message-row { grid-template-columns: 1fr; gap: 32px; }
  .business-block--reverse { direction: ltr; }
  .hero__title { font-size: 56px; }
  .section { padding: 64px 24px; }
  .benefits, .selection-flow { grid-template-columns: repeat(2, 1fr); }
  .viva-hero { padding: 28px 24px 0; }
  .viva-hero__inner, .intro-grid, .pickup-grid, .contents-grid { grid-template-columns: 1fr; }
  .viva-hero__copy { padding: 28px 0 16px; }
  .viva-hero__visual { min-height: 420px; border-radius: 0 0 0 80px; }
  .viva-hero__visual img { min-height: 420px; border-radius: 0 0 0 80px; }
  .viva-hero__nav { grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
  .viva-hero__nav a { border-bottom: 1px solid rgba(0,0,0,.08); }
  .desktop-break { display: none; }
  .section-head--split { align-items: flex-start; flex-direction: column; }
  .story-band__inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .cards-3, .news-grid, .values, .benefits, .selection-flow { grid-template-columns: 1fr; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    background: white;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav__link,
  .site-cta { padding: 12px 14px; }
  .hero__title { font-size: 40px; }
  .hero__ctas { flex-direction: column; width: 100%; padding: 0 16px; }
  .section__title, .join-viva__title, .page-header__title { font-size: 32px; }
  .business-block__num { font-size: 64px; }
  .business-block__title { font-size: 28px; }
  .site-footer__cols { grid-template-columns: 1fr; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .form-card { padding: 32px 24px; }
  .viva-hero { padding: 28px 20px 0; }
  .viva-hero__inner { min-height: auto; gap: 24px; }
  .viva-hero__copy { padding: 12px 0 0; }
  .viva-hero__kicker { font-size: 14px; }
  .viva-hero__title { font-size: 48px; line-height: 1.12; }
  .viva-hero__lead { font-size: 16px; }
  .viva-hero__actions .btn { width: 100%; }
  .viva-hero__visual { min-height: 310px; border-radius: 0 0 0 58px; }
  .viva-hero__visual img { min-height: 310px; border-radius: 0 0 0 58px; object-position: 56% center; }
  .viva-hero__burst { left: 20px; top: 18px; width: 94px; height: 94px; }
  .viva-hero__circle { right: 16px; bottom: 16px; width: 116px; height: 116px; font-size: 13px; }
  .viva-hero__nav { grid-template-columns: 1fr; margin-top: 18px; }
  .viva-hero__nav a { min-height: 68px; padding: 14px 16px; border-right: 0; }
  .pickup-section { padding: 56px 20px 64px; }
  .pickup-card, .content-panel { min-height: 250px; padding: 24px; }
  .story-band, .final-cta { padding: 72px 20px; }
  .story-band h2, .final-cta h2 { font-size: 34px; }
  .news-row { grid-template-columns: 1fr; gap: 8px; padding: 20px; }
  .fixed-entry { left: 16px; right: 16px; bottom: 12px; }
  .fixed-entry a { flex: 1; text-align: center; }
  body { padding-bottom: 76px; }
  .mobile-break { display: block; }
  .section__title .text-keep,
  .page-header__title .text-keep,
  .business-block__title .text-keep {
    white-space: normal;
  }
}

/* Sports photo first view */
.viva-hero {
  overflow: hidden;
  background: #050505;
}

.viva-hero::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.08) 28%, rgba(0,0,0,.16) 58%, rgba(0,0,0,.72) 100%),
    linear-gradient(90deg, rgba(0,0,0,.2), transparent 32%, transparent 68%, rgba(0,0,0,.2));
}

.viva-hero__visual {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  display: flex;
  width: 150%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  gap: 3px;
  overflow: visible;
  opacity: 1;
  background: #050505;
  border-radius: 0;
  filter: none;
  mask: none;
  -webkit-mask: none;
  animation: viva-sport-pan 32s ease-in-out infinite alternate;
}

.viva-hero__panel {
  position: relative;
  flex: 0 0 calc((100% - 15px) / 6);
  height: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.viva-hero__panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.12) brightness(.82);
  transform: scale(1.02);
}

.viva-hero__panel:nth-child(1) img { object-position: 48% center; }
.viva-hero__panel:nth-child(2) img { object-position: 53% center; }
.viva-hero__panel:nth-child(3) img { object-position: 50% center; }
.viva-hero__panel:nth-child(4) img { object-position: 52% center; }
.viva-hero__panel:nth-child(5) img { object-position: 50% center; }
.viva-hero__panel:nth-child(6) img { object-position: 50% center; }

.viva-hero__copy {
  top: 50%;
  z-index: 3;
  width: min(900px, calc(100% - 80px));
  color: #fff;
  text-align: center;
  transform: translate(-50%, -48%);
}

.viva-hero__kicker {
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .04em;
  text-shadow: 0 2px 12px rgba(0,0,0,.65);
}

.viva-hero__title {
  display: block;
  width: min(820px, 100%);
  height: auto;
  min-height: 265px;
  margin: 0 auto;
  padding: 12px 0 20px;
  color: #fff;
  font-family: "Yuji Syuku", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(74px, 7.25vw, 106px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 3px 22px rgba(0,0,0,.38);
}

.viva-hero__title .accent {
  color: #fff;
}

.viva-hero__lead {
  margin-top: 4px;
  color: #fff;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 900;
  line-height: 1.85;
  letter-spacing: .03em;
  text-shadow: 0 2px 14px rgba(0,0,0,.8);
}

@keyframes viva-sport-pan {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-33.333%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .viva-hero__visual { animation: none; }
}

@media (max-width: 640px) {
  .viva-hero__visual {
    width: 300%;
    min-height: 100%;
    margin: 0;
    gap: 2px;
    opacity: 1;
    animation-duration: 38s;
  }

  .viva-hero__panel {
    flex-basis: calc((100% - 10px) / 6);
  }

  .viva-hero::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.1) 30%, rgba(0,0,0,.23) 58%, rgba(0,0,0,.78) 100%),
      linear-gradient(90deg, rgba(0,0,0,.14), transparent 45%, rgba(0,0,0,.14));
  }

  .viva-hero__copy {
    top: 51%;
    width: calc(100% - 30px);
    transform: translate(-50%, -48%);
  }

  .viva-hero__kicker {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .viva-hero__title {
    width: 100%;
    min-height: 172px;
    padding: 10px 0 14px;
    font-size: clamp(43px, 12.3vw, 52px);
    line-height: 1.2;
  }

  .viva-hero__lead {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0;
  }

  @keyframes viva-sport-pan {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-66.667%, 0, 0); }
  }
}

/* FV header and entry banner refinement */
body.page-home .viva-logo--header::after {
  content: none;
  display: none;
}

.viva-hero[data-hero-index="0"] .viva-hero__entry { --entry-theme: #f41624; }
.viva-hero[data-hero-index="1"] .viva-hero__entry { --entry-theme: #ff7a17; }
.viva-hero[data-hero-index="2"] .viva-hero__entry { --entry-theme: #f7ad00; }
.viva-hero[data-hero-index="3"] .viva-hero__entry { --entry-theme: #ef3d2f; }

.viva-hero__entry {
  width: min(304px, 21.111111vw);
  height: min(110px, 7.638889vw);
  justify-content: flex-start;
  padding: min(14px, .972222vw) min(112px, 7.777778vw) min(11px, .763889vw) min(38px, 2.638889vw);
  border-radius: min(42px, 2.916667vw);
  background: var(--entry-theme, #f41624) !important;
  box-shadow: min(20px, 1.388889vw) min(20px, 1.388889vw) 0 rgba(8, 2, 7, .28);
}

.viva-hero__entry-copy {
  display: block;
  flex: 0 0 auto;
  width: min(92px, 6.388889vw);
  color: #fff;
}

.viva-hero__entry-icon {
  display: grid;
  width: min(28px, 1.944444vw);
  height: min(20px, 1.388889vw);
  place-items: center;
  margin-bottom: min(3px, .208333vw);
  border-radius: min(5px, .347222vw);
  color: var(--entry-theme, #f41624);
  background: #fff;
}

.viva-hero__entry-icon svg {
  width: 78%;
  height: 78%;
}

.viva-hero__entry strong {
  font-size: min(24px, 1.666667vw);
  line-height: 1;
}

.viva-hero__entry small {
  margin-top: min(5px, .347222vw);
  font-size: min(12px, .833333vw);
  line-height: 1;
}

.viva-hero__entry-arrow {
  position: relative;
  z-index: 3;
  flex-basis: min(30px, 2.083333vw);
  width: min(30px, 2.083333vw);
  height: min(30px, 2.083333vw);
  margin-left: min(8px, .555556vw);
  border: 0;
  font-size: min(14px, .972222vw);
}

.viva-hero__entry-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 64%;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.viva-hero__entry-media {
  inset: 0;
  width: 100%;
  overflow: visible;
  pointer-events: none;
}

.viva-hero__entry-media::after {
  display: none;
}

.viva-hero__entry-media img {
  top: -18%;
  right: -4%;
  bottom: auto;
  left: auto;
  width: auto;
  height: 190%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  scale: 1;
  transform-origin: 62% 50%;
  transform: translate3d(16%, 0, 0);
}

.viva-hero__entry-media img.is-active {
  scale: 1;
  transform: translate3d(0, 0, 0);
}

.viva-hero__entry-media img.is-prev {
  transform: translate3d(-16%, 0, 0);
}

.viva-hero__entry:hover .viva-hero__entry-media img.is-active,
.viva-hero__entry:focus-visible .viva-hero__entry-media img.is-active {
  scale: 1.04;
}

@media (max-width: 1023px) {
  .viva-hero__entry {
    width: min(172px, 43vw);
    height: min(62px, 15.5vw);
    padding: min(8px, 2vw) min(64px, 16vw) min(6px, 1.5vw) min(20px, 5vw);
    border-radius: min(25px, 6.25vw);
  }

  .viva-hero__entry-copy {
    width: min(53px, 13.25vw);
  }

  .viva-hero__entry-icon {
    width: min(17px, 4.25vw);
    height: min(12px, 3vw);
    margin-bottom: min(2px, .5vw);
    border-radius: min(3px, .75vw);
  }

  .viva-hero__entry strong {
    font-size: min(14px, 3.5vw);
  }

  .viva-hero__entry small {
    margin-top: min(3px, .75vw);
    font-size: min(7px, 1.75vw);
  }

  .viva-hero__entry-arrow {
    flex-basis: min(20px, 5vw);
    width: min(20px, 5vw);
    height: min(20px, 5vw);
    margin-left: min(4px, 1vw);
    font-size: min(9px, 2.25vw);
  }

  .viva-hero__entry-media {
    width: 100%;
  }

  .viva-hero__entry-media img {
    top: -18%;
    right: -4%;
    height: 190%;
  }
}

/* Final cascade lock for the 2026-07 presentation polish */
.pickup-section {
  padding: 116px 40px 128px;
  color: #111;
  background: #fff;
  background-color: #fff;
}

.pickup-section .section-label { color: #f41624; }
.pickup-section .section-head__text { color: #5d5d62; }

.pickup-grid {
  display: grid;
  grid-template-columns: 1.16fr 1fr 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 64px;
}

.pickup-card,
.pickup-card--wide {
  display: block;
  min-height: 470px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #111;
}

.pickup-card:nth-child(2) { margin-top: 46px; }
.pickup-card:nth-child(3) { margin-top: 92px; }
.pickup-card::before { display: none; }
.pickup-card:hover,
.pickup-card:focus-visible {
  color: #fff;
  background: #111;
  transform: translateY(-5px);
}
.pickup-card h3 { color: #fff; }

.intro-section,
.intro-section[style] {
  padding: 120px 40px 132px;
  border-top: 0;
  color: #fff;
  background: #f41624 !important;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.intro-section .section-label,
.intro-section .intro-copy { color: #fff; }

.story-band {
  min-height: 620px;
  padding: 0 40px;
  color: #fff;
  background: #050505 !important;
}

.story-band::before { display: none; }

.story-band__inner {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(380px, 1.18fr);
  gap: 72px;
  align-items: center;
  max-width: 1200px;
  min-height: 620px;
}

.story-band h2 {
  margin: 16px 0 24px;
  color: #fff;
  font-size: 54px;
  line-height: 1.32;
  letter-spacing: .08em;
}

.story-band p { color: rgba(255,255,255,.72); }

.home-position-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-position-grid .position {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: stretch;
  padding: 28px;
  border: 1px solid #dedee2;
  border-top: 5px solid #f41624;
  border-radius: 8px;
  background: #fff;
}

.home-position-grid .position--orange { border-top-color: #ff7a17; }
.home-position-grid .position--yellow { border-top-color: #ffb300; }

.home-position-grid .position:hover,
.home-position-grid .position:focus-visible {
  color: #fff;
  background: #111;
  transform: translateY(-5px);
}

.home-position-grid .position__link { color: inherit; }

@media (max-width: 1024px) {
  .pickup-section,
  .intro-section,
  .home-positions {
    padding-right: 28px;
    padding-left: 28px;
  }

  .pickup-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pickup-card,
  .pickup-card--wide { min-height: 410px; }
  .pickup-card:nth-child(2) { margin-top: 28px; }
  .pickup-card:nth-child(3) { margin-top: 56px; }

  .intro-grid { grid-template-columns: 1fr; gap: 54px; }
  .story-band__inner { grid-template-columns: .9fr 1.1fr; gap: 42px; }
  .home-position-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .pickup-section { padding: 72px 20px 82px; }

  .pickup-grid {
    display: flex;
    gap: 12px;
    margin-top: 38px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
  }

  .pickup-card,
  .pickup-card--wide,
  .pickup-card:nth-child(2),
  .pickup-card:nth-child(3) {
    flex: 0 0 min(82vw, 330px);
    min-height: 455px;
    margin-top: 0;
  }

  .intro-section,
  .intro-section[style] { padding: 76px 20px 84px; }
  .intro-grid { grid-template-columns: 1fr; gap: 38px; }

  .story-band { min-height: auto; padding: 76px 20px 0; }
  .story-band__inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 34px;
  }
  .story-band h2 { font-size: 38px; }

  .home-position-grid { grid-template-columns: 1fr; }
  .home-position-grid .position { min-height: 330px; }
}

/* ==================================================
   Site polish: editorial sections and shared pages
================================================== */

/* Home / PICK UP */
.pickup-section {
  padding: 116px 40px 128px;
  color: #111;
  background: #fff;
}

.pickup-section .section-label {
  color: #f41624;
}

.pickup-section .section__title {
  max-width: 720px;
  margin-top: 16px;
  color: #080808;
  font-size: 54px;
  line-height: 1.28;
  letter-spacing: 0;
}

.pickup-section .section-head__text {
  max-width: 380px;
  color: #5d5d62;
  font-size: 15px;
  line-height: 2;
}

.pickup-grid {
  display: grid;
  grid-template-columns: 1.16fr 1fr 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 64px;
}

.pickup-card,
.pickup-card--wide {
  position: relative;
  display: block;
  min-height: 470px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #111;
  box-shadow: none;
  transform: none;
}

.pickup-card:nth-child(2) {
  margin-top: 46px;
}

.pickup-card:nth-child(3) {
  margin-top: 92px;
}

.pickup-card::before {
  display: none;
}

.pickup-card > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.75,.25,1);
}

.pickup-card:nth-child(1) > img { object-position: 52% 44%; }
.pickup-card:nth-child(2) > img { object-position: 52% center; }
.pickup-card:nth-child(3) > img { object-position: 55% center; }

.pickup-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.04) 40%, rgba(0,0,0,.78) 100%),
    linear-gradient(90deg, rgba(0,0,0,.22), transparent 68%);
}

.pickup-card__num {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  letter-spacing: 0;
}

.pickup-card__body {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
}

.pickup-card__eyebrow,
.pickup-card:hover .pickup-card__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .18em;
}

.pickup-card h3 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.45;
  letter-spacing: 0;
}

.pickup-card__link {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,.64);
  border-bottom: 1px solid rgba(255,255,255,.64);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.pickup-card:hover,
.pickup-card:focus-visible {
  color: #fff;
  background: #111;
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
  transform: translateY(-5px);
}

.pickup-card:hover > img,
.pickup-card:focus-visible > img {
  transform: scale(1.04);
}

.pickup-card:hover .pickup-card__link span,
.pickup-card:focus-visible .pickup-card__link span {
  transform: translateX(5px);
}

.pickup-card__link span {
  transition: transform .2s ease;
}

/* Home / INTRODUCTION */
.intro-section,
.intro-section[style] {
  padding: 120px 40px 132px;
  border-top: 0;
  color: #fff;
  background: #f41624 !important;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.intro-heading .section-label,
.intro-section .section-label {
  color: #fff;
}

.intro-heading .section__title {
  max-width: 500px;
  margin-top: 20px;
  color: #fff;
  font-size: 48px;
  line-height: 1.42;
  letter-spacing: 0;
}

.intro-heading__en {
  margin-top: 64px;
  color: rgba(255,255,255,.3);
  font-family: "Outfit", sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-content {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(220px, .72fr);
  gap: 42px;
  align-items: end;
}

.intro-media {
  position: relative;
  height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: 240px 240px 8px 8px;
  background: #c90014;
}

.intro-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% center;
}

.intro-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.72);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.intro-copy {
  padding-bottom: 10px;
  color: #fff;
  font-size: 15px;
  line-height: 2.05;
}

.intro-copy p + p {
  margin-top: 22px;
}

.intro-link {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
  border-top: 1px solid rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.75);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/* Home / MESSAGE */
.story-band {
  min-height: 620px;
  padding: 0 40px;
  color: #fff;
  background: #050505 !important;
}

.story-band::before {
  display: none;
}

.story-band__inner {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(380px, 1.18fr);
  gap: 72px;
  align-items: center;
  max-width: 1200px;
  min-height: 620px;
}

.story-band__copy {
  padding: 72px 0;
}

.story-band h2 {
  margin: 16px 0 24px;
  color: #fff;
  font-size: 54px;
  line-height: 1.32;
  letter-spacing: .08em;
}

.story-band p {
  max-width: 470px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 2;
}

.story-band__link {
  display: flex;
  width: min(100%, 380px);
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
  border-top: 1px solid rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.5);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.story-band__media {
  position: relative;
  height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 260px 260px 8px 8px;
}

.story-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0,0,0,.58));
}

.story-band__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 42%;
}

.story-band__media > span {
  position: absolute;
  right: 22px;
  bottom: 6px;
  z-index: 1;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
}

/* Home / OPEN POSITIONS */
.home-positions {
  padding: 116px 40px 124px;
  background: #fff;
}

.home-positions .section-head {
  margin-bottom: 54px;
}

.home-positions .section__title {
  margin-top: 14px;
  font-size: 50px;
  letter-spacing: 0;
}

.home-position-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-position-grid .position {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: stretch;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #dedee2;
  border-top: 5px solid #f41624;
  border-left: 1px solid #dedee2;
  border-radius: 8px;
  background: #fff;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.home-position-grid .position--orange { border-top-color: #ff7a17; }
.home-position-grid .position--yellow { border-top-color: #ffb300; }

.home-position-grid .position:hover,
.home-position-grid .position:focus-visible {
  color: #fff;
  background: #111;
  transform: translateY(-5px);
}

.position__num {
  color: #f41624;
  font-family: "Outfit", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.position--orange .position__num { color: #ff7a17; }
.position--yellow .position__num { color: #d99a00; }

.position__category {
  display: block;
  margin-top: 34px;
  color: #77777c;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}

.home-position-grid .position__title {
  min-height: 68px;
  margin-top: 9px;
  font-size: 24px;
  line-height: 1.45;
  letter-spacing: 0;
}

.home-position-grid .position__lead {
  margin-top: 12px;
  color: #66666b;
  font-size: 13px;
  line-height: 1.85;
}

.home-position-grid .position:hover .position__category,
.home-position-grid .position:hover .position__lead,
.home-position-grid .position:focus-visible .position__category,
.home-position-grid .position:focus-visible .position__lead {
  color: rgba(255,255,255,.7);
}

.position__tags {
  display: flex;
  gap: 7px;
  margin-top: 20px;
}

.position__tags span {
  padding: 4px 10px;
  border: 1px solid #d8d8dc;
  border-radius: 20px;
  color: #66666b;
  font-size: 10px;
  font-weight: 700;
}

.home-position-grid .position:hover .position__tags span,
.home-position-grid .position:focus-visible .position__tags span {
  border-color: rgba(255,255,255,.38);
  color: #fff;
}

.home-position-grid .position__link {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid currentColor;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
}

/* Home / NEWS */
.section--gray .news-list {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.section--gray .news-row {
  min-height: 92px;
  padding: 22px 4px;
  border-top: 1px solid #cfcfd3;
  border-bottom: 0;
  transition: padding .2s ease, color .2s ease;
}

.section--gray .news-row:last-child {
  border-bottom: 1px solid #cfcfd3;
}

.section--gray .news-row:hover,
.section--gray .news-row:focus-visible {
  padding-right: 14px;
  padding-left: 14px;
  color: #f41624;
}

.section--gray .news-row strong {
  font-size: 15px;
  letter-spacing: 0;
}

@media (max-width: 1024px) {
  .pickup-section,
  .intro-section,
  .home-positions {
    padding-right: 28px;
    padding-left: 28px;
  }

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

  .pickup-card,
  .pickup-card--wide {
    min-height: 410px;
  }

  .pickup-card:nth-child(2) { margin-top: 28px; }
  .pickup-card:nth-child(3) { margin-top: 56px; }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .intro-heading__en {
    margin-top: 28px;
  }

  .story-band__inner {
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
  }

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

@media (max-width: 768px) {
  .pickup-section {
    padding: 72px 20px 82px;
  }

  .pickup-section .section__title {
    font-size: 36px;
  }

  .pickup-section .section-head__text {
    font-size: 13px;
  }

  .pickup-grid {
    display: flex;
    gap: 12px;
    margin-top: 38px;
    margin-right: -20px;
    padding-right: 20px;
    padding-bottom: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .pickup-grid::-webkit-scrollbar { display: none; }

  .pickup-card,
  .pickup-card--wide,
  .pickup-card:nth-child(2),
  .pickup-card:nth-child(3) {
    flex: 0 0 min(82vw, 330px);
    min-height: 455px;
    margin-top: 0;
    scroll-snap-align: start;
  }

  .pickup-card h3 { font-size: 25px; }

  .intro-section,
  .intro-section[style] {
    padding: 76px 20px 84px;
  }

  .intro-grid {
    gap: 38px;
  }

  .intro-heading .section__title {
    font-size: 36px;
  }

  .intro-heading__en {
    display: none;
  }

  .intro-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro-media {
    height: 430px;
    border-radius: 220px 220px 8px 8px;
  }

  .intro-copy {
    font-size: 14px;
  }

  .story-band {
    min-height: auto;
    padding: 76px 20px 0;
  }

  .story-band__inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 34px;
  }

  .story-band__copy {
    width: 100%;
    padding: 0;
  }

  .story-band h2 {
    font-size: 38px;
  }

  .story-band__media {
    width: 100%;
    height: 390px;
  }

  .story-band__media > span {
    font-size: 52px;
  }

  .home-positions {
    padding: 76px 20px 84px;
  }

  .home-positions .section__title {
    font-size: 36px;
  }

  .home-position-grid {
    grid-template-columns: 1fr;
  }

  .home-position-grid .position {
    min-height: 330px;
  }

  .section--gray .news-row {
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
  }

  .section--gray .news-row strong {
    grid-column: 1 / -1;
  }
}

/* ==================================================
   Vrightz-inspired visual refresh
   Keeps the existing information architecture intact.
================================================== */
:root {
  --viva-red: #f41624;
  --viva-orange: #ff7a17;
  --viva-yellow: #ffd21f;
  --viva-black: #080207;
  --viva-white: #ffffff;
  --viva-gray: #f7f7f9;
  --viva-text: #000000;
  --viva-text-muted: #666666;
  --vrightz-border: #e5e5e5;
  --gradient-sun: linear-gradient(180deg, #ffd21f 0%, #ff7a17 52%, #f41624 100%);
  --gradient-sun-rev: linear-gradient(0deg, #f41624 0%, #ff7a17 48%, #ffd21f 100%);
  --gradient-v-stroke: linear-gradient(90deg, #ffd21f 0%, #ff7a17 52%, #f41624 100%);
}

html {
  background: #fff;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #000;
  background: #fff;
  letter-spacing: .05em;
  word-break: normal;
  overflow-wrap: anywhere;
}

.section {
  padding: 100px 40px;
}

.section__inner {
  max-width: 1200px;
}

.section-label {
  color: #f41624;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}

.section-label--white {
  color: #fff;
}

.section__title {
  margin: 16px 0;
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .15em;
}

.section__lead,
.section__lead--white {
  font-size: 16px;
  line-height: 2;
  letter-spacing: .05em;
}

.v-stroke {
  width: 48px;
  height: 2px;
  margin-top: 25px;
  border-radius: 0;
  background: #f41624;
}

.section-divider {
  height: 2px;
  margin: 0;
  transform: none;
  background: #f41624;
}

/* Header */
.site-header {
  position: fixed;
  top: 15px;
  right: 15px;
  left: 15px;
  width: auto;
  background: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, .08) 0 0 5px;
}

.site-header__inner {
  max-width: none;
  height: 72px;
  padding: 0 28px;
}

.viva-logo {
  gap: 10px;
}

.viva-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 2px;
  background: #f41624;
}

.viva-logo-mark::after {
  display: none;
}

.viva-logo-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  letter-spacing: .08em;
}

.site-nav {
  gap: 30px;
}

.site-nav__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
}

.site-nav__link.is-active::after {
  bottom: -8px;
  height: 1px;
}

.site-cta {
  padding: 9px 18px;
  border-radius: 2px;
  background: #f41624;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
}

.site-cta:hover {
  background: #000;
  box-shadow: none;
  transform: none;
}

/* Buttons */
.btn,
.form-submit {
  min-height: 48px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  box-shadow: none;
}

.btn:hover,
.form-submit:hover {
  box-shadow: none;
  transform: none;
}

.btn--primary,
.form-submit {
  background: #f41624;
  color: #fff;
}

.btn--outline {
  border: 1px solid #f41624;
  border-radius: 2px;
}

.btn--ghost {
  border: 1px solid #fff;
  border-radius: 2px;
}

/* Top hero: dark canvas with a moving vertical photo rhythm */
.viva-hero {
  position: relative;
  height: 100svh;
  min-height: 650px;
  padding: 0;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.viva-hero__inner {
  position: relative;
  z-index: auto;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 650px;
}

.viva-hero__visual {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
  background-image: url("assets/viva-hero-team.png");
  background-repeat: repeat-x;
  background-position: 0 center;
  background-size: auto 125%;
  opacity: .66;
  filter: grayscale(1) contrast(1.12);
  mask: repeating-linear-gradient(90deg, #000 0 calc(22.35vw - 5px), transparent calc(22.35vw - 5px) 22.35vw);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 calc(22.35vw - 5px), transparent calc(22.35vw - 5px) 22.35vw);
  animation: viva-photo-loop 28s linear infinite;
}

@keyframes viva-photo-loop {
  from { background-position: 0 center; }
  to { background-position: 548px center; }
}

.viva-hero__visual img,
.viva-hero__visual::after,
.viva-hero__burst,
.viva-hero__circle {
  display: none;
}

.viva-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.18) 40%, rgba(0,0,0,.45));
  pointer-events: none;
}

.viva-hero__copy {
  position: absolute;
  top: calc(50% - 12px);
  left: 50%;
  z-index: 3;
  width: min(642px, calc(100% - 80px));
  padding: 0;
  text-align: center;
  transform: translate(-50%, -50%);
}

.viva-hero__kicker {
  margin-bottom: 25px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .16em;
}

.viva-hero__title {
  width: min(560px, 100%);
  height: 335px;
  margin: 0 auto;
  padding: 80px 0;
  color: #fff;
  font-size: clamp(54px, 4.85vw, 62px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .15em;
}

.viva-hero__title .accent {
  color: #fff;
}

.viva-hero__lead {
  max-width: 720px;
  margin: 25px auto 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: .06em;
}

.viva-hero__actions {
  display: none;
}

.viva-hero__actions .btn {
  min-width: 190px;
  padding: 14px 25px;
  border-radius: 2px;
}

.viva-hero__actions .btn::after {
  display: none;
}

.viva-hero__actions .btn--outline {
  border-color: #fff;
  background: rgba(0,0,0,.28);
  color: #fff;
}

.viva-hero__nav {
  display: none;
}

.viva-hero__nav a {
  min-height: 72px;
  border-right-color: rgba(255,255,255,.28);
  color: #fff;
}

.viva-hero__nav span {
  color: #f41624;
}

.viva-hero__nav small {
  color: rgba(255,255,255,.7);
}

/* Red brand statement band */
.pickup-section {
  padding: 100px 40px 75px;
  background: #f41624;
  color: #fff;
}

.pickup-section .section-label,
.pickup-section .section-head__text {
  color: #fff;
}

.pickup-grid {
  gap: 25px;
  margin-top: 70px;
}

.pickup-card {
  min-height: 260px;
  padding: 30px 25px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
}

.pickup-card::before {
  display: none;
}

.pickup-card:hover {
  background: #fff;
  color: #f41624;
  box-shadow: none;
  transform: none;
}

.pickup-card__eyebrow,
.pickup-card:hover .pickup-card__eyebrow {
  color: currentColor;
}

.pickup-card h3 {
  font-size: 24px;
  letter-spacing: .05em;
}

.pickup-card p,
.pickup-card:hover p {
  color: currentColor;
  opacity: .82;
}

.intro-section,
.intro-section[style] {
  padding-top: 75px;
  background: #f41624 !important;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.3);
}

.intro-section .section-label,
.intro-section .intro-copy {
  color: #fff;
}

.intro-section .v-stroke {
  background: #fff;
}

.intro-grid {
  gap: 100px;
}

.intro-copy {
  font-size: 16px;
  line-height: 2.15;
}

/* Service/content grid */
.section--gray,
section[style*="background:linear-gradient"],
section[style*="background:#FFF"] {
  background: #f7f7f9 !important;
}

.contents-grid {
  gap: 25px;
  margin-top: 70px;
}

.content-panel {
  min-height: 360px;
  padding: 30px;
  border: 0;
  border-radius: 2px;
  background: #000;
  color: #fff;
  box-shadow: none;
}

.content-panel:hover {
  box-shadow: none;
  transform: none;
}

.content-panel__num,
.content-panel:nth-child(2) .content-panel__num,
.content-panel:nth-child(3) .content-panel__num {
  color: #f41624;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 52px;
  letter-spacing: .05em;
}

.content-panel h3 {
  font-size: 24px;
  letter-spacing: .06em;
}

.content-panel p {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.9;
}

.content-panel strong {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
}

/* Statement and conversion bands */
.story-band,
.final-cta,
.join-viva,
.join-viva[style] {
  background: #000 !important;
  color: #fff;
}

.story-band,
.final-cta,
.join-viva {
  padding: 100px 40px;
}

.story-band::before,
.final-cta::before {
  right: 20px;
  bottom: -55px;
  color: rgba(207,46,46,.55);
  font-size: 180px;
}

.story-band h2,
.final-cta h2,
.join-viva__title {
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.4;
  letter-spacing: .15em;
}

.join-viva__pulse {
  display: none;
}

/* Flat cards and rows */
.card,
.value-card,
.position,
.benefit,
.selection-step,
.news-card,
.form-card {
  border-radius: 2px;
  box-shadow: none;
}

.card,
.value-card,
.position,
.benefit,
.selection-step {
  border: 1px solid #e5e5e5;
}

.card:hover,
.value-card:hover,
.position:hover,
.benefit:hover,
.news-card:hover {
  box-shadow: rgba(0,0,0,.08) 0 0 5px;
  transform: none;
}

.card__num,
.card__num.is-orange,
.card__num.is-yellow,
.value-card__num,
.value-card:nth-child(n) .value-card__num,
.selection-step__num,
.timeline-time {
  color: #f41624;
}

.position {
  border-left: 1px solid #e5e5e5 !important;
  border-top: 3px solid #f41624;
}

.position__link,
.position__link[style] {
  color: #f41624 !important;
}

/* Lower page headers */
.page-header {
  padding: 100px 40px 75px !important;
  background: #000 !important;
  color: #fff;
  text-align: left;
}

.page-header__inner {
  max-width: 1200px;
}

.page-header__sun {
  top: auto;
  right: 40px;
  bottom: 0;
  left: auto;
  width: 35%;
  height: 2px;
  background: #f41624;
  filter: none;
  opacity: 1;
}

.page-header__title {
  margin: 15px 0 25px;
  font-size: clamp(42px, 5.5vw, 72px) !important;
  line-height: 1.4;
  letter-spacing: .15em;
}

.page-header__lead {
  font-size: 16px;
  line-height: 2;
}

.section--dark {
  background: #000;
}

.mission-visual,
.business-block__visual,
.business-block--orange .business-block__visual,
.business-block--yellow .business-block__visual {
  border-radius: 2px;
  background: #000 !important;
}

.mission-visual::before,
.business-block__visual {
  font-size: 0;
}

.mission-visual::after,
.business-block__visual::after {
  content: "VIVA";
  color: #f41624;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(54px, 8vw, 110px);
  font-weight: 900;
  letter-spacing: .12em;
}

.business-block {
  gap: 100px;
  padding: 75px 0;
}

.business-block__num,
.business-block--orange .business-block__num,
.business-block--yellow .business-block__num {
  color: #f41624;
  font-size: 72px;
}

.business-block__english {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: .12em;
}

.business-block__title {
  font-size: 42px;
  line-height: 1.5;
  letter-spacing: .1em;
}

.business-block__list li::before {
  color: #f41624;
}

.message-portrait {
  border-radius: 2px;
  background: #000;
}

.message-portrait::before {
  content: "VIVA";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: .12em;
  opacity: 1;
  filter: none;
}

.company-table {
  border-radius: 2px;
  box-shadow: none;
  border-top: 1px solid #000;
}

.company-table th {
  background: #f7f7f9;
}

/* Recruit */
.recruit-hero {
  min-height: 650px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.32)),
    url("assets/viva-hero-team.png") center 38% / cover no-repeat;
}

.recruit-hero::before {
  display: none;
}

.hero__title {
  font-size: clamp(50px, 6vw, 78px);
  line-height: 1.4;
  letter-spacing: .15em;
}

.hero__lead {
  font-size: 16px;
  line-height: 2;
}

.benefit__icon {
  filter: grayscale(1);
}

.timeline::before {
  width: 1px;
  background: #f41624;
}

.timeline-item::before {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 0 2px #f41624;
}

/* Forms */
.form-card {
  border: 1px solid #e5e5e5;
}

.form-input,
.form-textarea,
.form-select {
  min-height: 48px;
  border-color: #e5e5e5;
  border-radius: 2px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: #f41624;
  box-shadow: 0 0 0 2px rgba(207,46,46,.12);
}

/* News */
.news-tabs {
  border-bottom-color: #e5e5e5;
}

.news-tab.is-active {
  color: #f41624;
  border-bottom-color: #f41624;
}

.news-card {
  border-color: #e5e5e5;
}

.news-card__thumb,
.news-card__thumb[style] {
  background: #000 !important;
  font-size: 0;
}

.news-card__thumb::after {
  content: "VIVA";
  color: #f41624;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: .14em;
}

.news-tag,
.news-tag--orange,
.news-tag--yellow,
.news-tag--black {
  border-radius: 2px;
  background: #f41624;
  color: #fff;
}

/* Footer */
.site-footer {
  padding: 75px 40px 30px;
  background: #000;
}

.site-footer__title {
  font-size: 28px;
  letter-spacing: .1em;
}

.site-footer__col h4 {
  color: #fff;
}

.site-footer__cols {
  border-color: rgba(255,255,255,.22);
}

/* Fixed preview actions stay quiet and do not compete with the page */
.fixed-entry {
  display: none;
}

.fixed-entry a {
  border-radius: 2px;
  background: #f41624;
  box-shadow: rgba(0,0,0,.15) 0 0 5px;
  font-size: 13px;
  font-weight: 700;
}

.fixed-entry a:last-child {
  background: #000;
}

@media (max-width: 1024px) {
  .section {
    padding: 75px 25px;
  }

  .site-header__inner {
    padding: 0 20px;
  }

  .viva-hero { height: 100svh; min-height: 650px; }
  .viva-hero__inner { height: 100%; min-height: 650px; }

  .viva-hero__visual {
    min-height: 100%;
    border-radius: 0;
    background-size: auto 110%;
  }

  .viva-hero__nav {
    right: 25px;
    left: 25px;
    grid-template-columns: repeat(5, 1fr);
  }

  .viva-hero__nav a {
    min-width: 0;
    padding: 14px 10px;
    border-bottom: 0;
  }

  .viva-hero__nav span {
    display: none;
  }

  .intro-grid,
  .business-block,
  .message-row {
    gap: 50px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 66px;
  }

  .section,
  .pickup-section,
  .story-band,
  .final-cta,
  .join-viva,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-header__inner {
    height: 50px;
    padding: 0 14px;
  }

  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
  }

  .viva-logo-mark {
    width: 28px;
    height: 28px;
  }

  .viva-logo-mark::before {
    font-size: 18px;
  }

  .viva-logo-text {
    font-size: 18px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border: 0;
  }

  .site-nav {
    top: 58px;
    border-radius: 2px;
  }

  .menu-toggle {
    border-radius: 2px;
  }

  .viva-hero,
  .viva-hero__inner {
    height: 100svh;
    min-height: 680px;
    padding: 0;
  }

  .viva-hero__visual {
    min-height: 100%;
    margin: 0;
    background-size: auto 100%;
    opacity: .58;
    mask: none;
    -webkit-mask: none;
  }

  .viva-hero__copy {
    top: 48%;
    width: calc(100% - 40px);
    transform: translate(-50%, -50%);
  }

  .viva-hero__kicker {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .viva-hero__title {
    width: 315px;
    max-width: 100%;
    height: 189px;
    padding: 36px 0;
    font-size: 40px;
    line-height: 1.45;
    letter-spacing: .1em;
  }

  .viva-hero__lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.9;
  }

  .viva-hero__actions {
    gap: 10px;
    margin-top: 25px;
  }

  .viva-hero__actions .btn {
    width: auto;
    min-width: 0;
    flex: 1;
    padding: 12px 10px;
    font-size: 13px;
  }

  .viva-hero__nav {
    display: none;
  }

  .viva-hero__nav a {
    display: flex;
    min-height: 54px;
    padding: 8px 4px;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.22);
  }

  .viva-hero__nav strong {
    font-size: 10px;
    line-height: 1.4;
  }

  .viva-hero__nav small {
    display: none;
  }

  .recruit-hero .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }

  .recruit-hero .hero__title {
    font-size: 40px;
    letter-spacing: .1em;
  }

  .recruit-hero .hero__lead {
    font-size: 14px;
  }

  .section__title,
  .story-band h2,
  .final-cta h2,
  .join-viva__title,
  .page-header__title {
    font-size: 32px !important;
    line-height: 1.5;
    letter-spacing: .1em;
  }

  .pickup-grid,
  .contents-grid {
    margin-top: 50px;
  }

  .pickup-card,
  .content-panel {
    min-height: 240px;
    padding: 25px;
  }

  .intro-grid {
    gap: 40px;
  }

  .story-band::before,
  .final-cta::before {
    font-size: 92px;
  }

  .page-header {
    padding: 75px 20px 60px !important;
  }

  .business-block {
    gap: 40px;
    padding: 50px 0;
  }

  .business-block__title {
    font-size: 30px;
  }

}

/* Final first-view overrides: generated sports image sequence */
.viva-hero {
  overflow: hidden;
  background: #050505;
}

.viva-hero::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.08) 28%, rgba(0,0,0,.16) 58%, rgba(0,0,0,.72) 100%),
    linear-gradient(90deg, rgba(0,0,0,.2), transparent 32%, transparent 68%, rgba(0,0,0,.2));
}

.viva-hero__visual {
  inset: 0 auto 0 0;
  display: flex;
  width: 150%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  gap: 3px;
  overflow: visible;
  opacity: 1;
  background: #050505;
  border-radius: 0;
  filter: none;
  mask: none;
  -webkit-mask: none;
  animation: viva-sport-pan 32s ease-in-out infinite alternate;
}

.viva-hero__panel {
  position: relative;
  flex: 0 0 calc((100% - 15px) / 6);
  height: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.viva-hero__visual .viva-hero__panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  object-fit: cover;
  filter: saturate(.9) contrast(1.12) brightness(.82);
  transform: scale(1.02);
}

.viva-hero__panel:nth-child(1) img { object-position: 48% center; }
.viva-hero__panel:nth-child(2) img { object-position: 53% center; }
.viva-hero__panel:nth-child(3) img { object-position: 50% center; }
.viva-hero__panel:nth-child(4) img { object-position: 52% center; }
.viva-hero__panel:nth-child(5) img { object-position: 50% center; }
.viva-hero__panel:nth-child(6) img { object-position: 50% center; }

.viva-hero__copy {
  top: 50%;
  width: min(900px, calc(100% - 80px));
  color: #fff;
  transform: translate(-50%, -48%);
}

.viva-hero__kicker {
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .04em;
  text-shadow: 0 2px 12px rgba(0,0,0,.65);
}

.viva-hero__title {
  display: block;
  width: min(820px, 100%);
  height: auto;
  min-height: 265px;
  margin: 0 auto;
  padding: 12px 0 20px;
  color: #fff;
  font-family: "Yuji Syuku", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(74px, 7.25vw, 106px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 3px 22px rgba(0,0,0,.38);
}

.viva-hero__lead {
  margin-top: 4px;
  color: #fff;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 900;
  line-height: 1.85;
  letter-spacing: .03em;
  text-shadow: 0 2px 14px rgba(0,0,0,.8);
}

@media (prefers-reduced-motion: reduce) {
  .viva-hero__visual { animation: none; }
}

@media (max-width: 640px) {
  .viva-hero__visual {
    width: 300%;
    min-height: 100%;
    margin: 0;
    gap: 2px;
    opacity: 1;
    animation-duration: 38s;
  }

  .viva-hero__panel {
    flex-basis: calc((100% - 10px) / 6);
  }

  .viva-hero::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.1) 30%, rgba(0,0,0,.23) 58%, rgba(0,0,0,.78) 100%),
      linear-gradient(90deg, rgba(0,0,0,.14), transparent 45%, rgba(0,0,0,.14));
  }

  .viva-hero__copy {
    top: 51%;
    width: calc(100% - 30px);
    transform: translate(-50%, -48%);
  }

  .viva-hero__kicker {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .viva-hero__title {
    width: 100%;
    min-height: 172px;
    padding: 10px 0 14px;
    font-size: clamp(43px, 12.3vw, 52px);
    line-height: 1.2;
  }

  .viva-hero__lead {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0;
  }
}

/* Supplied VIVA GROUP logo and matching brand colors */
.viva-logo--header {
  height: 52px;
  gap: 9px;
}

.viva-logo__mark {
  position: relative;
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 40px;
  overflow: hidden;
}

.viva-logo__mark img {
  position: absolute;
  top: -24px;
  left: -32px;
  width: 101px;
  max-width: none;
  height: auto;
}

.viva-logo__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #080207;
  font-family: "Outfit", sans-serif;
  line-height: 1;
}

.viva-logo__wordmark strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .16em;
}

.viva-logo__wordmark small {
  margin-top: 5px;
  padding-left: .42em;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .42em;
}

.site-cta,
.btn--primary,
.form-submit,
.pickup-section,
.final-cta {
  background-color: #f41624;
}

.site-nav__link.is-active::after {
  background: linear-gradient(90deg, #f41624 0%, #ff7a17 68%, #ffd21f 100%);
}

.site-footer {
  background: #000;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 30px;
}

.viva-logo--footer {
  position: relative;
  display: block;
  flex: 0 0 80px;
  width: 80px;
  height: 116px;
  overflow: hidden;
}

.viva-logo--footer img {
  position: absolute;
  top: -54px;
  left: -66px;
  width: 213px;
  max-width: none;
  height: auto;
}

.site-footer__brand-copy {
  min-width: 0;
}

.site-footer__brand-copy .site-footer__title {
  margin: 0 0 12px;
}

.site-footer__brand-copy .v-stroke {
  background: linear-gradient(90deg, #f41624 0%, #ff7a17 68%, #ffd21f 100%);
}

.v-stroke,
.section-divider,
.page-header__sun {
  background: linear-gradient(90deg, #ffd21f 0%, #ffb51b 24%, #ff7a17 52%, #ff4a1c 76%, #f41624 100%);
}

.value-card {
  border-top: 3px solid #ffd21f;
}

.value-card:nth-child(1) { border-top-color: #ffd21f; }
.value-card:nth-child(2) { border-top-color: #ffb51b; }
.value-card:nth-child(3) { border-top-color: #ff7a17; }
.value-card:nth-child(4) { border-top-color: #ff4a1c; }
.value-card:nth-child(5) { border-top-color: #f41624; }

.value-card:nth-child(1) .value-card__num { color: #c99900; }
.value-card:nth-child(2) .value-card__num { color: #d98a00; }
.value-card:nth-child(3) .value-card__num { color: #ed6500; }
.value-card:nth-child(4) .value-card__num { color: #f13e14; }
.value-card:nth-child(5) .value-card__num { color: #f41624; }

@media (max-width: 640px) {
  .viva-logo--header {
    height: 40px;
    gap: 7px;
  }

  .viva-logo__mark {
    flex-basis: 34px;
    width: 34px;
    height: 32px;
  }

  .viva-logo__mark img {
    top: -19px;
    left: -26px;
    width: 82px;
  }

  .viva-logo__wordmark strong {
    font-size: 18px;
  }

  .viva-logo__wordmark small {
    margin-top: 4px;
    font-size: 6px;
  }

  .site-footer__brand {
    gap: 20px;
  }

  .viva-logo--footer {
    flex-basis: 70px;
    width: 70px;
    height: 102px;
  }

  .viva-logo--footer img {
    top: -47px;
    left: -58px;
    width: 186px;
  }

  .site-footer__brand-copy .site-footer__title {
    font-size: 24px;
  }

  .page-header__lead {
    font-size: 13px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .value-card {
    min-height: 260px;
  }
}

/* Image-led Contents section */
.contents-showcase {
  padding: 100px 40px 140px;
  overflow: hidden;
  background: #f7f7f9;
}

.contents-showcase__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.contents-showcase__head {
  margin: 0 0 38px 70px;
}

.contents-showcase__head > span {
  display: block;
  margin-bottom: 22px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.contents-showcase__head h2 {
  margin: 0;
  scroll-margin-top: 110px;
  color: #000;
  font-family: "Outfit", "Helvetica Neue", sans-serif;
  font-size: clamp(62px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.contents-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.contents-card {
  position: relative;
  height: 660px;
  margin: 70px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  color: #fff;
  isolation: isolate;
}

.contents-card--culture {
  height: 730px;
  margin-top: 0;
}

.contents-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform .45s ease;
}

.contents-card--work > img { object-position: 51% center; }
.contents-card--culture > img { object-position: 52% center; }
.contents-card--people > img { object-position: 52% center; }

.contents-card:hover > img {
  transform: scale(1.035);
}

.contents-card__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.14) 0%, rgba(0,0,0,0) 44%, rgba(0,0,0,.18) 62%, rgba(0,0,0,.8) 100%),
    linear-gradient(90deg, rgba(0,0,0,.14), transparent 42%);
}

.contents-card__head {
  position: absolute;
  top: 38px;
  left: 34px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.28);
}

.contents-card__num {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.contents-card__vertical {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-top: 16px;
}

.contents-card__vertical h3 {
  margin: 0;
  color: #fff;
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .06em;
  writing-mode: vertical-rl;
}

.contents-card__vertical span {
  padding-top: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  writing-mode: vertical-rl;
}

.contents-card__links {
  position: absolute;
  right: 32px;
  bottom: 24px;
  left: 32px;
  z-index: 2;
}

.contents-card__links a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.62);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-shadow: 0 2px 9px rgba(0,0,0,.4);
}

.contents-card__links a:last-child {
  border-bottom: 1px solid rgba(255,255,255,.62);
}

.contents-card__links a > span:last-child {
  flex: 0 0 auto;
  transition: transform .2s ease;
}

.contents-card__links a:hover > span:last-child,
.contents-card__links a:focus-visible > span:last-child {
  transform: translateX(5px);
}

.contents-card__links a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .contents-showcase {
    padding-right: 25px;
    padding-left: 25px;
  }

  .contents-showcase__head {
    margin-left: 25px;
  }

  .contents-card {
    height: 590px;
    margin-top: 55px;
  }

  .contents-card--culture {
    height: 645px;
    margin-top: 0;
  }

  .contents-card__head {
    top: 28px;
    left: 24px;
  }

  .contents-card__links {
    right: 22px;
    bottom: 20px;
    left: 22px;
  }

  .contents-card__links a {
    min-height: 54px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .contents-showcase {
    padding: 72px 20px 80px;
  }

  .contents-showcase__head {
    margin: 0 0 36px;
  }

  .contents-showcase__head > span {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .contents-showcase__head h2 {
    font-size: 52px;
    scroll-margin-top: 78px;
  }

  .contents-showcase__grid {
    display: flex;
    gap: 14px;
    margin-right: -20px;
    padding-right: 20px;
    padding-bottom: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .contents-showcase__grid::-webkit-scrollbar {
    display: none;
  }

  .contents-card,
  .contents-card--culture {
    flex: 0 0 min(82vw, 340px);
    height: 580px;
    margin-top: 0;
    scroll-snap-align: start;
  }

  .contents-card__head {
    top: 28px;
    left: 24px;
  }

  .contents-card__vertical h3 {
    font-size: 28px;
  }

  .contents-card__links {
    right: 22px;
    left: 22px;
  }

  .contents-card__links a {
    min-height: 54px;
    font-size: 14px;
  }
}

/* Portrait entry band */
.final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 650px;
  place-items: center;
  padding: 0 !important;
  overflow: hidden;
  color: #fff;
  background: #000 !important;
  text-align: center;
  scroll-margin-top: 80px;
}

.final-cta::before {
  display: none;
}

.final-cta__portraits {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.final-cta__portrait {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.3);
}

.final-cta__portrait:last-child {
  border-right: 0;
}

.final-cta__portrait img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
}

.final-cta__portrait--red img {
  object-position: 53% center;
}

.final-cta__portrait--orange img {
  object-position: 50% center;
}

.final-cta__portrait--yellow img {
  object-position: 47% center;
}

.final-cta__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.56) 34%, rgba(0,0,0,.6) 66%, rgba(0,0,0,.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.08) 58%, rgba(0,0,0,.48) 100%);
  pointer-events: none;
}

.final-cta__marquee {
  position: absolute;
  top: 26px;
  right: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}

.final-cta__marquee-track,
.final-cta__marquee-group {
  display: flex;
  width: max-content;
  align-items: center;
}

.final-cta__marquee-track {
  animation: final-cta-marquee 24s linear infinite;
}

.final-cta__marquee-group span {
  flex: 0 0 auto;
  padding-right: 1.2em;
  color: rgba(255,255,255,.92);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(52px, 5.8vw, 84px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.final-cta__inner {
  position: relative;
  z-index: 3;
  width: min(100%, 800px);
  margin: 0 auto;
  padding: 150px 24px 76px;
}

.final-cta .section-label {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.final-cta h2 {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.38;
  letter-spacing: .08em;
  text-shadow: 0 3px 20px rgba(0,0,0,.5);
}

.final-cta__actions {
  margin-top: 38px;
}

.final-cta__actions .btn {
  min-width: 190px;
  border-radius: 2px;
  backdrop-filter: blur(5px);
}

.final-cta__actions .btn--white {
  border-color: #fff;
  color: #f41624;
  background: #fff;
}

.final-cta__actions .btn--ghost {
  border-color: #fff;
  color: #fff;
  background: rgba(0,0,0,.32);
}

.final-cta__actions .btn:hover,
.final-cta__actions .btn:focus-visible {
  transform: translateY(-3px);
}

@keyframes final-cta-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .final-cta {
    min-height: 620px;
    padding: 0 !important;
  }

  .final-cta__portraits {
    right: auto;
    left: -28%;
    width: 156%;
  }

  .final-cta__portrait--red img {
    object-position: 56% center;
  }

  .final-cta__portrait--yellow img {
    object-position: 44% center;
  }

  .final-cta__veil {
    background:
      linear-gradient(90deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.62) 28%, rgba(0,0,0,.62) 72%, rgba(0,0,0,.2) 100%),
      linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.15) 54%, rgba(0,0,0,.58) 100%);
  }

  .final-cta__marquee {
    top: 34px;
  }

  .final-cta__marquee-group span {
    font-size: 44px;
  }

  .final-cta__inner {
    padding: 132px 20px 52px;
  }

  .final-cta h2 {
    font-size: 36px !important;
    line-height: 1.45;
    letter-spacing: .06em;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
  }

  .final-cta__actions .btn {
    width: min(100%, 280px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta__marquee-track {
    animation-play-state: paused;
  }
}

/* Brand cursor */
.viva-cursor-dot,
.viva-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10020;
  opacity: 0;
  pointer-events: none;
  will-change: transform;
}

.viva-cursor-dot {
  width: 12px;
  height: 12px;
  transition: opacity .18s ease;
}

.viva-cursor-dot span {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd21f 0%, #ff7a17 42%, #f41624 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,.24);
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}

.viva-cursor-ring {
  width: 46px;
  height: 46px;
  border: 1.5px solid #ffd21f;
  border-radius: 50%;
  background: rgba(255,210,31,.035);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.14),
    inset 0 0 12px rgba(255,122,23,.08);
  transition:
    width .35s cubic-bezier(.16,1,.3,1),
    height .35s cubic-bezier(.16,1,.3,1),
    border-color .25s ease,
    background-color .25s ease,
    opacity .18s ease;
}

.viva-cursor-dot.is-visible,
.viva-cursor-ring.is-visible {
  opacity: 1;
}

.viva-cursor-ring.is-interactive {
  width: 68px;
  height: 68px;
  border-color: #ff7a17;
  background: rgba(255,210,31,.13);
}

.viva-cursor-dot.is-interactive span {
  transform: scale(.72);
}

.viva-cursor-ring.is-pressed {
  width: 34px;
  height: 34px;
  border-color: #f41624;
  background: rgba(244,22,36,.16);
}

.viva-cursor-dot.is-pressed span {
  transform: scale(1.35);
}

@media (hover: hover) and (pointer: fine) {
  body.has-viva-cursor,
  body.has-viva-cursor * {
    cursor: none !important;
  }
}

@media (hover: none), (pointer: coarse) {
  .viva-cursor-dot,
  .viva-cursor-ring {
    display: none;
  }
}

/* Oval crossfade first view */
.viva-hero {
  position: relative;
  height: min(880px, 100svh);
  min-height: 700px;
  padding: 0;
  overflow: hidden;
  color: #080207;
  background: #fff;
}

.viva-hero__inner {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: inherit;
  margin: 0;
}

.viva-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 24%, rgba(255,255,255,.36) 39%, rgba(255,255,255,0) 55%);
  pointer-events: none;
}

.viva-hero__visual {
  position: absolute;
  inset: 0 -8vw 0 10vw;
  z-index: 0;
  display: block;
  width: auto;
  height: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  opacity: 1;
  background: #f41624;
  background-image: none;
  filter: none;
  clip-path: ellipse(88% 122% at 72% 0%);
  mask: none;
  -webkit-mask: none;
  animation: none !important;
}

.viva-hero__visual::after {
  display: none;
}

.viva-hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.15s cubic-bezier(.4,0,.2,1),
    visibility 1.15s step-end;
  will-change: opacity;
}

.viva-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 1.15s cubic-bezier(.4,0,.2,1),
    visibility 0s step-start;
}

.viva-hero__visual .viva-hero__slide img {
  display: block !important;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(.94) contrast(1.02) brightness(1.01);
  transform: scale(1.015);
}

.viva-hero__slide.is-active img {
  animation: viva-oval-zoom 6.3s linear both;
}

.viva-hero__slide:nth-child(1) img { object-position: 52% center; }
.viva-hero__slide:nth-child(2) img { object-position: 50% center; }
.viva-hero__slide:nth-child(3) img { object-position: 52% center; }
.viva-hero__slide:nth-child(4) img { object-position: 50% center; }

.viva-hero__copy {
  position: absolute;
  top: 50%;
  left: clamp(42px, 6.3vw, 98px);
  z-index: 3;
  width: min(500px, 40vw);
  padding: 0;
  color: #080207;
  text-align: left;
  transform: translateY(-43%);
}

.viva-hero__kicker {
  margin: 0 0 18px;
  color: #f41624;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: .08em;
  text-shadow: none;
}

.viva-hero__title {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  color: #080207;
  font-family: "Yuji Syuku", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(64px, 6.25vw, 90px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: none;
}

.viva-hero__title .accent {
  color: #080207;
}

.viva-hero__lead {
  max-width: 430px;
  margin: 28px 0 0;
  color: #080207;
  font-size: 13px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .02em;
  text-shadow: none;
}

.viva-hero__actions,
.viva-hero__nav {
  display: none;
}

.viva-hero__pager {
  position: absolute;
  bottom: 26px;
  left: 53%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 3px;
  transform: translateX(-50%);
}

.viva-hero__pager button {
  display: grid;
  width: 42px;
  height: 30px;
  place-items: center;
  padding: 0;
}

.viva-hero__pager button span {
  display: block;
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: rgba(8,2,7,.3);
  transition:
    width .35s cubic-bezier(.16,1,.3,1),
    background-color .25s ease;
}

.viva-hero__pager button.is-active span {
  width: 38px;
  background: #080207;
}

.viva-hero__pager button:focus-visible {
  outline: 2px solid #f41624;
  outline-offset: 1px;
}

.viva-hero__entry {
  position: absolute;
  right: clamp(22px, 3.2vw, 52px);
  bottom: 32px;
  z-index: 4;
  display: flex;
  width: 252px;
  height: 84px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 14px 84px 14px 26px;
  border-radius: 44px;
  color: #fff;
  background: #f41624;
  box-shadow: 14px 14px 0 rgba(8,2,7,.18);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}

.viva-hero__entry::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 82px;
  background: url("assets/fv-oval-01-volleyball.jpg") 58% 35% / 250px auto no-repeat;
}

.viva-hero__entry > span {
  position: relative;
  z-index: 1;
}

.viva-hero__entry strong,
.viva-hero__entry small {
  display: block;
  white-space: nowrap;
}

.viva-hero__entry strong {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
}

.viva-hero__entry small {
  margin-top: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
}

.viva-hero__entry-arrow {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  margin-left: 8px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 50%;
  font-size: 14px;
}

.viva-hero__entry:hover,
.viva-hero__entry:focus-visible {
  color: #fff;
  box-shadow: 9px 9px 0 rgba(8,2,7,.2);
  transform: translate(4px, 4px);
}

.viva-hero__entry:focus-visible {
  outline: 3px solid #ffd21f;
  outline-offset: 4px;
}

.viva-hero__scroll {
  position: absolute;
  bottom: 0;
  left: clamp(42px, 6.3vw, 98px);
  z-index: 4;
  display: flex;
  height: 82px;
  align-items: flex-start;
  gap: 12px;
  color: #080207;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
}

.viva-hero__scroll::after {
  content: "";
  width: 1px;
  height: 54px;
  background: #080207;
}

@keyframes viva-oval-zoom {
  from { transform: scale(1.015); }
  to { transform: scale(1.08); }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100svh - 110px);
    padding: 18px;
    overflow-y: auto;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__link,
  .site-cta {
    padding: 12px 14px;
  }

  .viva-logo--header {
    flex: 0 0 auto;
  }

  .viva-hero {
    height: calc(100svh - 24px);
    min-height: 640px;
    max-height: 860px;
  }

  .viva-hero::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.62) 22%, rgba(255,255,255,0) 46%),
      linear-gradient(90deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.18) 68%, rgba(255,255,255,0) 100%);
  }

  .viva-hero__visual {
    inset: 0 0 62px;
    height: auto;
    min-height: 0;
    clip-path: ellipse(108% 76% at 62% 18%);
  }

  .viva-hero__visual .viva-hero__slide img {
    object-position: 40% center;
  }

  .viva-hero__slide:nth-child(3) img,
  .viva-hero__slide:nth-child(4) img {
    object-position: 44% center;
  }

  .viva-hero__copy {
    top: 106px;
    left: 20px;
    width: min(340px, calc(100% - 40px));
    transform: none;
  }

  .viva-hero__kicker {
    margin-bottom: 11px;
    font-size: 12px;
    line-height: 1.65;
  }

  .viva-hero__title {
    width: min(330px, 100%);
    font-size: clamp(42px, 12vw, 52px);
    line-height: 1.12;
  }

  .viva-hero__lead {
    width: min(310px, 100%);
    margin-top: 18px;
    font-size: 11px;
    line-height: 1.8;
  }

  .viva-hero__lead .desktop-break {
    display: none;
  }

  .viva-hero__pager {
    bottom: 94px;
    left: 22px;
    transform: none;
  }

  .viva-hero__pager button {
    width: 32px;
  }

  .viva-hero__pager button span {
    width: 15px;
  }

  .viva-hero__pager button.is-active span {
    width: 28px;
  }

  .viva-hero__entry {
    right: 16px;
    bottom: 24px;
    width: 190px;
    height: 64px;
    padding: 10px 64px 10px 20px;
    border-radius: 34px;
    box-shadow: 9px 9px 0 rgba(8,2,7,.18);
  }

  .viva-hero__entry::before {
    width: 62px;
    background-size: 188px auto;
  }

  .viva-hero__entry strong {
    font-size: 18px;
  }

  .viva-hero__entry small {
    margin-top: 5px;
    font-size: 8px;
  }

  .viva-hero__entry-arrow {
    display: none;
  }

  .viva-hero__scroll {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .viva-hero__slide,
  .viva-hero__slide.is-active {
    transition-duration: .01ms;
  }

  .viva-hero__slide.is-active img {
    animation: none;
    transform: scale(1.015);
  }
}

/* First-view proportion correction based on the reference oval mask */
body.page-home .site-header {
  top: 0;
  right: 0;
  left: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.page-home .site-header__inner {
  width: 100%;
  max-width: none;
  height: 104px;
  padding: 0 clamp(28px, 3.2vw, 50px);
}

body.page-home .site-cta {
  padding: 12px 24px;
  border-radius: 999px;
  color: #080207;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}

body.page-home .site-cta:hover {
  color: #fff;
  background: #f41624;
}

.viva-hero::after {
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.78) 10%, rgba(255,255,255,.24) 25%, rgba(255,255,255,0) 42%);
}

.viva-hero__visual {
  inset: 0 -11.6vw 0 10.2vw;
  clip-path: none;
  mask-image: url("assets/hero-oval-mask.svg");
  mask-repeat: no-repeat;
  mask-position: 0 100%;
  mask-size: 100% auto;
  -webkit-mask-image: url("assets/hero-oval-mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 100%;
  -webkit-mask-size: 100% auto;
}

.viva-hero__slide:nth-child(1) { background: rgb(168, 11, 17); }
.viva-hero__slide:nth-child(2) { background: rgb(245, 191, 88); }
.viva-hero__slide:nth-child(3) { background: rgb(246, 171, 41); }
.viva-hero__slide:nth-child(4) { background: rgb(250, 142, 38); }

.viva-hero__visual .viva-hero__slide img {
  object-fit: contain;
  object-position: 50% center;
  filter: saturate(.88) contrast(1.01) brightness(1.03);
}

.viva-hero__copy {
  top: 50%;
  width: min(520px, 42vw);
  transform: translateY(-47%);
}

.viva-hero__title {
  font-size: clamp(68px, 5.8vw, 84px);
  line-height: 1.1;
}

.viva-hero__lead {
  margin-top: 30px;
}

.viva-hero__entry {
  right: clamp(22px, 3vw, 48px);
  bottom: 30px;
  width: 290px;
  height: 104px;
  padding: 16px 100px 16px 30px;
  border-radius: 54px;
  box-shadow: 16px 16px 0 rgba(8,2,7,.18);
}

.viva-hero__entry::before {
  width: 98px;
  background-size: 300px auto;
}

.viva-hero__entry strong {
  font-size: 25px;
}

@media (max-width: 900px) {
  body.page-home .site-header__inner {
    height: 74px;
    padding: 0 20px;
  }

  body.page-home .menu-toggle {
    border: 0;
    border-radius: 24px;
    background: #080207;
  }

  body.page-home .menu-toggle span {
    background: #fff;
  }

  body.page-home .site-nav {
    top: calc(100% + 4px);
    margin: 0 14px;
  }

  body.page-home .site-cta {
    border-radius: 2px;
    color: #fff;
    background: #f41624;
  }

  .viva-hero::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.35) 20%, rgba(255,255,255,0) 43%),
      linear-gradient(90deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,.08) 70%, rgba(255,255,255,0) 100%);
  }

  .viva-hero__visual {
    inset: 0 0 62px;
    mask-position: 27% 100%;
    mask-size: 199.5% auto;
    -webkit-mask-position: 27% 100%;
    -webkit-mask-size: 199.5% auto;
  }

  .viva-hero__visual .viva-hero__slide img {
    object-fit: cover;
  }

  .viva-hero__copy {
    top: 98px;
    width: min(340px, calc(100% - 40px));
    transform: none;
  }

  .viva-hero__title {
    font-size: clamp(42px, 12vw, 52px);
    line-height: 1.12;
  }

  .viva-hero__entry {
    right: 16px;
    bottom: 24px;
    width: 198px;
    height: 68px;
    padding: 10px 66px 10px 20px;
    border-radius: 36px;
    box-shadow: 9px 9px 0 rgba(8,2,7,.18);
  }

  .viva-hero__entry::before {
    width: 66px;
    background-size: 198px auto;
  }

  .viva-hero__entry strong {
    font-size: 18px;
  }
}

/* Reference-matched first view: proportions, motion and responsive behavior */
.site-cta--mobile {
  display: none;
}

body.page-home .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}

.viva-hero {
  height: auto;
  min-height: 0;
  max-height: none;
  padding: 0 0 49px;
  overflow: hidden;
}

.viva-hero__inner {
  --viva-hero-height: clamp(720px, min(calc(100svh + 29px), 68.533333vw), 1600px);
  width: 100%;
  max-width: 2200px;
  height: var(--viva-hero-height);
  min-height: 0;
  margin: 0 auto;
}

.viva-hero::after {
  display: none;
}

.viva-hero__visual {
  top: 0;
  right: -11.6%;
  bottom: auto;
  left: 10.2%;
  width: auto;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #ef3d2f;
  mask-position: 0 100%;
  mask-size: 100% auto;
  -webkit-mask-position: 0 100%;
  -webkit-mask-size: 100% auto;
}

.viva-hero__slide {
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 1800ms cubic-bezier(.215, .61, .355, 1),
    visibility 1800ms step-end;
  will-change: opacity, transform;
}

.viva-hero__slide.is-active {
  visibility: visible;
  opacity: 1;
  transition:
    opacity 1800ms cubic-bezier(.215, .61, .355, 1),
    visibility 0s step-start;
}

.viva-hero__slide.is-put {
  animation: viva-reference-zoom 10000ms linear forwards;
}

.viva-hero__visual .viva-hero__slide img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 0 50%;
  filter: saturate(1) contrast(1) brightness(1);
  transform: none;
  animation: none !important;
}

.viva-hero__slide:nth-child(1) img,
.viva-hero__slide:nth-child(2) img,
.viva-hero__slide:nth-child(3) img,
.viva-hero__slide:nth-child(4) img {
  object-position: 0 50%;
}

.viva-hero__copy {
  top: calc(309 / 1029 * 100%);
  left: calc(94 / 1500 * 100%);
  width: 900px;
  transform: none;
}

.viva-hero__kicker {
  width: 480px;
  margin: 0 0 0 7px;
  color: #080207;
  font-size: clamp(16px, calc(24 / 1029 * 100svh), 24px);
  line-height: 1.8;
  letter-spacing: .12em;
}

.viva-hero__title {
  width: clamp(760px, 100svh, 1023px);
  margin: 8px 0 0;
  font-size: clamp(96px, calc(143 / 1029 * 100svh), 143px);
  line-height: 1.12;
  scale: .533 1;
  transform-origin: 0 50%;
}

.viva-hero__title .accent {
  display: inline-block;
  scale: 1.25 1;
  transform-origin: 0 50%;
}

.viva-hero__lead {
  width: clamp(475px, 52.8svh, 545px);
  max-width: none;
  margin-top: 43px;
  margin-left: 5px;
  font-size: clamp(13px, 1.45svh, 16px);
  line-height: 1.5;
}

.viva-hero__lead .desktop-break {
  display: none;
}

.viva-hero__pager {
  display: none;
}

.viva-hero__entry {
  right: 43px;
  bottom: 80px;
  width: 304px;
  height: 110px;
  padding: 0 112px 0 38px;
  border-radius: 42px;
  background: #f41624;
  box-shadow: 20px 20px 0 rgba(8, 2, 7, .18);
  transition:
    background-color 1800ms cubic-bezier(.215, .61, .355, 1),
    opacity 1300ms cubic-bezier(.23, 1, .32, 1),
    transform 1300ms cubic-bezier(.23, 1, .32, 1),
    box-shadow 400ms cubic-bezier(.215, .61, .355, 1);
}

.viva-hero__entry::before {
  display: none;
}

.viva-hero[data-hero-index="0"] .viva-hero__entry { background: #f41624; }
.viva-hero[data-hero-index="1"] .viva-hero__entry { background: #ff7a17; }
.viva-hero[data-hero-index="2"] .viva-hero__entry { background: #f7ad00; }
.viva-hero[data-hero-index="3"] .viva-hero__entry { background: #ef3d2f; }

.viva-hero__entry-copy,
.viva-hero__entry-arrow {
  position: relative;
  z-index: 3;
}

.viva-hero__entry strong {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
}

.viva-hero__entry small {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

.viva-hero__entry-arrow {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  margin-left: 8px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 50%;
}

.viva-hero__entry-media {
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1 !important;
  display: block;
  width: 42%;
  overflow: hidden;
}

.viva-hero__entry-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, currentColor 0%, rgba(0,0,0,0) 35%);
  opacity: .12;
  pointer-events: none;
}

.viva-hero__entry-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 52% 30%;
  scale: 1.85;
  transform-origin: 50% 30%;
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(15%, 0, 0);
  transition:
    opacity 1800ms cubic-bezier(.215, .61, .355, 1),
    filter 1800ms cubic-bezier(.215, .61, .355, 1),
    transform 1800ms cubic-bezier(.215, .61, .355, 1),
    scale 400ms cubic-bezier(.215, .61, .355, 1);
}

.viva-hero__entry-media img.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.viva-hero__entry-media img.is-prev {
  transform: translate3d(-15%, 0, 0);
}

.viva-hero__scroll {
  bottom: -24px;
  left: calc(71 / 1500 * 100%);
  display: block;
  width: 50px;
  height: 110px;
  color: #fff;
  font-size: 8px;
  letter-spacing: 0;
  writing-mode: horizontal-tb;
}

.viva-hero__scroll span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: #9d9d9d;
  text-transform: lowercase;
}

.viva-hero__scroll span::first-letter {
  text-transform: uppercase;
}

.viva-hero__scroll::after {
  position: absolute;
  top: 60px;
  left: 50%;
  width: 1px;
  height: 50px;
  background: #080207;
  transform: translateX(-50%);
}

body.page-home:not(.is-hero-ready) .viva-hero__slide.is-active {
  opacity: 0;
}

body.page-home .viva-hero__copy > * {
  opacity: 0;
  transition:
    opacity 1300ms cubic-bezier(.23, 1, .32, 1),
    transform 1300ms cubic-bezier(.23, 1, .32, 1);
}

body.page-home .viva-hero__copy > :nth-child(odd) {
  transform: translate3d(-10%, 5%, 0);
}

body.page-home .viva-hero__copy > :nth-child(even) {
  transform: translate3d(10%, -5%, 0);
}

body.page-home .viva-hero__copy > :nth-child(1) { transition-delay: 340ms; }
body.page-home .viva-hero__copy > :nth-child(2) { transition-delay: 480ms; }
body.page-home .viva-hero__copy > :nth-child(3) { transition-delay: 620ms; }

body.page-home.is-hero-ready .viva-hero__copy > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.page-home .viva-hero__entry {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

body.page-home.is-hero-ready .viva-hero__entry {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0ms, 200ms, 200ms, 0ms;
}

body.page-home.is-hero-ready .viva-hero__entry:hover,
body.page-home.is-hero-ready .viva-hero__entry:focus-visible {
  box-shadow: 20px 20px 0 rgba(8, 2, 7, .18);
  transform: translate3d(0, 0, 0);
}

.viva-hero__entry:hover .viva-hero__entry-media img.is-active,
.viva-hero__entry:focus-visible .viva-hero__entry-media img.is-active {
  scale: 1.95;
}

body.page-home .viva-hero__scroll {
  opacity: 0;
  transition: opacity 2000ms cubic-bezier(.215, .61, .355, 1) 200ms;
}

body.page-home.is-hero-ready .viva-hero__scroll {
  opacity: 1;
}

@keyframes viva-reference-zoom {
  from { transform: scale(1) rotate(.01deg); }
  to { transform: scale(1.1) rotate(.01deg); }
}

@media (min-width: 1024px) {
  body.page-home .site-header__inner {
    position: relative;
    height: 110px;
    padding: 0 42px 0 51px;
  }

  body.page-home .viva-logo--header {
    position: fixed;
    top: 36px;
    left: 51px;
    height: 40px;
  }

  body.page-home .viva-logo--header::after {
    content: none;
    display: none;
    align-items: center;
    height: 30px;
    margin-left: 8px;
    padding-left: 17px;
    border-left: 1px solid #080207;
    color: #080207;
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0;
  }

  body.page-home .site-nav {
    position: fixed;
    top: 37px;
    left: 35.5vw;
    width: 430px;
    height: 44px;
    justify-content: space-between;
    gap: 0;
  }

  body.page-home .site-nav__link {
    display: flex;
    align-items: center;
    height: 44px;
    padding: 0;
    font-size: 13px;
    letter-spacing: 0;
  }

  body.page-home .site-nav__link.is-active::after {
    display: none;
  }

  body.page-home .site-cta--desktop {
    position: fixed;
    top: 37px;
    right: 139px;
    display: flex;
    width: 163px;
    height: 42px;
    justify-content: center;
    padding: 0;
    border-radius: 22px;
    font-size: 13px;
  }

  body.page-home .menu-toggle {
    position: fixed;
    top: 37px;
    right: 42px;
    display: inline-flex;
    order: 3;
    width: 84px;
    height: 44px;
    border: 0;
    border-radius: 23px;
    background: #080207;
  }

  body.page-home .menu-toggle span {
    width: 14px;
    height: 1px;
    background: #fff;
  }
}

@media (max-width: 1023px) {
  .viva-hero {
    padding-bottom: min(67px, 16.75vw);
    margin-bottom: max(0px, calc(100svh - min(calc(100svh - 37px), 170.75vw, 1024px) - min(67px, 16.75vw)));
  }

  .viva-hero__inner {
    --viva-hero-height: min(calc(100svh - 37px), 170.75vw, 1024px);
    height: var(--viva-hero-height);
  }

  body.page-home .site-header__inner {
    height: 65px;
    padding: 0 20px;
  }

  body.page-home .viva-logo--header {
    position: fixed;
    top: 19px;
    left: 20px;
    height: 26px;
    gap: 5px;
  }

  body.page-home .viva-logo__mark {
    flex-basis: 25px;
    width: 25px;
    height: 25px;
  }

  body.page-home .viva-logo__mark img {
    top: -15px;
    left: -19px;
    width: 62px;
    mix-blend-mode: multiply;
  }

  body.page-home .viva-logo__wordmark strong {
    font-size: 15px;
  }

  body.page-home .viva-logo__wordmark small {
    margin-top: 3px;
    font-size: 5px;
  }

  body.page-home .viva-logo--header::after {
    content: none;
    display: none;
    align-items: center;
    height: 22px;
    margin-left: 3px;
    padding-left: 8px;
    border-left: 1px solid #080207;
    color: #080207;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
  }

  body.page-home .site-cta--mobile {
    position: fixed;
    top: 18px;
    right: 69px;
    z-index: 102;
    display: flex;
    width: 82px;
    height: 28px;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(8,2,7,.5);
    border-radius: 15px;
    color: #080207;
    background: #fff;
    font-size: 10px;
    font-weight: 400;
  }

  body.page-home .site-cta--mobile::before {
    content: "♙";
    margin-right: 4px;
    font-size: 9px;
  }

  body.page-home .menu-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 102;
    width: 46px;
    height: 28px;
    display: inline-flex;
    gap: 4px;
    border-radius: 15px;
  }

  body.page-home .menu-toggle span {
    width: 11px;
    height: 1px;
  }

  body.page-home .site-nav {
    position: absolute;
    top: 57px;
    right: 0;
    left: 0;
    display: none;
    margin: 0 10px;
  }

  body.page-home .site-nav.is-open {
    display: flex;
  }

  body.page-home .site-nav .site-cta--desktop {
    display: none;
  }

  .viva-hero__visual {
    inset: 0;
    width: 100%;
    height: 100%;
    mask-position: 27% 100%;
    mask-size: 199.5% auto;
    -webkit-mask-position: 27% 100%;
    -webkit-mask-size: 199.5% auto;
  }

  .viva-hero__visual .viva-hero__slide img,
  .viva-hero__slide:nth-child(1) img,
  .viva-hero__slide:nth-child(2) img,
  .viva-hero__slide:nth-child(3) img,
  .viva-hero__slide:nth-child(4) img {
    position: absolute;
    top: 28%;
    right: auto;
    bottom: auto;
    left: 0;
    height: 100%;
    min-height: 0;
    object-position: 30% 100%;
  }

  .viva-hero__slide:nth-child(1) img { object-position: 50% 100%; }
  .viva-hero__slide:nth-child(2) img { object-position: 60% 100%; }
  .viva-hero__slide:nth-child(3) img,
  .viva-hero__slide:nth-child(4) img { object-position: 75% 100%; }

  .viva-hero__copy {
    top: calc(80 / 684 * 100%);
    left: 8.75%;
    width: 320px;
  }

  .viva-hero__kicker {
    width: 255px;
    margin-left: 0;
    font-size: 11px;
    line-height: 20px;
    letter-spacing: .12em;
  }

  .viva-hero__title {
    width: 470px;
    margin-top: 1.4px;
    font-size: 68px;
    line-height: 1.1;
    scale: .541 1;
  }

  .viva-hero__title .accent {
    scale: 1.28 1;
    white-space: nowrap;
  }

  .viva-hero__lead {
    width: 320px;
    max-width: none;
    margin-top: 18.5px;
    margin-left: 2px;
    font-size: 9px;
    line-height: 1.1;
  }

  .viva-hero__entry {
    right: min(19px, 4.75vw);
    bottom: max(-18px, -4.5vw);
    width: min(172px, 43vw);
    height: min(62px, 15.5vw);
    padding: 0 min(64px, 16vw) 0 min(20px, 5vw);
    border-radius: min(25px, 6.25vw);
    box-shadow: min(10px, 2.5vw) min(10px, 2.5vw) 0 rgba(8, 2, 7, .18);
  }

  .viva-hero__entry strong {
    font-size: 14px;
  }

  .viva-hero__entry small {
    margin-top: 2px;
    font-size: 7px;
  }

  .viva-hero__entry-arrow {
    display: grid;
    flex-basis: 20px;
    width: 20px;
    height: 20px;
    margin-left: 4px;
    font-size: 9px;
  }

  .viva-hero__entry-media {
    width: 43%;
  }

  .viva-hero__scroll {
    bottom: max(-39px, -9.75vw);
    left: 4.25%;
    display: block;
    width: 35px;
    height: 75px;
    font-size: 6px;
  }

  .viva-hero__scroll span {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35px;
    height: 35px;
  }

  .viva-hero__scroll::after {
    top: 0;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .viva-hero__slide.is-put {
    animation: none;
  }

  body.page-home .viva-hero__copy > *,
  body.page-home .viva-hero__entry,
  body.page-home .viva-hero__scroll {
    transition-duration: .01ms;
  }
}

/* Final cascade: reference-style FV entry banner */
body.page-home .viva-logo--header::after {
  content: none !important;
  display: none !important;
}

.viva-hero__entry {
  width: min(304px, 21.111111vw);
  height: min(110px, 7.638889vw);
  justify-content: flex-start;
  padding: min(14px, .972222vw) min(112px, 7.777778vw) min(11px, .763889vw) min(38px, 2.638889vw);
  border-radius: min(42px, 2.916667vw);
  background: var(--entry-theme, #f41624) !important;
  box-shadow: min(20px, 1.388889vw) min(20px, 1.388889vw) 0 rgba(8, 2, 7, .28);
}

.viva-hero__entry strong {
  font-size: min(24px, 1.666667vw);
  line-height: 1;
}

.viva-hero__entry small {
  margin-top: min(5px, .347222vw);
  font-size: min(12px, .833333vw);
  line-height: 1;
}

.viva-hero__entry-arrow {
  flex-basis: min(30px, 2.083333vw);
  width: min(30px, 2.083333vw);
  height: min(30px, 2.083333vw);
  margin-left: min(8px, .555556vw);
  border: 0;
  font-size: min(14px, .972222vw);
}

.viva-hero__entry-media {
  inset: 0;
  width: 100%;
  overflow: visible;
}

.viva-hero__entry-media::after {
  display: none;
}

.viva-hero__entry-media img {
  top: -18%;
  right: -4%;
  bottom: auto;
  left: auto;
  width: auto;
  height: 190%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  scale: 1;
  transform-origin: 62% 50%;
  transform: translate3d(16%, 0, 0);
}

.viva-hero__entry-media img.is-active {
  scale: 1;
  transform: translate3d(0, 0, 0);
}

.viva-hero__entry-media img.is-prev {
  transform: translate3d(-16%, 0, 0);
}

.viva-hero__entry:hover .viva-hero__entry-media img.is-active,
.viva-hero__entry:focus-visible .viva-hero__entry-media img.is-active {
  scale: 1.04;
}

@media (max-width: 1023px) {
  .viva-hero__entry {
    width: min(172px, 43vw);
    height: min(62px, 15.5vw);
    padding: min(8px, 2vw) min(64px, 16vw) min(6px, 1.5vw) min(20px, 5vw);
    border-radius: min(25px, 6.25vw);
  }

  .viva-hero__entry strong {
    font-size: min(14px, 3.5vw);
  }

  .viva-hero__entry small {
    margin-top: min(3px, .75vw);
    font-size: min(7px, 1.75vw);
  }

  .viva-hero__entry-arrow {
    flex-basis: min(20px, 5vw);
    width: min(20px, 5vw);
    height: min(20px, 5vw);
    margin-left: min(4px, 1vw);
    font-size: min(9px, 2.25vw);
  }

  .viva-hero__entry-media {
    width: 100%;
  }

  .viva-hero__entry-media img {
    top: -18%;
    right: -4%;
    height: 190%;
  }
}
