:root {
  --red: #c9141b;
  --red-dark: #8f0d13;
  --ink: #181818;
  --text: #333333;
  --muted: #686868;
  --line: #dedede;
  --paper: #ffffff;
  --background: #f6f5f2;
  --black: #111111;
  --max: 1120px;
  --font-latin: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

@keyframes fadeDownSoft {
  from {
    opacity: 0;
    transform: translateY(-28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .js-reveal {
    opacity: 0;
    transform: translateY(-28px);
  }

  .js-reveal.is-visible {
    animation: fadeDownSoft 820ms cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
  }

}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.sp-only {
  display: none;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 78px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header::before {
  background: var(--red);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 0;
}

.logo-wordmark {
  display: block;
  overflow: visible;
}

.brand-logo {
  height: 46px;
  width: 188px;
}

.footer-logo {
  height: 54px;
  width: 220px;
}

.logo-wordmark text {
  font-family: var(--font-latin);
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-show {
  fill: var(--ink);
}

.logo-cart,
.logo-cart-dot {
  fill: var(--red);
}

.logo-cart-line {
  fill: none;
  stroke: var(--red);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 8;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 30px;
  font-size: 0.88rem;
  font-weight: 700;
}

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

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

.nav-toggle {
  background: transparent;
  border: 0;
  flex: 0 0 42px;
  display: none;
  height: 42px;
  margin-left: auto;
  position: relative;
  width: 42px;
  z-index: 25;
}

.nav-toggle span {
  background: var(--ink);
  height: 2px;
  left: 9px;
  position: absolute;
  right: 9px;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  top: 15px;
}

.nav-toggle span:last-child {
  bottom: 15px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(36deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-36deg);
}

.hero {
  background: var(--black);
  color: #ffffff;
  min-height: 680px;
  overflow: hidden;
  padding: 176px clamp(22px, 5vw, 70px) 86px;
  position: relative;
}

.hero-media {
  inset: 0;
  opacity: 0.42;
  position: absolute;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.94) 0%, rgba(17, 17, 17, 0.68) 45%, rgba(17, 17, 17, 0.2) 100%),
    linear-gradient(180deg, rgba(201, 20, 27, 0.18), transparent 44%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-content {
  max-width: var(--max);
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-heading p {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffffff;
  opacity: 0.8;
}

.hero h1 {
  font-size: clamp(2.45rem, 5vw, 4.75rem);
  line-height: 1.18;
  margin: 0;
  max-width: 860px;
  overflow-wrap: anywhere;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  margin: 28px 0 0;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
}

.button-primary {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.hero-business {
  background: rgba(255, 255, 255, 0.96);
  border-left: 6px solid var(--red);
  bottom: 44px;
  color: var(--ink);
  max-width: 460px;
  padding: 24px 28px;
  position: absolute;
  right: clamp(22px, 5vw, 70px);
  z-index: 2;
}

.hero-business p {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.hero-business ul {
  display: grid;
  gap: 4px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-business li {
  font-size: 0.9rem;
  font-weight: 700;
}

.intro,
.business,
.strength,
.company {
  padding: 96px clamp(22px, 5vw, 70px);
}

.section-heading {
  max-width: none;
}

.section-heading p {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  margin-bottom: 20px;
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(2.25rem, 4.25vw, 4rem);
  letter-spacing: 0;
  line-height: 1.18;
  margin: 0;
  white-space: nowrap;
}

.intro {
  background: #ffffff;
  display: block;
}

.intro-text {
  border-top: 1px solid var(--line);
  color: var(--text);
  margin-left: 0;
  margin-top: 48px;
  max-width: none;
  padding-top: 28px;
  width: 100%;
}

.intro-text p {
  margin: 0;
}

.intro-text p + p {
  margin-top: 18px;
}

.business {
  background: var(--background);
}

.service-list {
  background: #ffffff;
  border-top: 3px solid var(--red);
  margin: 54px auto 0;
  max-width: var(--max);
}

.service-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: 160px minmax(0, 1fr) 260px;
  min-height: 220px;
  padding: 42px 0;
}

.service-number {
  color: var(--red);
  display: block;
  font-size: clamp(3rem, 7vw, 6.25rem);
  font-weight: 900;
  line-height: 0.9;
  padding-left: 30px;
}

.service-copy h3 {
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 1.9rem);
  line-height: 1.5;
  margin: 0 0 12px;
}

.service-copy p,
.strength-copy p,
.metric p {
  color: var(--muted);
  margin: 0;
}

.service-photo {
  margin: 0;
  overflow: hidden;
}

.service-photo img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.strength {
  background: #ffffff;
  display: block;
}

.strength-copy p {
  font-size: clamp(0.9rem, 1vw, 1rem);
  margin-top: 24px;
  max-width: none;
  white-space: nowrap;
}

.metric-list {
  border-top: 1px solid var(--line);
  display: grid;
  margin-top: 46px;
}

.metric {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 120px 150px 1fr;
  padding: 24px 0;
}

.metric span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.company {
  background: var(--background);
}

.company .section-heading,
.company-list {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.company-list {
  background: #ffffff;
  border-top: 3px solid var(--red);
  margin-top: 38px;
}

.company-list div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 210px 1fr;
  padding: 24px 30px;
}

.company-list dt {
  color: var(--ink);
  font-weight: 800;
}

.company-list dd {
  margin: 0;
  text-align: left;
}

.empty-value {
  min-height: 1.85em;
}

.site-footer {
  align-items: center;
  background: var(--black);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  padding: 34px clamp(22px, 5vw, 70px);
}

.footer-brand {
  display: inline-flex;
}

.site-footer .logo-show {
  fill: #ffffff;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 1040px) {
  .hero {
    min-height: 760px;
  }

  .hero-business {
    bottom: 34px;
    left: clamp(22px, 5vw, 70px);
    right: auto;
  }

  .service-row {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .service-photo {
    grid-column: 2;
    max-width: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 66px;
  }

  .brand-logo {
    height: 38px;
    width: 156px;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    right: 18px;
    top: 12px;
  }

  .site-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 10px 20px 18px;
    position: absolute;
    right: 0;
    top: 66px;
  }

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

  .site-nav a {
    border-top: 1px solid var(--line);
    padding: 14px 0;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-bottom: 260px;
    padding-top: 116px;
  }

  .hero h1 {
    font-size: 1.55rem;
    line-height: 1.36;
  }

  .hero-lead {
    font-size: 0.88rem;
    line-height: 1.8;
    max-width: 100%;
  }

  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }

  .hero-media {
    opacity: 0.38;
  }

  .hero-business {
    bottom: 24px;
    left: 20px;
    padding: 20px;
    right: 20px;
  }

  .hero-business ul {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro,
  .business,
  .strength,
  .company {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .section-heading {
    padding-left: 0;
  }

  .section-heading p {
    font-size: 0.94rem;
    margin-bottom: 14px;
  }

  .section-heading h2 {
    font-size: 1.78rem;
    line-height: 1.42;
    white-space: normal;
  }

  .intro-text {
    margin-top: 30px;
  }

  .service-row {
    align-items: start;
    gap: 14px 18px;
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 150px;
    min-width: 0;
    padding: 30px 20px;
  }

  .service-number {
    font-size: 2.95rem;
    grid-column: 1;
    grid-row: 1;
    padding-left: 0;
    padding-top: 2px;
  }

  .service-copy {
    display: contents;
  }

  .service-copy h3 {
    align-self: center;
    font-size: 1.42rem;
    grid-column: 2;
    grid-row: 1;
    line-height: 1.34;
    margin: 0;
    min-width: 0;
  }

  .service-copy p {
    grid-column: 1 / -1;
    line-height: 1.9;
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: left;
    width: 100%;
  }

  .service-photo {
    grid-column: 1 / -1;
    margin-top: 12px;
    max-width: none;
    min-width: 0;
    width: 100%;
  }

  .service-photo img {
    width: 100%;
  }

  .metric {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .company-list div {
    gap: 6px;
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .company-list dd {
    text-align: left;
  }

  .strength-copy p {
    white-space: normal;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
