:root {
  --ink: #151515;
  --paper: #f4f3ef;
  --orange: #ff4a17;
  --muted: #ececea
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  /*background: var(--paper);*/
  background: #FFFFFF;
  color: var(--ink);
  font-family: Arial, "Noto Sans JP", sans-serif
}
a {
  color: inherit;
  text-decoration: none
}
img {
  display: block;
  width: 100%
}
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.2vw;
  background: rgba(255, 255, 255, .40);
  border-bottom: 1px solid rgba(20, 20, 20, .1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px)
}
.logo {
  width: 105px
}
.logo img {
  height: auto
}
.nav {
  display: flex;
  gap: 48px;
  font-size: 11px;
  font-weight: 900
}
.nav a:hover {
  color: var(--orange)
}
.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 22px
}
.mobile-nav {
  display: none
}
.hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: 44% 56%;
  background: #fff
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 5vw
}
.eyebrow {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em
}
.hero h1 {
  margin: 24px 0 38px;
  /*font-family: Georgia, serif;*/
  font-size: clamp(54px, 5.7vw, 96px);
  letter-spacing: -.075em;
  line-height: .88;
  white-space: nowrap
}
.hero-lead {
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 900;
  line-height: 1.65
}
.hero-visual {
  position: relative;
  height: 100svh;
  margin: 0;
  overflow: hidden;
  background: #ddd
}
.hero-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease
}
.hero-slide.active {
  opacity: 1
}
.ticker {
  overflow: hidden;
  background: var(--orange);
  border-block: 1px solid
}
.ticker-track {
  width: max-content;
  padding: 13px 0;
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 950;
  animation: ticker 22s linear infinite
}
@keyframes ticker {
  to {
    transform: translateX(-50%)
  }
}
.section {
  padding: 8vw 4vw 
}
main#products .section {
  padding: 0vw 4vw 8vw; 
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 36px
}
.section-head h2, .page-title {
  margin: 0;
  font-size: clamp(44px, 7vw, 100px);
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: .9
}
.text-link {
  border-bottom: 2px solid;
  padding-bottom: 5px;
  font-size: 11px;
  font-weight: 900
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 22px
}
.product-card {
  display: block
}
.product-card figure {
  margin: 0;
  background: var(--muted);
  overflow: hidden;
  aspect-ratio: 1
}
.product-card img {
  height: 100%;
  object-fit: contain;
  transition: transform .45s
}
.product-card:hover img {
  transform: scale(1.025)
}
.product-card h3 {
  margin: 14px 0 6px;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -.04em
}
.product-card p {
  margin: 0;
  font-size: 11px;
  font-weight: 700
}
.about-band {
  display: grid;
  grid-template-columns: 58% 42%;
  padding: 10vw 6vw;
  border-top: 1px solid
}
.about-band h2 {
  margin: 0;
  font-size: clamp(45px, 7vw, 100px);
  letter-spacing: -.07em;
  line-height: .9
}
.about-band div {
  align-self: end;
  max-width: 520px
}
.about-band p {
  line-height: 2
}
.page-hero {
  padding: calc(82px + 8vw) 4vw 5vw;
  background: #fff
}
.page-hero p {
  line-height: 2
}
.about-image {
  height: 54vw;
  max-height: 720px;
  object-fit: cover
}
.about-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  padding: 9vw 7vw
}
.about-copy h2 {
  font-size: clamp(38px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -.06em
}
.about-copy p {
  line-height: 2
}
.detail {
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 100svh;
  padding-top: 82px
}
.detail-media {
  padding: 4vw;
  /*background: var(--muted)*/
}
.main-image {
  aspect-ratio: 1
}
.main-image img {
  height: 100%;
  object-fit: contain
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px
}
.thumbs button {
  padding: 0;
  border: 2px solid transparent;
  background: #ddd;
  cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden
}
.thumbs button.active {
  border-color: var(--orange)
}
.thumbs img {
  height: 100%;
  object-fit: cover
}
.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vw;
  background: var(--ink);
  color: #fff
}
.detail-copy h1 {
  margin: 20px 0 8px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .9;
  letter-spacing: -.06em
}
.detail-copy .jp {
  font-weight: 800
}
.description {
  margin-top: 28px;
  font-size: 13px;
  line-height: 2
}
.specs {
  margin-top: 35px;
  border-top: 1px solid #555
}
.specs div {
  display: grid;
  grid-template-columns: 35% 65%;
  padding: 14px 0;
  border-bottom: 1px solid #555;
  font-size: 11px
}
.specs dt, .specs dd {
  margin: 0
}
.back {
  display: inline-block;
  margin-top: 35px;
  border-bottom: 1px solid;
  font-size: 11px;
  font-weight: 900
}
.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid
}
.cta a {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px 4vw;
}
.cta a:first-child {
  background: #161616;
  color: #fff
}
.cta strong {
  font-size: clamp(30px, 4vw, 60px);
  letter-spacing: -.05em
}
.cta span {
  font-size: 10px;
  font-weight: 900
}
.footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 65px 4vw 28px;
  border-top: 1px solid #000000;
}
.footer strong {
  font-size: clamp(45px, 8vw, 110px);
  letter-spacing: -.09em
}
.footer small {
  font-size: 9px
}
@media(max-width:760px) {
  .header {
    height: 68px;
    padding: 0 18px;
    background: rgba(255, 255, 255, .72)
  }
  .logo {
    width: 100px
  }
  .nav {
    display: none
  }
  .menu {
    position: relative;
    z-index: 2;
    display: block
  }
  .mobile-nav.open {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    z-index: 1;
    display: flex;
    width: 100%;
    height: calc(100vh - 68px);
    height: calc(100svh - 68px);
    flex-direction: column;
    gap: 20px;
    padding: 55px 22px;
    overflow-y: auto;
    background: var(--orange);
    font-size: 34px;
    font-weight: 950
  }
  html.menu-open,
  html.menu-open body {
    overflow: hidden
  }
  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column
  }
  .hero-copy {
    order: 2;
    min-height: 63svh;
    padding: 70px 22px 45px
  }
  .hero h1 {
    font-size: 15vw;
    white-space: normal
  }
  .hero-visual {
    order: 1;
    height: 66svh
  }
  .section {
    padding: 75px 20px
  }
  main#products .section {
    padding: 0 20px 75px;
  }
  .section-head {
    display: block
  }
  .section-head .text-link {
    display: inline-block;
    margin-top: 24px
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 12px
  }
  .product-card h3 {
    font-size: 16px
  }
  .about-band {
    display: block;
    padding: 75px 22px
  }
  .about-band div {
    margin-top: 42px
  }
  .page-hero {
    padding: 123px 22px 50px
  }
  .about-image {
    height: 75vw
  }
  .about-copy {
    display: block;
    padding: 70px 22px
  }
  .detail {
    display: block;
    padding-top: 68px
  }
  .detail-media {
    padding: 50px 16px 28px
  }
  .detail-copy {
    padding: 70px 22px
  }
  .cta {
    display: block
  }
  .cta a {
    min-height: 230px
  }
  .footer {
    display: block;
    padding: 55px 22px
  }
  .footer small {
    display: block;
    margin-top: 30px
  }
}
