:root {
  --f-bg: #ececea;
  --f-bg-2: #e3e3e0;
  --f-ink: #000;
  --f-ink-2: #1a1a1a;
  --f-ink-3: #4a4a4a;

  --f-ink-4: #636363;

  --f-on-dark-2: rgba(255, 255, 255, .78);
  --f-line: #b9b9b5;
  --f-line-2: #cfcfcb;
  --f-line-3: #dcdcd8;
  --f-serif: Marcellus, "Zen Old Mincho", serif;
  --f-jp: "Zen Old Mincho", Georgia, serif;
  --f-ease: cubic-bezier(.22, 1, .36, 1);

  --f-curtain: cubic-bezier(.76, 0, .24, 1);
  --f-d1: 450ms; --f-d2: 550ms; --f-d3: 600ms; --f-d4: 800ms;
  --f-hero-h: clamp(680px, 100vh, 940px);

  --f-kv-cycle: 5400ms;
  --f-veil: .34;
  --f-floor: #505050;
  --f-pad: clamp(20px, 4vw, 60px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; font-size: 16px; scroll-behavior: smooth; }
body { margin: 0; background: var(--f-bg); color: var(--f-ink-2); font-family: var(--f-jp);
  font-size: 16px; line-height: 2; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }

a, button, [role="button"], summary { -webkit-tap-highlight-color: transparent; }
@media (hover: none) {
  .f-list a:active, .f-related a:active,
  .f-card:active, .f-foot__grid a:active, .f-crumbs a:active,
  .f-gal__strip a:active { background: rgba(0, 0, 0, .05); }
  .f-pill:active { background: #1a1a1a; color: var(--f-bg); }
  .f-head nav a:active, .f-head__logo:active, .f-head__menu:active { opacity: .5; }
}
img { max-width: 100%; height: auto; display: block; }
::selection { background: #1a1a1a; color: var(--f-bg); }
:focus-visible { outline: 1px solid #000; outline-offset: 4px; }

.f-curtain { position: fixed; inset: 0; z-index: 9990; pointer-events: none; }
.f-curtain__main { position: absolute; inset: 0; background: var(--f-bg); will-change: clip-path; }
.f-curtain__edge { position: absolute; left: 0; right: 0; top: 0; height: 9vh; margin-top: -4.5vh;
  will-change: translate;
  background:
    linear-gradient(to bottom, transparent calc(50% - .5px), rgba(26,26,26,.5) calc(50% - .5px),
                    rgba(26,26,26,.5) calc(50% + .5px), transparent calc(50% + .5px)),
    linear-gradient(to bottom, rgba(26,26,26,0), rgba(26,26,26,.085) 50%, rgba(26,26,26,0)); }

.f-curtain__label { position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  width: min(84vw, 34em); text-align: center;
  font-family: var(--f-serif); font-size: 12px; letter-spacing: .42em; color: var(--f-ink-3);
  line-height: 2.3; text-wrap: balance; word-break: auto-phrase; opacity: 0;

  text-indent: .42em; }

.f-curtain__main { animation: fWipeOut 760ms var(--f-curtain) 100ms both; }
@keyframes fWipeOut { from { clip-path: inset(0 0 0 0); } to { clip-path: inset(0 0 100% 0); } }

html.is-leaving .f-curtain__main { animation: fWipeIn 620ms var(--f-curtain) both; }
@keyframes fWipeIn { from { clip-path: inset(100% 0 0 0); } to { clip-path: inset(0 0 0 0); } }

.f-curtain__edge { animation: fEdge 760ms var(--f-curtain) 100ms both; }
html.is-leaving .f-curtain__edge { animation: fEdge 620ms var(--f-curtain) both; }
@keyframes fEdge {
  0%   { translate: 0 100vh; opacity: 0; }
  7%   { opacity: 1; }
  86%  { opacity: 1; }
  100% { translate: 0 0; opacity: 0; }
}

html.f-settled:not(.is-leaving) .f-curtain__main { animation: none; clip-path: inset(0 0 100% 0); }
html.f-settled:not(.is-leaving) .f-curtain__edge { animation: none; opacity: 0; }

html.f-settled .f-hero__frame { animation: none; clip-path: inset(0 0 0 0); }
html.f-settled .f-hero__copy i { animation: none; translate: 0 0; }
html.f-settled .f-hero__idx, html.f-settled .f-hero__cap { animation: none; opacity: 1; }

html.is-leaving .f-curtain__label { animation: fLabel 520ms var(--f-ease) 210ms both; }
@keyframes fLabel { from { opacity: 0; letter-spacing: .74em; } to { opacity: 1; letter-spacing: .42em; } }

html.is-leaving #content { animation: fSink 560ms var(--f-ease) both; }
@keyframes fSink { to { opacity: .35; translate: 0 -14px; } }

.f-head { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; height: 77px;
  display: flex; align-items: center; gap: 22px; padding: 0 var(--f-pad);
  transition: transform 300ms var(--f-ease); }

.f-head.is-hidden { transform: translateY(-100%); }

.f-head::before { content: ""; position: absolute; inset: -1px 0 -1px; background: var(--f-bg);

  opacity: 0; transition: opacity var(--f-d1) var(--f-ease); pointer-events: none; z-index: -1; }
.f-head.is-plate::before { opacity: 1; }

.f-head.is-invert::before { background: #000; }

.f-head.is-invert { color: #fff; }
.f-head.is-invert .f-pill { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: #fff; }
.f-head.is-invert .f-pill:hover { background: #fff; color: #111; }

.f-head__menu { display: none; margin-left: auto; width: 44px; height: 44px; padding: 0;
  border: 0; background: none; color: inherit; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px; }
.f-head__menu i { display: block; width: 22px; height: 1px; background: currentColor;
  transition: transform var(--f-d1) var(--f-ease), opacity var(--f-d1) var(--f-ease); }
html.is-menu .f-head__menu i:first-child { transform: translateY(4px) rotate(45deg); }
html.is-menu .f-head__menu i:last-child { transform: translateY(-4px) rotate(-45deg); }

.f-head__logo { font-family: var(--f-serif); font-size: 20px; letter-spacing: .22em; white-space: nowrap; }
.f-head nav { display: flex; gap: clamp(10px, 1.6vw, 24px); font-family: var(--f-serif); font-size: 12px; letter-spacing: .12em; }
.f-head nav a { position: relative; padding: 3px 0; }

.f-nav__sw { display: grid; justify-items: center; overflow: hidden; }
.f-nav__sw > i { grid-area: 1 / 1; font-style: normal; white-space: nowrap;
  transition: transform 380ms var(--f-curtain); }
.f-nav__en { transform: translateY(0); }

.f-nav__ja { font-family: var(--f-jp); font-size: 11px; letter-spacing: .08em;
  transform: translateY(112%); }
.f-head nav a:hover .f-nav__en,
.f-head nav a:focus-visible .f-nav__en { transform: translateY(-112%); }
.f-head nav a:hover .f-nav__ja,
.f-head nav a:focus-visible .f-nav__ja { transform: translateY(0); }

.f-head nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform var(--f-d1) var(--f-ease); }
.f-head nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.f-head__pills { margin-left: auto; display: flex; gap: 10px; }
.f-pill { display: inline-flex; align-items: center; gap: 7px; height: 40px; padding: 0 20px; border-radius: 200px;
  border: 1px solid var(--f-line); background: rgba(255,255,255,.72); backdrop-filter: blur(10px);
  font-family: var(--f-serif); font-size: 11px; letter-spacing: .12em; white-space: nowrap;
  transition: background var(--f-d1) var(--f-ease), color var(--f-d1) var(--f-ease); }
.f-pill:hover { background: #1a1a1a; color: var(--f-bg); }

.f-hero { position: relative; height: var(--f-hero-h); overflow: hidden;
  display: grid; place-items: center;
  padding: 104px calc(var(--f-pad) + 54px) 88px; }

.f-hero__plate { position: relative; z-index: 2;
  width: min(100%, calc((var(--f-hero-h) - 192px) * 16 / 9), 1400px);
  aspect-ratio: 16 / 9; max-height: 100%; }

.f-hero__frame { position: absolute; inset: 0; overflow: hidden;
  outline: 1px solid rgba(0, 0, 0, .07); outline-offset: 0;

  isolation: isolate;

  clip-path: inset(49.5% 0 49.5% 0);
  animation: fPlate 1150ms var(--f-curtain) 300ms both; }
@keyframes fPlate { to { clip-path: inset(0 0 0 0); } }

.f-hero__shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; filter: saturate(.72) contrast(.88) brightness(1.06);

  scale: 1;
  transition: opacity 1500ms var(--f-ease); }

.f-hero__shot.is-on { opacity: 1; animation: fKen var(--f-kv-cycle) linear both; }
@keyframes fKen { from { scale: 1.036; } to { scale: 1; } }

.f-hero__floor { position: absolute; inset: 0; pointer-events: none;
  background: var(--f-floor); mix-blend-mode: lighten; }
.f-hero__veil { position: absolute; inset: 0; pointer-events: none;
  background: rgba(236, 236, 234, var(--f-veil)); }

.f-hero__shader { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  mix-blend-mode: difference; opacity: .25; }

.f-hero__copy { position: absolute; left: 50%; top: 50%; translate: -50% -50%; z-index: 3;
  text-align: center; width: min(94%, 1080px); }

.f-hero__copy p, .f-hero__copy h1 { margin: 0; }

.f-hero__copy span { display: block; overflow: hidden; }
.f-hero__copy i { display: block; font-style: normal;
  translate: 0 110%; animation: fRise 900ms var(--f-curtain) both; }
@keyframes fRise { to { translate: 0 0; } }

.f-hero__kicker { font-size: clamp(15px, 1.55vw, 22px); letter-spacing: .08em; line-height: 1.5;
  color: var(--f-ink-2); margin-bottom: 10px; }
.f-hero__kicker i { animation-delay: 760ms; }

.f-hero__brand { font-family: var(--f-serif); font-size: clamp(34px, 5.4vw, 84px); font-weight: 400;
  letter-spacing: .06em; line-height: 1.16; color: var(--f-ink); white-space: nowrap; }
.f-hero__brand i { animation-delay: 880ms; }

.f-hero__sub { font-family: var(--f-jp); font-size: clamp(12.5px, 1.06vw, 16px); font-weight: 500;
  letter-spacing: .14em; line-height: 1.9; color: var(--f-ink-2); margin-top: 16px; }
.f-hero__sub i { animation-delay: 1010ms; }

.f-hero__idx, .f-hero__cap { position: absolute; bottom: 18px; z-index: 3; margin: 0;
  font-size: 11px; letter-spacing: .18em; color: var(--f-ink-2); line-height: 1;
  opacity: 0; animation: fFade 700ms var(--f-ease) 1320ms both; }
.f-hero__idx { left: 20px; font-family: var(--f-serif); letter-spacing: .26em; }
.f-hero__cap { right: 20px; max-width: 58%; text-align: right; font-size: 10.5px; color: var(--f-ink-3);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@keyframes fFade { from { opacity: 0; } to { opacity: 1; } }

.f-hero__badge { position: absolute; left: 26px; top: 10.3%; height: 394px; width: 20px; z-index: 2;
  writing-mode: vertical-rl; font-size: 12px; letter-spacing: .28em; color: var(--f-ink-3); overflow: hidden; }

.f-hero__badge span { display: inline-block; white-space: nowrap;
  animation: fBadge 40s linear infinite; }

@keyframes fBadge { to { transform: translateY(-50%); } }

.f-hero__scroll { position: absolute; right: 24px; bottom: 40px; z-index: 2; writing-mode: vertical-rl;
  font-family: var(--f-serif); font-size: 11px; letter-spacing: .3em; color: var(--f-ink-3);
  display: flex; align-items: center; gap: 12px; }
.f-hero__scroll::after { content: ""; width: 1px; height: 60px; background: var(--f-line);
  transform-origin: top; animation: fScrollLine 2.2s var(--f-ease) infinite; }
@keyframes fScrollLine { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

.f-fab { display: none; }
@media (max-width: 900px) {
  .f-fab { display: inline-flex; align-items: center; justify-content: center;
    position: fixed; left: 50%; z-index: 9980;
    bottom: calc(16px + env(safe-area-inset-bottom));
    min-height: 52px; padding: 0 34px; border-radius: 999px;
    background: #1a1a1a; color: var(--f-bg);
    font-family: var(--f-serif); font-size: 13px; letter-spacing: .16em;
    white-space: nowrap; box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .5);

    translate: -50% calc(100% + 28px); opacity: 0; visibility: hidden;
    transition: translate 420ms var(--f-ease), opacity 260ms var(--f-ease),
                visibility 0s linear 420ms; }
  .f-fab.is-on { translate: -50% 0; opacity: 1; visibility: visible;
    transition-delay: 0s, 0s, 0s; }

  .f-fab.is-invert { background: var(--f-bg); color: #111;
    box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .85); }

  html.is-menu .f-fab { translate: -50% calc(100% + 28px); opacity: 0; visibility: hidden; }

  html.is-leaving .f-fab { pointer-events: none; }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  .f-fab, .f-fab.is-on { translate: -50% 0;
    transition: opacity 120ms linear, visibility 0s linear 120ms; }
  html.is-menu .f-fab { translate: -50% 0; }
}

.f-sec { padding: 0 var(--f-pad); position: relative; }
.f-sec--collection, .f-sec--shops { padding-top: 120px; }
.f-sec--next { padding-top: 100px; }
.f-inner { max-width: 1320px; margin: 0 auto; }
.f-h2 { font-family: var(--f-serif); font-weight: 400; margin: 0 0 40px; color: var(--f-ink); }

.f-h2__en { display: block; }
.f-h2__ja { display: block; font-family: var(--f-jp); font-size: clamp(12px, 1.05vw, 16px);
  font-weight: 400; letter-spacing: .16em; line-height: 1.8; color: var(--f-ink-3);
  margin-top: 18px; }
.f-h2--43 .f-h2__ja { margin-top: 10px; }

.f-sec--answer { padding-top: 76px; }
.f-h2--92 { font-size: clamp(40px, 6.4vw, 92px); line-height: 1.05; letter-spacing: .01em; }
.f-h2--72 { font-size: clamp(34px, 5vw, 72px); line-height: 1.2; letter-spacing: .04em; }
.f-h2--43 { font-size: clamp(26px, 3vw, 43.2px); line-height: 1.3; letter-spacing: .1em; }
.f-lead { font-size: 17px; line-height: 2.2; max-width: 40em; color: var(--f-ink-3); }

.f-about { padding: 220px var(--f-pad) 0; }

.f-about__wrap { max-width: 1320px; margin: 0 auto; display: grid;
  grid-template-columns: 0.86fr 1.14fr; gap: clamp(30px, 5vw, 76px); }
.f-about__pin { position: sticky; top: 0; height: 100vh; max-height: 900px; display: flex; flex-direction: column; justify-content: center; }
.f-about__steps { display: grid; gap: clamp(56px, 10vh, 110px); padding: 10vh 0 10vh; }

.f-step { border-top: 1px solid var(--f-line); padding-top: 26px; }

.f-step p { max-width: 34em; }

@media (min-width: 1280px) {
  .f-step { display: grid; grid-template-columns: 240px minmax(0, 1fr);
    column-gap: clamp(26px, 2.6vw, 40px); align-items: center; }
  .f-step > .f-step__obj { grid-column: 1; }
  .f-step > p { grid-column: 2; }
}
.f-step__no { font-family: var(--f-serif); font-size: 12px; letter-spacing: .24em; color: var(--f-ink-4); }
.f-step h3 { font-size: 27px; font-weight: 400; letter-spacing: .05em; margin: 12px 0 12px; line-height: 1.45; }
.f-step p { font-size: 15px; line-height: 2.1; color: var(--f-ink-3); margin: 0; }

.f-feat { padding-top: 140px; }
.f-feat__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(24px, 4vw, 60px); margin-top: 50px; }
.f-feat__grid h3 { font-size: 27px; font-weight: 400; letter-spacing: .05em; line-height: 1.45; margin: 0 0 12px; }
.f-feat__grid p { font-size: 15px; line-height: 2.1; color: var(--f-ink-3); margin: 0; }
.f-feat__grid figure { margin: 0 0 18px; border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; }
.f-feat__grid img { width: 100%; height: 100%; object-fit: cover; }

.f-gallery-stage { position: relative; background: #000; padding: clamp(70px, 9vh, 120px) 0 clamp(56px, 7vh, 96px); margin-top: 140px; }

.f-drift { position: relative; width: 100%; margin: 0 auto;
  height: clamp(520px, 76vh, 860px); }

.drift-wall { position: relative; width: 100%; height: 100%; overflow: hidden;
  --dw-tile-w: 200px; --dw-tile-h: 132px; --dw-gap: 18px; --dw-radius: 14px;
  --dw-lift: 64px; --dw-dim: .55; --dw-gray: 0; --dw-overlay: #060010; --dw-edge: 40%; }

.drift-wall__stage, .drift-wall__front { position: absolute; inset: 0;
  perspective: var(--dw-perspective, 1200px); perspective-origin: 50% 50%; }

.drift-wall__front { pointer-events: none; }

.drift-wall__stage {

  --dw-soft: calc((100% - var(--dw-edge)) / 2);
  -webkit-mask-image:
    radial-gradient(ellipse 78% 86% at 50% 50%, #000 var(--dw-edge), transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 var(--dw-soft),
                    #000 calc(100% - var(--dw-soft)), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(ellipse 78% 86% at 50% 50%, #000 var(--dw-edge), transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 var(--dw-soft),
                    #000 calc(100% - var(--dw-soft)), transparent 100%);
  mask-composite: intersect; }

.drift-wall__fplane { position: absolute; top: 50%; left: 50%;
  transform-style: preserve-3d; transform-origin: 50% 50%; will-change: transform; }

.drift-wall__tile.is-front { position: absolute;
  width: calc(var(--dw-tile-w) + var(--dw-gap)); }

.drift-wall__slot { display: block; flex: 0 0 auto;
  width: 100%; height: calc(var(--dw-tile-h) + var(--dw-gap)); }

.drift-wall__source { display: none; }

.drift-wall__plane { position: absolute; top: 50%; left: 50%;
  display: flex; flex-direction: row; transform-style: preserve-3d;
  transform-origin: 50% 50%; will-change: transform; cursor: pointer; }

.drift-wall__col { position: relative; transform-style: preserve-3d;
  width: calc(var(--dw-tile-w) + var(--dw-gap)); }

.drift-wall__track { display: flex; flex-direction: column;
  will-change: transform; transform-style: preserve-3d; }

.drift-wall__tile { position: relative; display: block; margin: 0; flex: 0 0 auto;
  width: 100%; height: calc(var(--dw-tile-h) + var(--dw-gap));
  outline: none; transform-style: preserve-3d; }

.drift-wall__inner { position: absolute; left: 50%; top: 50%;
  width: var(--dw-tile-w); height: var(--dw-tile-h);
  display: block; overflow: hidden; border-radius: var(--dw-radius);
  background: #0b0b12; opacity: var(--dw-dim);
  transform: translate(-50%, -50%) translateZ(0);
  pointer-events: none;
  transition: width 420ms var(--f-ease), height 420ms var(--f-ease),
              transform 420ms var(--f-ease), opacity 420ms var(--f-ease),
              box-shadow 420ms var(--f-ease); }

.drift-wall__img { display: block; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(var(--dw-gray)) saturate(.92);
  transition: filter 420ms var(--f-ease);
  user-select: none; -webkit-user-drag: none; }

.drift-wall__overlay { position: absolute; inset: 0; pointer-events: none;
  background: var(--dw-overlay); opacity: .42;
  transition: opacity 420ms var(--f-ease); }

.drift-wall__tile.is-measuring .drift-wall__inner,
.drift-wall__tile.is-measuring figcaption { transition: none !important; }

.drift-wall__tile.is-active .drift-wall__inner { opacity: 1;
  transform: translate(-50%, -50%)
             translateX(var(--dw-nudge-x, 0px)) translateY(var(--dw-nudge-y, 0px))
             translateZ(var(--dw-lift));
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .82); }
.drift-wall__tile.is-active .drift-wall__img { filter: grayscale(0) saturate(1.05); }
.drift-wall__tile.is-active .drift-wall__overlay { opacity: 0; }

.drift-wall__tile figcaption { position: absolute; left: 50%; top: 50%;
  width: max-content; max-width: var(--dw-cap-w, 240px);
  margin: 0; padding: 8px 15px 9px; border-radius: 8px; text-align: center;
  background: rgba(10, 10, 12, .9);
  box-shadow: 0 12px 34px -14px rgba(0, 0, 0, .85);
  pointer-events: none; opacity: 0; visibility: hidden;

  transform: translate(-50%, -50%)
             translateX(calc(var(--dw-nudge-x, 0px) + var(--dw-cap-ox, 0px)))
             translateY(var(--dw-nudge-y, 0px))
             translateY(var(--dw-cap-y, 120px)) translateY(50%)
             translateZ(var(--dw-lift));

  transition: opacity 240ms var(--f-ease), visibility 0s linear 240ms; }

.drift-wall__tile.is-cap-above figcaption {
  transform: translate(-50%, -50%)
             translateX(calc(var(--dw-nudge-x, 0px) + var(--dw-cap-ox, 0px)))
             translateY(var(--dw-nudge-y, 0px))
             translateY(calc(var(--dw-cap-y, 120px) * -1))
             translateY(-50%) translateZ(var(--dw-lift)); }
.drift-wall__tile.is-active figcaption { opacity: 1; visibility: visible;
  transition-delay: 60ms, 0s; }
.drift-wall__tile figcaption b { display: block; color: #fff;
  font-size: 13px; font-weight: 500; letter-spacing: .06em; line-height: 1.6; }

.drift-wall__tile figcaption span { display: block; margin-top: 3px;
  color: rgba(255, 255, 255, .82); font-size: 11.5px; line-height: 1.7; }

@media (prefers-reduced-motion: reduce) {

  .f-nav__sw > i { transition: none; }
  .f-head nav a:hover .f-nav__en, .f-head nav a:focus-visible .f-nav__en {
    transform: none; }
  .f-head nav a:hover .f-nav__ja, .f-head nav a:focus-visible .f-nav__ja {
    transform: translateY(112%); }
  .drift-wall__plane, .drift-wall__track { will-change: auto; }
}

.f-gallery-stage__cap { position: relative; z-index: 2; color: #fff; text-align: center;
  padding: 0 var(--f-pad) clamp(40px, 5vh, 66px); }
.f-gallery-stage__cap h2 { font-family: var(--f-serif); font-size: clamp(28px, 4vw, 56px);
  font-weight: 400; letter-spacing: .05em; margin: 0 0 12px; }

.f-gallery-stage__cap p { color: var(--f-on-dark-2); font-size: 14px; line-height: 1.9;
  margin: 0 auto; max-width: 46em; }

.f-list { list-style: none; margin: 40px 0 0; padding: 0; border-top: 1px solid var(--f-line-2); }
.f-list li { border-bottom: 1px solid var(--f-line-2); }
.f-list a { display: grid; grid-template-columns: 4em 1fr auto; gap: clamp(14px, 2.4vw, 40px); align-items: baseline;
  padding: clamp(20px, 2.6vw, 32px) 4px; transition: opacity var(--f-d1) var(--f-ease), padding-left var(--f-d1) var(--f-ease); }
.f-list a:hover { opacity: .6; padding-left: 12px; }

@media (min-width: 900px) {
  .f-list--2col { display: grid; grid-template-columns: 1fr 1fr;
    column-gap: clamp(32px, 4.4vw, 80px);
    border-bottom: 1px solid var(--f-line-2); }

  .f-list--2col li:last-child,
  .f-list--2col li:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
  .f-list--2col a { grid-template-columns: 3.4em minmax(0, 1fr) auto;
    gap: clamp(12px, 1.6vw, 24px); }
  .f-list--2col .f-list__ttl { font-size: clamp(18px, 1.32vw, 22px); }
}
.f-list__no { font-family: var(--f-serif); font-size: 12px; letter-spacing: .2em; color: var(--f-ink-4); }
.f-list__ttl { font-size: clamp(19px, 1.6vw, 27px); font-weight: 400; letter-spacing: .05em; line-height: 1.5; }
.f-list__ttl span { display: block; font-size: 13px; color: var(--f-ink-3); margin-top: 5px; letter-spacing: .02em; }

.f-list__go { align-self: center;
  display: flex; align-items: center; color: var(--f-ink-4);
  transition: color var(--f-d1) var(--f-ease), translate var(--f-d1) var(--f-ease); }
.f-list__go svg { display: block; }
.f-list a:hover .f-list__go { color: var(--f-ink); translate: 4px 0; }

.f-logos { padding: clamp(40px, 6vh, 78px) 0 clamp(46px, 7vh, 90px);
  border-top: 1px solid var(--f-line-3); border-bottom: 1px solid var(--f-line-3); }
.f-logos__lead { margin: 0 var(--f-pad) clamp(26px, 3.4vw, 40px);
  font-size: 12px; letter-spacing: .14em; line-height: 1.9; color: var(--f-ink-4);
  text-align: center; }
.f-logos__win { overflow: hidden; }
.f-logos__win + .f-logos__win { margin-top: clamp(22px, 2.6vw, 36px); }
.f-logos__track { display: flex; align-items: center; width: max-content;
  list-style: none; margin: 0; padding: 0;

  will-change: transform;
  animation: fLogos 58s linear infinite; }

.f-logos__track--b { animation-name: fLogosRev; animation-duration: 47s; }
.f-logos__track--c { animation-duration: 66s; }

.f-logos__track li { flex: none; margin: 0 clamp(34px, 4.4vw, 64px) 0 0; }

.f-logos__track img { display: block; width: auto; opacity: .78;
  height: clamp(26px, 2.6vw, 35px); }
.f-logos__track li[data-sz="w"] img { height: clamp(22px, 2.2vw, 29px); }
.f-logos__track li[data-sz="s"] img { height: clamp(36px, 3.6vw, 48px); }
@keyframes fLogos { to { transform: translateX(-50%); } }

@keyframes fLogosRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {

  .f-logos__track { animation: none; }
  .f-logos__win { overflow-x: auto; }
}

.f-band { overflow: hidden; margin-top: 120px; padding: 16px 0; }
.f-band__track { display: inline-flex; white-space: nowrap; animation: fBand 30s linear infinite; }
.f-band span { font-family: var(--f-serif); font-size: clamp(52px, 9.6vw, 138px); line-height: 1;
  letter-spacing: -.01em; color: var(--f-ink); padding-right: .3em; }
@keyframes fBand { to { transform: translateX(-50%); } }

.f-next { padding: 100px var(--f-pad) 160px; }
.f-next a { display: flex; flex-direction: column; justify-content: center; min-height: 200px; width: 100%;
  border-top: 1px solid var(--f-line); border-bottom: 1px solid var(--f-line); padding: 20px 0;
  transition: padding-left var(--f-d2) var(--f-ease); }
.f-next a:hover { padding-left: 16px; }
.f-next em { font-style: normal; font-family: var(--f-serif); font-size: 12px; letter-spacing: .24em; color: var(--f-ink-4); }
.f-next strong { font-family: var(--f-serif); font-weight: 400; font-size: clamp(30px, 4vw, 56px); letter-spacing: .05em; margin-top: 10px; }

.f-foot { position: relative; z-index: 1; background: var(--f-bg-2); padding: 90px var(--f-pad) 40px; }
.f-foot__grid { max-width: 1320px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 18px 40px; font-size: 13px; }

.f-foot__grid a { color: var(--f-ink-3); transition: color var(--f-d1) var(--f-ease);
  display: inline-flex; align-items: center; min-height: 44px; }
.f-foot__grid a:hover { color: #000; }
.f-foot__mark { max-width: 1320px; margin: 60px auto 0; font-family: var(--f-serif); font-size: clamp(40px, 11vw, 158px);
  line-height: .9; letter-spacing: .02em; color: var(--f-ink); }
.f-foot__note { max-width: 1320px; margin: 24px auto 0; font-size: 11px; letter-spacing: .1em; color: var(--f-ink-4); }

.f-cursor { position: fixed; top: 0; left: 0; width: 0; height: 0;
  pointer-events: none; z-index: 9997; mix-blend-mode: difference;
  opacity: 0; transition: opacity 220ms var(--f-ease); }
.f-cursor.is-ready { opacity: 1; }
.f-cursor.is-instant { transition: none; }
.f-cursor__frame { position: absolute; left: 0; top: 0; width: 56px; height: 31.5px;
  margin: -15.75px 0 0 -28px;
  border: 1px solid var(--f-line); border-radius: 3px;
  rotate: 0deg; scale: 1;
  transition: rotate 760ms cubic-bezier(.62, -0.28, .24, 1.24),
              scale  760ms cubic-bezier(.34, 1.52, .44, 1),
              border-color var(--f-d1) var(--f-ease); }

.f-cursor.is-portrait .f-cursor__frame { rotate: 90deg; }

.f-cursor.is-flipping .f-cursor__frame { scale: .8; border-color: var(--f-ink-3); }
@media (hover: none) { .f-cursor { display: none; } }

.f-rev { opacity: 0; transform: translateY(20px); transition: opacity var(--f-d4) var(--f-ease), transform var(--f-d4) var(--f-ease); }
.f-rev.is-in, html.no-js .f-rev { opacity: 1; transform: none; }

.f-main { max-width: 860px; margin: 0 auto; padding: 150px var(--f-pad) 100px; }
.f-main--wide { max-width: 1320px; }
.f-main--wide > p, .f-main--wide > .f-answer { max-width: 34em; }
.f-crumbs { font-family: var(--f-serif); font-size: 11px; letter-spacing: .14em; color: var(--f-ink-4); margin-bottom: 44px; }

.f-crumbs a { display: inline-flex; align-items: center; min-height: 44px; }
.f-kicker { font-family: var(--f-serif); font-size: 12px; letter-spacing: .24em; color: var(--f-ink-4); margin: 0 0 16px; }
.f-main h1 { font-family: var(--f-jp); font-weight: 400; font-size: clamp(28px, 2rem + 1.6vw, 56px); line-height: 1.5;
  letter-spacing: .08em; margin: 0 0 34px; color: var(--f-ink); }
.f-answer { border-top: 1px solid var(--f-line); border-bottom: 1px solid var(--f-line-3); padding: 26px 0; margin: 0 0 54px;
  font-size: 17px; line-height: 2.2; color: var(--f-ink); }
.f-answer strong { font-weight: 500; }

.f-sec--answer .f-answer { max-width: 40em; margin: 0; font-size: clamp(16px, 1.3vw, 19px); }
.f-main h2 { font-family: var(--f-jp); font-weight: 400; font-size: clamp(21px, 1.4rem + .7vw, 30px); letter-spacing: .1em;
  margin: 76px 0 22px; padding-top: 34px; border-top: 1px solid var(--f-line-2); }
.f-main h2 .n { display: block; font-family: var(--f-serif); font-size: 11px; letter-spacing: .24em; color: var(--f-ink-4); margin-bottom: 10px; }
.f-main h3 { font-size: 18px; font-weight: 400; letter-spacing: .06em; margin: 34px 0 10px; }
.f-main p { margin: 0 0 1.3em; }
.f-main ul, .f-main ol { padding-left: 1.5em; margin: 0 0 1.3em; }
.f-main a:not(.f-btn) { border-bottom: 1px solid var(--f-line); }
.f-table-wrap { overflow-x: auto; margin: 0 0 1.4em; }
.f-main table { border-collapse: collapse; width: 100%; font-size: 14px; }
.f-main th, .f-main td { border: 1px solid var(--f-line-2); padding: 12px 14px; text-align: left; vertical-align: top; line-height: 1.9; }
.f-main th { background: rgba(255,255,255,.55); font-weight: 400; white-space: nowrap; }
.f-main caption { caption-side: top; text-align: left; font-family: var(--f-serif); font-size: 11px; letter-spacing: .14em; color: var(--f-ink-4); padding-bottom: 10px; }
.f-note { border: 1px solid var(--f-line-2); background: rgba(255,255,255,.4); padding: 16px 20px; font-size: 13px; color: var(--f-ink-3); margin: 0 0 1.4em; }
.f-sample { border: 1px dashed var(--f-line); padding: 16px 20px; font-size: 13px; margin-top: 48px; }
.f-sample p, .f-sample { max-width: 42em; }

html[lang="en"] .f-main p, html[lang="en"] .f-main li { max-width: 32em; }
.f-sample::before { content: "（ SAMPLE ）"; display: block; font-family: var(--f-serif); font-size: 11px; letter-spacing: .24em; margin-bottom: 6px; }
.f-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; list-style: none; padding: 0; margin: 0 0 1.4em; }
.f-card { display: block; height: 100%; border: 1px solid var(--f-line-2); border-radius: 24px; background: rgba(255,255,255,.5); padding: 24px 22px;
  transition: background var(--f-d1) var(--f-ease); }
.f-card:hover { background: rgba(255,255,255,.85); }
.f-card i { display: block; font-style: normal; font-family: var(--f-serif); font-size: 11px; letter-spacing: .2em; color: var(--f-ink-4); margin-bottom: 10px; }
.f-card b { display: block; font-weight: 400; font-size: 17px; letter-spacing: .05em; margin-bottom: 8px; }
.f-card span { display: block; font-size: 13px; line-height: 2; color: var(--f-ink-3); }
.f-related { list-style: none; padding: 0; margin: 0 0 1.4em; border-top: 1px solid var(--f-line-2); }
.f-related li { border-bottom: 1px solid var(--f-line-2); }

.f-related a { display: grid; grid-template-columns: minmax(0, 15em) minmax(0, 1fr) 1.2em;
  gap: clamp(14px, 2.2vw, 34px); align-items: baseline; padding: 16px 2px; border: 0 !important;
  transition: padding-left var(--f-d1) var(--f-ease); }
.f-related a:hover { padding-left: 10px; }
.f-related i { font-style: normal; font-size: 12px; color: var(--f-ink-4); text-align: left; }

.f-related a::after { content: "→"; color: var(--f-ink-4); grid-column: 3; }

@media (min-width: 900px) {
  .f-related--2col { display: grid; grid-template-columns: 1fr 1fr;
    column-gap: clamp(32px, 4vw, 72px);
    border-bottom: 1px solid var(--f-line-2); }

  .f-related--2col li:last-child,
  .f-related--2col li:nth-last-child(2):nth-child(odd) { border-bottom: 0; }

  .f-related--2col a { grid-template-columns: minmax(0, 12em) minmax(0, 1fr) 1.2em;
    gap: clamp(12px, 1.4vw, 22px); }
}
.f-meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); border: 1px solid var(--f-line-2); border-left: 0; margin: 0 0 40px; }
.f-meta-grid div { border-left: 1px solid var(--f-line-2); padding: 16px 18px; }
.f-meta-grid dt { font-family: var(--f-serif); font-size: 11px; letter-spacing: .16em; color: var(--f-ink-4); margin: 0 0 6px; }
.f-meta-grid dd { margin: 0; font-size: 15px; color: var(--f-ink); }
.f-hero-img { margin: 0 0 44px; }

.f-hero-img img { display: block; width: auto; max-width: 100%; height: auto; max-height: 74vh;
  margin-inline: auto; object-fit: contain; border-radius: 18px; filter: saturate(.9) contrast(1.02); }
.f-hero-img figcaption { font-family: var(--f-serif); font-size: 11px; letter-spacing: .14em; color: var(--f-ink-4); padding-top: 10px; }
.f-faq details { border-bottom: 1px solid var(--f-line-2); }
.f-faq summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; position: relative; }
.f-faq summary::-webkit-details-marker { display: none; }
.f-faq summary::after { content: "＋"; position: absolute; right: 2px; top: 22px; color: var(--f-ink-4); transition: transform var(--f-d1) var(--f-ease); }
.f-faq details[open] summary::after { transform: rotate(45deg); }
.f-faq__a { padding: 0 0 22px; color: var(--f-ink-3); }
.f-cta { margin: 100px calc(50% - 50vw) 0; width: 100vw; background: #1a1a1a; color: var(--f-bg);
  padding: clamp(56px, 8vw, 112px) var(--f-pad); text-align: center; }
.f-cta strong { display: block; font-family: var(--f-serif); font-weight: 400; font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.2rem); letter-spacing: .08em; margin-bottom: 14px; }
.f-cta p { color: rgba(236,236,234,.72); font-size: 14px; max-width: 38em; margin: 0 auto 30px; }
.f-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.f-btns .f-btn { min-width: 176px; padding-inline: 26px; text-align: center; }
.f-btn { display: inline-block; padding: 16px 38px; border-radius: 200px; border: 1px solid var(--f-bg); color: var(--f-bg);
  font-family: var(--f-serif); font-size: 12px; letter-spacing: .16em;
  transition: background var(--f-d1) var(--f-ease), color var(--f-d1) var(--f-ease); }
.f-btn:hover { background: var(--f-bg); color: #1a1a1a; }
.f-btn--primary { background: var(--f-bg); color: #1a1a1a; }
.f-btn--primary:hover { background: transparent; color: var(--f-bg); }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin: 0 0 32px; }
.stat { border: 1px solid var(--f-line-2); border-radius: 24px; background: rgba(255,255,255,.5); padding: 22px 20px; }
.stat b { display: block; font-family: var(--f-serif); font-weight: 400; font-size: clamp(2rem, 1.5rem + 2.2vw, 3.2rem); line-height: 1; color: var(--f-ink); }
.stat span { display: block; margin-top: 10px; font-size: 13px; color: var(--f-ink-3); }
.stat i { display: block; font-style: normal; font-size: 11px; letter-spacing: .12em; color: var(--f-ink-4); margin-top: 4px; }
.chart { margin: 0 0 20px; overflow-x: auto; }
.chart figcaption, .sm-cap { display: block; font-family: var(--f-serif); font-size: 11px; letter-spacing: .14em; color: var(--f-ink-4); padding-top: 10px; }
.sm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--f-line-2); border: 1px solid var(--f-line-2); border-radius: 24px; overflow: hidden; }
.sm-panel { background: var(--f-bg); padding: 14px 10px 8px; }
.hm-cell rect { transition: opacity 220ms var(--f-ease); }
.chart:hover .hm-cell rect { opacity: .55; }
.chart .hm-cell:hover rect { opacity: 1; }

@media (max-width: 900px) {
  .f-about__wrap { grid-template-columns: 1fr; }
  .f-about__pin { position: static; height: auto; max-height: none; padding-bottom: 40px; }
  .f-about__steps { padding: 0 0 40px; gap: 50px; }

  .f-hero { height: auto; min-height: 0; display: block; padding: 0; }
  .f-hero__plate { position: relative; width: 100%; max-width: none;
    aspect-ratio: auto; max-height: none;

    min-height: 100vh; min-height: 100svh;
    display: grid; place-items: center;
    padding: 108px var(--f-pad) 118px; }

  .f-hero__frame { outline: none; }

  .f-hero__copy { position: static; translate: none;
    width: 100%; max-width: 560px; padding: 0; }
  .f-hero__kicker { font-size: 16px; letter-spacing: .1em; margin-bottom: 12px; }

  .f-hero__brand { font-size: min(10vw, 54px); letter-spacing: .04em; white-space: nowrap; }
  .f-hero__sub { font-size: 13px; line-height: 2.05; letter-spacing: .1em; margin-top: 18px;

    word-break: auto-phrase; }

  .f-hero__copy .f-nb { display: inline-block; overflow: visible; }

  .f-hero__idx { position: absolute; left: var(--f-pad); right: auto;
    bottom: calc(26px + env(safe-area-inset-bottom)); margin: 0; text-align: left; }

  .f-hero__scroll { display: flex; z-index: 4; right: var(--f-pad);
    bottom: calc(26px + env(safe-area-inset-bottom)); color: var(--f-ink-2); }
  .f-hero__scroll::after { height: 42px; }
  .f-hero__cap, .f-hero__badge { display: none; }

  .f-hero__shader { mix-blend-mode: screen; opacity: .42; }
  .f-related a { grid-template-columns: minmax(0, 1fr) 1.2em; }
  .f-related i { grid-column: 1 / -1; margin-top: 4px; }

  .f-list a { grid-template-columns: 3em 1fr 20px; }
  .f-list__go svg { width: 18px; height: 18px; }

  .f-head__menu { display: flex; }
  .f-head nav, .f-head__pills { display: none; }
  html.is-menu { overflow: hidden; }

  html.is-menu .f-head__logo { line-height: 77px; }
  html.is-menu .f-head { align-items: flex-start; height: 100dvh; flex-direction: column; gap: 0;
    padding-bottom: calc(24px + env(safe-area-inset-bottom)); overflow-y: auto; }
  html.is-menu .f-head.is-hidden { transform: none; }
  html.is-menu .f-head__menu { position: absolute; top: 18px; right: var(--f-pad); margin: 0; }
  html.is-menu .f-head nav { display: flex; flex-direction: column; gap: 0;
    width: 100%; margin-top: 18px; font-size: 15px; letter-spacing: .18em;
    border-top: 1px solid var(--f-line-2); }
  html.is-menu .f-head nav a { padding: 20px 2px; border-bottom: 1px solid var(--f-line-2); }
  html.is-menu .f-head nav a::after { display: none; }

  html.is-menu .f-nav__sw { grid-auto-flow: column; justify-content: start;
    align-items: baseline; gap: 12px; overflow: visible; }
  html.is-menu .f-nav__sw > i { grid-area: auto; transform: none; opacity: 1;
    transition: none; }
  html.is-menu .f-nav__ja { color: var(--f-ink-4); }
  html.is-menu .f-head__pills { display: flex; width: 100%; margin: 28px 0 0; gap: 12px; }
  html.is-menu .f-head__pills .f-pill { flex: 1; justify-content: center; height: 48px; }

  html.is-menu .f-head::before { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {

  .f-curtain, .f-cursor { display: none; }
  .f-cursor__frame { transition: none; }
  .f-hero__frame { clip-path: inset(0 0 0 0); animation: none; }
  .f-hero__shot { transition: none; }
  .f-hero__shot.is-on { animation: none; scale: 1; }
  .f-hero__copy i { translate: 0 0; animation: none; }
  .f-hero__idx, .f-hero__cap { opacity: 1; animation: none; }
  .f-hero, .f-head { animation: none; }
  .f-hero__badge span, .f-band__track { animation: none; }
  .f-hero__scroll::after { animation: none; transform: scaleY(1); }
  .f-rev { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

.f-screens__lead { max-width: 42em; margin: 0 0 clamp(28px, 4vw, 44px);
  font-size: clamp(14px, 1.1vw, 15.5px); line-height: 2.15; color: var(--f-ink-2); }
.f-screens__lead b { color: var(--f-ink); font-weight: 500; }

.f-screens__grid { list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: clamp(18px, 2.2vw, 30px) clamp(16px, 1.8vw, 24px); }
.f-screens__grid li { margin: 0; }

.f-screens__grid img { display: block; width: 100%; height: auto;
  background: #101012; border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .10), 0 10px 26px -12px rgba(0, 0, 0, .30); }
.f-screens__grid span { display: block; margin-top: 10px;
  font-size: 11.5px; line-height: 1.85; color: var(--f-ink-4); }

@media (max-width: 640px) {
  .f-screens__grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

.f-hero-shots { margin: 0 0 clamp(30px, 4vw, 48px); }
.f-hero-shots > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px); align-items: start; max-width: 640px; }
.f-hero-shots img { display: block; width: 100%; height: auto; border-radius: 2px;
  background: #101012;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .10), 0 12px 30px -14px rgba(0, 0, 0, .32); }
.f-hero-shots figcaption { margin-top: 14px; max-width: 42em;
  font-size: 12px; line-height: 1.9; color: var(--f-ink-4); }

.f-fn__phone { --scr: 12px; --bez: 10px;
  display: inline-block; position: relative; padding: var(--bez);
  border-radius: calc(var(--scr) + var(--bez)); background: #121215;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .10),
              inset 0 0 0 2px rgba(0, 0, 0, .55),
              0 2px 4px rgba(0, 0, 0, .12),
              0 26px 60px -24px rgba(0, 0, 0, .55); }

.f-fn__clip .f-fn__phone video { display: block; border-radius: var(--scr);
  background: #000; box-shadow: none; }

.f-fn__phone::before { content: ""; position: absolute; top: calc(var(--bez) / 2 - 1.5px);
  left: 50%; width: 34px; height: 3px; margin-left: -17px; border-radius: 2px;
  background: rgba(255, 255, 255, .16); }
@media (max-width: 640px) {
  .f-fn__phone { --scr: 10px; --bez: 8px; }
}

.f-fn__awards { display: flex; align-items: center; gap: clamp(20px, 3vw, 40px);
  margin: clamp(22px, 3vw, 32px) 0 clamp(26px, 3.4vw, 38px); flex-wrap: wrap; }
.f-fn__awards img { display: block; width: auto; height: clamp(69px, 8.1vw, 93px); }

.f-fn__aa { display: grid; gap: clamp(20px, 2.6vw, 32px);
  margin: clamp(22px, 3vw, 32px) 0 clamp(26px, 3.4vw, 38px); }
@media (min-width: 900px) {
  .f-fn__aa { grid-template-columns: minmax(0, 260px) minmax(0, 1fr); align-items: start; }
}
.f-fn__badge { display: flex; align-items: center; gap: 14px;
  padding: 16px 22px 17px; border: 2px solid var(--f-ink-2); border-radius: 200px; }
.f-fn__badge-ck { flex: none; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--f-ink-2); color: var(--f-bg); }
.f-fn__badge-t { display: block; line-height: 1.5; }
.f-fn__badge-t i { display: block; font-style: normal; font-size: 10.5px;
  letter-spacing: .12em; color: var(--f-ink-4); }
.f-fn__badge-t b { display: block; font-size: 11.5px; font-weight: 400;
  letter-spacing: .06em; color: var(--f-ink-3); }
.f-fn__badge-t em { display: block; font-style: normal; font-family: var(--f-serif);
  font-size: clamp(20px, 2vw, 25px); letter-spacing: .06em; color: var(--f-ink); margin-top: 2px; }
.f-fn__aa-txt p { margin: 0 0 1em; }
.f-fn__aa-txt p:last-child { margin-bottom: 0; }

.f-fn__cvd { margin: clamp(22px, 3vw, 32px) 0 clamp(26px, 3.4vw, 38px); }

.f-fn__cvd > div { display: flex; gap: clamp(12px, 1.4vw, 20px);
  padding-bottom: 12px;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--f-ink-4) transparent; }
.f-fn__cvd > div::-webkit-scrollbar { height: 3px; }
.f-fn__cvd > div::-webkit-scrollbar-track { background: rgba(0, 0, 0, .06); }
.f-fn__cvd > div::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, .28); }
.f-fn__cvd figure { flex: none; scroll-snap-align: start; }
.f-fn__cvd figure { margin: 0; }
.f-fn__cvd img { display: block; width: auto;
  height: clamp(180px, 26vw, 320px);
  border-radius: 2px; border: 1px solid var(--f-line-3); }
.f-fn__cvd figure figcaption { margin-top: 8px; font-size: 10.5px; letter-spacing: .06em;
  line-height: 1.6; color: var(--f-ink-4); text-align: center; }
.f-fn__cvd > figcaption { margin-top: 16px; max-width: 42em;
  font-size: 12px; line-height: 1.9; color: var(--f-ink-4); }

.f-main h3 { font-size: clamp(15px, 1.3vw, 17px); font-weight: 400; letter-spacing: .08em;
  line-height: 1.7; color: var(--f-ink); margin: clamp(30px, 3.6vw, 44px) 0 12px; }

.f-fn__clip { margin: clamp(26px, 3.4vw, 40px) 0 clamp(22px, 3vw, 34px); }
.f-fn__clip video { display: block; margin: 0;
  width: 100%; height: auto; max-width: 100%;
  border-radius: 2px; background: #101012;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .10), 0 12px 30px -14px rgba(0, 0, 0, .32); }
.f-fn__clip figcaption { margin-top: 14px; max-width: 42em;
  font-size: 12px; line-height: 1.9; color: var(--f-ink-4); }

.f-fn__shots { margin: clamp(26px, 3.4vw, 40px) 0 clamp(30px, 4vw, 46px); }
.f-fn__shots > div { display: flex; gap: clamp(12px, 1.4vw, 20px);
  padding-bottom: 12px;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--f-ink-4) transparent; }
.f-fn__shots > div::-webkit-scrollbar { height: 3px; }
.f-fn__shots > div::-webkit-scrollbar-track { background: rgba(0, 0, 0, .06); }
.f-fn__shots > div::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, .28); }
.f-fn__shots img { display: block; flex: none; scroll-snap-align: start;
  height: clamp(180px, 26vw, 320px); width: auto; max-width: min(86vw, 640px);
  object-fit: contain;
  border-radius: 2px; background: #101012;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .10), 0 10px 26px -14px rgba(0, 0, 0, .30); }

.f-fn__shots[data-n="1"] img { height: clamp(190px, 21vw, 260px); }

@media (min-width: 700px) {
  .f-fn__shots[data-n="2"] > div { display: grid; grid-template-columns: 1fr 1fr;
    overflow: visible; padding-bottom: 0; }
  .f-fn__shots[data-n="2"] img { width: 100%; height: auto; max-width: none;
    aspect-ratio: 4 / 3; object-fit: cover; }
}
.f-fn__shots figcaption { margin-top: 14px; max-width: 42em;
  font-size: 12px; line-height: 1.9; color: var(--f-ink-4); }

.f-gal { margin: clamp(30px, 4vw, 46px) 0 clamp(34px, 4.5vw, 52px); }

.f-gal__head { display: flex; align-items: flex-end; justify-content: flex-end;
  gap: 20px; margin: 0 0 14px; }
.f-gal__lead { margin-right: auto; }
.f-gal__lead { margin: 0; max-width: 40em; font-size: 13px; line-height: 1.95; color: var(--f-ink-3); }
.f-gal__hint { margin: 0; flex: none; font-size: 11px; letter-spacing: .08em;
  color: var(--f-ink-4); display: flex; align-items: center; gap: 8px; }
.f-gal__hint i { display: block; width: 26px; height: 1px; background: currentColor; position: relative; }
.f-gal__hint i::after { content: ""; position: absolute; right: 0; top: -2px;
  width: 5px; height: 5px; border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  rotate: 45deg; }

.f-gal__strip { list-style: none; margin: 0; padding: 0 0 14px;
  display: flex; gap: clamp(12px, 1.4vw, 20px);
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--f-ink-4) transparent; }
.f-gal__strip:focus-visible { outline: 2px solid var(--f-ink-2); outline-offset: 6px; }
.f-gal__strip::-webkit-scrollbar { height: 3px; }
.f-gal__strip::-webkit-scrollbar-track { background: rgba(0, 0, 0, .06); }
.f-gal__strip::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, .28); }

.f-gal__strip li { flex: none; margin: 0; scroll-snap-align: start;
  max-width: min(86vw, 640px); }

.f-gal__strip img { display: block; height: clamp(210px, 30vw, 340px); width: auto;
  max-width: min(86vw, 640px); object-fit: contain;
  background: #101012; border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .10), 0 10px 26px -14px rgba(0, 0, 0, .30); }
.f-gal__strip span { display: block; margin-top: 9px; max-width: 30em;
  font-size: 11px; line-height: 1.8; color: var(--f-ink-4); }

@media (prefers-reduced-motion: reduce) { .f-gal__strip { scroll-behavior: auto; } }

@media (min-width: 900px) {

  .f-main .f-gal__strip { margin-right: min(0px, calc(430px - 50vw)); }
  .f-gal__strip::after { content: ""; flex: none; width: 8px; }
}

.f-gal__hint { visibility: hidden; }
.f-gal--over .f-gal__hint { visibility: visible; }

.f-step__obj { width: 100%; max-width: 240px; aspect-ratio: 1 / 1; margin: 0;
  position: relative; }
.f-step__obj canvas { display: block; width: 100%; height: 100%; }

.f-step__obj h3 { position: absolute; inset: 0; margin: 0;
  display: grid; place-items: center; pointer-events: none;
  font-size: clamp(24px, 2vw, 30px); font-weight: 400; letter-spacing: .08em;
  line-height: 1.4; color: var(--f-ink); }

@media (max-width: 900px) {
  .f-step { text-align: center; }
  .f-step__obj { max-width: min(74vw, 300px); margin: 0 auto 18px; }

  .f-step__obj h3 { font-size: clamp(28px, 8vw, 36px); }
  .f-step p { margin-inline: auto; font-size: 16px; }
}

.f-vid { margin: clamp(28px, 3.6vw, 44px) 0 clamp(32px, 4vw, 48px); }
.f-vid video { display: block; width: 100%; height: auto; border-radius: 2px;
  background: #101012;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .10), 0 14px 34px -16px rgba(0, 0, 0, .32); }
.f-vid figcaption { margin-top: 13px; max-width: 42em;
  font-size: 12px; line-height: 1.9; color: var(--f-ink-4); }

.f-coll__grp + .f-coll__grp { margin-top: clamp(56px, 7vh, 96px); }
.f-coll__lbl { display: flex; align-items: baseline; gap: 14px;
  margin: 0 0 clamp(18px, 2.4vh, 30px); padding-bottom: 14px;
  border-bottom: 1px solid var(--f-ink); }
.f-coll__lbl b { font-size: clamp(17px, 1.7vw, 21px); font-weight: 400;
  letter-spacing: .06em; color: var(--f-ink); }
.f-coll__lbl i { font-family: var(--f-serif); font-style: normal; font-size: 11px;
  letter-spacing: .22em; color: var(--f-ink-4); text-transform: uppercase; }

.f-vid video { max-height: 72vh; width: auto; max-width: 100%; margin: 0 auto; }

.f-vid--mask-l { overflow: hidden; border-radius: 2px; }
.f-vid--mask-l video { margin-left: -2px; width: calc(100% + 2px); max-width: none; }

.f-vid video[width="1280"] { width: 100%; }

.f-figrow video { width: auto; height: clamp(300px, 48vh, 460px); max-width: 100%; }
@media (min-width: 900px) {
  .f-figrow { display: grid; grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(26px, 3.4vw, 52px); align-items: center; }
  .f-figrow video, .f-figrow > img {
    width: auto; height: clamp(360px, 56vh, 540px); max-height: none; }

  .f-figrow > figcaption { margin-top: 0; padding-top: 0; max-width: 32em; }

  .f-figrow > video, .f-figrow > img { margin-inline: 0; }
}

@media (max-width: 899px) {
  .f-figrow video, .f-figrow > img { margin-inline: auto; }

  .f-fn__phone { display: block; width: max-content; margin-inline: auto; }

  .f-fn__shots[data-n="1"]:not(.f-figrow) > div { overflow: visible; padding-bottom: 0; }
  .f-fn__shots[data-n="1"]:not(.f-figrow) img {
    width: 100%; height: auto; max-width: none; }
}

.f-main p, .f-main li, .f-main dd, .f-main figcaption,
.f-main h1, .f-main h2, .f-main h3, .f-answer,
.f-cta p, .f-cta strong, .f-hero__sub, .f-sec p, .f-step__txt p {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
