
:root {
  --black: #000;
  --white: #fff;
  --pink: #ff008c;
  --gray: #9a9a9a;
  --dark-gray: #585858;
  --line: rgba(255, 255, 255, 0.58);
  --jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --display: "Oswald", Impact, "Arial Narrow", sans-serif;
  --desktop-header-height: 94px;
}

* {
  box-sizing: border-box;
}

::selection {
  background: #ff5ab5;
  color: #111111;
}

::-moz-selection {
  background: #ff5ab5;
  color: #111111;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--white);
  font-family: var(--jp);
  font-weight: 600;
  letter-spacing: 0;
}

html[lang="en"] body {
  font-family: Helvetica, Arial, "Noto Sans JP", sans-serif;
  font-weight: 400;
}

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

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

.site {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding-top: var(--desktop-header-height);
  overflow-x: clip;
  overflow-y: visible;
  background: transparent;
}

.hero {
  position: relative;
  z-index: 1;
  height: 811px;
  overflow: hidden;
  background: var(--gray);
}

.hero-feel-copy {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 72px);
  bottom: clamp(28px, 3.6vw, 56px);
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: "mina", serif;
  font-size: 30pt;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: right;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
  white-space: nowrap;
  pointer-events: none;
}

.hero-feel-tight {
  display: inline-block;
  margin-left: -0.14em;
  margin-right: -2px;
}

.header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  height: 94px;
  padding: 20px 40px 20px 41px;
  border-bottom: 1px solid #333333;
  background: rgba(17, 17, 17, 0.9);
  opacity: var(--branding-header-opacity, 1);
}

@media (min-width: 901px) {
  .branding-page.is-branding-local-pinned .header {
    position: fixed;
    pointer-events: none;
  }
}

.logo {
  width: 218px;
  height: 53px;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0s linear 0s;
}

body.is-story-logo-hidden .logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}

.logo img {
  width: 100%;
  height: 50%;
  object-fit: fill;
}

.logo:hover {
  opacity: 0.7;
}

.menu {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 1.15vw, 22px);
  padding-top: 1px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.menu a {
  position: relative;
  display: inline-block;
  padding-bottom: 7px;
  transition: color 0.28s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.38s ease;
}

.menu a:focus-visible {
  color: #ff5ab5;
}

.menu a.is-current {
  color: #ff5ab5;
}

.menu a:focus-visible::after {
  transform: scaleX(1);
}

.menu span {
  width: 0;
  height: 0.85em;
  border-left: 2px solid currentColor;
  opacity: 0.85;
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.language-switch {
  position: fixed;
  z-index: 86;
  top: 20px;
  right: 108px;
  display: none;
  gap: 6px;
  padding: 6px;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transition: border-color 0.24s ease, color 0.24s ease, background 0.24s ease;
}

.language-switch a:focus-visible,
.language-switch a:hover,
.language-switch a.is-active {
  border-color: #ff5ab5;
  color: #ff5ab5;
  outline: none;
}

.home-page.is-home-entry-ready.is-home-entry-visible .language-switch,
.home-page.is-home-entry-ready.is-home-entry-debug .language-switch,
.home-page.is-home-entry-ready .home-entry-gate[aria-hidden="false"] ~ .language-switch {
  display: inline-flex;
}

.home-page.is-home-entry-ready.is-home-entry-visible .language-switch,
.home-page.is-home-entry-ready.is-home-entry-debug .language-switch,
.home-page.is-home-entry-ready .home-entry-gate[aria-hidden="false"] ~ .language-switch {
  z-index: 1810;
  right: 18px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .menu {
    font-size: clamp(14px, calc(2.353vw - 10.118px), 20px);
  }
}

@media (min-width: 901px) and (max-width: 1024px) {
  .menu {
    display: none;
  }
}

@media (min-width: 901px) {
  body.is-mobile-menu-open {
    overflow: hidden;
  }

  body.is-mobile-menu-open .header {
    z-index: 90;
    pointer-events: auto;
  }

  body.is-mobile-menu-open .logo {
    position: relative;
    z-index: 84;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu {
    margin-left: auto;
    padding-right: 15px;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 84;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 46px;
    height: 32px;
    padding: 0;
    border: 0;
    margin: -5px 0 0 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.24s ease;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 44px;
    height: 2px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.24s ease, opacity 0.24s ease, width 0.24s ease;
  }

  .mobile-menu-toggle:focus-visible {
    color: #ff5ab5;
    outline: none;
  }

  .mobile-menu-toggle.is-open {
    position: relative;
    width: 46px;
    height: 46px;
    margin: -12px 0 0 0;
    gap: 0;
  }

  .mobile-menu-toggle.is-open span {
    position: absolute;
    left: 1px;
    width: 44px;
    height: 2px;
  }

  .mobile-menu-toggle.is-open span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu-panel {
    position: fixed;
    z-index: 70;
    inset: 0;
    display: block;
    overflow: hidden;
    background: #111111;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }

  body.is-mobile-menu-open .mobile-menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }

  .mobile-menu-scroll {
    position: absolute;
    inset: 0 auto 0 0;
    width: calc(100% - min(440px, 30vw));
    height: 100vh;
    overflow: hidden;
    cursor: ns-resize;
    background: #111111;
  }

  .mobile-menu-track {
    will-change: transform;
  }

  .mobile-menu-group {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu-item {
    display: block;
    width: max-content;
    max-width: none;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(68px, 8.2vw, 140px);
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: -7px;
    color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    -webkit-text-stroke: 0 transparent;
    transition: color 0.2s ease, -webkit-text-stroke-color 0.2s ease;
  }

  .mobile-menu-item--long {
    font-size: clamp(58px, 6.7vw, 132px);
    letter-spacing: -0.058em;
  }

  .mobile-menu-item:hover,
  .mobile-menu-item:focus-visible,
  .mobile-menu-item.is-hovered,
  .mobile-menu-item.is-active {
    color: #a0346f;
    -webkit-text-stroke: 1px #ff5ab5;
  }

  .mobile-menu-item:focus-visible {
    outline: none;
  }

  .mobile-menu-socials {
    position: absolute;
    right: 40px;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-menu-language {
    position: absolute;
    z-index: 76;
    top: 8px;
    right: 108px;
    display: flex;
    gap: 6px;
    padding: 6px;
  }

  .mobile-menu-language a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-family: "Oswald", "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    transition: border-color 0.24s ease, color 0.24s ease, background 0.24s ease;
  }

  .mobile-menu-language a:focus-visible,
  .mobile-menu-language a:hover,
  .mobile-menu-language a.is-active {
    border-color: #ff5ab5;
    color: #ff5ab5;
    outline: none;
  }

  .mobile-menu-social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 62px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.3;
    transition: opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu-social img {
    max-width: none;
  }

  .mobile-menu-note {
    width: 126px;
  }

  .mobile-menu-x img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    mix-blend-mode: multiply;
  }

  .mobile-menu-x {
    background: #ffffff;
  }

  .mobile-menu-note img {
    position: absolute;
    top: -29px;
    left: -45px;
    width: 216px;
    height: 120px;
  }

  .mobile-menu-social:focus-visible::after {
    opacity: 1;
  }

  @media (hover: hover) and (pointer: fine) {
    .mobile-menu-toggle:hover {
      color: #ff5ab5;
    }

    .mobile-menu-social:hover {
      opacity: 1;
    }
  }
}

.vimeo-video {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}

.vimeo-video iframe,
.vimeo-video video {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: max(100%, calc(100vh * 16 / 9));
  height: max(100%, calc(100vw * 9 / 16));
  min-width: 100%;
  min-height: 100%;
  border: 0;
  margin: 0;
  pointer-events: none;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.vimeo-video--contain iframe,
.vimeo-video--contain video {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  transform: none;
}

.vimeo-video.align-top-left {
  container-type: size;
}

.vimeo-video.align-top-left iframe,
.vimeo-video.align-top-left video {
  left: 0;
  top: 0;
  width: max(100%, calc(100cqh * 16 / 9));
  height: max(100%, calc(100cqw * 9 / 16));
  transform: none;
}

.background {
  position: absolute;
  z-index: 0;
  inset: 812px 0 auto;
  bottom: 0;
  pointer-events: none;
  isolation: isolate;
}

[data-pjax-container] {
  transition: opacity 1s ease;
}

.portfolio-index-page [data-pjax-container] {
  position: relative;
}

body.is-pjax-simple-loading::before {
  content: "";
  position: fixed;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: #111111;
}

body.is-pjax-hidden [data-pjax-container],
body.is-pjax-hidden .site-header {
  opacity: 0;
  pointer-events: none;
}

body.is-pjax-simple-loading [data-pjax-container] {
  transition-duration: 0.3s;
}

body.is-pjax-simple-loading {
  background: #111111;
}

body.is-pjax-simple-loading .site {
  background: #111111;
}

body.is-pjax-simple-hidden [data-pjax-container] {
  opacity: 0;
  pointer-events: none;
}

body.is-pjax-simple-loading .base3-circle,
body.is-pjax-simple-loading .base3-notfound-text {
  display: none !important;
}

body.is-mobile-menu-open.is-mobile-menu-pjax-fading .mobile-menu-panel {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.branding-detail-content {
  transition: opacity 0.56s ease;
}

.branding-detail-content.is-switching {
  opacity: 0;
  pointer-events: none;
}

.page-transition {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
  visibility: hidden;
}

.page-transition.is-entry-initial-loading,
.page-transition.is-future-video-loading,
.page-transition.is-top-video-loading,
.page-transition.is-clock-loading {
  z-index: 9500;
}

.page-transition.is-clock-loading {
  --transition-clock-size: min(40.6vw, 364px);
}

.page-transition::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--black);
  clip-path: circle(0% at 50% 50%);
  will-change: clip-path;
}

.page-transition.is-closing,
.page-transition.is-active,
.page-transition.is-revealing,
.page-transition.is-entry-fade-out {
  z-index: 9500;
  visibility: visible;
}

.page-transition.is-closing::before {
  animation: transitionCircleCover 1s cubic-bezier(0.74, 0, 0.26, 1) forwards;
}

.page-transition.is-active::before {
  clip-path: circle(150% at 50% 50%);
}

.page-transition.is-revealing::before {
  animation: transitionCircleReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.page-transition.is-entry-fade-out::before {
  clip-path: circle(150% at 50% 50%);
  opacity: 0;
  transition: opacity 0.42s ease;
}

.transition-loading {
  display: block;
  position: relative;
  z-index: 1;
  width: min(40.6vw, 364px);
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-transition.is-entry-initial-loading .transition-loading {
  transition-duration: 0.16s;
}

.page-transition.is-entry-fade-out .transition-loading {
  opacity: 0;
  transition-duration: 0.16s;
}

.page-transition:not(.is-rabbit-loading) .transition-prop {
  display: none;
  visibility: hidden;
  opacity: 0;
  animation: none;
}

.page-transition.is-rabbit-loading .transition-loading {
  display: none;
}

.transition-loading-video {
  display: none;
}

.transition-clock-countdown {
  display: none;
  position: relative;
  z-index: 1;
  margin-top: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 53px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.42);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.day-future-clock {
  --day-future-clock-x: 0px;
  --day-future-clock-start-y: 30px;
  position: fixed;
  right: 80px;
  bottom: 80px;
  z-index: 7600;
  display: grid;
  justify-items: center;
  width: 220px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--day-future-clock-x), 0, 0);
  animation: dayFutureClockFadeUp 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) 0.08s both;
}

.day-future-clock::before,
.day-future-clock::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 220px;
  height: 220px;
  background: url("../videos/clock.webp") center / contain no-repeat;
  opacity: 0;
  mix-blend-mode: screen;
  will-change: transform, clip-path, opacity;
}

.day-future-clock::before {
  filter: brightness(1.25) sepia(1) saturate(6) hue-rotate(330deg);
  animation: dropGlitchA 1.15s steps(2, end) infinite;
}

.day-future-clock::after {
  filter: brightness(1.25) sepia(1) saturate(7) hue-rotate(170deg);
  animation: dropGlitchB 0.92s steps(2, end) infinite;
}

.day-future-clock-media {
  position: relative;
  z-index: 2;
  display: block;
  width: 220px;
  height: 220px;
  object-fit: contain;
}

.day-future-clock-countdown {
  position: relative;
  z-index: 2;
  margin-top: 6px;
  color: var(--white);
  font-family: var(--display);
  font-size: 37px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.42);
  transform: translateX(-22px);
  white-space: nowrap;
}

body.is-day-future-home .mode-corner-prop.is-day-clock .day-future-clock-countdown,
body.is-day-future-mode .mode-corner-prop.is-day-clock .day-future-clock-countdown {
  color: #111111;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.475),
    0 0 14px rgba(255, 255, 255, 0.36),
    0 0 24px rgba(255, 255, 255, 0.24);
}

.day-future-return-vimeo {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 7600;
  display: block;
  width: 360px;
  padding: 4px;
  overflow: visible;
  background: #111111;
  box-sizing: content-box;
  pointer-events: none;
}

.day-future-return-vimeo::before {
  content: "NIGHT MODE";
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  color: #ffffff;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  white-space: nowrap;
}

body:not(.is-home-entry-day-future) .day-future-return-vimeo,
body:not(.is-home-entry-day) .day-future-return-vimeo,
body:not(.is-home-entry-visible) .day-future-return-vimeo,
body.is-home-entry-night .day-future-return-vimeo,
body.notfound-page .day-future-return-vimeo {
  display: none;
}

.day-future-return-vimeo iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.mode-corner-prop.is-night-rabbit::before,
.mode-corner-prop.is-night-rabbit::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--night-rabbit-glitch-image) center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: none;
  clip-path: inset(0);
  transform: translate3d(0, 0, 0);
  animation: none;
  will-change: transform, clip-path, opacity;
}

.mode-corner-prop.is-night-rabbit {
  opacity: 1;
  visibility: visible;
  z-index: 9000;
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
  animation: none;
  transition: opacity 0.45s ease, visibility 0s linear 0s;
}

.mode-corner-prop.is-night-rabbit .day-future-clock-media {
  filter: none;
}

.mode-corner-prop.is-night-rabbit:hover::before {
  opacity: 0.38;
  filter: brightness(1.25) sepia(1) saturate(8) hue-rotate(310deg);
  animation: nightRabbitGlitchA 0.48s steps(2, end) infinite;
}

.mode-corner-prop.is-night-rabbit:hover::after {
  opacity: 0.35;
  filter: brightness(1.25) sepia(1) saturate(8) hue-rotate(155deg);
  animation: nightRabbitGlitchB 0.4s steps(2, end) infinite;
}

.mode-corner-prop.is-night-rabbit:focus-visible {
  outline: 2px solid #ff5ab5;
  outline-offset: 4px;
}

.mode-corner-prop.is-night-rabbit.is-before-news-hidden,
.mode-corner-prop.is-night-rabbit.is-menu-hidden,
.mode-corner-prop.is-night-rabbit.is-rabbit-click-fading {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}

@media (min-width: 901px) {
  .mode-corner-prop.is-day-clock {
    right: 0;
    bottom: 20px;
  }

  .mode-corner-prop.is-night-rabbit {
    --night-rabbit-size: 238.26px;
    right: 0;
    bottom: 10px;
    width: var(--night-rabbit-size);
  }

  .mode-corner-prop.is-night-rabbit .day-future-clock-media {
    width: var(--night-rabbit-size);
    height: var(--night-rabbit-size);
  }
}

@media (min-width: 1440px) {
  .mode-corner-prop.is-night-rabbit {
    --night-rabbit-size: clamp(238.26px, calc(238.26px + (100vw - 1440px) * 0.06), 320px);
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .mode-corner-prop.is-night-rabbit {
    --night-rabbit-size: clamp(190px, calc(190px + (100vw - 900px) * 0.127), 238.26px);
  }
}

@media (max-width: 900px) {
  .mode-corner-prop.is-night-rabbit {
    display: none;
  }
}

@keyframes dayFutureClockFadeUp {
  0% {
    opacity: 0;
    transform: translate3d(var(--day-future-clock-x), var(--day-future-clock-start-y), 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(var(--day-future-clock-x), 0, 0);
  }
}

@keyframes nightRabbitGlitchA {
  0%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
  }

  25% {
    clip-path: inset(8% 0 63% 0);
    transform: translate3d(-2.5px, 1px, 0);
  }

  50% {
    clip-path: inset(42% 0 24% 0);
    transform: translate3d(3px, -1px, 0);
  }

  75% {
    clip-path: inset(68% 0 6% 0);
    transform: translate3d(-1.5px, 1.5px, 0);
  }
}

@keyframes nightRabbitGlitchB {
  0%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
  }

  20% {
    clip-path: inset(16% 0 56% 0);
    transform: translate3d(2.5px, -1px, 0);
  }

  48% {
    clip-path: inset(50% 0 18% 0);
    transform: translate3d(-3px, 1px, 0);
  }

  78% {
    clip-path: inset(72% 0 4% 0);
    transform: translate3d(2px, -1.5px, 0);
  }
}

.page-transition.is-mobile-video-loading .transition-loading-image {
  display: none;
}

.page-transition.is-mobile-video-loading .transition-loading-video {
  display: block;
}

.page-transition.is-clock-loading .transition-loading-video {
  display: none;
}

.page-transition.is-clock-loading .transition-loading-image {
  display: block;
  width: var(--transition-clock-size);
  transform: translateY(-24px);
}

.page-transition.is-clock-loading.is-loading-visible .transition-clock-countdown,
.page-transition.is-clock-loading.is-active .transition-clock-countdown {
  display: block;
  opacity: 1;
}

.page-transition.is-clock-loading .transition-clock-countdown {
  position: absolute;
  left: 50%;
  top: calc(50% + (var(--transition-clock-size) / 2) - 8px);
  transform: translateX(calc(-50% - 27px));
}

.page-transition.is-day-future-home-return-loading .transition-clock-countdown,
.page-transition.is-day-future-home-return-loading .transition-loading-image[src*="clock.webp"] {
  display: none !important;
  opacity: 0 !important;
}

@media (max-width: 900px) {
  .page-transition.is-clock-loading .transition-clock-countdown {
    font-size: 34px;
    transform: translateX(calc(-50% - 17px));
  }
}

.page-transition.is-loading-visible .transition-loading,
.page-transition.is-active .transition-loading {
  opacity: 1;
}

.page-transition.is-future-video-loading.is-loading-visible .transition-loading,
.page-transition.is-top-video-loading.is-loading-visible .transition-loading {
  opacity: 0;
}

.page-transition.is-future-video-loading.is-active .transition-loading,
.page-transition.is-top-video-loading.is-active .transition-loading {
  opacity: 1;
}

.page-transition.is-top-video-loading .transition-loading {
  width: min(70vw, 720px);
}

.page-transition.is-revealing .transition-loading {
  opacity: 0;
}

.page-transition.is-revealing .transition-clock-countdown {
  opacity: 0;
}

.home-initial-loading {
  position: fixed;
  z-index: 1500;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #000;
  opacity: 1;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.home-initial-loading.is-hiding {
  opacity: 0;
  visibility: hidden;
}

.home-initial-loading-video {
  display: block;
  width: min(44.2vw, 728px);
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 180px);
  object-fit: contain;
  opacity: 0;
  animation: homeLoadingVideoFadeIn 0.8s ease 0.12s forwards;
}

@keyframes homeLoadingVideoFadeIn {
  to {
    opacity: 1;
  }
}

.home-initial-loading-status {
  position: absolute;
  right: 52px;
  bottom: 48px;
  width: min(300px, calc(100vw - 96px));
  font-family: var(--font-en);
  font-weight: 700;
}

.home-initial-loading-label {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1;
}

.home-initial-loading-track {
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.home-initial-loading-track span {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
  transition: width 0.22s ease;
}

.vimeo-debug {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 2000;
  width: min(340px, calc(100vw - 36px));
  padding: 14px 16px 15px;
  color: #fff;
  background: rgba(0, 0, 0, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  pointer-events: none;
}

.vimeo-debug-title {
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.64);
}

.vimeo-debug-label {
  font-weight: 700;
}

.vimeo-debug-track {
  height: 8px;
  margin: 9px 0 6px;
  background: #333;
  overflow: hidden;
}

.vimeo-debug-track span {
  display: block;
  width: 0;
  height: 100%;
  background: #a0346f;
  transition: width 0.25s ease;
}

.vimeo-debug-percent {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.vimeo-debug-detail {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
}

.vimeo-debug[data-state="warning"] .vimeo-debug-track span {
  background: #ff5ab5;
}

@keyframes transitionCircleCover {
  0% {
    clip-path: circle(0% at 50% 50%);
  }

  100% {
    clip-path: circle(150% at 50% 50%);
  }
}

@keyframes transitionCircleReveal {
  0% {
    clip-path: circle(150% at 50% 50%);
  }

  100% {
    clip-path: circle(0% at 50% 50%);
  }
}

.transition-prop {
  position: absolute;
  display: block;
  max-width: none;
  opacity: 0;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.transition-prop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 50% 50%;
}

.transition-rabbit img {
  transform: rotate(var(--prop-rotate));
}

.transition-hat img {
  transform: rotate(var(--prop-rotate));
}

.page-transition.is-active .transition-prop {
  animation-duration: 4s;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.24, 1);
  animation-fill-mode: forwards;
}

.page-transition.is-active .transition-rabbit {
  animation-name: transitionRabbitDropFloat;
}

.page-transition.is-active .transition-hat {
  animation-name: transitionHatDropFloat;
}

.page-transition.is-revealing .transition-prop {
  opacity: 0;
  transition: opacity 0.18s ease;
}

.transition-rabbit {
  width: clamp(78.4px, 8.82vw, 147px);
  aspect-ratio: 1022 / 1091;
  left: 50%;
  top: 50%;
  visibility: hidden;
  opacity: 0;
  animation-delay: 0.08s;
  --prop-rotate: -6deg;
}

.page-transition.is-rabbit-loading.is-active .transition-rabbit {
  visibility: visible;
}

.transition-hat {
  width: clamp(100px, 10vw, 180px);
  aspect-ratio: 281 / 242;
  left: calc(50% + clamp(76px, 10vw, 170px));
  top: calc(50% - clamp(120px, 14vw, 230px));
  animation-delay: 0.24s;
  --prop-rotate: 12deg;
}

@keyframes transitionRabbitDropFloat {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -140vh, 0);
  }

  18% {
    opacity: 1;
  }

  42% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0);
  }

  62% {
    opacity: 1;
    transform: translate3d(calc(-50% + 14px), calc(-50% - 18px), 0);
  }

  81% {
    opacity: 1;
    transform: translate3d(calc(-50% - 10px), calc(-50% + 14px), 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0);
  }
}

@keyframes transitionHatDropFloat {
  0% {
    opacity: 0;
    transform: translate3d(calc(-50% - 20px), -130vh, 0);
  }

  18% {
    opacity: 1;
  }

  42% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0);
  }

  62% {
    opacity: 1;
    transform: translate3d(calc(-50% + 18px), calc(-50% - 18px), 0);
  }

  81% {
    opacity: 1;
    transform: translate3d(calc(-50% - 12px), calc(-50% + 12px), 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0);
  }
}

.pattern {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/index/bg-pattern.webp");
  background-position: 0 0;
  background-size: 1376px 4096px;
  background-repeat: repeat;
}

.base {
  position: absolute;
  z-index: 4;
  top: 0;
  left: -27px;
  width: 1495px;
  height: 1437px;
  background: url("../images/index/bg-base1.gif") 0 0 / 100% auto no-repeat;
  transform: translate3d(0, var(--base-y, 0px), 0);
  will-change: transform;
}

.base2 {
  position: absolute;
  z-index: 8;
  top: var(--bg-base2-top, 50%);
  left: 50%;
  width: 100%;
  aspect-ratio: 1439 / 1401;
  background: url("../images/index/bg-base2.webp") center / 100% auto no-repeat;
  transform: translate3d(-50%, calc(-50% + var(--bg-base2-y, 440px) + var(--bg-base2-repeat-offset, 0px)), 0);
  will-change: transform;
}

.base2-repeat {
  display: none;
}

.base3 {
  position: absolute;
  z-index: 8;
  top: var(--bg-base3-top, 50%);
  left: 50%;
  width: 100%;
  height: var(--bg-base3-height, auto);
  aspect-ratio: 2159 / 3977;
  background: url("../images/index/bg-base3.webp") center top / 100% auto no-repeat;
  transform: translate3d(-50%, var(--bg-base3-y, 0px), 0);
  overflow: hidden;
  will-change: transform;
}

.base3-notfound-text {
  position: absolute;
  z-index: 8;
  top: var(--bg-base3-top, 50%);
  left: 0;
  width: 100%;
  height: var(--bg-base3-height, auto);
  color: #bfff00;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 186.667px;
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
  mix-blend-mode: color-dodge;
  pointer-events: none;
  transform: translate3d(0, var(--bg-base3-y, 0px), 0);
  will-change: transform;
}

.base3-notfound-stack,
.base3-notfound-vertical {
  position: absolute;
  left: 50%;
  white-space: nowrap;
}

.base3-notfound-stack {
  top: 600px;
  display: flex;
  flex-direction: column;
  font-size: 133.333px;
  transform: translate3d(-50%, 0, 0);
}

.base3-notfound-stack span {
  display: block;
  transform: scaleX(0.9);
  transform-origin: 50% 50%;
}

.base3-notfound-stack-secondary {
  top: 1400px;
  font-size: 133.333px;
  line-height: 0.82;
  transform: translate3d(calc(-50% - 400px), 0, 0);
}

.base3-notfound-vertical {
  top: 500px;
  transform: translate3d(calc(-50% - 500px), 0, 0) rotate(90deg) scaleX(0.9);
  transform-origin: 50% 50%;
}

.base3-notfound-vertical-secondary {
  top: 1000px;
  font-size: 80px;
  transform: translate3d(calc(-50% + 400px), 0, 0) rotate(90deg) scaleX(0.9);
  transform-origin: 50% 50%;
}

.base3-circle {
  position: fixed;
  z-index: 70;
  top: 50%;
  left: 50%;
  display: block;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  background: #bfff00;
  mix-blend-mode: exclusion;
  opacity: var(--base3-circle-opacity, 0);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(var(--base3-circle-scale, 0));
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.base3-circle.is-stopped {
  position: absolute;
  top: var(--base3-circle-stop-top, 50%);
}

body:not(.home-page) .base3-notfound-text,
body:not(.home-page) .base3-circle {
  display: none !important;
}

.base2-pattern3-backdrop {
  position: absolute;
  z-index: 7;
  top: var(--base2-pattern3-backdrop-top, 50%);
  left: 0;
  width: 100%;
  height: var(--base2-pattern3-backdrop-height, 2400px);
  background: #111111;
  pointer-events: none;
}

.bg-pattern3-field {
  position: absolute;
  z-index: 9;
  top: var(--bg-pattern3-top, 50%);
  left: 0;
  width: 100%;
  height: var(--bg-pattern3-height, min(170vw, 1900px));
  min-height: 980px;
  pointer-events: none;
}

.bg-pattern3-field::before {
  content: none;
  position: absolute;
  z-index: 0;
  top: calc(var(--pattern3-bg-y, 440px) - 700px);
  left: 0;
  width: 100%;
  height: calc(100% + 1400px);
  background: #111111;
  will-change: top;
}

.bg-pattern3-set {
  position: absolute;
  z-index: 1;
  inset: 0;
  --pattern3-set-x: 0px;
  --pattern3-set-rotate: 0deg;
}

.bg-pattern3-set-left {
  --pattern3-set-x: calc(-74% + 440px);
  --pattern3-set-rotate: -90deg;
}

.bg-pattern3-set-right {
  --pattern3-set-x: calc(74% - 440px);
  --pattern3-set-rotate: 90deg;
}

.bg-pattern3-item {
  position: absolute;
  top: calc(var(--pattern3-offset-y, 0px) + var(--pattern3-y, 0px));
  left: calc(50% + var(--pattern3-set-x, 0px));
  width: min(118vw, 1760px);
  aspect-ratio: 1922 / 1361;
  background: url("../images/index/bg-pattern3.webp") center / contain no-repeat;
  transform: translate3d(-50%, -50%, 0) rotate(var(--pattern3-set-rotate, 0deg)) rotate(var(--pattern3-rotate, 0deg));
  will-change: top;
}

.bg-pattern3-orb-field {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: min(120vw, 1320px);
  min-height: 720px;
  overflow: visible;
  pointer-events: none;
  transform: translate3d(0, -1300px, 0);
}

.bg-pattern3-item-01 {
  --pattern3-offset-y: 0px;
  --pattern3-y: 440px;
  --pattern3-rotate: 90deg;
}

.bg-pattern3-item-02 {
  --pattern3-offset-y: 100px;
  --pattern3-y: 440px;
  --pattern3-rotate: 180deg;
}

.bg-pattern3-item-03 {
  --pattern3-offset-y: 200px;
  --pattern3-y: 440px;
  --pattern3-rotate: 270deg;
}

.sticker-field {
  position: absolute;
  z-index: 9;
  top: var(--sticker-top, 0px);
  left: 0;
  width: 100%;
  height: min(100vw, 1280px);
  min-height: 720px;
  transform: translate3d(0, var(--sticker-y, 440px), 0);
  pointer-events: none;
  will-change: transform;
}

.sticker {
  position: absolute;
  display: block;
  width: var(--sticker-w);
  height: auto;
  max-width: none;
}

.sticker-01 {
  --sticker-w: clamp(250px, 21vw, 430px);
  left: 7%;
  top: 5%;
}

.sticker-02 {
  --sticker-w: clamp(280px, 25vw, 510px);
  left: 75%;
  top: 1%;
}

.sticker-03 {
  --sticker-w: clamp(300px, 28vw, 560px);
  left: 8%;
  top: 36%;
}

.sticker-04 {
  --sticker-w: clamp(340px, 31vw, 630px);
  left: 58%;
  top: 44%;
}

.sticker-05 {
  --sticker-w: clamp(380px, 36vw, 720px);
  left: 18%;
  top: 70%;
}

.hue {
  display: block;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-hue-color, var(--pink));
  mix-blend-mode: hue;
  opacity: var(--bg-hue-opacity, 0);
  transition: opacity 0.18s linear;
}

.monochrome-tone {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-mono-color, #fff);
  opacity: var(--bg-mono-opacity, 0);
  pointer-events: none;
  transition: opacity 0.18s linear;
}

.about {
  position: relative;
  z-index: 1;
  min-height: 956px;
  padding-top: 120px;
}

.about-inner {
  position: relative;
  width: 1069px;
  min-height: 816px;
  margin-right: 51px;
  margin-left: auto;
  backface-visibility: hidden;
  transform: translate3d(0, var(--about-y, 0px), 0);
  will-change: transform;
}

.side-title {
  position: absolute;
  top: -84px;
  left: calc(1158px - 100vw);
  width: 110px;
  height: 512px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  transform-origin: center;
  font-family: var(--display);
  font-size: 135.75px;
  font-weight: 700;
  letter-spacing: -6.79px;
  line-height: 0.95;
  white-space: nowrap;
}

.profile-title {
  margin: 0;
  font-family: var(--display);
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -2.5px;
  line-height: 1;
  white-space: nowrap;
}

.portrait {
  position: absolute;
  top: 0;
  right: 0;
  width: 237px;
  height: 237px;
  object-fit: cover;
}

.profile-copy {
  width: 733px;
  margin: 25px 0 0;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 1.8;
  font-feature-settings: "pwid" 1, "palt" 1;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social {
  position: relative;
  display: grid;
  place-items: center;
  height: 63px;
  background: var(--white);
  transition: opacity 0.24s ease;
}

.footer-social::after,
.mobile-menu-social::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 4px solid #ff5ab5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.social:focus-visible {
  opacity: 0.6;
}

.social.x {
  width: 63px;
}

.social.note {
  position: relative;
  width: 102px;
  overflow: hidden;
}

.social.x img {
  width: 38px;
  height: 38px;
  object-fit: cover;
}

.social.note img {
  position: absolute;
  top: -30px;
  left: -56px;
  width: 216px;
  height: 120px;
  max-width: none;
  object-fit: cover;
}

.history {
  position: relative;
  width: 1068px;
  margin-top: 40px;
  border: 1px solid var(--white);
  background: rgba(0, 0, 0, 0.7);
}

.history-row {
  display: grid;
  grid-template-columns: 181px 320px 1fr;
  min-height: 79px;
  border-top: 1px solid var(--line);
}

.history-row:first-child {
  border-top: 0;
}

.history-year,
.history-company {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-top: 23px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1;
  white-space: nowrap;
}

.history-year::after,
.history-company::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  bottom: 22px;
  border-right: 1px dotted rgba(255, 255, 255, 0.9);
}

.history-year {
  padding-left: 39px;
}

.history-company {
  padding-left: 40px;
}

.history-text {
  margin: 0;
  padding: 20px 30px 16px 39px;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 1.3;
  font-feature-settings: "pwid" 1, "palt" 1;
}

.photo-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 22px 0;
  background: var(--white);
  transform: translate3d(0, var(--photo-y, 0px), 0);
  will-change: transform;
}

.photo-marquee.dark {
  background: #111;
  transform: none;
}

.photo-marquee-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: photoMarquee 42s linear infinite;
  will-change: transform;
}

.graphic-photo-marquee .photo-marquee-track {
  animation-duration: 184s;
}

.photo-marquee-group {
  display: flex;
  flex: 0 0 auto;
  gap: 22px;
}

.photo-marquee-item {
  flex: 0 0 auto;
  width: min(560px, 42vw);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--black);
}

.photo-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes photoMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 11px), 0, 0);
  }
}

.content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 920px 520px;
  height: 680px;
  overflow: hidden;
  border-bottom: 1px solid #343434;
  background: var(--white);
}

.content.liquid {
  grid-template-columns: minmax(0, 63.8889%) minmax(320px, 36.1111%);
  height: clamp(520px, 47.2222vw, 680px);
}

.branding {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid #343434;
}

.branding-main {
  display: grid;
  grid-template-columns: minmax(0, 63.8889%) minmax(320px, 36.1111%);
  height: clamp(520px, 47.2222vw, 680px);
  overflow: hidden;
  border-bottom: 1px solid #333333;
}

.branding-media {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.branding-text {
  display: flex;
  align-items: center;
  padding: 96px 70px;
  color: #fff;
  background: #111;
}

.branding-text > div {
  width: 100%;
}

.branding-video-shell {
  padding: 40px;
  background: #111;
}

.branding-video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
}

.template-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #111111;
  color: var(--white);
}

.template-site {
  padding-top: var(--desktop-header-height);
  background: #111111;
}

.template-section {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #333333;
  background: #111111;
}

.template-feature {
  border-bottom-color: #333333;
  background: #111111;
}

.template-feature::after,
.template-feature:hover::after {
  content: none;
}

.template-feature .explanation {
  background: #111111;
}

.template-photo-marquee {
  border-bottom: 1px solid #333333;
}

.template-section-name {
  position: absolute;
  z-index: 8;
  top: 18px;
  left: 18px;
  margin: 0;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.template-media-section {
  padding: 40px;
}

.graphic-design-page .graphic-no-divider {
  border-bottom: 0;
}

.graphic-design-page .graphic-tight-section {
  padding-top: 0;
}

.fashion-beauty-page .fashion-no-divider {
  border-bottom: 0;
}

.exhibition-page .exhibition-no-divider {
  border-bottom: 0;
}

.exhibition-page .exhibition-section05-even {
  padding-top: 40px;
  padding-bottom: 40px;
}

.exhibition-page .exhibition-section13-copy {
  padding-top: 0;
  padding-bottom: 40px;
}

.exhibition-page .exhibition-section06 {
  padding-top: 0;
  border-top: 0;
}

.exhibition-page .exhibition-section02 {
  padding: 40px;
  border-bottom: 1px solid #333333;
}

.exhibition-page .exhibition-section06-mask-pair {
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
}

.exhibition-page .exhibition-section06-mask-pair .template-media-image {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exhibition-page .exhibition-section04-video-frame {
  aspect-ratio: 1 / 1;
  height: auto;
}

.exhibition-page .exhibition-section04-natural-frame {
  aspect-ratio: auto;
  height: auto;
  overflow: visible;
  background: transparent;
}

.exhibition-page .exhibition-section04-natural-frame .template-media-image {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.exhibition-page .exhibition-section04 > .template-split-media + .template-media-frame,
.exhibition-page .exhibition-section04 > .template-media-frame + .template-split-media {
  margin-top: 40px;
}

.exhibition-page .exhibition-section05-stack > .template-media-frame + .template-split-media,
.exhibition-page .exhibition-section05-stack > .template-media-frame + .template-media-frame,
.exhibition-page .exhibition-section05-stack > .template-split-media + .template-split-media {
  margin-top: 40px;
}

.fashion-beauty-page .fashion-tight-section {
  padding-top: 0;
}

.fashion-video-pairs {
  display: grid;
  gap: 40px;
}

.fashion-video-pair + .fashion-video-pair {
  border-top: 1px solid #333333;
  padding-top: 40px;
}

@media (min-width: 901px) {
  .fashion-beauty-page .fashion-section05-pc-compact {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}

.template-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
}

.template-media-frame--transparent {
  background: transparent;
}

.web-design-image-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
}

.web-design-image-pair__frame {
  width: 100%;
}

.web-design-image-frame--small,
.web-design-image-pair__frame--small {
  width: 70%;
  justify-self: center;
}

.web-design-image-pair__frame--medium {
  width: 90%;
  justify-self: center;
}

.web-design-video-frame {
  aspect-ratio: var(--web-design-video-ratio, 16 / 9);
}

.web-design-video-frame .vimeo-video iframe {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  transform: none;
}

.web-design-no-divider {
  border-bottom: 0;
}

.web-design-tight-section {
  margin-top: -20px;
  padding-top: 0;
}

.branding-detail-page .branding-old-no-divider {
  border-bottom: 0;
}

.branding-detail-page .branding-old-tight-section {
  margin-top: -20px;
  padding-top: 0;
}

.template-split-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
}

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

.branding-video-scale {
  width: 100%;
  margin: 0 auto;
}

.branding-photo-marquee .photo-marquee-item {
  aspect-ratio: 3 / 2;
}

.fashion-photo-marquee .photo-marquee-item {
  aspect-ratio: 3 / 2;
}

.template-video-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.template-video-tiles + .template-media-frame {
  margin-top: 40px;
}

.template-tile-frame,
.template-portrait-frame,
.template-square-frame {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.template-tile-frame {
  aspect-ratio: 16 / 9;
}

.template-portrait-video {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: start;
  gap: 40px;
}

.template-portrait-frame {
  aspect-ratio: 2 / 3;
}

.template-square-frame {
  aspect-ratio: 1 / 1;
}

.template-square-frame .vimeo-video iframe {
  width: calc(100% * 16 / 9);
  height: 100%;
}

.branding-section10-frame {
  aspect-ratio: 1900 / 1684;
}

.branding-section10-frame .template-media-image {
  height: 100%;
}

.branding-section10-image-frame .template-media-image {
  object-fit: cover;
  object-position: top center;
}

.template-full-image-section {
  overflow: hidden;
}

.template-full-image {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 2;
  object-fit: cover;
}

.template-full-video-frame {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.template-text-section {
  padding: 96px 40px;
}

.template-text-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.template-text-heading {
  margin: 0 0 40pt;
  font-family: var(--display);
  font-size: clamp(24pt, 2vw, 30pt);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: var(--white);
}

.template-text-section--two-column .template-text-heading {
  margin-bottom: 32px;
}

.template-text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.template-text-section p {
  margin: 0;
  font-size: 12pt;
  line-height: 2;
  letter-spacing: -0.32px;
  font-feature-settings: "pwid" 1, "palt" 1;
}

.template-text-heading,
.template-text-section p,
.template-sticky-text .work-title,
.template-sticky-text .work-copy,
.template-scroll-media-frame,
.graphic-design-page .template-media-frame,
.fashion-beauty-page .template-media-frame,
.exhibition-page .template-media-frame,
.branding-page .template-media-frame,
.branding-detail-page .template-media-frame,
.web-design-page .template-media-frame {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.template-text-section p,
.template-sticky-text .work-copy {
  transition-delay: 0.16s;
}

.template-text-section.is-text-visible .template-text-heading,
.template-text-section.is-text-visible p,
.template-sticky-text.is-text-visible .work-title,
.template-sticky-text.is-text-visible .work-copy,
.template-scroll-media-frame.is-text-visible,
.graphic-design-page .template-media-frame.is-text-visible,
.fashion-beauty-page .template-media-frame.is-text-visible,
.exhibition-page .template-media-frame.is-text-visible,
.branding-page .template-media-frame.is-text-visible,
.branding-detail-page .template-media-frame.is-text-visible,
.web-design-page .template-media-frame.is-text-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.template-text-section--large .template-text-inner {
  width: 100%;
}

.template-text-section--large {
  padding-right: 51px;
  padding-left: 51px;
}

.template-text-section--large .template-text-inner > p {
  font-size: 24px;
  line-height: 48px;
  letter-spacing: -0.32px;
}

.template-text-section--large .template-text-inner > p:first-child {
  font-size: 24px;
  line-height: 32px;
}

.section13-mobile-break {
  display: none;
}

.template-text-section--large .template-text-inner > p + p {
  margin-top: 32px;
}

.branding-section-copy.template-text-section--large .template-text-inner > p + p {
  margin-top: 32px;
}

.branding-section-copy.template-text-section--large .template-text-inner > p:not(:first-child) {
  font-size: 24px;
  line-height: 48px;
  letter-spacing: -0.32px;
}

.branding-index-nav {
  padding: 80px 76px 112px;
  border-bottom: 1px solid #333333;
  background: #111111;
}

.branding-index-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px;
}

.branding-index-card {
  display: block;
  color: var(--white);
  text-decoration: none;
}

.branding-index-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--black);
}

.branding-index-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.branding-index-card:hover .branding-index-thumb img,
.branding-index-card:focus-visible .branding-index-thumb img {
  transform: scale(1.08);
}

.branding-index-title {
  display: block;
  margin: 18px 0 8px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.branding-index-copy {
  display: block;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.32px;
}

.branding-local-nav {
  position: sticky;
  top: var(--branding-local-sticky-top, 0px);
  z-index: 20;
  padding: 58px 76px 24px;
  border-bottom: 1px solid #333333;
  background: #111111;
}

.branding-local-nav::after {
  content: "";
  position: absolute;
  left: 0;
  top: var(--active-line-y, 0px);
  width: var(--active-line-width, 25%);
  height: 4px;
  background: #d62691;
  transform: translate3d(var(--active-line-x, 0px), 0, 0);
  transition:
    transform 0.36s ease,
    width 0.36s ease;
}

.branding-local-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px;
  margin: 0;
}

.branding-local-item {
  color: rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: color 0.25s ease;
}

.branding-local-item.is-active,
.branding-local-item:hover,
.branding-local-item:focus-visible {
  color: var(--white);
}

.branding-local-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #111111;
  transform: translate3d(0, 0, 0);
}

.branding-local-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #111111;
  opacity: var(--branding-thumb-overlay-opacity, 0);
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.branding-local-item:hover .branding-local-thumb img,
.branding-local-item:focus-visible .branding-local-thumb img {
  transform: scale(1.08);
}

.branding-local-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: calc(1 - var(--branding-thumb-overlay-opacity, 0));
  transition:
    opacity 0.22s ease,
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.branding-local-text {
  display: block;
  margin-top: 18px;
  transform: translate3d(0, 0, 0);
}

.branding-local-line {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 8px;
  opacity: 0;
}

.branding-local-title {
  display: block;
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.branding-local-copy {
  display: block;
  margin: 0;
  min-height: 3em;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.32px;
}

.branding-detail-empty {
  min-height: 52vh;
}

.template-sticky-scroll-section {
  padding: 40px;
}

.template-sticky-scroll-inner {
  display: grid;
  grid-template-columns: minmax(0, 36%) minmax(0, 64%);
  gap: 40px;
  align-items: start;
}

.template-sticky-text {
  position: sticky;
  top: 420px;
  min-height: calc(100vh - 460px);
  margin-top: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #111111;
}

.template-sticky-text .work-copy {
  font-size: 18px;
  line-height: 36px;
}

.template-scroll-media-column {
  display: grid;
  gap: 40px;
}

.fashion-section07-scroll .template-sticky-scroll-inner {
  grid-template-columns: minmax(0, 64%) minmax(0, 36%);
}

.fashion-section07-scroll .template-scroll-media-frame {
  aspect-ratio: 3 / 2;
}

.fashion-section07-scroll .template-scroll-media-frame:first-child {
  aspect-ratio: 16 / 9;
}

.template-scroll-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
}

.template-scroll-media-column--natural .template-scroll-media-frame {
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
}

.template-media-image,
.template-media-video,
.template-fade-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.template-media-image,
.template-media-video {
  object-fit: cover;
}

.template-scroll-media-column--natural .template-media-image,
.template-scroll-media-column--natural .template-media-video {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.template-scroll-media-caption {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: right;
  color: rgba(255, 255, 255, 0.82);
  font-feature-settings: "pwid" 1, "palt" 1;
}

.template-fade-slideshow {
  overflow: hidden;
  background: var(--black);
}

.template-fade-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: templateFadeCrossfade 25s ease-in-out infinite;
  will-change: opacity, transform;
}

.template-fade-slide:first-child {
  opacity: 1;
}

.template-fade-slide:nth-child(2) {
  animation-delay: 5s;
}

.template-fade-slide:nth-child(3) {
  animation-delay: 10s;
}

.template-fade-slide:nth-child(4) {
  animation-delay: 15s;
}

.template-fade-slide:nth-child(5) {
  animation-delay: 20s;
}

.template-fade-slideshow--two .template-fade-slide {
  animation-name: templateFadeCrossfadeTwo;
  animation-duration: 10s;
}

.template-fade-slideshow--two .template-fade-slide:nth-child(2) {
  animation-delay: 5s;
}

.template-fade-slideshow--three .template-fade-slide {
  animation-name: templateFadeCrossfadeThree;
  animation-duration: 15s;
}

.template-fade-slideshow--three .template-fade-slide:nth-child(2) {
  animation-delay: 5s;
}

.template-fade-slideshow--three .template-fade-slide:nth-child(3) {
  animation-delay: 10s;
}

.template-fade-slideshow--four .template-fade-slide {
  animation-name: templateFadeCrossfadeFour;
  animation-duration: 20s;
}

.template-fade-slideshow--four .template-fade-slide:nth-child(2) {
  animation-delay: 5s;
}

.template-fade-slideshow--four .template-fade-slide:nth-child(3) {
  animation-delay: 10s;
}

.template-fade-slideshow--four .template-fade-slide:nth-child(4) {
  animation-delay: 15s;
}

.template-fade-slideshow--six .template-fade-slide {
  animation-name: templateFadeCrossfadeSix;
  animation-duration: 30s;
}

.template-fade-slideshow--six .template-fade-slide:nth-child(2) {
  animation-delay: 5s;
}

.template-fade-slideshow--six .template-fade-slide:nth-child(3) {
  animation-delay: 10s;
}

.template-fade-slideshow--six .template-fade-slide:nth-child(4) {
  animation-delay: 15s;
}

.template-fade-slideshow--six .template-fade-slide:nth-child(5) {
  animation-delay: 20s;
}

.template-fade-slideshow--six .template-fade-slide:nth-child(6) {
  animation-delay: 25s;
}

.template-fade-slideshow--seven .template-fade-slide {
  animation-name: fashionCrossfade;
  animation-duration: 35s;
}

.template-fade-slideshow--seven .template-fade-slide:nth-child(2) {
  animation-delay: 5s;
}

.template-fade-slideshow--seven .template-fade-slide:nth-child(3) {
  animation-delay: 10s;
}

.template-fade-slideshow--seven .template-fade-slide:nth-child(4) {
  animation-delay: 15s;
}

.template-fade-slideshow--seven .template-fade-slide:nth-child(5) {
  animation-delay: 20s;
}

.template-fade-slideshow--seven .template-fade-slide:nth-child(6) {
  animation-delay: 25s;
}

.template-fade-slideshow--seven .template-fade-slide:nth-child(7) {
  animation-delay: 30s;
}

.motion-graphics-page {
  background: #0f0f0f;
}

.motion-reel-site {
  min-height: 100vh;
  background: #0f0f0f;
}

.motion-feature {
  cursor: default;
}

.motion-reel {
  position: relative;
  min-height: 520vh;
  background: #0f0f0f;
  color: var(--white);
}

.motion-reel-stage {
  position: sticky;
  top: 0;
  overflow: hidden;
  height: 100vh;
  min-height: 720px;
  background: #0f0f0f;
}

.motion-reel-frame {
  position: absolute;
  left: 7.1vw;
  top: calc(34.2vh - 60px);
  z-index: 4;
  width: min(66.6vw, 1242px);
  aspect-ratio: 16 / 9;
  border: 3px solid rgba(255, 255, 255, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  display: none;
}

.motion-reel.is-playing .motion-reel-frame {
  opacity: 0;
}

.motion-reel-items {
  position: absolute;
  inset: 0;
  z-index: 8;
}

.motion-reel-filter {
  position: absolute;
  top: 118px;
  right: clamp(32px, 4.8vw, 86px);
  z-index: 50;
  display: grid;
  gap: 4px;
  justify-items: start;
  font-family: var(--display);
  font-size: clamp(21px, 1.7vw, 34px);
  font-weight: 700;
  line-height: 0.95;
}

.motion-reel-filter__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0 0 58px;
  border: 0;
  background: transparent;
  color: #222222;
  font: inherit;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.18s ease;
}

.motion-reel-filter__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 38px;
  height: 3px;
  background: currentColor;
  transform: translateY(-50%);
}

.motion-reel-filter__item:hover,
.motion-reel-filter__item.is-active {
  color: #ffffff;
}

.motion-reel-item {
  --motion-x: 0px;
  --motion-y: 0px;
  --motion-scale: 0.18;
  --motion-opacity: 0.22;
  --motion-blur: 1px;
  position: absolute;
  left: 7.1vw;
  top: calc(34.2vh - 60px);
  width: min(66.6vw, 1242px);
  aspect-ratio: 16 / 9;
  opacity: var(--motion-opacity);
  transform:
    translate3d(var(--motion-x), var(--motion-y), 0)
    scale(var(--motion-scale));
  transform-origin: 50% 50%;
  transition: none;
  will-change: transform, opacity;
}

.motion-reel-item.is-active {
  z-index: 3;
  --motion-x: 0px;
  --motion-y: 0px;
  --motion-scale: 1;
  --motion-blur: 0px;
}

.motion-reel-item.is-video-ready {
  z-index: 30;
}

.motion-reel-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #080808;
  filter: blur(var(--motion-blur));
}

.motion-reel-item.is-active .motion-reel-media {
  filter: none;
}

.motion-reel-thumb,
.motion-reel-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.motion-reel-thumb {
  object-fit: cover;
  opacity: 0.84;
}

.motion-reel-player {
  z-index: 2;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.motion-reel-item.is-active .motion-reel-player[src] {
  opacity: 1;
}

.motion-reel-item-frame {
  position: absolute;
  z-index: 20;
  inset: -15px;
  border: 3px solid rgba(255, 255, 255, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.035);
  transform-origin: 50% 50%;
  transition:
    opacity 0.48s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-reel-item.is-video-ready .motion-reel-item-frame {
  opacity: 1;
  transform: scale(1);
}

.motion-reel-native-title {
  display: none;
}

.motion-reel-play {
  position: absolute;
  right: max(-110px, -6.7vw);
  bottom: max(-118px, -7.3vw);
  z-index: 5;
  display: grid;
  place-items: center;
  width: clamp(121px, 12.96vw, 245px);
  aspect-ratio: 1;
  padding: 0;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.84);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.motion-reel-item.is-play-visible .motion-reel-play {
  opacity: 1;
  transform: scale(1);
}

.motion-reel-item.is-play-ready .motion-reel-play {
  pointer-events: auto;
}

.motion-reel-item.is-play-visible {
  cursor: pointer;
}

.motion-reel-item.is-play-visible:hover .motion-reel-play,
.motion-reel-item.is-play-ready .motion-reel-play:hover {
  transform: scale(1.08);
}

.motion-reel-play-ring {
  position: absolute;
  inset: -3px;
  opacity: 0;
  overflow: visible;
  pointer-events: none;
  transform: rotate(-90deg);
}

.motion-reel-play-ring circle {
  fill: none;
  stroke: #bf438d;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 302;
  stroke-dashoffset: 302;
  vector-effect: non-scaling-stroke;
}

.motion-reel-play-icon {
  width: 0;
  height: 0;
  margin-left: 7%;
  border-top: clamp(10px, 1.2vw, 22px) solid transparent;
  border-bottom: clamp(10px, 1.2vw, 22px) solid transparent;
  border-left: clamp(16px, 1.85vw, 34px) solid rgba(255, 255, 255, 0.86);
}

.motion-reel-item.is-playing .motion-reel-play {
  opacity: 1;
  pointer-events: none;
  transform: scale(1);
}

.motion-reel-item.is-playing .motion-reel-play-ring {
  opacity: 0;
}

.motion-reel-item.is-playing .motion-reel-play-ring circle {
  animation: none;
}

.motion-reel-item.is-video-ready .motion-reel-play {
  opacity: 0;
  transform: scale(0.84);
}

.motion-reel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.52);
  pointer-events: none;
  transition: background 0.42s linear;
}

.motion-reel-item.is-active::after {
  background: rgba(0, 0, 0, 0.08);
}

.motion-reel-item.is-video-ready::after {
  background: rgba(0, 0, 0, 0);
}

.motion-reel-item-meta {
  position: absolute;
  left: calc(100% + 29px);
  top: -15px;
  z-index: 40;
  display: grid;
  grid-template-rows: 1fr auto auto;
  justify-items: center;
  width: 72px;
  height: calc(100% + 30px);
  min-height: 450px;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(38px, 0, 0);
  transition:
    opacity 0.52s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-reel-item.is-video-ready .motion-reel-item-meta {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-reel-item-title,
.motion-reel-item-index {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
}

.motion-reel-item-title {
  margin: 0;
  font-size: clamp(25px, 2.1vw, 42px);
  line-height: 1;
}

.motion-reel-item-marker {
  width: 0;
  height: 0;
  margin: 30px 0 24px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #ffffff;
  transform: rotate(90deg);
}

.motion-reel-item-index {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1;
}

.motion-reel-meta {
  position: absolute;
  left: var(--motion-follow-left, calc(7.1vw + min(66.6vw, 1242px) + 29px));
  top: var(--motion-follow-top, calc(34.2vh - 75px));
  z-index: 80;
  display: grid;
  grid-template-rows: 1fr auto auto;
  justify-items: start;
  width: 72px;
  height: var(--motion-follow-height, calc(min(66.6vw, 1242px) * 0.5625 + 30px));
  min-height: 450px;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(38px, 0, 0);
  transition:
    opacity 0.52s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-reel-meta.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-reel-title,
.motion-reel-index {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
}

.motion-reel-title {
  margin: 0;
  font-size: clamp(25px, 2.1vw, 42px);
  line-height: 1;
}

.motion-reel-marker {
  width: 0;
  height: 0;
  margin: 30px 0 20px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #ffffff;
  transform: rotate(90deg);
}

.motion-reel-index {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1;
}

.motion-reel-index [data-motion-reel-number] {
  display: inline-block;
  margin-inline-end: 20px;
}

.motion-reel.is-ready .motion-reel-item {
  transition:
    opacity 0.56s linear;
}

.motion-reel.is-filtering-out .motion-reel-item {
  transition:
    opacity 0.56s ease-in-out;
  opacity: 0;
}

.motion-reel.is-filtering-in .motion-reel-item {
  animation: motionFilterFadeIn 0.56s ease-in-out both;
}

@keyframes motionPlayRing {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes motionFilterFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: var(--motion-opacity);
  }
}

.motion-reel.is-failed .motion-reel-items::before {
  content: "MOTION DATA NOT FOUND";
  position: absolute;
  left: 8vw;
  top: 42vh;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
}

.motion-reel.is-empty .motion-reel-items::before {
  content: "MOTION DATA NOT FOUND";
  position: absolute;
  left: 8vw;
  top: 42vh;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: #222222;
}

@media (max-width: 900px) {
  .motion-reel {
    min-height: 620vh;
  }

  .motion-reel-stage {
    height: 100svh;
    min-height: 640px;
  }

  .motion-reel-frame {
    left: 24px;
    right: auto;
    top: calc(35vh - 60px);
    width: calc((100vw - 96px) * 0.9);
    border-width: 2px;
  }

  .motion-reel-item {
    left: 24px;
    top: calc(35vh - 60px);
    width: calc((100vw - 96px) * 0.9);
  }

  .motion-reel-filter {
    top: 92px;
    right: 20px;
    gap: 3px;
    font-size: 18px;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    contain: layout paint;
  }

  .motion-reel.is-filter-fixed .motion-reel-filter {
    position: fixed;
    z-index: 90;
  }

  .motion-reel-filter__item {
    min-height: 26px;
    padding-left: 40px;
  }

  .motion-reel-filter__item::before {
    width: 28px;
    height: 2px;
  }

  .motion-reel-play {
    right: -44px;
    bottom: -58px;
    width: 112px;
    border-width: 2px;
  }

  .motion-reel-item-frame {
    border-width: 2px;
  }

  .motion-reel-item-meta {
    left: calc(100% + 7px);
    top: -15px;
    width: 48px;
    min-height: 290px;
  }

  .motion-reel-item-title {
    font-size: 22px;
  }

  .motion-reel-item-marker {
    margin: 18px 0 16px;
    border-top-width: 4.5px;
    border-bottom-width: 4.5px;
    border-left-width: 7.5px;
  }

  .motion-reel-item-index {
    font-size: 14px;
  }

  .motion-reel-meta {
    left: var(--motion-follow-left, calc(24px + ((100vw - 96px) * 0.9) + 30px));
    right: auto;
    top: var(--motion-follow-top, calc(35vh - 75px));
    justify-items: start;
    width: auto;
    max-width: calc(100vw - var(--motion-follow-left, calc(24px + ((100vw - 96px) * 0.9) + 30px)) - 10px);
    height: var(--motion-follow-height, calc(((100vw - 96px) * 0.9) * 0.5625 + 30px));
    min-height: 290px;
    overflow: visible;
  }

  .motion-reel-title {
    font-size: 16px;
    writing-mode: vertical-lr;
  }

  .motion-reel-marker {
    display: none;
  }

  .motion-reel-index {
    display: none;
  }
}

@media (max-width: 900px) {
  .motion-reel {
    min-height: 0;
    padding: 4.5vh 24px 32vh;
    overflow: hidden;
  }

  .motion-reel-stage {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .motion-reel-frame,
  .motion-reel-filter,
  .motion-reel-meta {
    display: none;
  }

  .motion-reel-items {
    position: relative;
    inset: auto;
    display: grid;
    gap: 29px;
    justify-items: start;
  }

  .motion-reel-item {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100vw - 96px);
    aspect-ratio: 16 / 9;
    opacity: var(--motion-opacity);
    transform: none !important;
    transition: opacity 0.18s linear;
    will-change: opacity;
  }

  .motion-reel.is-ready .motion-reel-item {
    transition: opacity 0.18s linear;
  }

  .motion-reel-item.is-active {
    z-index: 4;
  }

  .motion-reel-item.is-video-ready {
    z-index: 30;
  }

  .motion-reel-media {
    filter: none;
  }

  .motion-reel-thumb {
    opacity: 1;
  }

  .motion-reel-item.is-active .motion-reel-player[src] {
    opacity: 0;
  }

  .motion-reel-item.is-video-ready .motion-reel-player[src] {
    opacity: 1;
  }

  .motion-reel-item.is-video-ready .motion-reel-thumb {
    opacity: 0;
  }

  .motion-reel-item-frame {
    inset: -15px;
    border-width: 2px;
    opacity: 0;
    transform: none;
    transition: opacity 0.2s linear;
  }

  .motion-reel-item.is-playing .motion-reel-item-frame,
  .motion-reel-item.is-video-ready .motion-reel-item-frame {
    opacity: 1;
    transform: none;
  }

  .motion-reel-play {
    right: -44px;
    bottom: -58px;
    width: 112px;
    border-width: 2px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.84);
    transition:
      opacity 0.32s linear,
      transform 0.32s linear;
  }

  .motion-reel-item.is-playable {
    cursor: pointer;
  }

  .motion-reel-item.is-playable .motion-reel-play {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .motion-reel-item.is-loading .motion-reel-play {
    opacity: 0.38;
    pointer-events: none;
    transform: scale(0.94);
  }

  .motion-reel-item.is-playing .motion-reel-play,
  .motion-reel-item.is-video-ready .motion-reel-play {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.84);
  }

  .motion-reel-item::after {
    display: none;
  }

  .motion-reel-native-title {
    position: absolute;
    left: calc(100% + 25px);
    top: -15px;
    z-index: 40;
    display: block;
    height: calc(100% + 30px);
    max-height: calc(100% + 30px);
    margin: 0;
    overflow: visible;
    color: #ffffff;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
    text-orientation: mixed;
    writing-mode: vertical-lr;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s linear;
  }

  .motion-reel-item.is-playing .motion-reel-native-title {
    opacity: 1;
  }

  .motion-reel.is-failed .motion-reel-items::before,
  .motion-reel.is-empty .motion-reel-items::before {
    position: relative;
    left: auto;
    top: auto;
    font-size: 28px;
  }
}

@keyframes templateFadeCrossfade {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }

  3% {
    opacity: 1;
  }

  17% {
    opacity: 1;
  }

  20% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes templateFadeCrossfadeTwo {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }

  3% {
    opacity: 1;
  }

  47% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes templateFadeCrossfadeThree {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }

  3% {
    opacity: 1;
  }

  30.333% {
    opacity: 1;
  }

  33.333% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes templateFadeCrossfadeFour {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }

  3% {
    opacity: 1;
  }

  22% {
    opacity: 1;
  }

  25% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes templateFadeCrossfadeSix {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }

  3% {
    opacity: 1;
  }

  13.667% {
    opacity: 1;
  }

  16.667% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.work-spacer {
  position: relative;
  z-index: 1;
  height: 240px;
  background: transparent;
}

.pre-branding-gap {
  position: relative;
  z-index: 1;
  height: 240px;
  background: transparent;
}

.pre-sample-video {
  position: relative;
  z-index: 0;
  margin-top: -1px;
  padding: 0;
  background: #111111;
}

.pre-sample-video-frame {
  position: relative;
  width: 100%;
  padding-top: 75% !important;
  overflow: hidden;
  background: transparent;
}

.pre-sample-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.site-footer {
  position: relative;
  z-index: 2;
  height: 600px;
  overflow: hidden;
  background: #111111;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(440px, 30vw);
  height: 100%;
  background: #111111;
  pointer-events: none;
  z-index: 2;
}

.footer-menu {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(100% - min(440px, 30vw));
  overflow: hidden;
  cursor: ns-resize;
  touch-action: none;
  z-index: 1;
}

.footer-menu-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.footer-menu-group {
  display: flex;
  flex-direction: column;
}

.footer-menu-item {
  display: block;
  width: max-content;
  max-width: none;
  margin: 0;
  font-family: var(--display);
  font-size: 140px;
  font-weight: 700;
  letter-spacing: -7px;
  line-height: 0.88;
  color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  text-transform: uppercase;
  -webkit-text-stroke: 0 transparent;
  transition: color 0.22s ease, -webkit-text-stroke-color 0.22s ease;
  white-space: nowrap;
}

.footer-menu-item:hover,
.footer-menu-item:focus-visible,
.footer-menu-item.is-hovered,
.footer-menu-item.is-active {
  color: #a0346f;
  -webkit-text-stroke: 1px #ff5ab5;
}

.footer-menu-item:focus-visible {
  outline: none;
}

.footer-menu-item[target="_blank"]::after,
.mobile-menu-item[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: clamp(12px, 0.2em, 42px);
  height: clamp(12px, 0.2em, 42px);
  margin-left: 0.08em;
  background: url("../images/etc/external_default.webp") center / contain no-repeat;
  vertical-align: calc(0.5em + 10px);
}

.footer-menu-item[target="_blank"]:focus-visible::after,
.footer-menu-item[target="_blank"]:hover::after,
.footer-menu-item[target="_blank"].is-hovered::after,
.footer-menu-item[target="_blank"].is-active::after,
.mobile-menu-item[target="_blank"]:focus-visible::after,
.mobile-menu-item[target="_blank"]:hover::after,
.mobile-menu-item[target="_blank"].is-hovered::after,
.mobile-menu-item[target="_blank"].is-active::after {
  background-image: url("../images/etc/external_over.webp");
}

.footer-menu-item--long {
  font-size: clamp(86px, 7vw, 132px);
  letter-spacing: -0.055em;
}

.footer-socials {
  position: absolute;
  right: 40px;
  bottom: 42px;
  display: flex;
  gap: 12px;
  z-index: 3;
}

.footer-social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 62px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.3;
  overflow: hidden;
  transition: opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-social:focus-visible::after {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .menu a:hover {
    color: #ff5ab5;
  }

  .menu a:hover::after {
    transform: scaleX(1);
  }

  .footer-social:hover {
    outline-color: transparent;
  }

  .social:hover {
    opacity: 0.6;
  }

  .footer-social:hover {
    opacity: 1;
  }
}

.footer-x {
  background: #ffffff;
}

.footer-note {
  position: relative;
  width: 126px;
}

.footer-x img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.footer-note img {
  position: absolute;
  top: -29px;
  left: -45px;
  width: 216px;
  height: 120px;
  max-width: none;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.news-section {
  position: relative;
  z-index: 2;
  margin: 0;
  background: #111111;
  color: var(--white);
}

.news-list {
  position: relative;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #111111;
}

.news-item {
  --news-row-padding-x: clamp(28px, 3vw, 60px);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 240px 240px minmax(0, 1fr);
  align-items: center;
  min-height: 76px;
  gap: 0;
  padding: 18px var(--news-row-padding-x);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #111111;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.news-item.is-pinned {
  position: sticky;
  z-index: 4;
  background: #1f1f1f;
}

.news-item.is-pinned:nth-child(1) {
  top: 0;
}

.news-item.is-pinned:nth-child(2) {
  top: 76px;
}

a.news-item {
  cursor: pointer;
}

a.news-item:hover {
  background: #252525;
}

@media (min-width: 901px) {
  .news-item:nth-child(1) { z-index: 10; }
  .news-item:nth-child(2) { z-index: 20; }
  .news-item:nth-child(3) { z-index: 30; }
  .news-item:nth-child(4) { z-index: 40; }
  .news-item:nth-child(5) { z-index: 50; }
  .news-item:nth-child(6) { z-index: 60; }
  .news-item:nth-child(7) { z-index: 70; }
  .news-item:nth-child(8) { z-index: 80; }
  .news-item:nth-child(9) { z-index: 90; }
  .news-item:nth-child(10) { z-index: 100; }
  .news-item:nth-child(11) { z-index: 110; }
  .news-item:nth-child(12) { z-index: 120; }

  a.news-item {
    isolation: isolate;
    overflow: hidden;
  }

  a.news-item.has-news-thumb {
    overflow: visible;
  }

  a.news-item:hover {
    background: #111111;
  }

  a.news-item.is-pinned:hover {
    background: #1f1f1f;
  }

  a.news-item > * {
    position: relative;
    z-index: 1;
  }

  a.news-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #a0346f;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  }

  a.news-item:hover::before,
  a.news-item:focus-visible::before {
    transform: scaleX(1);
  }

  .news-item > .news-thumb {
    position: absolute;
    top: 50%;
    right: clamp(36px, 4.5vw, 82px);
    z-index: 3;
    display: block;
    width: clamp(168px, 13vw, 250px);
    padding: clamp(8px, 0.7vw, 12px) clamp(8px, 0.7vw, 12px) clamp(29px, 2.2vw, 39px);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-50% + 24px)) rotate(0deg);
    transform-origin: right bottom;
    transition:
      opacity 0.38s ease,
      transform 0.58s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .news-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
  }

  .news-thumb-date {
    position: absolute;
    right: clamp(8px, 0.7vw, 12px);
    bottom: clamp(6px, 0.6vw, 10px);
    font-family: var(--display);
    font-size: clamp(15px, 1.15vw, 22px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.7px;
    color: #000000;
  }

  .news-item.has-news-thumb:hover .news-thumb,
  .news-item.has-news-thumb:focus-visible .news-thumb {
    opacity: 1;
    transform: translateY(-50%) rotate(5deg);
  }
}

.news-date,
.news-category {
  position: relative;
  padding-left: clamp(24px, 3.8vw, 64px);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1;
  white-space: nowrap;
}

.news-date {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.news-date::after,
.news-category::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 64px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.32) 50%, transparent 0);
  background-position: 0 0;
  background-size: 1px 6px;
  transform: translateY(-50%);
}

.pin-icon {
  position: absolute;
  top: -15px;
  right: 9px;
  display: block;
  width: 16px;
  height: 20px;
  background: url("../images/index/pin.png") center / contain no-repeat;
}

.news-title {
  padding-left: clamp(24px, 3.8vw, 64px);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.86);
  font-feature-settings: "pwid" 1, "palt" 1;
}

.news-item.is-external-news .news-title {
  padding-right: 0;
}

.news-item > .news-external-icon {
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  z-index: 2;
  display: none;
  width: 19px;
  height: 19px;
  background: url("../images/etc/external_default.webp") center / contain no-repeat;
  transform: translateY(-50%);
}

a.news-item:hover .news-external-icon,
a.news-item:focus-visible .news-external-icon {
  background-image: url("../images/etc/external_over.webp");
}

@media (max-width: 900px) {
  .home-initial-loading-video {
    width: min(93.6vw, 468px);
    max-height: calc(100vh - 150px);
  }

  .home-initial-loading-status {
    right: 24px;
    bottom: 34px;
    width: min(220px, calc(100vw - 48px));
  }

  .home-initial-loading-label {
    font-size: 18px;
  }

  .news-thumb {
    display: none;
  }
}

@media (min-width: 901px) {
  .pre-sample-video-frame {
    padding-top: 56.25% !important;
  }

  .pre-sample-video-frame iframe {
    top: 0 !important;
    height: 100% !important;
  }
}

.pink-spacer {
  position: relative;
  z-index: auto;
  padding-top: 220px;
  padding-bottom: 200px;
  background: transparent;
  pointer-events: none;
}

.pink-spacer.is-over-pre-sample-video {
  z-index: auto;
}

.falling-set {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  --falling-content-y: -112px;
  pointer-events: none;
  will-change: transform;
}

.falling-set.is-fixed {
  position: fixed;
  top: var(--falling-fixed-top, -100px);
}

.falling-set.is-locked {
  position: absolute;
  top: var(--falling-lock-top, -100px);
}

.falling-set.is-after {
  top: var(--falling-after-top, -100px);
  bottom: auto;
}

.falling-set.is-over-video {
  z-index: 6;
}

.falling-set.is-over-story {
  z-index: 1;
}

.drop-figure {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(360px, 34vw, 680px);
  max-width: none;
  aspect-ratio: 10 / 7;
  margin: 0 auto;
  pointer-events: none;
  transform: translate3d(-50%, calc(-50% + var(--falling-content-y, 0px)), 0);
  will-change: transform;
}

.drop-figure img,
.drop-figure::before,
.drop-figure::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.drop-figure img {
  position: relative;
  z-index: 2;
}

.drop-figure::before,
.drop-figure::after {
  content: "";
  z-index: 1;
  background: url("../images/index/drop1.webp") center / contain no-repeat;
  opacity: 0;
  mix-blend-mode: screen;
  will-change: transform, clip-path, opacity;
}

.drop-figure::before {
  filter: brightness(1.25) sepia(1) saturate(6) hue-rotate(330deg);
}

.drop-figure::after {
  filter: brightness(1.25) sepia(1) saturate(7) hue-rotate(170deg);
}

.drop-figure.is-glitching::before {
  animation: dropGlitchA 1.15s steps(2, end) infinite;
}

.drop-figure.is-glitching::after {
  animation: dropGlitchB 0.92s steps(2, end) infinite;
}

@keyframes dropGlitchA {
  0%, 64%, 100% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate3d(0, 0, 0);
  }

  65% {
    opacity: 0.72;
    clip-path: inset(14% 0 70% 0);
    transform: translate3d(12px, -2px, 0);
  }

  69% {
    opacity: 0.62;
    clip-path: inset(46% 0 38% 0);
    transform: translate3d(-16px, 2px, 0);
  }

  73% {
    opacity: 0.74;
    clip-path: inset(72% 0 12% 0);
    transform: translate3d(10px, 3px, 0);
  }

  77% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes dropGlitchB {
  0%, 48%, 100% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate3d(0, 0, 0);
  }

  49% {
    opacity: 0.52;
    clip-path: inset(30% 0 56% 0);
    transform: translate3d(-13px, 2px, 0);
  }

  53% {
    opacity: 0.64;
    clip-path: inset(62% 0 24% 0);
    transform: translate3d(18px, -2px, 0);
  }

  57% {
    opacity: 0.58;
    clip-path: inset(8% 0 78% 0);
    transform: translate3d(-9px, -3px, 0);
  }

  61% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate3d(0, 0, 0);
  }
}

.drop-props {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  transform: translate3d(0, var(--falling-content-y, 0px), 0);
}

.wonder-prop {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
  will-change: transform;
}

.card-prop {
  left: clamp(176px, calc(13vw + 80px), 320px);
  top: clamp(430px, 44vh, 560px);
  width: clamp(72px, 7vw, 140px);
  --final-rotate: -10deg;
  transform: translate3d(0, var(--card-fall-y, 0px), 0) rotate(-10deg);
}

.clock-prop {
  right: clamp(120px, 10vw, 220px);
  top: clamp(190px, 25vh, 300px);
  width: clamp(80px, 7.5vw, 150px);
  --final-rotate: 5deg;
  transform: translate3d(0, var(--clock-fall-y, 0px), 0) rotate(5deg);
}

.hat-prop {
  right: clamp(40px, 4vw, 82px);
  top: clamp(260px, 34vh, 400px);
  width: clamp(78px, 7vw, 140px);
  opacity: 0;
  transform-origin: 48% 24%;
}

.hat-prop.is-dropping {
  animation: hatFloatDrop 2.8s ease-in-out forwards;
}

.rabbit-prop {
  right: clamp(96px, 8vw, 170px);
  top: clamp(320px, 42vh, 480px);
  width: clamp(120px, 12vw, 230px);
  aspect-ratio: 1022 / 1091;
}

.rabbit-prop img,
.rabbit-prop::before,
.rabbit-prop::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rabbit-prop img {
  position: relative;
  z-index: 2;
}

.rabbit-prop::before,
.rabbit-prop::after {
  content: "";
  z-index: 1;
  background: url("../images/index/rabbit.webp") center / contain no-repeat;
  opacity: 0;
  mix-blend-mode: screen;
  will-change: transform, clip-path, opacity;
}

.rabbit-prop::before {
  filter: brightness(1.25) sepia(1) saturate(6) hue-rotate(330deg);
}

.rabbit-prop::after {
  filter: brightness(1.25) sepia(1) saturate(7) hue-rotate(170deg);
}

.rabbit-prop.is-glitching::before {
  animation: dropGlitchA 1.15s steps(2, end) infinite;
}

.rabbit-prop.is-glitching::after {
  animation: dropGlitchB 0.92s steps(2, end) infinite;
}

@keyframes hatFloatDrop {
  0% {
    transform: translate3d(-22px, -220px, 0) rotate(-24deg);
    opacity: 0;
  }

  22% {
    opacity: 1;
  }

  48% {
    transform: translate3d(16px, 0, 0) rotate(12deg);
  }

  66% {
    transform: translate3d(-10px, 18px, 0) rotate(-8deg);
  }

  82% {
    transform: translate3d(8px, 6px, 0) rotate(6deg);
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 1;
  }
}

.drop-video {
  position: relative;
  z-index: 0;
  left: 50%;
  margin-top: 300px;
  width: 100vw;
  overflow: hidden;
  background: var(--black);
  transform: translate3d(-50%, var(--drop-video-y, 0px), 0);
  will-change: transform;
}

.drop-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
}

.drop-video-mobile {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--black);
}

.drop-video-mobile video {
  display: block;
  width: 100%;
  height: auto;
}

.stack-scene {
  position: relative;
  z-index: 2;
  height: auto;
  overflow: visible;
}

.stack-viewport {
  position: relative;
  overflow: visible;
}

.stack-panel {
  position: relative;
  backface-visibility: hidden;
  transform: translate3d(0, var(--panel-y, 0px), 0);
  will-change: transform;
}

.stack-panel + .stack-panel {
  margin-top: -320px;
}

.stack-panel-2 + .stack-panel-3 {
  margin-top: -220px;
}

.stack-panel-1 {
  z-index: 2;
}

.stack-panel-2 {
  z-index: 1;
  --panel-y: 120px;
}

.stack-panel-3 {
  z-index: 3;
  --panel-y: 280px;
}

.content-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
}

.content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--black);
}

.brand-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: brandCrossfade 14s ease-in-out infinite;
  will-change: opacity, transform;
}

.brand-slide:first-child {
  opacity: 1;
}

.brand-slide:nth-child(2) {
  animation-delay: 7s;
}

@keyframes brandCrossfade {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }

  8% {
    opacity: 1;
  }

  42% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.fashion-slideshow,
.graphic-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--black);
}

.fashion-slide,
.graphic-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: fashionCrossfade 30s ease-in-out infinite;
  will-change: opacity, transform;
}

.graphic-slide {
  animation-duration: 40s;
}

.template-feature .graphic-slide {
  animation-duration: 40s;
}

.exhibition-page .template-feature .fashion-slide {
  animation-duration: 35s;
}

.exhibition-card-slideshow .fashion-slide {
  animation-duration: 35s;
}

.fashion-slide:first-child,
.graphic-slide:first-child {
  opacity: 1;
}

.fashion-slide:nth-child(2),
.graphic-slide:nth-child(2) {
  animation-delay: 5s;
}

.fashion-slide:nth-child(3),
.graphic-slide:nth-child(3) {
  animation-delay: 10s;
}

.fashion-slide:nth-child(4),
.graphic-slide:nth-child(4) {
  animation-delay: 15s;
}

.fashion-slide:nth-child(5),
.graphic-slide:nth-child(5) {
  animation-delay: 20s;
}

.fashion-slide:nth-child(6),
.graphic-slide:nth-child(6) {
  animation-delay: 25s;
}

.graphic-slide:nth-child(7) {
  animation-delay: 30s;
}

.exhibition-page .template-feature .fashion-slide:nth-child(7) {
  animation-delay: 30s;
}

.exhibition-card-slideshow .fashion-slide:nth-child(7) {
  animation-delay: 30s;
}

.graphic-slide:nth-child(8) {
  animation-delay: 35s;
}

@keyframes fashionCrossfade {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }

  3% {
    opacity: 1;
  }

  11% {
    opacity: 1;
  }

  14.2857% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.content:nth-of-type(5) .content-media {
  background: var(--dark-gray);
}

.notfound-story-spacer {
  position: relative;
  z-index: 1;
  height: 800px;
  background: transparent;
}

.ichigo-rain {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: block;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.12s linear, visibility 0s linear 0.12s;
}

body.home-page.is-top-night-mode.is-base2-ichigo-active .ichigo-rain {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.12s linear, visibility 0s linear 0s;
}

.ichigo-rain-item {
  position: absolute;
  top: 0;
  left: var(--ichigo-left, 50vw);
  width: var(--ichigo-size, 160px);
  height: var(--ichigo-size, 160px);
  opacity: 1;
  transform: translate3d(-50%, calc(-1.2 * var(--ichigo-size, 160px)), 0) rotate(var(--ichigo-rotate, 0deg));
  will-change: transform;
}

body.home-page.is-top-night-mode.is-base2-ichigo-active .ichigo-rain-item {
  animation: ichigo-fall var(--ichigo-duration, 3.5s) linear var(--ichigo-delay, 0s) both;
}

.ichigo-rain-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portfolio-cafe-rain {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: block;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.12s linear, visibility 0s linear 0.12s;
}

body.is-night-portfolio-cafe-rain.is-portfolio-cafe-rain-active .portfolio-cafe-rain {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.12s linear, visibility 0s linear 0s;
}

.portfolio-cafe-rain-item {
  position: absolute;
  top: 0;
  left: var(--portfolio-rain-left, 50vw);
  width: var(--portfolio-rain-size, 160px);
  height: var(--portfolio-rain-size, 160px);
  opacity: 1;
  transform: translate3d(-50%, calc(-1.2 * var(--portfolio-rain-size, 160px)), 0) rotate(var(--portfolio-rain-rotate, 0deg));
  will-change: transform;
}

body.is-night-portfolio-cafe-rain.is-portfolio-cafe-rain-active .portfolio-cafe-rain-item {
  animation: portfolio-cafe-fall var(--portfolio-rain-duration, 3.5s) linear var(--portfolio-rain-delay, 0s) both;
}

.portfolio-cafe-rain-item[data-portfolio-rain-pattern="typo"] {
  overflow: visible;
  transform-origin: top center;
}

body.is-night-portfolio-cafe-rain.is-portfolio-cafe-rain-active .portfolio-cafe-rain-item[data-portfolio-rain-pattern="typo"] {
  animation: portfolio-typo-smooth-fall var(--portfolio-rain-duration, 3.5s) linear var(--portfolio-rain-delay, 0s) both;
}

.portfolio-cafe-rain-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portfolio-cat-decor {
  position: absolute;
  z-index: 4;
  inset: 0 0 auto;
  height: 0;
  pointer-events: none;
}

.portfolio-cat-decor-item {
  --portfolio-cat-decor-scale: 1;
  position: absolute;
  top: var(--portfolio-cat-decor-top, 0);
  left: var(--portfolio-cat-decor-left, 50%);
  display: block;
  transform: translate3d(-50%, 0, 0) scale(var(--portfolio-cat-decor-scale));
  transform-origin: top center;
  will-change: transform;
}

.portfolio-cat-decor-item.is-dropping {
  position: fixed;
  z-index: 10;
  top: var(--portfolio-cat-drop-top, 0);
  left: var(--portfolio-cat-drop-left, 50vw);
  animation: portfolio-cat-decor-fall 1.72s cubic-bezier(0.22, 0.52, 0.42, 1) both;
}

.portfolio-cat-decor-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

.portfolio-tv-mode {
  --portfolio-tv-scale: 1.2;
  --portfolio-tv-screen-top: 23.8%;
  --portfolio-tv-screen-left: 5.7%;
  --portfolio-tv-screen-width: 69.1%;
  --portfolio-tv-screen-height: 61.5%;
  position: absolute;
  z-index: 9400;
  top: 1500px;
  left: 50%;
  display: block;
  width: min(72vw, 760px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-50%, -50%, 0) scale(var(--portfolio-tv-scale));
  transform-origin: center;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}

.portfolio-tv-mode-lens {
  position: fixed;
  z-index: 9399;
  display: block;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  border-radius: 8% / 10%;
  background: rgba(8, 8, 8, 0.02);
  backdrop-filter: grayscale(1) saturate(0) contrast(1.35) brightness(0.92) blur(1.2px);
  -webkit-backdrop-filter: grayscale(1) saturate(0) contrast(1.35) brightness(0.92) blur(1.2px);
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}

body.is-portfolio-tv-mode-active .portfolio-tv-mode {
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s ease, visibility 0s linear 0s;
}

body.is-portfolio-tv-mode-active .portfolio-tv-mode-lens {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s ease, visibility 0s linear 0s;
}

body.is-portfolio-tv-mode-dismissing .portfolio-tv-mode {
  pointer-events: none;
  cursor: default;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}

body.is-portfolio-tv-mode-dismissing .portfolio-tv-mode-lens {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}

body.is-portfolio-tv-mode-following .portfolio-tv-mode {
  position: fixed;
  top: 50%;
}

.portfolio-tv-mode-stage {
  position: relative;
  width: 100%;
  transform: translate3d(0, 0, 0);
  animation: portfolio-tv-body-drift 6.8s steps(2, end) infinite;
}

.portfolio-tv-mode-frame {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.52)) contrast(1.08);
}

.portfolio-tv-mode-screen,
.portfolio-tv-mode-static,
.portfolio-tv-mode-snow,
.portfolio-tv-mode-message {
  position: absolute;
  top: var(--portfolio-tv-screen-top);
  left: var(--portfolio-tv-screen-left);
  width: var(--portfolio-tv-screen-width);
  height: var(--portfolio-tv-screen-height);
  border-radius: 8% / 10%;
  pointer-events: none;
}

.portfolio-tv-mode-screen {
  z-index: 1;
  overflow: hidden;
  background: rgba(4, 8, 8, 0.1);
  clip-path: inset(0 round 8% 8% 10% 10%);
  box-shadow:
    inset 0 0 26px rgba(255, 255, 255, 0.1),
    inset 0 0 58px rgba(0, 0, 0, 0.42);
}

.portfolio-tv-mode-screen::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.2) 0,
      rgba(255, 255, 255, 0.2) 1px,
      rgba(0, 0, 0, 0.18) 2px,
      rgba(0, 0, 0, 0.18) 4px
    );
  mix-blend-mode: overlay;
  opacity: 0.46;
  animation: portfolio-tv-scanline 1.2s linear infinite;
}

.portfolio-tv-mode-screen::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: -18%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 32%, rgba(0, 0, 0, 0.16) 68%, transparent);
  background-size: 10px 8px, 13px 11px, 100% 100%;
  mix-blend-mode: screen;
  opacity: 0.28;
  animation: portfolio-tv-noise 0.34s steps(2, end) infinite;
}

.portfolio-tv-mode-static {
  z-index: 3;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 14%, rgba(0, 0, 0, 0.22) 18%, transparent 32%),
    repeating-linear-gradient(to bottom, transparent 0 10px, rgba(255, 255, 255, 0.08) 11px 12px);
  mix-blend-mode: overlay;
  opacity: 0.24;
  transform: translate3d(0, 0, 0);
  animation: portfolio-tv-glitch 1.65s steps(2, end) infinite;
}

.portfolio-tv-mode-snow {
  z-index: 3;
  overflow: hidden;
  visibility: hidden;
  background-color: #707070;
  background-image:
    repeating-radial-gradient(circle at 28% 32%, #f8f8f8 0 0.6px, #050505 0.6px 1.2px, #a8a8a8 1.2px 1.8px),
    repeating-radial-gradient(circle at 72% 58%, #080808 0 0.6px, #ececec 0.6px 1.2px, #555555 1.2px 2.2px),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0 0.7px, rgba(0, 0, 0, 0.42) 0.7px 2px, rgba(150, 150, 150, 0.28) 2px 3px);
  background-size: 4px 4px, 6px 5px, 100% 3px;
  clip-path: inset(0 round 8% 8% 10% 10%);
  filter: contrast(2.8) brightness(1.1);
  mix-blend-mode: normal;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.08s steps(1, end), visibility 0s linear 0.08s;
  animation: portfolio-tv-snow 0.11s steps(3, end) infinite;
}

.portfolio-tv-mode-snow::before,
.portfolio-tv-mode-snow::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
}

.portfolio-tv-mode-snow::before {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0 0.6px, rgba(0, 0, 0, 0.7) 0.6px 1.2px, transparent 1.2px 2.4px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.26) 0 0.7px, rgba(0, 0, 0, 0.34) 0.7px 2.6px);
  opacity: 0.68;
  animation: portfolio-tv-snow-drift 0.16s steps(2, end) infinite;
}

.portfolio-tv-mode-snow::after {
  background:
    linear-gradient(0deg, transparent 0 18%, rgba(255, 255, 255, 0.55) 19% 22%, transparent 23% 46%, rgba(0, 0, 0, 0.5) 47% 51%, transparent 52% 100%),
    repeating-linear-gradient(to bottom, transparent 0 4px, rgba(255, 255, 255, 0.22) 4.8px 5.4px);
  opacity: 0.74;
  animation: portfolio-tv-snow-roll 0.28s steps(3, end) infinite;
}

body.is-portfolio-tv-static-active .portfolio-tv-mode-snow {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.08s steps(1, end), visibility 0s linear 0s;
}

.portfolio-tv-mode-message {
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  clip-path: inset(0 round 8% 8% 10% 10%);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 4.8vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-shadow:
    2px 0 0 rgba(255, 0, 72, 0.72),
    -2px 0 0 rgba(0, 245, 255, 0.72),
    0 0 12px rgba(255, 255, 255, 0.42),
    0 3px 12px rgba(0, 0, 0, 0.72);
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1.08);
  transition: opacity 0.08s steps(1, end), visibility 0s linear 0.08s;
}

body.is-portfolio-tv-static-active .portfolio-tv-mode-message {
  visibility: visible;
  opacity: 0.92;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 0.08s steps(1, end), visibility 0s linear 0s;
  animation: portfolio-tv-message-glitch 0.32s steps(2, end) infinite;
}

body.is-portfolio-tv-power-off .portfolio-tv-mode {
  pointer-events: none;
  cursor: default;
}

body.is-portfolio-tv-power-off .portfolio-tv-mode-screen {
  background: #010101;
  box-shadow:
    inset 0 0 14px rgba(255, 255, 255, 0.03),
    inset 0 0 72px rgba(0, 0, 0, 0.88);
}

body.is-portfolio-tv-power-off .portfolio-tv-mode-screen::before {
  background: linear-gradient(
    to bottom,
    transparent 0 47%,
    rgba(255, 255, 255, 0.92) 49%,
    rgba(255, 255, 255, 0.52) 51%,
    transparent 54% 100%
  );
  mix-blend-mode: normal;
  opacity: 0;
  animation: portfolio-tv-power-off-flash 0.24s ease-out forwards;
}

body.is-portfolio-tv-power-off .portfolio-tv-mode-screen::after,
body.is-portfolio-tv-power-off .portfolio-tv-mode-static,
body.is-portfolio-tv-power-off .portfolio-tv-mode-snow,
body.is-portfolio-tv-power-off .portfolio-tv-mode-message {
  visibility: hidden;
  opacity: 0;
  animation: none;
}

.portfolio-elephant-mode {
  --portfolio-elephant-balloon-width: 22vw;
  --portfolio-elephant-balloon-height: calc(var(--portfolio-elephant-balloon-width) * 1068 / 1200);
  --portfolio-elephant-close-width: calc(var(--portfolio-elephant-balloon-width) * 0.84);
  --portfolio-elephant-typo-width: 67.7105vw;
  --portfolio-elephant-typo-gap: 36px;
  --portfolio-elephant-typo-height: calc(var(--portfolio-elephant-typo-width) * 497 / 2620);

  position: fixed;
  inset: -50px;
  z-index: 8990;
  display: block;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.34s ease,
    visibility 0s linear 0.34s;
}

body.is-portfolio-elephant-mode-active .portfolio-elephant-mode {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.34s ease,
    visibility 0s linear 0s;
}

body.is-mobile-menu-open .portfolio-elephant-mode {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.16s ease,
    visibility 0s linear 0.16s;
}

.portfolio-elephant-mode-stage {
  position: absolute;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0s linear 0.28s,
    transform 1.08s cubic-bezier(0.2, 0.74, 0.25, 1);
}

body.is-portfolio-elephant-mode-exiting .portfolio-elephant-mode-stage {
  transition:
    opacity 0.28s ease 0.8s,
    visibility 0s linear 1.08s,
    transform 1.08s cubic-bezier(0.2, 0.74, 0.25, 1);
}

.portfolio-elephant-mode-stage--main {
  bottom: -150px;
  width: 40.755vw;
}

.portfolio-elephant-mode-stage--main.portfolio-elephant-mode-stage--right {
  right: 0;
  transform: translate3d(58%, 48%, 0) rotate(5deg);
  transform-origin: right bottom;
}

.portfolio-elephant-mode-stage--main.portfolio-elephant-mode-stage--left {
  left: 0;
  transform: translate3d(-58%, 48%, 0) rotate(-5deg);
  transform-origin: left bottom;
}

body.is-portfolio-elephant-main-active .portfolio-elephant-mode-stage--main.portfolio-elephant-mode-stage--right {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transition:
    opacity 0.28s ease,
    visibility 0s linear 0s,
    transform 1.08s cubic-bezier(0.2, 0.74, 0.25, 1);
}

body.is-portfolio-elephant-main-active .portfolio-elephant-mode-stage--main.portfolio-elephant-mode-stage--left {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transition:
    opacity 0.28s ease,
    visibility 0s linear 0s,
    transform 1.08s cubic-bezier(0.2, 0.74, 0.25, 1);
}

.portfolio-elephant-mode-stage--title {
  top: clamp(-44px, -3.2vw, -20px);
  left: 50%;
  width: 62.4vw;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.34));
  transform: translate3d(-50%, -125%, 0);
  transform-origin: center top;
}

body.is-portfolio-elephant-title-active .portfolio-elephant-mode-stage--title {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0);
  transition:
    opacity 0.28s ease,
    visibility 0s linear 0s,
    transform 1.08s cubic-bezier(0.2, 0.74, 0.25, 1);
}

.portfolio-elephant-mode-stage--balloon {
  top: 260px;
  width: var(--portfolio-elephant-balloon-width);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.32));
}

.portfolio-elephant-mode-stage--balloon.portfolio-elephant-mode-stage--right {
  right: 0;
  transform: translate3d(62%, -112%, 0) rotate(-5deg);
  transform-origin: right top;
}

.portfolio-elephant-mode-stage--balloon.portfolio-elephant-mode-stage--left {
  left: 0;
  transform: translate3d(-62%, -112%, 0) rotate(5deg);
  transform-origin: left top;
}

body.is-portfolio-elephant-main-active .portfolio-elephant-mode-stage--balloon {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transition:
    opacity 0.28s ease,
    visibility 0s linear 0s,
    transform 1.08s cubic-bezier(0.2, 0.74, 0.25, 1);
}

.portfolio-elephant-mode-stage--close {
  top: 160px;
  right: 0;
  width: var(--portfolio-elephant-close-width);
  cursor: pointer;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.32));
  pointer-events: auto;
  transform: translate3d(62%, -112%, 0) rotate(-5deg);
  transform-origin: right top;
}

.portfolio-elephant-mode-stage--close .portfolio-elephant-mode-image {
  transition: filter 0.34s ease;
}

body.is-portfolio-elephant-main-active .portfolio-elephant-mode-stage--close {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transition:
    opacity 0.28s ease,
    visibility 0s linear 0s,
    transform 1.08s cubic-bezier(0.2, 0.74, 0.25, 1);
}

body.is-portfolio-elephant-close-dismissed .portfolio-elephant-mode-stage--close {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(62%, -112%, 0) rotate(-5deg);
  transition:
    opacity 0.28s ease,
    visibility 0s linear 1.08s,
    transform 1.08s cubic-bezier(0.2, 0.74, 0.25, 1);
}

.portfolio-elephant-mode-stage--close:hover .portfolio-elephant-mode-image {
  filter:
    drop-shadow(0 0 7px rgba(255, 255, 255, 0.63))
    drop-shadow(0 0 15px rgba(255, 255, 255, 0.43))
    drop-shadow(0 22px 24px rgba(0, 0, 0, 0.38));
}

.portfolio-elephant-mode-stage--typo {
  width: var(--portfolio-elephant-typo-width);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.3));
}

.portfolio-elephant-mode-stage--typo01 {
  top: calc(50dvh - var(--portfolio-elephant-typo-height) - (var(--portfolio-elephant-typo-gap) / 2) + 50px);
  left: 0;
  transform: translate3d(-112%, 0, 0);
  transform-origin: left center;
}

.portfolio-elephant-mode-stage--typo03 {
  top: calc(50dvh - var(--portfolio-elephant-typo-height) - (var(--portfolio-elephant-typo-gap) / 2) + 50px);
  left: 0;
  transform: translate3d(-112%, 0, 0);
  transform-origin: left center;
}

.portfolio-elephant-mode-stage--typo02 {
  top: calc(50dvh + (var(--portfolio-elephant-typo-gap) / 2) + 50px);
  right: 0;
  transform: translate3d(112%, 0, 0);
  transform-origin: right center;
}

.portfolio-elephant-mode-stage--typo04 {
  top: calc(50dvh + (var(--portfolio-elephant-typo-gap) / 2) + 50px);
  right: 0;
  transform: translate3d(112%, 0, 0);
  transform-origin: right center;
}

body.is-portfolio-elephant-typo01-active .portfolio-elephant-mode-stage--typo01,
body.is-portfolio-elephant-typo02-active .portfolio-elephant-mode-stage--typo02,
body.is-portfolio-elephant-typo03-active .portfolio-elephant-mode-stage--typo03,
body.is-portfolio-elephant-typo04-active .portfolio-elephant-mode-stage--typo04 {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.28s ease,
    visibility 0s linear 0s,
    transform 1.08s cubic-bezier(0.2, 0.74, 0.25, 1);
}

body.is-portfolio-elephant-typo-swap-active .portfolio-elephant-mode-stage--typo01,
body.is-portfolio-elephant-typo-swap-active .portfolio-elephant-mode-stage--typo02 {
  transition:
    opacity 0.28s ease 1.5s,
    visibility 0s linear 1.8s,
    transform 1.8s cubic-bezier(0.2, 0.74, 0.25, 1);
}

body.is-portfolio-elephant-mode-exiting .portfolio-elephant-mode-stage--typo03,
body.is-portfolio-elephant-mode-exiting .portfolio-elephant-mode-stage--typo04 {
  transition:
    opacity 0.28s ease,
    visibility 0s linear 1.08s,
    transform 1.08s cubic-bezier(0.2, 0.74, 0.25, 1);
}

body.is-portfolio-elephant-close-dismissed .portfolio-elephant-mode-stage {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0s linear 1.08s,
    transform 1.08s cubic-bezier(0.2, 0.74, 0.25, 1);
}

body.is-portfolio-elephant-close-dismissed .portfolio-elephant-mode-stage--title {
  transform: translate3d(-50%, -125%, 0);
}

body.is-portfolio-elephant-close-dismissed .portfolio-elephant-mode-stage--main.portfolio-elephant-mode-stage--right {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0s linear 1.08s,
    transform 1.08s cubic-bezier(0.2, 0.74, 0.25, 1);
  transform: translate3d(58%, 48%, 0) rotate(5deg);
}

body.is-portfolio-elephant-close-dismissed .portfolio-elephant-mode-stage--main.portfolio-elephant-mode-stage--left {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0s linear 1.08s,
    transform 1.08s cubic-bezier(0.2, 0.74, 0.25, 1);
  transform: translate3d(-58%, 48%, 0) rotate(-5deg);
}

body.is-portfolio-elephant-close-dismissed .portfolio-elephant-mode-stage--balloon.portfolio-elephant-mode-stage--right,
body.is-portfolio-elephant-close-dismissed .portfolio-elephant-mode-stage--close {
  transform: translate3d(62%, -112%, 0) rotate(-5deg);
}

body.is-portfolio-elephant-close-dismissed .portfolio-elephant-mode-stage--balloon.portfolio-elephant-mode-stage--left {
  transform: translate3d(-62%, -112%, 0) rotate(5deg);
}

body.is-portfolio-elephant-close-dismissed .portfolio-elephant-mode-stage--typo01,
body.is-portfolio-elephant-close-dismissed .portfolio-elephant-mode-stage--typo03 {
  transform: translate3d(-112%, 0, 0);
}

body.is-portfolio-elephant-close-dismissed .portfolio-elephant-mode-stage--typo02,
body.is-portfolio-elephant-close-dismissed .portfolio-elephant-mode-stage--typo04 {
  transform: translate3d(112%, 0, 0);
}

body.is-portfolio-elephant-main-active .portfolio-elephant-mode-stage--main .portfolio-elephant-mode-image {
  animation: portfolio-elephant-body-sway 3.8s ease-in-out 0.7s infinite;
}

body.is-portfolio-elephant-main-active .portfolio-elephant-mode-stage--balloon .portfolio-elephant-mode-image {
  animation: portfolio-elephant-balloon-float 4.4s ease-in-out 0.45s infinite;
}

.portfolio-elephant-mode-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.38));
}

.portfolio-elephant-mode-stage--main.portfolio-elephant-mode-stage--left .portfolio-elephant-mode-image {
  scale: -1 1;
}

.portfolio-elephant-mode-stage--balloon.portfolio-elephant-mode-stage--left .portfolio-elephant-mode-image {
  scale: -1 1;
}

@keyframes portfolio-cat-decor-fall {
  0% {
    transform: translate3d(-50%, 0, 0) scale(var(--portfolio-cat-decor-scale));
  }

  100% {
    transform: translate3d(-50%, var(--portfolio-cat-drop-distance, 120vh), 0) scale(var(--portfolio-cat-decor-scale));
  }
}

@keyframes portfolio-tv-body-drift {
  0%, 88%, 100% {
    transform: translate3d(0, 0, 0);
  }

  90% {
    transform: translate3d(1px, -1px, 0);
  }

  92% {
    transform: translate3d(-1px, 1px, 0);
  }
}

@keyframes portfolio-tv-scanline {
  0% {
    transform: translate3d(0, -4px, 0);
  }

  100% {
    transform: translate3d(0, 4px, 0);
  }
}

@keyframes portfolio-tv-noise {
  0% {
    transform: translate3d(-2%, -1%, 0);
  }

  50% {
    transform: translate3d(2%, 1%, 0);
  }

  100% {
    transform: translate3d(1%, -2%, 0);
  }
}

@keyframes portfolio-tv-glitch {
  0%, 82%, 100% {
    opacity: 0.2;
    clip-path: inset(0);
    transform: translate3d(0, 0, 0);
  }

  84% {
    opacity: 0.44;
    clip-path: inset(18% 0 62% 0);
    transform: translate3d(-7px, 0, 0);
  }

  87% {
    opacity: 0.34;
    clip-path: inset(58% 0 18% 0);
    transform: translate3d(8px, 0, 0);
  }
}

@keyframes portfolio-tv-snow {
  0% {
    background-position: 0 0, 2px 3px, 0 0;
    transform: translate3d(-1%, -1%, 0) scale(1.04);
  }

  33% {
    background-position: 5px -4px, -3px 2px, 0 2px;
    transform: translate3d(1%, 0, 0) scale(1.05);
  }

  66% {
    background-position: -4px 3px, 4px -2px, 0 -3px;
    transform: translate3d(0, 1%, 0) scale(1.04);
  }

  100% {
    background-position: 3px 5px, -5px -3px, 0 4px;
    transform: translate3d(1%, -1%, 0) scale(1.05);
  }
}

@keyframes portfolio-tv-snow-drift {
  0% {
    transform: translate3d(-4%, -2%, 0);
  }

  50% {
    transform: translate3d(3%, 1%, 0);
  }

  100% {
    transform: translate3d(-1%, 3%, 0);
  }
}

@keyframes portfolio-tv-snow-roll {
  0% {
    transform: translate3d(0, -10%, 0);
  }

  50% {
    transform: translate3d(0, 8%, 0);
  }

  100% {
    transform: translate3d(0, 18%, 0);
  }
}

@keyframes portfolio-tv-message-glitch {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(-2px, 1px, 0) scale(1.02);
  }

  50% {
    transform: translate3d(2px, -1px, 0) scale(0.99);
  }

  75% {
    transform: translate3d(1px, 2px, 0) scale(1.01);
  }
}

@keyframes portfolio-tv-power-off-flash {
  0% {
    opacity: 0.95;
    transform: scaleY(1);
  }

  42% {
    opacity: 0.74;
    transform: scaleY(0.18);
  }

  100% {
    opacity: 0;
    transform: scaleY(0.02);
  }
}

@keyframes portfolio-elephant-body-sway {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-1.4deg);
  }

  50% {
    transform: translate3d(-4px, -7px, 0) rotate(1.8deg);
  }
}

@keyframes portfolio-elephant-balloon-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-1.2deg);
  }

  50% {
    transform: translate3d(4px, -9px, 0) rotate(1.4deg);
  }
}

@media (max-width: 900px) {
  .portfolio-cat-decor-item {
    --portfolio-cat-decor-scale: 0.5;
  }

  .portfolio-tv-mode {
    --portfolio-tv-scale: 0.95;
    width: min(92vw, 520px);
  }

  .portfolio-elephant-mode {
    --portfolio-elephant-balloon-width: 32vw;
    --portfolio-elephant-typo-width: 86.4vw;
    --portfolio-elephant-typo-gap: 20px;

    inset: 0;
  }

  .portfolio-elephant-mode-stage--main {
    width: 62vw;
  }

  .portfolio-elephant-mode-stage--main.portfolio-elephant-mode-stage--right {
    right: -67px;
    bottom: -36px;
    transform: translate3d(64%, 52%, 0) rotate(5deg);
  }

  .portfolio-elephant-mode-stage--main.portfolio-elephant-mode-stage--left {
    left: -67px;
    bottom: -36px;
    transform: translate3d(-64%, 52%, 0) rotate(-5deg);
  }

  .portfolio-elephant-mode-stage--balloon {
    top: calc(50dvh - var(--portfolio-elephant-typo-height) - (var(--portfolio-elephant-typo-gap) / 2) - var(--portfolio-elephant-balloon-height) + 20px);
  }

  .portfolio-elephant-mode-stage--close {
    top: calc(-18px + (106.6vw * 1207 / 2818) - 130px);
    width: calc(var(--portfolio-elephant-close-width) * 1.3);
  }

  .portfolio-elephant-mode-stage--balloon.portfolio-elephant-mode-stage--right {
    right: 0;
    transform: translate3d(62%, -112%, 0) rotate(-5deg);
  }

  .portfolio-elephant-mode-stage--balloon.portfolio-elephant-mode-stage--left {
    left: 0;
    transform: translate3d(-62%, -112%, 0) rotate(5deg);
  }

  .portfolio-elephant-mode-stage--typo {
    width: var(--portfolio-elephant-typo-width);
  }

  .portfolio-elephant-mode-stage--title {
    top: -18px;
    width: 106.6vw;
  }

  .portfolio-elephant-mode-stage--typo01 {
    top: calc(50dvh - var(--portfolio-elephant-typo-height) - (var(--portfolio-elephant-typo-gap) / 2));
  }

  .portfolio-elephant-mode-stage--typo03 {
    top: calc(50dvh - var(--portfolio-elephant-typo-height) - (var(--portfolio-elephant-typo-gap) / 2));
  }

  .portfolio-elephant-mode-stage--typo02 {
    top: calc(50dvh + (var(--portfolio-elephant-typo-gap) / 2) - 10px);
    right: -20px;
  }

  .portfolio-elephant-mode-stage--typo04 {
    top: calc(50dvh + (var(--portfolio-elephant-typo-gap) / 2) - 10px);
    right: -20px;
  }
}

@keyframes ichigo-fall {
  0% {
    transform: translate3d(-50%, calc(-1.2 * var(--ichigo-size, 160px)), 0) rotate(var(--ichigo-rotate, 0deg));
  }

  100% {
    transform: translate3d(-50%, calc(100vh + var(--ichigo-size, 160px)), 0) rotate(calc(var(--ichigo-rotate, 0deg) + var(--ichigo-spin, 180deg)));
  }
}

@keyframes portfolio-cafe-fall {
  0% {
    transform: translate3d(-50%, calc(-1.2 * var(--portfolio-rain-size, 160px)), 0) rotate(var(--portfolio-rain-rotate, 0deg));
  }

  100% {
    transform: translate3d(-50%, calc(100vh + var(--portfolio-rain-size, 160px)), 0) rotate(calc(var(--portfolio-rain-rotate, 0deg) + var(--portfolio-rain-spin, 180deg)));
  }
}

@keyframes portfolio-typo-smooth-fall {
  0% {
    transform: translate3d(calc(-50% + var(--portfolio-typo-pull-x, 0px)), calc(-1.35 * var(--portfolio-rain-size, 160px) - var(--portfolio-typo-lag-y, 0px)), 0) rotate(var(--portfolio-rain-rotate, 0deg));
  }

  100% {
    transform: translate3d(calc(-50% + var(--portfolio-typo-pull-x, 0px)), calc(100vh + var(--portfolio-rain-size, 160px) + var(--portfolio-typo-lag-y, 0px)), 0) rotate(calc(var(--portfolio-rain-rotate, 0deg) + var(--portfolio-rain-spin, 72deg)));
  }
}

.notfound-story {
  position: relative;
  z-index: auto;
  min-height: max(980px, 100vh);
  overflow: hidden;
  background: transparent;
  color: var(--white);
}

.notfound-story::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("../images/index/bg-pattern2.webp") center / cover repeat;
  pointer-events: none;
}

.notfound-story::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.notfound-story-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 4vw, 76px);
  align-items: start;
  width: 100%;
  min-height: max(980px, 100vh);
  margin: 0;
  padding: 0 40px;
  align-content: center;
}

.notfound-story-logo {
  justify-self: start;
  margin-left: 0;
  width: 386px;
  height: 94px;
  overflow: hidden;
  transform: translate(0, 386px) rotate(-90deg);
  transform-origin: left top;
}

.notfound-story-logo img {
  width: 100%;
  height: 50%;
  object-fit: fill;
}

.notfound-story p {
  margin: 0;
  font-size: clamp(18px, 1.22vw, 24px);
  line-height: 2.05;
  letter-spacing: -0.04em;
  font-weight: 600;
  text-align: left;
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.notfound-story.is-text-visible p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.notfound-story.is-text-visible p:nth-of-type(2) {
  transition-delay: 0.18s;
}

.feature-card .work-title,
.feature-card .work-copy {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.feature-card .work-copy {
  transition-delay: 0.16s;
}

.feature-card .explanation .work-copy {
  font-size: 18px;
  line-height: 36px;
}

.content.liquid.fashion-dual-section {
  height: auto;
  overflow: visible;
}

.fashion-dual-media {
  display: block;
  overflow: visible;
  background: transparent;
  min-height: 0;
}

.fashion-dual-media-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
}

.fashion-dual-media-video .vimeo-video {
  position: absolute;
  inset: 0;
}

.fashion-dual-media-video .vimeo-video iframe {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  transform: none;
}

.fashion-dual-media-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.fashion-center-image {
  object-position: center center;
}

.feature-card.is-text-visible .work-title,
.feature-card.is-text-visible .work-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.portfolio-index-hero-video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 811px;
  overflow: hidden;
  background: #111111;
}

.portfolio-index-hero-video .vimeo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portfolio-index-hero-video .vimeo-video iframe {
  left: 50%;
  top: 50%;
  width: max(100%, calc(100vh * 16 / 9));
  height: max(100%, calc(100vw * 9 / 16));
  transform: translate(-50%, -50%);
}

.portfolio-keyword-hero {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  row-gap: 0;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  padding: 0;
  overflow: hidden;
  background: #000000;
}

.portfolio-keyvisual-panel {
  position: absolute;
  z-index: 4;
  inset: 60px 60px;
  min-height: calc(100% - 120px);
  overflow: hidden;
  background: #ffffff;
  color: #111111;
}

.portfolio-keyvisual-title {
  position: absolute;
  left: 40px;
  top: 50%;
  width: max-content;
  font-family: var(--display);
  font-size: clamp(69.33px, 7.57vw, 109.08px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  white-space: nowrap;
  transform: translate3d(calc(-50% + 51px), -50%, 0) rotate(90deg);
  transform-origin: center;
}

.portfolio-keyvisual-copy {
  position: absolute;
  right: 40px;
  top: 50%;
  width: min(54vw, 820px);
  margin: 0;
  color: #333333;
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.75;
  transform: translateY(-50%);
}

.portfolio-keyword-row {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.portfolio-keyword-track {
  display: flex;
  width: max-content;
  animation: portfolioKeywordMarqueeRtl 40s linear infinite;
  will-change: transform;
}

.portfolio-keyword-row--ltr .portfolio-keyword-track {
  animation-name: portfolioKeywordMarqueeLtr;
}

.portfolio-keyword-row:nth-child(1) .portfolio-keyword-track {
  animation-delay: -2s;
}

.portfolio-keyword-row:nth-child(2) .portfolio-keyword-track {
  animation-delay: -10s;
}

.portfolio-keyword-row:nth-child(3) .portfolio-keyword-track {
  animation-delay: -16s;
}

.portfolio-keyword-row:nth-child(4) .portfolio-keyword-track {
  animation-delay: -24s;
}

.portfolio-keyword-row:nth-child(5) .portfolio-keyword-track {
  animation-delay: -31s;
}

.portfolio-keyword-row:nth-child(6) .portfolio-keyword-track {
  animation-delay: -5s;
}

.portfolio-keyword-row:nth-child(7) .portfolio-keyword-track {
  animation-delay: -13s;
}

.portfolio-keyword-row:nth-child(8) .portfolio-keyword-track {
  animation-delay: -20s;
}

.portfolio-keyword-row:nth-child(9) .portfolio-keyword-track {
  animation-delay: -27s;
}

.portfolio-keyword-row:nth-child(10) .portfolio-keyword-track {
  animation-delay: -35s;
}

.portfolio-keyword-row--sp-extra {
  display: none;
}

.portfolio-keyword-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.16em;
  padding-right: 0.16em;
  font-family: var(--display);
  font-size: 140px;
  font-weight: 700;
  letter-spacing: -10px;
  line-height: 0.88;
  color: #a6ff00;
  opacity: 0.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.portfolio-keyword-group .is-portfolio {
  color: #ff5ab5;
}

@keyframes portfolioKeywordMarqueeRtl {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-25%, 0, 0);
  }
}

@keyframes portfolioKeywordMarqueeLtr {
  from {
    transform: translate3d(-25%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.portfolio-list {
  position: relative;
  z-index: 2;
  background: #111111;
  isolation: isolate;
}

.portfolio-list.is-content-hidden {
  height: clamp(3120px, 283.3332vw, 4080px);
  background: transparent;
}

.portfolio-list .content {
  background: #111111;
}

.day-future-about {
  z-index: 2;
  min-height: 0;
  padding: clamp(96px, 10vw, 148px) 0 clamp(104px, 10vw, 156px);
  border-top: 1px solid #343434;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #111111;
  color: var(--white);
}

.day-future-about .about-inner {
  transform: none;
}

.day-future-about .side-title {
  color: rgba(255, 255, 255, 0.96);
}

.day-future-about .portrait {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.top-portfolio-height-keeper {
  position: relative;
  z-index: 0;
  height: calc((clamp(520px, 47.2222vw, 680px) * 6) + 1660px);
  margin-top: -260px;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}

.top-portfolio-height-keeper::before {
  content: none;
}

.top-portfolio-photo-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.top-portfolio-photo {
  position: absolute;
  display: block;
  width: var(--photo-w);
  max-width: none;
  height: auto;
  opacity: var(--photo-reveal-opacity, 0);
  transform: translate3d(-50%, calc(-50% + var(--photo-reveal-y, 80px)), 0);
  will-change: opacity, transform;
}

.top-portfolio-photo-gradient {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  background: linear-gradient(180deg, var(--pink) 0%, #ed1616 34%, #6815ff 68%, #1717ff 100%);
  opacity: 0.4;
  pointer-events: none;
}

.top-portfolio-photo-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}

.top-portfolio-photo-01 {
  --photo-w: clamp(520px, 39vw, 800px);
  left: 18%;
  top: 7%;
}

.top-portfolio-photo-02 {
  --photo-w: clamp(430px, 31vw, 640px);
  left: 74%;
  top: 16%;
}

.top-portfolio-photo-03 {
  --photo-w: clamp(360px, 25vw, 520px);
  left: calc(35% - 460px);
  top: 24%;
}

.top-portfolio-photo-04 {
  --photo-w: clamp(450px, 34vw, 700px);
  left: 84%;
  top: 35%;
}

.top-portfolio-photo-05 {
  --photo-w: clamp(500px, 37vw, 760px);
  left: 74%;
  top: 86%;
}

.top-portfolio-photo-06 {
  --photo-w: clamp(360px, 23vw, 460px);
  left: 22%;
  top: 94%;
}

.top-portfolio-photo-07 {
  --photo-w: clamp(420px, 29vw, 600px);
  left: 12%;
  top: 72%;
}

.top-portfolio-photo-08 {
  --photo-w: clamp(500px, 36vw, 740px);
  left: 78%;
  top: 79%;
}

.top-portfolio-photo-09 {
  --photo-w: clamp(510px, 33vw, 645px);
  left: calc(48% - 200px);
  top: 91%;
}

.top-webgl-orb-field {
  position: absolute;
  z-index: 3;
  top: calc(50% - 500px);
  left: 0;
  width: 100%;
  height: min(120vw, 1320px);
  min-height: 720px;
  overflow: visible;
  pointer-events: none;
  transform: translate3d(0, -50%, 0);
}

.top-webgl-orb-canvas {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.feature-card {
  z-index: 3;
  cursor: pointer;
  isolation: isolate;
}

.template-site > .template-feature:first-child,
.fashion-dual-section {
  cursor: default;
}

.branding-feature {
  cursor: default;
}

.feature-card::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  border: 0 solid var(--white);
  pointer-events: none;
  transition: border-width 0.26s ease;
}

.feature-card:hover::after {
  border-width: 10px;
}

.more-link {
  position: absolute;
  z-index: 6;
  right: clamp(34px, 3.2vw, 60px);
  bottom: clamp(28px, 3vw, 52px);
  display: inline-block;
  padding-bottom: 7px;
  font-family: var(--display);
  font-size: clamp(20px, 1.6vw, 29px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0;
}

.more-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.38s ease;
}

.feature-card:hover .more-link::after {
  transform: scaleX(1);
}

.explanation {
  display: flex;
  align-items: center;
  padding: 117px 51px;
  color: #fff;
  background: #111;
}

.explanation > div {
  width: 100%;
}

.content.dark .explanation {
  color: var(--white);
  background: var(--black);
}

.work-title {
  margin: 0 0 32px;
  font-family: var(--display);
  font-size: 60px;
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 1;
}

.work-copy {
  width: 100%;
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 2;
  font-feature-settings: "pwid" 1, "palt" 1;
}

.visual {
  width: 100%;
  height: 800px;
  overflow: hidden;
  background: #111;
}

.visual img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.tail {
  position: relative;
  z-index: 1;
  height: 1084px;
}

@media (min-width: 901px) and (max-width: 1439px) {
  .about-inner {
    width: calc(100% - 220px);
  }

  .side-title {
    left: -131px;
    font-size: 112px;
    letter-spacing: -5.6px;
  }

  .profile-title {
    font-size: 44px;
    letter-spacing: -2.2px;
  }

  .profile-copy {
    width: calc(100% - 300px);
    font-size: 14px;
  }

  .history {
    width: 100%;
  }

  .history-row {
    grid-template-columns: 170px 270px 1fr;
  }

  .history-year,
  .history-company {
    font-size: 21px;
    letter-spacing: -1px;
  }

  .history-company {
    padding-left: 30px;
  }

  .history-text {
    padding-right: 24px;
    padding-left: 30px;
    font-size: 14px;
  }

  .photo-marquee-item {
    width: min(440px, 44vw);
  }

  .content.liquid {
    grid-template-columns: minmax(0, 62%) minmax(300px, 38%);
  }

  .branding-main {
    grid-template-columns: minmax(0, 62%) minmax(300px, 38%);
  }

  .branding-text {
    padding: 84px 40px;
  }

  .explanation {
    padding: 84px 40px;
  }

  .template-text-section--large {
    padding-right: 40px;
    padding-left: 40px;
  }

  .work-title {
    font-size: 48px;
    letter-spacing: -2.4px;
  }

  .work-copy {
    font-size: 14px;
    line-height: 1.85;
  }
}

@media (max-width: 1200px) {
  .header {
    padding-right: 28px;
    padding-left: 28px;
  }

  .about-inner {
    width: calc(100% - 96px);
    margin-right: 48px;
    margin-left: 48px;
  }

  .side-title {
    position: static;
    display: block;
    width: auto;
    height: auto;
    margin-bottom: 28px;
    transform: none;
    font-size: 92px;
    letter-spacing: -4px;
  }

  .history {
    width: 100%;
  }

  .content {
    grid-template-columns: minmax(0, 64%) minmax(0, 36%);
  }

  .explanation {
    padding: clamp(52px, 7vw, 84px) clamp(24px, 3.4vw, 40px);
  }

  .work-title {
    font-size: clamp(36px, 4vw, 48px);
    letter-spacing: -0.05em;
  }

  .work-copy {
    font-size: clamp(12px, 1.17vw, 14px);
    line-height: 1.8;
  }
}

@media (max-width: 900px) {
  :root {
    --desktop-header-height: 0px;
    --mobile-menu-edge: 41px;
    --mobile-menu-top: 77px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site {
    overflow-x: hidden;
  }

  body.is-mobile-menu-open {
    overflow: hidden;
  }

  body.is-mobile-menu-open .logo {
    position: relative;
    z-index: 84;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.2s ease, visibility 0s linear 0s;
  }

  .hero {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
  }

  .hero-feel-copy {
    right: 18px;
    bottom: 18px;
    font-size: 11pt;
  }

  .portfolio-index-hero-video {
    aspect-ratio: 16 / 9;
    height: auto;
    margin-top: 78px;
  }

  .portfolio-index-hero-video .vimeo-video iframe {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .portfolio-keyword-hero {
    height: auto;
    min-height: 520px;
    max-height: none;
  }

  .portfolio-keyvisual-panel {
    inset: 60px 18px;
    min-height: calc(100% - 120px);
  }

  .portfolio-keyvisual-title {
    left: 22px;
    font-size: clamp(53.33px, 15.27vw, 75.33px);
    letter-spacing: -0.05em;
    transform: translate3d(calc(-50% + 33px), -50%, 0) rotate(90deg);
  }

  .portfolio-keyvisual-copy {
    right: 20px;
    width: calc(100% - 128px);
    font-size: clamp(11px, 3vw, 13px);
    line-height: 1.7;
  }

  .portfolio-keyword-track {
    animation-duration: 24s;
  }

  .portfolio-keyword-row--sp-extra {
    display: flex;
  }

  .portfolio-keyword-group {
    gap: 0.2em;
    padding-right: 0.2em;
    font-size: clamp(45px, 13.2vw, 60px);
    letter-spacing: -0.07143em;
  }

  .header {
    position: fixed;
    z-index: 120;
    top: 18px;
    left: var(--mobile-menu-edge);
    right: var(--mobile-menu-edge);
    align-items: flex-start;
    width: auto;
    height: 37px;
    padding: 0;
    border-bottom: 0;
    background: transparent;
    isolation: isolate;
  }

  .logo {
    width: 154px;
    height: 37px;
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity;
  }

  .mobile-menu-toggle {
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
  }

  .menu {
    display: none;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 82;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 27px;
    height: 25px;
    padding: 0;
    border: 0;
    margin-top: 5px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .mobile-menu-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu-panel {
    position: fixed;
    z-index: 70;
    inset: 0;
    display: block;
    overflow: hidden;
    padding-top: var(--mobile-menu-top);
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }

  body.is-mobile-menu-open .mobile-menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }

  .mobile-menu-panel::before {
    content: "";
    position: absolute;
    top: var(--mobile-menu-top);
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
  }

  .mobile-menu-panel::after {
    content: "";
    display: none;
    position: absolute;
    z-index: 75;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(var(--mobile-menu-top) + 80px);
    background: rgba(255, 255, 255, 0);
    pointer-events: auto;
  }

  .mobile-menu-scroll {
    position: absolute;
    z-index: 1;
    top: var(--mobile-menu-top);
    bottom: var(--mobile-menu-top);
    left: 0;
    width: 100%;
    height: auto;
    padding-left: var(--mobile-menu-edge);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    background: #111111;
    overflow: hidden;
    touch-action: none;
  }

  .mobile-menu-track {
    will-change: transform;
  }

  .mobile-menu-group {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu-item {
    display: block;
    width: max-content;
    max-width: calc(100vw - var(--mobile-menu-edge));
    font-family: var(--display);
    font-size: clamp(44px, 12.4vw, 68px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.035em;
    color: #999999;
    white-space: nowrap;
    -webkit-text-stroke: 1px transparent;
    transition: color 0.2s ease, -webkit-text-stroke-color 0.2s ease;
  }

  .mobile-menu-item--long {
    font-size: clamp(41px, 10vw, 52px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    transform: scaleX(0.76);
    transform-origin: left center;
  }

  .mobile-menu-item.is-active {
    color: #a0346f;
    -webkit-text-stroke-color: #ff5ab5;
  }

  .mobile-menu-socials {
    position: absolute;
    z-index: 78;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    height: var(--mobile-menu-top);
    padding-left: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    background: #111111;
  }

  .mobile-menu-language {
    position: absolute;
    z-index: 80;
    top: auto;
    right: 24px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    height: var(--mobile-menu-top);
    padding: 0;
  }

  .mobile-menu-language a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-family: "Oswald", "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    transition: border-color 0.24s ease, color 0.24s ease, background 0.24s ease;
  }

  .mobile-menu-language a:focus-visible,
  .mobile-menu-language a.is-active {
    border-color: #ff5ab5;
    color: #ff5ab5;
    outline: none;
  }

  .mobile-menu-social {
    position: relative;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    overflow: hidden;
    background: #ffffff;
    opacity: 0.3;
  }

  .mobile-menu-social img {
    max-width: none;
  }

  .mobile-menu-note {
    width: 51px;
    height: 32px;
    overflow: visible;
    touch-action: manipulation;
  }

  .mobile-menu-note::before {
    content: "";
    position: absolute;
    z-index: 4;
    top: -8px;
    right: -18px;
    bottom: -8px;
    left: -6px;
    background: #ffffff;
    opacity: 0;
    pointer-events: auto;
  }

  .mobile-menu-x img {
    width: 19px;
    height: 19px;
  }

  .mobile-menu-note img {
    position: absolute;
    top: -15px;
    left: -28px;
    width: 108px;
    height: 60px;
    clip-path: inset(15px 29px 13px 28px);
    pointer-events: none;
  }

  .background {
    display: block;
    top: 100vw;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .pattern {
    left: 0;
    background-size: 860px 2560px;
  }

  .base {
    left: 0;
    width: 100%;
    height: 1100px;
    background-size: 100% auto;
  }

  .base2-repeat {
    display: block;
  }

  .base2-repeat-02 {
    --bg-base2-repeat-offset: 94vw;
  }

  .base2-repeat-03 {
    --bg-base2-repeat-offset: 188vw;
  }

  .bg-pattern3-field {
    height: var(--bg-pattern3-height, 1280px);
    min-height: 0;
  }

  .bg-pattern3-item {
    width: 140vw;
  }

  .bg-pattern3-orb-field {
    transform: translate3d(0, -600px, 0);
  }

  .base3-notfound-stack,
  .base3-notfound-stack-secondary {
    font-size: 40px;
  }

  .base3-notfound-vertical {
    font-size: 40px;
  }

  .base3-notfound-vertical-secondary {
    font-size: 24px;
  }

  .base3-circle {
    width: 288px;
    height: 288px;
  }

  .base3-notfound-text {
    display: none;
  }

  .about {
    padding: 10px 24px 0;
  }

  .day-future-about {
    padding: 72px 24px 80px;
  }

  .about-inner {
    display: grid;
    grid-template-columns: clamp(72px, 19vw, 104px) minmax(0, 1fr);
    align-items: end;
    column-gap: clamp(20px, 5vw, 34px);
    width: 100%;
    min-height: 0;
    margin: 0;
  }

  .side-title {
    position: static;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    display: flex;
    width: 100%;
    height: clamp(260px, 58vw, 430px);
    margin: 0;
    transform: rotate(90deg);
    transform-origin: center;
    font-size: clamp(78px, 20vw, 124px);
    letter-spacing: -0.06em;
  }

  body.home-page .side-title {
    margin-top: -4px;
    font-size: clamp(70px, calc(20vw - 8px), 116px);
  }

  .profile-title {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-right: 112px;
    margin-top: 24px;
    font-size: clamp(30px, 7.8vw, 50px);
    white-space: nowrap;
  }

  .portrait {
    position: static;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 70%;
    height: auto;
    margin: 81px 0 0;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transform: translateY(-40px);
  }

  .profile-copy {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    margin-top: 22px;
    font-size: clamp(11px, 3vw, 13px);
  }

  .socials {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 3px;
  }

  .social {
    height: 32px;
  }

  .social.x {
    width: 32px;
  }

  .social.note {
    width: 51px;
  }

  .social.x img {
    width: 19px;
    height: 19px;
  }

  .social.note img {
    top: -15px;
    left: -28px;
    width: 108px;
    height: 60px;
  }

  .history {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .history-row {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 18px;
    row-gap: 10px;
    padding: 20px 22px;
  }

  .history-year,
  .history-company,
  .history-text {
    padding: 0;
  }

  .history-year,
  .history-company {
    font-size: clamp(15px, calc(5.6vw - 5px), 19px);
  }

  .history-company {
    min-width: 0;
    white-space: normal;
  }

  .history-year::after,
  .history-company::after {
    content: none;
  }

  .history-text {
    grid-column: 1 / -1;
    font-size: clamp(11px, 3vw, 13px);
  }

  .photo-marquee {
    padding: 18px 0;
  }

  .photo-marquee-track,
  .photo-marquee-group {
    gap: 18px;
  }

  .photo-marquee-item {
    width: min(306px, 64.8vw);
  }

  .notfound-story-spacer {
    height: 0;
  }

  .notfound-story {
    min-height: 0;
  }

  .notfound-story-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    width: calc(100% - 48px);
    min-height: 0;
    margin: 0 auto;
    padding: 20px 0 40px;
  }

  .notfound-story-logo {
    display: none;
    width: 276px;
    height: 67px;
    transform: none;
  }

  .notfound-story p {
    font-size: 14px;
    line-height: 1.9;
  }

  .pre-sample-video {
    padding-bottom: 0;
  }

  .news-item {
    grid-template-columns: auto 1fr;
    min-height: 0;
    gap: 12px 18px;
    padding: 16px 24px;
  }

  .news-item.is-pinned {
    box-shadow: inset 0 -1px rgba(255, 255, 255, 0.08);
  }

  .news-item.is-pinned:nth-child(2) {
    top: 85px;
  }

  a.news-item:hover {
    background: #111111;
  }

  a.news-item.is-pinned:hover {
    background: #1f1f1f;
  }

  .news-date,
  .news-category {
    padding-left: 0;
    font-size: clamp(15px, 4.3vw, 19px);
  }

  .news-category {
    min-width: 0;
  }

  .news-date::after,
  .news-category::after {
    display: none;
  }

  .pin-icon {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    flex: 0 0 auto;
  }

  .news-title {
    grid-column: 1 / -1;
    padding-left: 0;
    font-size: clamp(11px, 3vw, 13px);
    line-height: 1.44;
  }

  .news-item.is-external-news .news-title {
    padding-right: 0;
  }

  .news-item > .news-external-icon {
    top: calc(50% - 18px);
    right: 15px;
    background-image: url("../images/etc/external_default_sp.webp");
  }

  .site-footer {
    height: 300px;
  }

  .site-footer::after {
    display: none;
  }

  .footer-menu {
    width: 100%;
    touch-action: pan-y;
  }

  .footer-menu-item {
    max-width: calc(100vw - 16px);
    font-size: clamp(30px, 8.8vw, 40px);
    letter-spacing: -0.035em;
    line-height: 1;
    color: #999999;
  }

  .footer-menu-item[target="_blank"]::after {
    background-image: url("../images/etc/external_default_sp.webp");
    opacity: 0.6;
    vertical-align: calc(0.5em + 3px);
  }

  .mobile-menu-item[target="_blank"]::after {
    background-image: url("../images/etc/external_default_sp.webp");
    opacity: 0.6;
    vertical-align: calc(0.5em + 9px);
  }

  .footer-menu-item--long {
    font-size: clamp(29px, 8.6vw, 39px);
    letter-spacing: -0.035em;
  }

  .footer-menu-item:hover,
  .footer-menu-item:focus-visible,
  .footer-menu-item.is-hovered {
    color: #999999;
    -webkit-text-stroke-color: transparent;
  }

  .footer-menu-item.is-active {
    color: #a0346f;
    -webkit-text-stroke: 1px #ff5ab5;
  }

  .footer-socials {
    right: 24px;
    bottom: 32px;
    touch-action: pan-y;
  }

  .footer-social {
    width: 32px;
    height: 32px;
    background: #ffffff;
    touch-action: pan-y;
  }

  .footer-note {
    width: 51px;
  }

  .footer-x img {
    width: 19px;
    height: 19px;
  }

  .footer-note img {
    position: absolute;
    top: -15px;
    left: -28px;
    width: 108px;
    height: 60px;
    max-width: none;
    object-fit: cover;
  }

  .content {
    position: relative;
    grid-template-columns: 1fr;
    height: auto;
  }

  .content.liquid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .portfolio-list.is-content-hidden {
    height: 4080px;
  }

  .top-portfolio-height-keeper {
    height: 3000px;
    margin-top: -200px;
  }

  .sticker-field {
    height: 1180px;
    min-height: 0;
  }

  .sticker-01 {
    --sticker-w: min(50vw, 240px);
    left: 6%;
    top: 6%;
  }

  .sticker-02 {
    --sticker-w: min(55vw, 260px);
    left: 50%;
    top: 0;
  }

  .sticker-03 {
    --sticker-w: min(58vw, 280px);
    left: 5%;
    top: 34%;
  }

  .sticker-04 {
    --sticker-w: min(66vw, 320px);
    left: 36%;
    top: 48%;
  }

  .sticker-05 {
    --sticker-w: min(76vw, 370px);
    left: 14%;
    top: 76%;
  }

  .top-portfolio-photo-01 {
    --photo-w: min(78vw, 360px);
    left: 28%;
    top: 7%;
  }

  .top-portfolio-photo-02 {
    --photo-w: min(70vw, 320px);
    left: 72%;
    top: 17%;
  }

  .top-portfolio-photo-03 {
    --photo-w: min(64vw, 300px);
    left: calc(28% - 120px);
    top: 24%;
  }

  .top-portfolio-photo-04 {
    --photo-w: min(76vw, 350px);
    left: 76%;
    top: 34%;
  }

  .top-portfolio-photo-05 {
    --photo-w: min(82vw, 380px);
    left: 70%;
    top: 86%;
  }

  .top-portfolio-photo-06 {
    --photo-w: min(60vw, 280px);
    left: 24%;
    top: 94%;
  }

  .top-portfolio-photo-07 {
    --photo-w: min(70vw, 330px);
    left: 24%;
    top: 73%;
  }

  .top-portfolio-photo-08 {
    --photo-w: min(78vw, 360px);
    left: 78%;
    top: 82%;
  }

  .top-portfolio-photo-09 {
    --photo-w: min(87vw, 405px);
    left: calc(50% - 80px);
    top: 93%;
  }

  .feature-card {
    padding-bottom: 0;
    background: #111111;
    cursor: default;
  }

  .branding-main {
    grid-template-columns: 1fr;
    height: auto;
  }

  .branding-media {
    min-height: 360px;
  }

  .branding-text {
    padding: 56px 28px 64px;
  }

  .branding-video-shell {
    padding: 28px;
  }

  .template-site {
    padding-top: 0;
  }

  .branding-page .template-site,
  .web-design-page .template-site,
  .graphic-design-page .template-site,
  .motion-graphics-page .template-site,
  .fashion-beauty-page .template-site,
  .exhibition-page .template-site {
    padding-top: var(--mobile-menu-top);
  }

  .portfolio-index-page .site {
    padding-top: var(--mobile-menu-top);
  }

  .template-media-section {
    padding: 28px;
  }

  .exhibition-page .exhibition-section02 {
    padding: 28px;
  }

  .web-design-page .template-media-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .fashion-beauty-page .template-media-section,
  .fashion-beauty-page .template-photo-marquee,
  .fashion-beauty-page .template-sticky-scroll-section,
  .fashion-beauty-page .template-full-image-section,
  .fashion-beauty-page .template-text-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .web-design-page .web-design-no-divider {
    padding-bottom: 28px;
    border-bottom: 0;
  }

  .branding-detail-page .branding-old-no-divider {
    padding-bottom: 28px;
    border-bottom: 0;
  }

  .web-design-tight-section {
    padding-top: 0;
  }

  .branding-detail-page .branding-old-tight-section {
    padding-top: 0;
  }

  .web-design-no-divider + .web-design-tight-section[aria-label*="image"] {
    margin-top: -8px;
    padding-top: 0;
  }

  .branding-detail-page .branding-old-no-divider + .branding-old-tight-section {
    margin-top: -8px;
    padding-top: 0;
  }

  .web-design-page .web-design-tight-section,
  .web-design-page .web-design-no-divider + .web-design-tight-section[aria-label*="image"] {
    margin-top: 0;
    padding-top: 40px;
  }

  .web-design-page .web-design-no-divider + .web-design-tight-section,
  .web-design-page .web-design-no-divider + .web-design-tight-section[aria-label*="image"] {
    margin-top: -8px;
    padding-top: 0;
  }

  .template-split-media {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .exhibition-page .exhibition-section04 > .template-split-media + .template-media-frame,
  .exhibition-page .exhibition-section04 > .template-media-frame + .template-split-media {
    margin-top: 28px;
  }

  .exhibition-page .exhibition-section05-stack > .template-media-frame + .template-split-media,
  .exhibition-page .exhibition-section05-stack > .template-media-frame + .template-media-frame,
  .exhibition-page .exhibition-section05-stack > .template-split-media + .template-split-media {
    margin-top: 28px;
  }

  .web-design-image-pair {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .web-design-image-frame--small,
  .web-design-image-pair__frame--small {
    width: 70%;
  }

  .web-design-image-pair__frame--medium {
    width: 90%;
  }

  .template-video-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .template-video-tiles + .template-media-frame {
    margin-top: 28px;
  }

  .template-portrait-video {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .template-text-section {
    padding: 72px 28px;
  }

  .template-text-section--large {
    padding-right: clamp(24px, 3.4vw, 40px);
    padding-left: clamp(24px, 3.4vw, 40px);
  }

  .branding-page .branding-section-copy.template-text-section--large,
  .branding-detail-page .branding-section-copy.template-text-section--large {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .branding-index-nav,
  .branding-local-nav {
    padding-right: 40px;
    padding-left: 40px;
  }

  .branding-local-nav {
    padding-top: 50px;
  }

  .branding-index-grid,
  .branding-local-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .template-text-heading {
    margin-bottom: 40pt;
    font-size: 18pt;
  }

  .template-text-section--two-column .template-text-heading {
    margin-bottom: 32px;
  }

  .template-text-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .template-text-section p {
    font-size: 14px;
    line-height: 2;
  }

  .template-text-section--large .template-text-inner > p {
    font-size: 24px;
    line-height: 48px;
  }

  .template-text-section--large .template-text-inner > p:first-child {
    font-size: 24px;
    line-height: 32px;
  }

  .branding-section-copy.template-text-section--large .template-text-inner > p:not(:first-child) {
    font-size: 24px;
    line-height: 48px;
  }

  .branding-page .branding-section-copy.template-text-section--large .template-text-inner > p + p,
  .branding-detail-page .branding-section-copy.template-text-section--large .template-text-inner > p + p,
  .exhibition-page .exhibition-section13-copy.template-text-section--large .template-text-inner > p + p {
    margin-top: 14px;
  }

  .template-sticky-scroll-section {
    padding: 28px;
  }

  .template-sticky-scroll-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .template-sticky-text {
    position: relative;
    top: auto;
    min-height: 0;
    margin-top: 0;
    display: block;
  }

  .template-sticky-text .work-copy {
    font-size: 14px;
    line-height: 1.8;
  }

  .template-scroll-media-column {
    gap: 28px;
  }

  .work-spacer {
    height: 240px;
  }

  .pink-spacer {
    padding-top: 110px;
    padding-bottom: 200px;
  }

  .falling-set {
    top: -100px;
    --falling-content-y: -40px;
  }

  .drop-figure {
    top: 50%;
    width: min(520px, 86vw);
  }

  .falling-set.is-after {
    top: var(--falling-after-top, -60px);
    bottom: auto;
  }

  .card-prop {
    left: 7vw;
    top: 14vh;
    width: 88px;
  }

  .clock-prop {
    right: 4vw;
    top: 18vh;
    width: 86px;
  }

  .hat-prop {
    right: 14vw;
    top: 36vh;
    width: 76px;
  }

  .rabbit-prop {
    right: 9vw;
    top: 40vh;
    width: 126px;
  }

  .drop-video {
    margin-top: 160px;
    width: 100vw;
  }

  .drop-video-desktop {
    display: none;
  }

  .drop-video-mobile {
    display: block;
  }

  .content-media {
    min-height: 360px;
  }

  .vimeo-video iframe,
  .vimeo-video video {
    width: max(100%, calc(360px * 16 / 9));
    height: max(100%, calc(100vw * 9 / 16));
  }

  .vimeo-video--contain iframe,
  .vimeo-video--contain video {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    transform: none;
  }

  .hero .vimeo-video iframe {
    left: 50%;
    top: 50%;
    width: calc(100vw * 256 / 81);
    height: calc(100vw * 16 / 9);
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
  }

  .hero .vimeo-video video.home-hero-mobile-video {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
    transform: none;
  }

  .explanation {
    padding: 56px 28px 0;
  }

  .feature-card .explanation {
    padding-top: 32px;
  }

  .template-feature .explanation {
    padding-bottom: 32px;
  }

  .web-design-page .template-feature .explanation {
    padding-bottom: 40px;
  }

  .fashion-beauty-page .template-feature .explanation {
    padding-bottom: 40px;
  }

  .feature-card .more-link {
    position: static;
    justify-self: stretch;
    width: auto;
    margin: 34px 28px 112px;
    padding: 18px 0;
    border: 1px solid #ffffff;
    text-align: center;
  }

  .more-link::after,
  .feature-card:hover .more-link::after {
    transform: none;
    content: none;
  }

  .feature-card:hover::after {
    border-width: 0;
  }

  .work-copy {
    width: 100%;
    font-size: 14px;
  }

  .feature-card .explanation .work-copy {
    font-size: 14px;
    line-height: 1.8;
  }

  .visual {
    height: 180px;
  }

  .stack-panel {
    position: relative;
    top: auto;
    transform: none !important;
  }

  .stack-panel + .stack-panel,
  .stack-panel-2 + .stack-panel-3 {
    margin-top: 0;
  }

  .stack-scene,
  .stack-viewport {
    height: auto;
    min-height: 0;
    overflow: visible;
  }
}

@media (max-width: 560px) {
  :root {
    --mobile-menu-edge: 18px;
  }

  .header {
    left: 18px;
    right: 18px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 144px;
  }

  .menu span {
    display: none;
  }

  .about {
    padding-inline: 18px;
  }

  .day-future-about {
    padding-right: 18px;
    padding-left: 18px;
  }

  .profile-title {
    padding-right: 96px;
    font-size: clamp(28px, 7.4vw, 36px);
  }

  .socials {
    margin-top: 0;
    margin-bottom: 2px;
  }

  .history {
    margin-top: 32px;
  }

  .photo-marquee-item {
    width: 70.2vw;
  }

  .content-media {
    min-height: 280px;
  }

  .top-portfolio-height-keeper {
    height: 3000px;
    margin-top: -200px;
  }

  .branding-media {
    min-height: 280px;
  }

  .branding-video-shell {
    padding: 18px;
  }

  .template-site {
    padding-top: 0;
  }

  .template-media-section {
    padding: 18px;
  }

  .exhibition-page .exhibition-section02 {
    padding: 18px;
  }

  .web-design-page .template-media-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .fashion-beauty-page .template-media-section,
  .fashion-beauty-page .template-photo-marquee,
  .fashion-beauty-page .template-sticky-scroll-section,
  .fashion-beauty-page .template-full-image-section,
  .fashion-beauty-page .template-text-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .web-design-page .web-design-no-divider {
    padding-bottom: 18px;
    border-bottom: 0;
  }

  .branding-detail-page .branding-old-no-divider {
    padding-bottom: 18px;
    border-bottom: 0;
  }

  .web-design-tight-section {
    padding-top: 0;
  }

  .branding-detail-page .branding-old-tight-section {
    padding-top: 0;
  }

  .web-design-no-divider + .web-design-tight-section[aria-label*="image"] {
    margin-top: 0;
    padding-top: 2px;
  }

  .branding-detail-page .branding-old-no-divider + .branding-old-tight-section {
    margin-top: 0;
    padding-top: 2px;
  }

  .web-design-page .web-design-tight-section,
  .web-design-page .web-design-no-divider + .web-design-tight-section[aria-label*="image"] {
    margin-top: 0;
    padding-top: 40px;
  }

  .web-design-page .web-design-no-divider + .web-design-tight-section,
  .web-design-page .web-design-no-divider + .web-design-tight-section[aria-label*="image"] {
    margin-top: 0;
    padding-top: 2px;
  }

  .template-split-media {
    gap: 18px;
  }

  .exhibition-page .exhibition-section04 > .template-split-media + .template-media-frame,
  .exhibition-page .exhibition-section04 > .template-media-frame + .template-split-media {
    margin-top: 18px;
  }

  .exhibition-page .exhibition-section05-stack > .template-media-frame + .template-split-media,
  .exhibition-page .exhibition-section05-stack > .template-media-frame + .template-media-frame,
  .exhibition-page .exhibition-section05-stack > .template-split-media + .template-split-media {
    margin-top: 18px;
  }

  .template-video-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .template-video-tiles + .template-media-frame {
    margin-top: 18px;
  }

  .template-portrait-video {
    gap: 18px;
  }

  .template-text-section {
    padding: 64px 18px;
  }

  .template-text-section--large {
    padding-right: 28px;
    padding-left: 28px;
  }

  .branding-page .branding-section-copy.template-text-section--large,
  .branding-detail-page .branding-section-copy.template-text-section--large {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .branding-index-nav {
    padding: 56px 18px 72px;
  }

  .branding-local-nav {
    padding: 4px 18px 18px;
  }

  .branding-local-nav.is-mobile-fixed-source {
    position: relative;
    top: auto;
  }

  .branding-local-nav.is-mobile-fixed-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--branding-mobile-fixed-top, 72px);
    z-index: 80;
  }

  .branding-detail-content {
    transition:
      opacity 0.92s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.92s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .branding-detail-content.is-switching {
    transform: translate3d(0, 4px, 0);
  }

  .branding-local-nav::after {
    display: none;
  }

  .branding-local-list {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    margin-right: -18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .branding-local-list::-webkit-scrollbar {
    display: none;
  }

  .branding-local-item {
    flex: 0 0 calc(60% - 30px);
    scroll-snap-align: start;
  }

  .branding-local-item:last-child {
    margin-right: calc(100vw - 211px);
  }

  .branding-index-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .branding-local-title,
  .branding-index-title {
    font-size: 16px;
  }

  .branding-local-copy,
  .branding-index-copy {
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: 0;
  }

  .branding-local-line {
    display: none;
  }

  .template-text-section--large .template-text-inner > p,
  .branding-section-copy.template-text-section--large .template-text-inner > p:not(:first-child) {
    font-size: 16px;
    line-height: 32px;
  }

  .template-text-section--large .template-text-inner > p:first-child,
  .branding-section-copy.template-text-section--large .template-text-inner > p:first-child {
    font-size: 16px;
    line-height: 24px;
  }

  .section13-mobile-break {
    display: inline;
  }

  .template-text-section--large .template-text-inner > p + p,
  .branding-section-copy.template-text-section--large .template-text-inner > p + p {
    margin-top: 28px;
  }

  .branding-page .branding-section-copy.template-text-section--large .template-text-inner > p + p,
  .branding-detail-page .branding-section-copy.template-text-section--large .template-text-inner > p + p,
  .exhibition-page .exhibition-section13-copy.template-text-section--large .template-text-inner > p + p {
    margin-top: 14px;
  }

  .template-text-section--two-column .template-text-heading {
    margin-bottom: 28px;
  }

  .template-text-columns {
    gap: 24px;
  }

  .template-sticky-scroll-section {
    padding: 64px 28px 72px;
    margin-bottom: 0;
  }

  .template-sticky-scroll-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .template-sticky-text {
    margin-top: 0;
    display: contents;
  }

  .template-sticky-scroll-section .template-sticky-text .work-title {
    order: 1;
    margin-bottom: 0;
    opacity: 1 !important;
    transform: none !important;
  }

  .template-sticky-scroll-inner > .template-scroll-media-column {
    order: 2;
    width: 100%;
  }

  .template-sticky-scroll-section .template-sticky-text .work-copy {
    order: 3;
    opacity: 1 !important;
    transform: none !important;
  }

  .template-sticky-scroll-section .template-sticky-text .work-copy {
    font-size: 16px;
    line-height: 32px;
  }

  .branding-page .branding-section-copy.template-text-section--large .template-text-inner > p,
  .branding-detail-page .branding-section-copy.template-text-section--large .template-text-inner > p,
  .exhibition-page .branding-section-copy.template-text-section--large .template-text-inner > p,
  .branding-page .template-sticky-scroll-section .template-sticky-text .work-copy,
  .branding-detail-page .template-sticky-scroll-section .template-sticky-text .work-copy,
  .fashion-beauty-page .template-sticky-scroll-section .template-sticky-text .work-copy,
  .exhibition-page .template-sticky-scroll-section .template-sticky-text .work-copy {
    font-size: 14px;
    line-height: 1.8;
  }

  .branding-page .branding-section-copy.template-text-section--large .template-text-inner > p:first-child,
  .branding-detail-page .branding-section-copy.template-text-section--large .template-text-inner > p:first-child {
    font-size: 16px;
  }

  .template-scroll-media-column {
    gap: 18px;
  }

  .template-scroll-media-column--mobile-fade {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--black);
  }

  .template-scroll-media-column--mobile-fade .template-scroll-media-frame {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    opacity: 0;
    transform: scale(1.08);
    animation: templateFadeCrossfade 30s ease-in-out infinite;
    will-change: opacity, transform;
  }

  .template-scroll-media-column--mobile-fade .template-media-image,
  .template-scroll-media-column--mobile-fade .template-media-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .template-scroll-media-column--mobile-fade .template-scroll-media-frame:nth-child(1) {
    opacity: 1;
  }

  .template-scroll-media-column--mobile-fade .template-scroll-media-frame:nth-child(2) {
    animation-delay: 5s;
  }

  .template-scroll-media-column--mobile-fade .template-scroll-media-frame:nth-child(3) {
    animation-delay: 10s;
  }

  .template-scroll-media-column--mobile-fade .template-scroll-media-frame:nth-child(5) {
    animation-delay: 15s;
  }

  .template-scroll-media-column--mobile-fade .template-scroll-media-frame:nth-child(6) {
    animation-delay: 20s;
  }

  .template-scroll-media-column--mobile-fade .template-scroll-media-frame:nth-child(7) {
    animation-delay: 25s;
  }

  .template-scroll-media-column--branding-fade .template-scroll-media-frame {
    animation-duration: 45s;
  }

  .template-scroll-media-column--branding-fade .template-scroll-media-frame:nth-child(4) {
    animation-delay: 15s;
  }

  .template-scroll-media-column--branding-fade .template-scroll-media-frame:nth-child(5) {
    animation-delay: 20s;
  }

  .template-scroll-media-column--branding-fade .template-scroll-media-frame:nth-child(6) {
    animation-delay: 25s;
  }

  .template-scroll-media-column--branding-fade .template-scroll-media-frame:nth-child(7) {
    animation-delay: 30s;
  }

  .template-scroll-media-column--branding-fade .template-scroll-media-frame:nth-child(8) {
    animation-delay: 35s;
  }

  .template-scroll-media-column--branding-fade .template-scroll-media-frame:nth-child(9) {
    animation-delay: 40s;
  }

  .template-scroll-media-column--six .template-scroll-media-frame {
    animation-duration: 30s;
  }

  .template-scroll-media-column--six .template-scroll-media-frame:nth-child(4) {
    animation-delay: 15s;
  }

  .template-scroll-media-column--six .template-scroll-media-frame:nth-child(5) {
    animation-delay: 20s;
  }

  .template-scroll-media-column--six .template-scroll-media-frame:nth-child(6) {
    animation-delay: 25s;
  }

  .template-scroll-media-column--video-sequence .template-scroll-media-frame {
    animation: none;
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.72s ease;
  }

  .template-scroll-media-column--vimeo-sequence .template-scroll-media-frame {
    animation: none;
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.72s ease;
  }

  .template-scroll-media-column--video-sequence,
  .template-scroll-media-column--vimeo-sequence {
    aspect-ratio: auto;
    height: calc((100vw - 56px) * 0.5625 + 44px);
    background: transparent;
  }

  .template-scroll-media-column--video-sequence .template-scroll-media-frame,
  .template-scroll-media-column--vimeo-sequence .template-scroll-media-frame {
    background: transparent;
  }

  .template-scroll-media-column--video-sequence .template-media-image,
  .template-scroll-media-column--video-sequence .template-media-video,
  .template-scroll-media-column--vimeo-sequence .template-media-image,
  .template-scroll-media-column--vimeo-sequence .template-media-video {
    bottom: 44px;
    height: calc(100% - 44px);
  }

  .template-scroll-media-column--vimeo-sequence .template-scroll-media-frame > div {
    position: absolute !important;
    inset: 0 0 44px;
    width: 100%;
    height: auto;
  }

  .template-scroll-media-column--video-sequence .template-scroll-media-caption,
  .template-scroll-media-column--vimeo-sequence .template-scroll-media-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
    text-align: left;
  }

  .template-scroll-media-column--video-sequence.is-sequence-ready .template-scroll-media-frame:nth-child(1):not(.is-sequence-active) {
    opacity: 0;
  }

  .template-scroll-media-column--vimeo-sequence.is-sequence-ready .template-scroll-media-frame:nth-child(1):not(.is-sequence-active) {
    opacity: 0;
  }

  .template-scroll-media-column--video-sequence:not(.is-sequence-ready) .template-scroll-media-frame:first-child,
  .template-scroll-media-column--video-sequence .template-scroll-media-frame.is-sequence-active {
    opacity: 1;
  }

  .template-scroll-media-column--vimeo-sequence:not(.is-sequence-ready) .template-scroll-media-frame:first-child,
  .template-scroll-media-column--vimeo-sequence .template-scroll-media-frame.is-sequence-active {
    opacity: 1;
  }

  .template-scroll-media-column--mobile-fade .template-scroll-media-frame--mobile-hidden {
    display: none;
  }

  .vimeo-video iframe,
  .vimeo-video video {
    width: max(100%, calc(280px * 16 / 9));
    height: max(100%, calc(100vw * 9 / 16));
  }

  .vimeo-video--contain iframe,
  .vimeo-video--contain video {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    transform: none;
  }

  .stack-panel {
    position: relative;
    top: auto;
    transform: none !important;
  }

  .stack-panel + .stack-panel {
    margin-top: 0;
  }

  .stack-scene,
  .stack-viewport {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .work-title {
    font-size: 48px;
    letter-spacing: -2px;
  }
}

.portfolio-detail {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
}

.portfolio-detail .background {
  position: fixed;
  inset: 0;
  bottom: 0;
  height: 100vh;
  opacity: 1;
}

.portfolio-detail .pattern {
  height: 100%;
}

.portfolio-detail .base,
.portfolio-detail .hue {
  display: none;
}

.portfolio-detail-main {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 44vw);
  background: rgba(17, 17, 17, 0.92);
}

.portfolio-detail-media {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

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

.portfolio-detail-text {
  display: flex;
  align-items: center;
  padding: clamp(48px, 7vw, 120px);
}

.back-link {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--white);
  font-family: var(--display);
  font-size: 20px;
  text-decoration: none;
}

.back-link::before {
  content: "← ";
}

@media (max-width: 900px) {
  .portfolio-detail-main {
    grid-template-columns: 1fr;
  }

  .portfolio-detail-media {
    min-height: 56vw;
  }

  .portfolio-detail-text {
    padding: 40px 24px 80px;
  }
}

.notfound-page {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: #000;
}

.notfound2-page .header {
  display: none !important;
}

.notfound-time-page.is-notfound-day .header {
  display: none !important;
}

.notfound-main {
  --notfound-bg-width: max(calc(720px * 2.9296875), calc(100vw + 1200px));
  --notfound-stage-height: 2000px;
  position: relative;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  min-height: 0;
  overflow: hidden;
}

@supports (height: 100svh) {
  .notfound-main {
    height: 100svh;
  }
}

@media (min-width: 901px) {
  .notfound-page:not(.notfound3-page) .notfound-main {
    --notfound-stage-height: 1600px;
  }
}

.notfound-main::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.3);
}

.notfound-light-layer {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: max(calc(100vh * 2.9296875), calc(100vw + 1200px));
  height: 100vh;
  pointer-events: none;
  transform: translate3d(calc(-50% + var(--notfound-bg-x, 0px)), var(--notfound-bg-y, 0), 0);
  transition: transform 0.16s ease-out;
  will-change: transform;
}

.notfound-stage {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: calc(var(--notfound-stage-height) * 2.9296875);
  height: var(--notfound-stage-height);
  pointer-events: none;
  transform: translate3d(calc(-50% + var(--notfound-bg-x, 0px)), calc(-50% + var(--notfound-bg-y, 0)), 0);
  transition: transform 0.16s ease-out;
  will-change: transform;
}

.notfound-stage .notfound-bg,
.notfound-stage .notfound-light-layer {
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
}

.notfound-stage .notfound-bg {
  object-fit: fill;
}

.notfound-binocular-page .header {
  z-index: 40;
  justify-content: flex-start;
  border-bottom: 0;
  background: transparent;
}

.notfound-binocular-page .menu {
  display: none;
}

.notfound-binocular-page .notfound-main {
  background: #000;
  isolation: isolate;
}

.notfound-binocular-page .notfound-main::after {
  display: none;
}

.notfound-binocular-page .notfound-main::before {
  content: "";
  position: absolute;
  z-index: 34;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.notfound-binocular-page .header,
.notfound-binocular-content,
.notfound-binocular-message,
.notfound-binocular-mask {
  opacity: 0;
  transition: opacity 0.55s ease;
}

.notfound-binocular-page.is-notfound-binocular-ready .header,
.notfound-binocular-page.is-notfound-binocular-ready .notfound-main::before,
.notfound-binocular-page.is-notfound-binocular-ready .notfound-binocular-content,
.notfound-binocular-page.is-notfound-binocular-ready .notfound-binocular-message,
.notfound-binocular-page.is-notfound-binocular-ready .notfound-binocular-mask {
  opacity: 1;
}

.notfound-binocular-content,
.notfound-binocular-video,
.notfound-binocular-props,
.notfound-binocular-mask {
  position: absolute;
  inset: 0;
}

.notfound-binocular-content {
  z-index: 1;
  overflow: hidden;
  background: #000;
}

.notfound-binocular-video {
  z-index: 1;
  transform: scale(var(--notfound-video-scale, 1.1));
  transform-origin: 50% 50%;
}

.notfound-binocular-video iframe,
.notfound-binocular-video-image {
  filter: saturate(1.06) contrast(1.04);
}

.notfound-binocular-video-image {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: max(100%, calc(100vh * 16 / 9));
  height: max(100%, calc(100vw * 9 / 16));
  min-width: 100%;
  min-height: 100%;
  border: 0;
  margin: 0;
  object-fit: cover;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@media (min-width: 901px) {
  .notfound-binocular-video iframe,
  .notfound-binocular-video-image {
    width: 100vw;
    height: 56.25vw;
    min-width: 0;
    min-height: 0;
  }
}

.notfound-binocular-props {
  --notfound-props-shift-x: -80px;
  --notfound-props-shift-y: 0px;
  z-index: 3;
  pointer-events: none;
  transform: translate3d(calc(var(--notfound-bg-x, 0px) + var(--notfound-props-shift-x)), var(--notfound-props-shift-y), 0);
  transition: transform 0.16s ease-out;
  will-change: transform;
}

.notfound-binocular-prop {
  position: absolute;
  display: block;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.notfound-binocular-girl {
  left: 58%;
  top: calc(45% - 100px);
  width: clamp(360px, 34vw, 680px);
  transform: translate(-50%, -50%);
}

.notfound-binocular-rabbit {
  left: 78%;
  top: 42%;
  width: clamp(120px, 12vw, 230px);
  transform: translate(calc(-50% + 60px), -50%);
}

.notfound-binocular-hat {
  left: 92%;
  top: 31%;
  width: clamp(78px, 7vw, 140px);
  transform: translate(-50%, -50%) rotate(-12deg);
}

.notfound-binocular-clock {
  left: 86%;
  top: 24%;
  width: clamp(80px, 7.5vw, 150px);
  transform: translate(-50%, -50%) rotate(5deg);
}

.notfound-binocular-card {
  width: clamp(72px, 7vw, 140px);
}

.notfound-binocular-card-01 {
  left: 30%;
  top: 37%;
  transform: rotate(-10deg);
}

.notfound-binocular-message {
  position: absolute;
  z-index: 35;
  left: 50%;
  top: calc(45% - 50px + clamp(101px, 9.54vw, 191px));
  width: min(980px, calc(100vw - 48px));
  color: #fff;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.notfound-binocular-title {
  margin: 0;
  font-size: 60px;
}

.notfound-binocular-copy {
  margin: 14px 0 0;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.16;
}

.notfound-binocular-actions {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  pointer-events: auto;
}

.notfound-binocular-main.is-another-world-complete .notfound-binocular-actions {
  display: inline-flex;
}

.notfound-binocular-main.is-another-world-complete .notfound-binocular-another {
  display: none;
}

.notfound-binocular-home,
.notfound-binocular-another {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(26.3px, calc(2.26vw - 8px), 34.3px);
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease;
  pointer-events: auto;
  cursor: pointer;
}

.notfound-binocular-another {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

.notfound-binocular-home:focus-visible,
.notfound-binocular-another:focus-visible {
  outline: none;
  border-color: #ff5ab5;
  color: #ff5ab5;
}

@media (hover: hover) {
  .notfound-binocular-home:hover,
  .notfound-binocular-another:hover {
    border-color: #ff5ab5;
    color: #ff5ab5;
  }
}

.notfound-binocular-mask {
  z-index: 30;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.notfound-binocular-main[data-notfound-binocular-variant="b"] .notfound-binocular-props {
  transform: translate3d(calc(var(--notfound-bg-x, 0px) + var(--notfound-props-shift-x) - 5vw), calc(var(--notfound-props-shift-y) + 2vh), 0) scale(1.06);
}

.notfound-binocular-main[data-notfound-binocular-variant="c"] .notfound-binocular-props {
  transform: translate3d(calc(var(--notfound-bg-x, 0px) + var(--notfound-props-shift-x) + 4vw), calc(var(--notfound-props-shift-y) - 3vh), 0) scale(0.94);
}

.notfound-binocular-main[data-notfound-binocular-variant="d"] .notfound-binocular-girl {
  left: 58%;
  top: 43%;
  width: clamp(380px, 36vw, 700px);
}

.notfound-binocular-main[data-notfound-binocular-variant="d"] .notfound-binocular-rabbit {
  left: 78%;
  top: 35%;
}

.notfound-binocular-main[data-notfound-binocular-variant="e"] .notfound-binocular-girl {
  left: 58%;
  top: 45%;
  width: clamp(350px, 33vw, 640px);
}

.notfound-binocular-main[data-notfound-binocular-variant="e"] .notfound-binocular-hat {
  left: 80%;
  top: 30%;
}

.notfound-binocular-main[data-notfound-binocular-variant="f"] .notfound-binocular-props {
  transform: translate3d(calc(var(--notfound-bg-x, 0px) + var(--notfound-props-shift-x) + 2vw), calc(var(--notfound-props-shift-y) + 4vh), 0) scale(1.12);
}

.notfound-random-page .notfound-random-visual-3 {
  display: none;
}

.notfound-random-page.is-notfound3-visual .notfound-random-visual-2 {
  display: none;
}

.notfound-random-page.is-notfound3-visual .notfound-random-visual-3 {
  display: block;
}

.notfound-time-visual-day,
.notfound-time-page.is-notfound-day .notfound-time-visual-night {
  display: none;
}

.notfound-time-page.is-notfound-day .notfound-time-visual-day {
  display: block;
}

.notfound-time-page.is-notfound-day .notfound2-gate {
  display: block;
}

.notfound-time-page.is-notfound-day {
  min-height: 100vh;
}

.home-entry-gate {
  position: fixed;
  z-index: 1800;
  inset: 0;
  display: none;
  background: #111;
}

.home-entry-gate[aria-hidden="false"] {
  display: grid;
}

body.is-home-entry-visible {
  overflow: hidden;
}

@media (max-width: 900px) {
  body.is-home-entry-visible {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overscroll-behavior: none;
    touch-action: none;
  }

  body.is-home-entry-visible .home-entry-gate {
    overscroll-behavior: contain;
    touch-action: none;
  }
}

body.is-home-entry-visible::before {
  content: "";
  position: fixed;
  z-index: 1790;
  inset: 0;
  pointer-events: none;
  background: #111;
}

body.is-home-entry-visible .home-entry-gate {
  pointer-events: auto;
}

body.is-home-entry-preloading .home-entry-gate > * {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden;
}

.home-entry-gate .notfound-time-visual-day {
  display: none;
}

body.is-home-entry-day .home-entry-gate .notfound-time-visual-night,
body.is-home-entry-night .home-entry-gate .notfound-time-visual-day {
  display: none !important;
}

body.is-home-entry-day .home-entry-gate .notfound-time-visual-day {
  display: block;
}

body.is-home-entry-day .home-entry-gate .notfound2-gate {
  display: block;
}

body.is-home-entry-day .home-entry-gate .notfound-ceiling-light,
body.is-home-entry-day .home-entry-gate .notfound-vertical-light-right {
  display: none;
}

body.is-home-entry-day .home-entry-gate .notfound-vertical-light-left {
  animation-name: notfound2DimVerticalLightFlicker;
}

body.is-home-entry-day .home-entry-gate .notfound-vertical-light-right-front {
  animation-name: notfound2DimFrontBlueLightFlicker;
}

body.is-home-entry-day .home-entry-gate .notfound-rabbit {
  left: calc(44.5vw + 40px);
  bottom: 141px;
  width: 89px;
}

body.is-home-entry-night .home-entry-gate .notfound-rabbit {
  left: calc(44.5vw + 40px);
  bottom: 141px;
  width: 133px;
}

body.is-home-entry-day .home-entry-gate .notfound-rabbit.notfound-time-visual-day {
  display: block;
}

body.is-home-entry-day-future .home-entry-gate .notfound-rabbit {
  display: none !important;
}

.home-entry-gate .notfound-girl {
  display: none;
}

.home-entry-gate .notfound-time-debug {
  display: none;
}

body.is-home-entry-visible .home-entry-gate .notfound-time-debug,
body.is-home-entry-debug .home-entry-gate .notfound-time-debug {
  display: inline-flex;
}

@media (min-width: 901px) {
  .home-entry-gate.notfound-main {
    --notfound-stage-height: max(100vh, 720px);
  }

  @supports (height: 100svh) {
    .home-entry-gate.notfound-main {
      --notfound-stage-height: max(100svh, 720px);
    }
  }
}

.fairytale-mirage {
  position: fixed;
  z-index: 9000;
  inset: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

.fairytale-mirage.is-active {
  visibility: visible;
  opacity: 1;
}

.fairytale-mirage::before,
.fairytale-mirage::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.fairytale-mirage::before {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, rgba(255, 255, 255, 0) 1px 6px),
    linear-gradient(90deg, rgba(255, 0, 170, 0.18), rgba(0, 210, 255, 0.14));
  animation: fairytaleMirageScan 0.18s steps(2, end) infinite;
}

.fairytale-mirage::after {
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.04) 48%, rgba(0, 0, 0, 0.1));
}

.fairytale-mirage.is-showing-mirage::before {
  opacity: 0.65;
}

.fairytale-mirage.is-showing-mirage::after {
  opacity: 0.7;
}

.fairytale-mirage-eye {
  position: absolute;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 50%;
  pointer-events: none;
  background: #000000;
  transform: translate3d(0, 0, 0);
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.fairytale-mirage-eye::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 72px;
  pointer-events: none;
}

.fairytale-mirage-eye-top {
  top: 0;
  transform: translate3d(0, -100%, 0);
}

.fairytale-mirage-eye-top::after {
  bottom: -72px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0));
}

.fairytale-mirage-eye-bottom {
  bottom: 0;
  transform: translate3d(0, 100%, 0);
}

.fairytale-mirage-eye-bottom::after {
  top: -72px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0));
}

.fairytale-mirage.is-eye-open-50 .fairytale-mirage-eye-top {
  transform: translate3d(0, -50%, 0);
}

.fairytale-mirage.is-eye-open-50 .fairytale-mirage-eye-bottom {
  transform: translate3d(0, 50%, 0);
}

.fairytale-mirage.is-eye-open-80 .fairytale-mirage-eye-top {
  transform: translate3d(0, -80%, 0);
}

.fairytale-mirage.is-eye-open-80 .fairytale-mirage-eye-bottom {
  transform: translate3d(0, 80%, 0);
}

.fairytale-mirage.is-eye-open-100 .fairytale-mirage-eye-top {
  transform: translate3d(0, -100%, 0);
}

.fairytale-mirage.is-eye-open-100 .fairytale-mirage-eye-bottom {
  transform: translate3d(0, 100%, 0);
}

.fairytale-mirage.is-eyes-closed .fairytale-mirage-eye-top,
.fairytale-mirage.is-eyes-closed .fairytale-mirage-eye-bottom {
  transform: translate3d(0, 0, 0);
}

.fairytale-mirage-frame {
  position: absolute;
  z-index: 1;
  inset: -2.5vh -2.5vw;
  width: 105vw;
  height: 105vh;
  border: 0;
  opacity: 0;
  filter: blur(1.4px) saturate(1.35) contrast(1.08);
  transform: translate3d(0, 0, 0) scale(1.03);
  transform-origin: center;
  transition: opacity 0.18s linear;
}

.fairytale-mirage.is-showing-mirage .fairytale-mirage-frame {
  opacity: 1;
}

.fairytale-mirage.is-flicker .fairytale-mirage-frame {
  animation: fairytaleMirageFrameFinalFlicker 1.6s steps(1, end) both;
}

@media (max-width: 900px) {
  .fairytale-mirage-frame {
    inset: 0;
    width: 100vw;
    height: 100vh;
    transform: none;
  }

  @supports (height: 100svh) {
    .fairytale-mirage-frame {
      height: 100svh;
    }
  }
}

.is-mirage-frame .notfound2-gate {
  display: none;
}

body.is-mirage-frame,
.is-mirage-frame .site,
.is-mirage-frame .notfound-main {
  background: #111111;
}

.is-mirage-frame .news-section,
.is-mirage-frame .site-footer {
  display: none !important;
}

.is-mirage-arrival .notfound2-gate {
  opacity: 0;
  transform: translate3d(var(--notfound-bg-x, 0px), calc(-50% + 18px), 0);
  animation: notfoundGateFadeIn 1.1s 0.2s ease-out forwards;
}

@media (min-width: 901px) {
  .is-mirage-arrival .notfound2-gate {
    transform: translate3d(0, calc(-50% + 18px), 0);
  }
}

.notfound3-page .notfound2-gate {
  opacity: 0;
  transform: translate3d(var(--notfound-bg-x, 0px), calc(-50% + 18px), 0);
  animation: notfoundGateFadeIn 1.1s 2s ease-out forwards;
}

@media (min-width: 901px) {
  .notfound3-page .notfound2-gate {
    transform: translate3d(0, calc(-50% + 18px), 0);
  }
}

.notfound3-page .notfound-stage {
  left: 0;
  transform: translate3d(min(var(--notfound-bg-x, 0px), 0px), calc(-50% + var(--notfound-bg-y, 0)), 0);
}

@media (min-width: 901px) {
  .notfound3-page .notfound-main {
    --notfound-stage-height: 1500px;
  }
}

.notfound-stage .notfound-ceiling-light {
  top: -8%;
  height: 34%;
}

.notfound-stage .notfound-vertical-light-left {
  top: 18.4%;
  height: 70%;
}

.notfound-stage .notfound-vertical-light-right {
  top: 41%;
  height: 39%;
}

.notfound-stage .notfound-vertical-light-right-front {
  top: 5%;
  height: 92%;
}

.notfound-ceiling-light,
.notfound-vertical-light {
  position: absolute;
  display: block;
  pointer-events: none;
  mix-blend-mode: screen;
}

.notfound-ceiling-light {
  top: -8vh;
  left: 50%;
  width: min(26vw, 460px);
  height: 34vh;
  background:
    radial-gradient(ellipse at center, rgba(255, 0, 190, 0.42) 0%, rgba(255, 0, 190, 0.2) 22%, rgba(255, 0, 190, 0) 68%),
    linear-gradient(90deg, rgba(255, 0, 190, 0) 0%, rgba(255, 108, 235, 0.55) 46%, rgba(255, 108, 235, 0.55) 54%, rgba(255, 0, 190, 0) 100%);
  opacity: 0.28;
  filter: blur(14px);
  transform: translateX(-50%);
  animation: notfoundLightFlicker 7.4s infinite;
}

.notfound-vertical-light {
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.32;
  animation: notfoundVerticalLightFlicker 8.9s 1.8s infinite;
}

.notfound-vertical-light-left {
  top: 18.4vh;
  left: 22.6%;
  width: min(3.1vw, 58px);
  height: 70vh;
  background:
    radial-gradient(ellipse at center, rgba(255, 38, 198, 0.6) 0%, rgba(255, 38, 198, 0.23) 42%, rgba(255, 38, 198, 0) 76%),
    linear-gradient(90deg, rgba(255, 0, 174, 0) 0%, rgba(255, 111, 224, 0.72) 47%, rgba(255, 111, 224, 0.72) 53%, rgba(255, 0, 174, 0) 100%);
  animation-delay: 0.7s;
}

.notfound-vertical-light-right {
  top: 41vh;
  left: 52.8%;
  width: min(4.2vw, 82px);
  height: 39vh;
  background:
    radial-gradient(ellipse at center, rgba(0, 128, 255, 0.5) 0%, rgba(0, 128, 255, 0.18) 38%, rgba(0, 128, 255, 0) 72%),
    linear-gradient(90deg, rgba(0, 111, 255, 0) 0%, rgba(41, 142, 255, 0.62) 47%, rgba(41, 142, 255, 0.62) 53%, rgba(0, 111, 255, 0) 100%);
}

@media (min-width: 901px) {
  .notfound-page:not(.notfound2-page):not(.notfound3-page) .notfound-vertical-light-right {
    left: calc(52.8% + 30px);
  }
}

.notfound-vertical-light-right-front {
  top: 5vh;
  left: 77.3%;
  width: min(3.4vw, 68px);
  height: 92vh;
  background:
    radial-gradient(ellipse at center, rgba(80, 180, 255, 0.34) 0%, rgba(0, 128, 255, 0.12) 38%, rgba(0, 128, 255, 0) 74%),
    linear-gradient(90deg, rgba(0, 111, 255, 0) 0%, rgba(98, 188, 255, 0.5) 47%, rgba(220, 246, 255, 0.58) 50%, rgba(98, 188, 255, 0.5) 53%, rgba(0, 111, 255, 0) 100%);
  opacity: 0.18;
  animation: notfoundFrontBlueLightFlicker 7.2s 0.9s infinite;
}

.notfound2-page .notfound-ceiling-light,
.notfound2-page .notfound-vertical-light-right {
  display: none;
}

.notfound-time-page.is-notfound-day .notfound-ceiling-light,
.notfound-time-page.is-notfound-day .notfound-vertical-light-right {
  display: none;
}

.notfound2-page .notfound-vertical-light-left {
  animation-name: notfound2DimVerticalLightFlicker;
}

.notfound-time-page.is-notfound-day .notfound-vertical-light-left {
  animation-name: notfound2DimVerticalLightFlicker;
}

.notfound2-page .notfound-vertical-light-right-front {
  animation-name: notfound2DimFrontBlueLightFlicker;
}

.notfound-time-page.is-notfound-day .notfound-vertical-light-right-front {
  animation-name: notfound2DimFrontBlueLightFlicker;
}

.notfound-bg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: block;
  width: var(--notfound-bg-width);
  max-width: none;
  height: auto;
  aspect-ratio: 3000 / 1024;
  transform: translate3d(calc(-50% + var(--notfound-bg-x, 0px)), calc(-50% + var(--notfound-bg-y, 0)), 0);
  transition: transform 0.16s ease-out;
}

@keyframes notfoundLightFlicker {
  0%,
  68%,
  74%,
  100% {
    opacity: 0.28;
  }

  69% {
    opacity: 0.08;
  }

  70% {
    opacity: 0.62;
  }

  71% {
    opacity: 0.14;
  }

  72% {
    opacity: 0.7;
  }
}

@keyframes notfoundVerticalLightFlicker {
  0%,
  57%,
  63%,
  100% {
    opacity: 0.34;
  }

  58% {
    opacity: 0.12;
  }

  59% {
    opacity: 0.66;
  }

  60% {
    opacity: 0.18;
  }

  61% {
    opacity: 0.72;
  }
}

@keyframes notfoundFrontBlueLightFlicker {
  0%,
  52%,
  60%,
  100% {
    opacity: 0.18;
  }

  53% {
    opacity: 0.06;
  }

  54% {
    opacity: 0.64;
  }

  55% {
    opacity: 0.12;
  }

  57% {
    opacity: 0.7;
  }
}

@keyframes notfound2DimVerticalLightFlicker {
  0%,
  57%,
  63%,
  100% {
    opacity: 0.102;
  }

  58% {
    opacity: 0.036;
  }

  59% {
    opacity: 0.198;
  }

  60% {
    opacity: 0.054;
  }

  61% {
    opacity: 0.216;
  }
}

@keyframes notfound2DimFrontBlueLightFlicker {
  0%,
  52%,
  60%,
  100% {
    opacity: 0.054;
  }

  53% {
    opacity: 0.018;
  }

  54% {
    opacity: 0.192;
  }

  55% {
    opacity: 0.036;
  }

  57% {
    opacity: 0.21;
  }
}

@keyframes fairytaleMirageApparition {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fairytaleMirageFinalFlicker {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fairytaleMirageEyeTop {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  11.6% {
    transform: translate3d(0, 0, 0);
  }
  15.1% {
    transform: translate3d(0, 0, 0);
  }
  26.7% {
    transform: translate3d(0, -100%, 0);
  }
  55.9% {
    transform: translate3d(0, -100%, 0);
  }
  67.5% {
    transform: translate3d(0, 0, 0);
  }
  71% {
    transform: translate3d(0, 0, 0);
  }
  82.6% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fairytaleMirageEyeBottom {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  11.6% {
    transform: translate3d(0, 0, 0);
  }
  15.1% {
    transform: translate3d(0, 0, 0);
  }
  26.7% {
    transform: translate3d(0, 100%, 0);
  }
  55.9% {
    transform: translate3d(0, 100%, 0);
  }
  67.5% {
    transform: translate3d(0, 0, 0);
  }
  71% {
    transform: translate3d(0, 0, 0);
  }
  82.6% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fairytaleMirageEyeTopFinal {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  11.6% {
    transform: translate3d(0, 0, 0);
  }
  15.1% {
    transform: translate3d(0, 0, 0);
  }
  26.7% {
    transform: translate3d(0, -100%, 0);
  }
  55.9% {
    transform: translate3d(0, -100%, 0);
  }
  67.5% {
    transform: translate3d(0, 0, 0);
  }
  71% {
    transform: translate3d(0, 0, 0);
  }
  82.6% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fairytaleMirageEyeBottomFinal {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  11.6% {
    transform: translate3d(0, 0, 0);
  }
  15.1% {
    transform: translate3d(0, 0, 0);
  }
  26.7% {
    transform: translate3d(0, 100%, 0);
  }
  55.9% {
    transform: translate3d(0, 100%, 0);
  }
  67.5% {
    transform: translate3d(0, 0, 0);
  }
  71% {
    transform: translate3d(0, 0, 0);
  }
  82.6% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fairytaleMirageRealityFade {
  0% {
    opacity: 0;
  }
  15.1% {
    opacity: 0;
  }
  15.2% {
    opacity: 0.34;
  }
  55.9% {
    opacity: 0.34;
  }
  67.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fairytaleMirageRealityFadeFinal {
  0% {
    opacity: 0;
  }
  15.1% {
    opacity: 0;
  }
  15.2% {
    opacity: 0.34;
  }
  55.9% {
    opacity: 0.34;
  }
  67.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fairytaleMirageFrameReveal {
  0% {
    opacity: 0;
  }
  15.1% {
    opacity: 0;
  }
  15.2% {
    opacity: 1;
  }
  55.9% {
    opacity: 1;
  }
  67.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fairytaleMirageFrameRevealFinal {
  0% {
    opacity: 0;
  }
  15.1% {
    opacity: 0;
  }
  15.2% {
    opacity: 1;
  }
  32% {
    opacity: 0.18;
  }
  36% {
    opacity: 1;
  }
  42% {
    opacity: 0.28;
  }
  47% {
    opacity: 0.95;
  }
  52% {
    opacity: 0.16;
  }
  55.9% {
    opacity: 1;
  }
  62% {
    opacity: 0.42;
  }
  67.5% {
    opacity: 1;
  }
  76% {
    opacity: 0.12;
  }
  82.6% {
    opacity: 1;
  }
  94% {
    opacity: 0.08;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fairytaleMirageFrameFinalFlicker {
  0%,
  16%,
  29%,
  41%,
  51%,
  60%,
  68%,
  75%,
  81%,
  86%,
  91%,
  96%,
  100% {
    opacity: 1;
  }

  8%,
  23%,
  35%,
  46%,
  56%,
  64%,
  72%,
  78%,
  84%,
  89%,
  94%,
  98% {
    opacity: 0.12;
  }
}

@keyframes fairytaleMirageShake {
  0% {
    transform: translate3d(-10px, 4px, 0) scale(1.03) skewX(-0.35deg);
  }
  18% {
    transform: translate3d(9px, -5px, 0) scale(1.035) skewX(0.42deg);
  }
  38% {
    transform: translate3d(-6px, 3px, 0) scale(1.03) skewX(-0.2deg);
  }
  58% {
    transform: translate3d(12px, -2px, 0) scale(1.038) skewX(0.32deg);
  }
  78% {
    transform: translate3d(-4px, 2px, 0) scale(1.032) skewX(-0.18deg);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1.03);
  }
}

@keyframes fairytaleMirageScan {
  0% {
    transform: translate3d(0, -5px, 0);
  }
  100% {
    transform: translate3d(0, 5px, 0);
  }
}

@keyframes notfoundGateFadeIn {
  0% {
    opacity: 0;
    transform: translate3d(var(--notfound-bg-x, 0px), calc(-50% + 18px), 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(var(--notfound-bg-x, 0px), -50%, 0);
  }
}

@media (min-width: 901px) {
  @keyframes notfoundGateFadeIn {
    0% {
      opacity: 0;
      transform: translate3d(0, calc(-50% + 18px), 0);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, -50%, 0);
    }
  }
}

.notfound-enter {
  position: absolute;
  z-index: 6;
  left: calc(51.4% - 30px);
  top: 51.6%;
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 22px;
  row-gap: 0;
  color: #fff;
  text-decoration: none;
  transform: translate3d(var(--notfound-bg-x, 0px), -50%, 0);
  transition: color 0.28s ease, transform 0.16s ease-out;
  will-change: transform;
}

.notfound-enter-arrow {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  display: block;
  width: 53px;
  aspect-ratio: 1 / 1;
  transform: rotate(0deg);
  transition: transform 0.38s ease;
  will-change: transform;
}

.notfound-enter-arrow-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.notfound-enter-arrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.28s ease;
}

.notfound-enter-arrow-over {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.notfound-enter-text {
  display: contents;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.55);
}

.notfound-enter-text span {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  font-size: clamp(16.8px, 1.075vw, 20.6px);
}

.notfound-enter-title-break {
  display: none;
}

.notfound-enter-text strong {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
  position: relative;
  display: inline-block;
  width: max-content;
  font-size: 84px;
  font-weight: 700;
}

.notfound-enter-text strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  height: 0.055em;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.38s ease;
}

.notfound-enter:focus-visible {
  color: #ff5ab5;
  outline: none;
}

.notfound-enter:focus-visible .notfound-enter-arrow {
  transform: translateX(-14px) rotate(0deg);
}

.notfound-enter:focus-visible .notfound-enter-arrow-base {
  opacity: 0;
}

.notfound-enter:focus-visible .notfound-enter-arrow-over {
  opacity: 1;
}

.notfound-enter:focus-visible .notfound-enter-text strong::after {
  transform: scaleX(1);
}

.notfound2-gate {
  position: absolute;
  z-index: 6;
  left: calc(50% - 296px);
  top: 50%;
  width: min(960px, calc(100vw - 48px));
  color: #fff;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.72);
  transform: translate3d(var(--notfound-bg-x, 0px), -50%, 0);
  transition: transform 0.16s ease-out;
  will-change: transform;
}

.notfound2-page:not(.notfound-time-page) .notfound2-gate {
  display: none;
}

@media (min-width: 901px) {
  .notfound2-gate {
    transform: translate3d(0, -50%, 0);
  }

  .notfound2-gate-action-row {
    display: grid;
  }

  .notfound2-gate-action-row .notfound2-gate-actions {
    margin-top: 36px;
  }

  .notfound2-return-message {
    margin: 22px 0 0 calc(clamp(309px, 22.68vw, 327px) + 38px);
  }
}

.notfound2-gate-head {
  display: flex;
  align-items: center;
  column-gap: 38px;
}

.notfound2-gate-logo {
  display: grid;
  flex: 0 0 auto;
  row-gap: 4px;
  width: clamp(309px, 22.68vw, 327px);
  text-decoration: none;
}

.notfound2-gate-logo img {
  display: block;
  width: 100%;
  aspect-ratio: 218 / 24.86;
  height: auto;
  object-fit: fill;
}

.notfound2-gate-copy {
  display: grid;
  row-gap: 2px;
  white-space: nowrap;
}

.notfound2-gate-copy p,
.notfound2-gate-copy strong {
  margin: 0;
  line-height: 0.95;
}

.notfound2-gate-copy p {
  font-size: clamp(19.8px, 1.265vw, 24.2px);
}

.notfound2-gate-copy strong {
  font-size: clamp(37.4px, 2.695vw, 51.7px);
}

.notfound2-time-dash {
  position: relative;
  top: -2px;
}

.notfound2-return-message {
  display: none;
  row-gap: 4px;
  margin: 0;
  color: #fff;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.72);
}

body.is-home-entry-day-future.is-home-entry-day .home-entry-gate .notfound2-return-message {
  display: grid;
}

@media (min-width: 901px) {
  body.is-home-entry-day-future.is-home-entry-day .home-entry-gate .notfound2-return-message {
    align-self: start;
    grid-area: 1 / 1;
    margin: 22px 0 0 calc(clamp(309px, 22.68vw, 327px) + 38px);
  }

  body.is-home-entry-day-future.is-home-entry-day .home-entry-gate .notfound2-gate-actions {
    align-self: start;
    grid-area: 1 / 1;
    margin-top: 22px;
  }

  body.is-home-entry-day:not(.is-home-entry-day-future) .home-entry-gate .notfound2-gate-actions {
    justify-items: center;
    width: 100vw;
    margin-left: calc(296px - 50vw);
  }
}

.notfound2-return-message p {
  margin: 0;
}

.notfound2-return-message p:first-child {
  font-size: clamp(19.8px, 1.265vw, 24.2px);
}

.notfound2-return-message p:last-child {
  font-size: clamp(17.8px, 1.16vw, 22.2px);
  text-transform: none;
}

.notfound2-gate-actions {
  display: grid;
  justify-items: start;
  row-gap: 10px;
  margin-top: 36px;
}

.notfound2-future,
.notfound2-leave {
  color: #fff;
  text-decoration: none;
}

.notfound2-future {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 16px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(0, 0, 0, 0.2);
  font-size: clamp(34.3px, 2.26vw, 42.3px);
  line-height: 1;
  transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.notfound2-future-arrow {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 30px;
  height: 40px;
  margin-left: 18px;
  transition: transform 0.28s ease;
}

.notfound2-future-arrow img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.28s ease;
}

.notfound2-future-arrow-over {
  opacity: 0;
}

.notfound2-leave {
  font-size: clamp(27.3px, 1.53vw, 29.3px);
  line-height: 1;
  transition: color 0.28s ease;
}

@keyframes notfoundGateFadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.notfound-time-page .notfound-enter-arrow-frame,
.notfound-time-page .notfound-enter-text span,
.notfound-time-page .notfound-enter-text strong,
.notfound-time-page .notfound2-gate-logo,
.notfound-time-page .notfound2-gate-copy,
.notfound-time-page .notfound2-return-message,
.notfound-time-page .notfound2-gate-actions,
body.is-home-entry-ready .home-entry-gate .notfound-enter-arrow-frame,
body.is-home-entry-ready .home-entry-gate .notfound-enter-text span,
body.is-home-entry-ready .home-entry-gate .notfound-enter-text strong,
body.is-home-entry-ready .home-entry-gate .notfound2-gate-logo,
body.is-home-entry-ready .home-entry-gate .notfound2-gate-copy,
body.is-home-entry-ready .home-entry-gate .notfound2-return-message,
body.is-home-entry-ready .home-entry-gate .notfound2-gate-actions {
  opacity: 0;
  animation: notfoundGateFadeUp 0.82s cubic-bezier(0.2, 0.7, 0.18, 1) forwards;
  will-change: opacity, transform;
}

.notfound-time-page .notfound-enter-arrow-frame,
.notfound-time-page .notfound2-gate-logo,
body.is-home-entry-ready .home-entry-gate .notfound-enter-arrow-frame,
body.is-home-entry-ready .home-entry-gate .notfound2-gate-logo {
  animation-delay: 0.08s;
}

.notfound-time-page .notfound-enter-text span,
.notfound-time-page .notfound2-gate-copy,
body.is-home-entry-ready .home-entry-gate .notfound-enter-text span,
body.is-home-entry-ready .home-entry-gate .notfound2-gate-copy {
  animation-delay: 0.18s;
}

.notfound-time-page .notfound2-return-message,
body.is-home-entry-ready .home-entry-gate .notfound2-return-message {
  animation-delay: 0.24s;
}

.notfound-time-page .notfound-enter-text strong,
.notfound-time-page .notfound2-gate-actions,
body.is-home-entry-ready .home-entry-gate .notfound-enter-text strong,
body.is-home-entry-ready .home-entry-gate .notfound2-gate-actions {
  animation-delay: 0.3s;
}

.notfound2-future:focus-visible,
.notfound2-leave:focus-visible {
  color: #ff5ab5;
  outline: none;
}

.notfound2-future:focus-visible {
  border-color: #ff5ab5;
}

.notfound2-future:focus-visible .notfound2-future-arrow {
  transform: translateX(10px);
}

.notfound2-future:focus-visible .notfound2-future-arrow-base {
  opacity: 0;
}

.notfound2-future:focus-visible .notfound2-future-arrow-over {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .notfound-enter:hover {
    color: #ff5ab5;
  }

  .notfound-enter:hover .notfound-enter-arrow {
    transform: translateX(-14px) rotate(0deg);
  }

  .notfound-enter:hover .notfound-enter-arrow-base {
    opacity: 0;
  }

  .notfound-enter:hover .notfound-enter-arrow-over {
    opacity: 1;
  }

  .notfound-enter:hover .notfound-enter-text strong::after {
    transform: scaleX(1);
  }

  .notfound2-future:hover {
    color: #ff5ab5;
    border-color: #ff5ab5;
  }

  .notfound2-future:hover .notfound2-future-arrow {
    transform: translateX(10px);
  }

  .notfound2-future:hover .notfound2-future-arrow-base {
    opacity: 0;
  }

  .notfound2-future:hover .notfound2-future-arrow-over {
    opacity: 1;
  }

  .notfound2-leave:hover {
    color: #ff5ab5;
  }
}

@media (min-width: 901px) {
  .notfound-enter-arrow {
    transform: translateX(20px) rotate(0deg);
  }

  .notfound-enter:focus-visible .notfound-enter-arrow {
    transform: translateX(6px) rotate(0deg);
  }
}

@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
  .notfound-enter:hover .notfound-enter-arrow {
    transform: translateX(6px) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .notfound-time-page .notfound-enter-arrow-frame,
  .notfound-time-page .notfound-enter-text span,
  .notfound-time-page .notfound-enter-text strong,
  .notfound-time-page .notfound2-gate-logo,
  .notfound-time-page .notfound2-gate-copy,
  .notfound-time-page .notfound2-gate-actions,
  body.is-home-entry-ready .home-entry-gate .notfound-enter-arrow-frame,
  body.is-home-entry-ready .home-entry-gate .notfound-enter-text span,
  body.is-home-entry-ready .home-entry-gate .notfound-enter-text strong,
  body.is-home-entry-ready .home-entry-gate .notfound2-gate-logo,
  body.is-home-entry-ready .home-entry-gate .notfound2-gate-copy,
  body.is-home-entry-ready .home-entry-gate .notfound2-gate-actions {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

.notfound-girl,
.notfound-rabbit {
  position: absolute;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
  transition: transform 0.16s ease-out;
  will-change: transform;
}

.notfound-girl {
  z-index: 4;
  left: calc(31.6vw + 40px);
  bottom: -16px;
  width: 360px;
  transform: translate3d(var(--notfound-girl-x, 0), var(--notfound-girl-y, 0), 0);
}

.notfound-page:not(.notfound2-page) .notfound-girl {
  display: none;
}

.notfound-rabbit {
  z-index: 3;
  left: calc(44.5vw + 40px);
  bottom: 181px;
  width: 124px;
  transform: translate3d(var(--notfound-rabbit-x, 0), var(--notfound-rabbit-y, 0), 0);
}

.notfound2-page .notfound-rabbit {
  left: calc(44.5vw + 40px);
  bottom: 141px;
  width: 74px;
}

@media (min-width: 901px) {
  .is-mirage-frame.notfound2-page .notfound-rabbit {
    bottom: 181px;
  }
}

.notfound-time-page.is-notfound-day .notfound-rabbit {
  left: calc(44.5vw + 40px);
  bottom: 141px;
  width: 74px;
}

.notfound-time-page:not(.is-notfound-day) .notfound-rabbit.notfound-time-visual-night {
  left: calc(44.5vw + 40px);
  bottom: 141px;
  width: 111px;
}

.notfound-time-page:not(.is-notfound-day) .notfound-time-visual-day,
.notfound-time-page.is-notfound-day .notfound-time-visual-night {
  display: none !important;
}

.notfound-time-page.is-notfound-day .notfound-rabbit.notfound-time-visual-day {
  display: block;
}

.notfound-time-debug {
  position: fixed;
  z-index: 8200;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.notfound-time-debug button {
  appearance: none;
  min-width: 54px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 0;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.notfound-time-debug button.is-active {
  border-color: #ff5ab5;
  color: #ff5ab5;
}

.notfound-time-transition {
  position: fixed;
  z-index: 8100;
  inset: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  overflow: hidden;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease, visibility 0s 0.42s;
}

.notfound-time-transition.is-active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.notfound-time-transition.is-playing .notfound-time-video {
  opacity: 1;
}

.notfound-time-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.32s ease;
}

.notfound3-girl {
  position: absolute;
  z-index: 3;
  left: calc(50% - 680px);
  bottom: 30px;
  display: block;
  width: auto;
  height: 884px;
  pointer-events: none;
  user-select: none;
  transform: translate3d(calc(-50% + var(--notfound-girl-x, 0px)), 0, 0);
  transition: transform 0.16s ease-out;
  will-change: transform;
}

@media (max-width: 900px) {
  .notfound-main {
    --notfound-stage-height: 720px;
  }

  @supports (height: 100svh) {
    .notfound-main {
      --notfound-stage-height: max(100svh, 720px);
    }
  }

  .notfound-stage {
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    transition: none;
  }

  .notfound-bg,
  .notfound-stage .notfound-bg {
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    object-fit: cover;
    transform: none;
    transition: none;
  }

  .notfound-page:not(.notfound2-page) .notfound-ceiling-light,
  .notfound-page:not(.notfound2-page) .notfound-vertical-light {
    animation: none;
  }

  .notfound-binocular-content {
    -webkit-mask-image:
      radial-gradient(ellipse 42% 22.8% at 26% 47%, #000 0 72%, rgba(0, 0, 0, 0.72) 80%, transparent 88%),
      radial-gradient(ellipse 42% 22.8% at 74% 47%, #000 0 72%, rgba(0, 0, 0, 0.72) 80%, transparent 88%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image:
      radial-gradient(ellipse 42% 22.8% at 26% 47%, #000 0 72%, rgba(0, 0, 0, 0.72) 80%, transparent 88%),
      radial-gradient(ellipse 42% 22.8% at 74% 47%, #000 0 72%, rgba(0, 0, 0, 0.72) 80%, transparent 88%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
  }

  .notfound-binocular-props {
    --notfound-props-shift-x: -10px;
    --notfound-props-shift-y: 70px;
  }

  .notfound-binocular-girl {
    left: 58%;
    top: calc(48% - 100px);
    width: min(520px, 86vw);
  }

  .notfound-binocular-video {
    transform: scale(1);
  }

  .notfound-binocular-video iframe {
    top: 47%;
    width: 132vw;
    height: 74.25vw;
    min-width: 0;
    min-height: 0;
  }

  .notfound-binocular-mask g ellipse:nth-of-type(1) {
    cx: 70.5px;
    rx: 26.4px;
    ry: 26.4px;
  }

  .notfound-binocular-mask g ellipse:nth-of-type(2) {
    cx: 89.5px;
    rx: 26.4px;
    ry: 26.4px;
  }

  .notfound-binocular-mask g ellipse:nth-of-type(3) {
    rx: 0;
    ry: 0;
  }

  .notfound-binocular-rabbit {
    left: 80%;
    top: 42%;
    width: 126px;
    transform: translate(-50%, -50%);
  }

  .notfound-binocular-hat {
    left: 83%;
    top: 34%;
    width: 76px;
  }

  .notfound-binocular-clock {
    left: 84%;
    top: 24%;
    width: 86px;
  }

  .notfound-binocular-card {
    width: 88px;
  }

  .notfound-binocular-card-01 {
    left: 18%;
    top: 32%;
  }

  .notfound-binocular-message {
    top: calc(48% - 50px + min(146px, 24.12vw) + 80px);
    width: calc(100vw - 32px);
  }

  .notfound-binocular-title {
    font-size: clamp(30px, calc(7.5vw + 6px), 48px);
  }

  .notfound-binocular-copy {
    margin-top: 10px;
    font-size: clamp(16px, 4.6vw, 24px);
    line-height: 1.18;
  }

  .notfound-binocular-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .notfound-binocular-home,
  .notfound-binocular-another {
    min-height: 48px;
    padding: 0 12px;
    font-size: clamp(12px, calc(5.6vw - 7px), 23px);
  }

  .notfound-binocular-main.is-another-world-complete .notfound-binocular-home {
    padding: 0 16px;
    font-size: clamp(16px, calc(8vw - 9px), 27px);
  }

  .notfound-girl,
  .notfound-rabbit,
  .notfound3-girl {
    display: none !important;
  }

  .notfound2-gate {
    left: 24px;
    top: 50%;
    width: calc(100vw - 48px);
  }

  .notfound2-gate-head {
    align-items: flex-start;
    flex-direction: column;
    row-gap: 18px;
  }

  .notfound2-gate-logo {
    width: min(247px, calc(100vw - 48px));
  }

  .notfound2-gate-copy p {
    font-size: clamp(11.2px, 3.5vw, 15.4px);
  }

  .notfound2-gate-copy strong {
    font-size: clamp(21.7px, 7vw, 30.8px);
  }

  .notfound2-return-message {
    row-gap: 5px;
    margin: 40px 0;
  }

  body.is-home-entry-day-future.is-home-entry-day .home-entry-gate .notfound2-return-message {
    margin-bottom: 13px;
  }

  .notfound2-return-message p:first-child {
    font-size: clamp(11.2px, 3.5vw, 15.4px);
  }

  .notfound2-return-message p:last-child {
    font-size: clamp(9.2px, 3vw, 13.4px);
  }

  .notfound2-gate-actions {
    margin-top: 84px;
    row-gap: 10px;
  }

  body.is-home-entry-day-future.is-home-entry-day .home-entry-gate .notfound2-gate-actions {
    margin-top: 0;
  }

  .notfound2-future {
    min-height: 41px;
    padding-right: 11px;
    padding-left: 13px;
    font-size: clamp(20px, 6.34vw, 26.2px);
  }

  .notfound2-future-arrow {
    width: 23px;
    height: 30.6px;
    margin-left: 13.8px;
  }

  .notfound2-leave {
    font-size: clamp(16.6px, 5.7vw, 24.6px);
  }

  .notfound-enter {
    left: calc(46% + 70px);
    top: 51%;
    column-gap: 10px;
    row-gap: 0;
  }

  .notfound-enter-arrow {
    width: 20px;
  }

  .notfound-enter-text span {
    font-size: clamp(9.6px, 3vw, 13.2px);
    line-height: 0.96;
  }

  .notfound-enter-title-break {
    display: block;
  }

  .notfound-enter-text strong {
    font-size: 42px;
  }

  .notfound-girl {
    left: calc(18vw - 82px);
    bottom: -15px;
    width: 281px;
  }

  .notfound-rabbit {
    left: calc(33vw + 18px);
    bottom: 136px;
    width: 92px;
  }

  .day-future-clock {
    --day-future-clock-x: 0px;
    --day-future-clock-start-y: 20px;
    right: 25px;
    bottom: 20px;
    width: 110px;
  }

  .day-future-clock::before,
  .day-future-clock::after {
    width: 110px;
    height: 110px;
  }

  .day-future-clock-media {
    width: 110px;
    height: 110px;
  }

  .day-future-clock-countdown {
    margin-top: 3px;
    font-size: 19px;
    transform: translateX(-10px);
  }

  .day-future-return-vimeo {
    right: 20px;
    bottom: 20px;
    width: min(140px, calc((100vw - 40px) * 0.5));
    padding: 3px;
  }

  .day-future-return-vimeo::before {
    bottom: calc(100% + 6px);
    font-size: calc(12px + 4pt);
  }

  body.is-home-entry-day-future.is-home-entry-day .home-entry-gate .notfound2-gate {
    top: calc(50% - 60px);
  }

  body.is-home-entry-visible .home-entry-gate .notfound-ceiling-light,
  body.is-home-entry-visible .home-entry-gate .notfound-vertical-light {
    animation: none !important;
  }

  body.is-home-entry-night .home-entry-gate .notfound-rabbit.notfound-time-visual-night,
  body.is-home-entry-day .home-entry-gate .notfound-rabbit.notfound-time-visual-day {
    display: none !important;
  }

  body.is-home-entry-day-future .home-entry-gate .notfound-time-visual-night .notfound-bg {
    content: url("../images/index/404_sp_bg_no_rubbit.webp?v=202608010145");
  }

  body.is-home-entry-day-future .home-entry-gate .notfound-time-visual-day .notfound-bg {
    content: url("../images/index/404_sp_bg_noon2_no_rubbit.webp?v=202608010220");
  }

  .notfound2-page .notfound-rabbit {
    left: calc(33vw + 18px);
    bottom: calc(16vh - 100px);
    width: clamp(31px, 6.5vw, 39px);
  }

  .notfound-time-page.is-notfound-day .notfound-rabbit {
    left: calc(33vw + 18px);
    bottom: calc(16vh - 100px);
    width: clamp(31px, 6.5vw, 39px);
  }

  .notfound-time-debug {
    right: 10px;
    bottom: 10px;
  }

  .notfound-time-debug button {
    min-width: 46px;
    padding: 6px 8px;
    font-size: 12px;
  }

  .language-switch {
    top: 22px;
    right: 78px;
    gap: 4px;
    padding: 4px;
  }

  .language-switch a {
    min-width: 34px;
    padding: 6px 8px;
    font-size: 12px;
  }

  .home-page.is-home-entry-ready.is-home-entry-visible .language-switch,
  .home-page.is-home-entry-ready.is-home-entry-debug .language-switch,
  .home-page.is-home-entry-ready .home-entry-gate[aria-hidden="false"] ~ .language-switch {
    top: 10px;
    right: 10px;
  }

  .notfound3-girl {
    left: 78%;
    bottom: 13vh;
    height: clamp(128px, 29vh, 176px);
  }

}

body.is-day-future-home {
  background: #ffffff;
  color: #333333;
}

body.is-day-future-home .site,
body.is-day-future-home .day-future-about {
  background: #ffffff;
  color: #333333;
}

body.is-day-future-home .portfolio-list,
body.is-day-future-home .portfolio-list .content,
body.is-day-future-home .feature-card,
body.is-day-future-home .explanation,
body.is-day-future-home .content.dark .explanation,
body.is-day-future-home .content-media,
body.is-day-future-home .fashion-dual-media-video,
body.is-day-future-home .fashion-slideshow,
body.is-day-future-home .graphic-slideshow,
body.is-day-future-home .news-section,
body.is-day-future-home .news-list,
body.is-day-future-home .news-item {
  background: #ffffff;
  color: #333333;
}

body.is-day-future-home .background,
body.is-day-future-home .base3-circle,
body.is-day-future-home .base3-notfound-text {
  display: none;
}

body.is-day-future-home .header {
  border-bottom-color: rgba(51, 51, 51, 0.16);
  background: rgba(255, 255, 255, 0.94);
  color: #333333;
}

@media (max-width: 900px) {
  body.is-day-future-home .header {
    border-bottom: 0;
    background: transparent;
  }
}

body.is-day-future-home .logo img {
  filter: invert(1);
}

body.is-day-future-home .mobile-menu-toggle {
  color: #333333;
}

body.is-day-future-home .menu a,
body.is-day-future-home .menu span,
body.is-day-future-home .portfolio-keyvisual-title,
body.is-day-future-home .portfolio-keyvisual-copy,
body.is-day-future-home .work-title,
body.is-day-future-home .work-copy,
body.is-day-future-home .more-link,
body.is-day-future-home .profile-title,
body.is-day-future-home .profile-copy,
body.is-day-future-home .history-year,
body.is-day-future-home .history-company,
body.is-day-future-home .history-text,
body.is-day-future-home .news-item,
body.is-day-future-home .news-title,
body.is-day-future-home .footer-menu-item {
  color: #333333;
}

body.is-day-future-home .portfolio-keyword-hero {
  border-bottom: 0;
  background: #000000;
}

body.is-day-future-home .portfolio-keyword-group {
  color: #a6ff00;
  opacity: 0.15;
}

body.is-day-future-home .portfolio-keyword-group .is-portfolio {
  color: #ff5ab5;
  opacity: 1;
}

body.is-day-future-home .portfolio-keyvisual-panel {
  border: 0;
  background: #ffffff;
  color: #111111;
}

body.is-day-future-home .portfolio-keyvisual-title {
  color: #111111;
}

body.is-day-future-home .portfolio-keyvisual-copy {
  color: #333333;
}

body.is-day-future-home .portfolio-list .content,
body.is-day-future-home .day-future-about,
body.is-day-future-home .news-item {
  border-color: #333333;
}

body.is-day-future-home .feature-card::after {
  border-color: rgba(17, 17, 17, 0.9);
}

body.is-day-future-home .feature-card .more-link {
  border-color: #333333;
}

body.is-day-future-home .day-future-about {
  background: #f0f0f0;
  color: #333333;
  border-top-color: rgba(51, 51, 51, 0.18);
  border-bottom-color: #000000;
}

body.is-day-future-home .day-future-about .side-title {
  color: #333333;
}

body.is-day-future-home .day-future-about .portrait {
  border-color: rgba(51, 51, 51, 0.18);
}

body.is-day-future-home .history {
  border-color: rgba(51, 51, 51, 0.22);
  background: #f0f0f0;
  color: #333333;
}

body.is-day-future-home .history-row {
  border-top-color: rgba(51, 51, 51, 0.16);
}

body.is-day-future-home .history-year::after,
body.is-day-future-home .history-company::after {
  border-right-color: rgba(51, 51, 51, 0.28);
}

body.is-day-future-home .social,
body.is-day-future-home .footer-social {
  border: 1px solid rgba(51, 51, 51, 0.12);
  background: #f3f3f3;
}

body.is-day-future-home .day-future-about .social.x {
  background: #ffffff;
}

body.is-day-future-home .news-list {
  border-top-color: #000000;
  background: #F0F0F0;
}

body.is-day-future-home .news-date::after,
body.is-day-future-home .news-category::after {
  background-image: linear-gradient(to bottom, #ffffff 50%, transparent 0);
}

body.is-day-future-home .news-item {
  border-bottom-color: #ffffff;
}

body.is-day-future-home .news-item.is-pinned {
  background: #F0F0F0;
  box-shadow: inset 0 -1px #ffffff;
}

body.is-day-future-home a.news-item:hover,
body.is-day-future-home a.news-item.is-pinned:hover {
  background: #e3e3e3;
}

body.is-day-future-home a.news-item::before {
  background: #e3e3e3;
}

body.is-day-future-home .site-footer {
  background: #dddddd;
  color: #333333;
}

body.is-day-future-home .site-footer::after {
  background: #dddddd;
}

body.is-day-future-home .footer-menu-item {
  opacity: 0.2;
  -webkit-text-stroke-color: transparent;
}

body.is-day-future-home .footer-menu-item:focus-visible,
body.is-day-future-home .footer-menu-item:hover,
body.is-day-future-home .footer-menu-item.is-hovered,
body.is-day-future-home .footer-menu-item.is-active {
  color: #333333;
  opacity: 1;
  -webkit-text-stroke-color: rgba(51, 51, 51, 0.34);
}

body.is-day-future-home .footer-social {
  opacity: 0.72;
}

body.is-day-future-home .footer-social:hover {
  opacity: 1;
}

body.is-day-future-home .mobile-menu-panel,
body.is-day-future-home .mobile-menu-scroll,
body.is-day-future-home .mobile-menu-socials {
  background: #dddddd;
  color: #333333;
}

body.is-day-future-home.is-mobile-menu-open:not(.is-mobile-menu-pjax-fading) .mobile-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.is-day-future-home .mobile-menu-panel::before,
body.is-day-future-home .mobile-menu-scroll,
body.is-day-future-home .mobile-menu-socials {
  border-color: rgba(102, 102, 102, 0.32);
}

body.is-day-future-home .mobile-menu-panel::before {
  background: rgba(102, 102, 102, 0.32);
}

body.is-day-future-home .mobile-menu-item {
  color: rgba(51, 51, 51, 0.18);
  -webkit-text-stroke: 0 transparent;
}

body.is-day-future-home .mobile-menu-panel .mobile-menu-item:focus-visible,
body.is-day-future-home .mobile-menu-panel .mobile-menu-item:hover,
body.is-day-future-home .mobile-menu-panel .mobile-menu-item.is-hovered {
  color: #666666 !important;
  -webkit-text-stroke: 1px rgba(102, 102, 102, 0.34) !important;
}

body.is-day-future-home .mobile-menu-panel .mobile-menu-item.is-active {
  color: #333333 !important;
  -webkit-text-stroke: 1px rgba(51, 51, 51, 0.34) !important;
}

body.is-day-future-home .mobile-menu-social {
  background: #f3f3f3;
  opacity: 0.72;
}

body.is-day-future-home .mobile-menu-toggle:hover,
body.is-day-future-home .mobile-menu-toggle.is-open:hover {
  color: #999999;
}

body.is-day-future-home .mobile-menu-social:hover,
body.is-day-future-home .mobile-menu-social:focus-visible {
  opacity: 1;
}

body.is-day-future-home .news-section,
body.is-day-future-home .news-list,
body.is-day-future-home .news-item {
  background: #111111;
  color: rgba(255, 255, 255, 0.88);
}

body.is-day-future-home .news-list {
  border-top-color: rgba(255, 255, 255, 0.08);
}

body.is-day-future-home .news-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.is-day-future-home .news-item.is-pinned {
  background: #1f1f1f;
  box-shadow: none;
}

body.is-day-future-home .news-title {
  color: rgba(255, 255, 255, 0.86);
}

body.is-day-future-home .news-date::after,
body.is-day-future-home .news-category::after {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.32) 50%, transparent 0);
}

body.is-day-future-home a.news-item:hover {
  background: #252525;
}

body.is-day-future-home a.news-item::before {
  background: #a0346f;
}

body.is-day-future-home .site-footer,
body.is-day-future-home .site-footer::after {
  background: #111111;
  color: var(--white);
}

body.is-day-future-home .footer-menu-item {
  color: rgba(255, 255, 255, 0.1);
  opacity: 1;
  -webkit-text-stroke-color: transparent;
}

body.is-day-future-home .footer-menu-item:focus-visible,
body.is-day-future-home .footer-menu-item:hover,
body.is-day-future-home .footer-menu-item.is-hovered,
body.is-day-future-home .footer-menu-item.is-active {
  color: #a0346f;
  opacity: 1;
  -webkit-text-stroke: 1px #ff5ab5;
}

body.is-day-future-home .footer-social {
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.3;
}

body.is-day-future-home .footer-x {
  background: #ffffff;
}

body.is-day-future-home .footer-social:hover {
  opacity: 1;
}

body.is-day-future-home.is-mobile-menu-open .mobile-menu-toggle {
  color: #ffffff;
}

body.is-day-future-home.is-mobile-menu-open .mobile-menu-toggle:hover,
body.is-day-future-home.is-mobile-menu-open .mobile-menu-toggle.is-open:hover {
  color: #ff5ab5;
}

body.is-day-future-home .mobile-menu-panel,
body.is-day-future-home .mobile-menu-scroll {
  background: #111111;
  color: var(--white);
}

body.is-day-future-home .mobile-menu-socials {
  background: transparent;
  color: var(--white);
}

body.is-day-future-home .mobile-menu-panel::before,
body.is-day-future-home .mobile-menu-scroll,
body.is-day-future-home .mobile-menu-socials {
  border-color: rgba(255, 255, 255, 0.25);
}

body.is-day-future-home .mobile-menu-panel::before {
  background: rgba(255, 255, 255, 0.25);
}

body.is-day-future-home .mobile-menu-item {
  color: rgba(255, 255, 255, 0.1);
  -webkit-text-stroke: 0 transparent;
}

body.is-day-future-home .mobile-menu-panel .mobile-menu-item:focus-visible,
body.is-day-future-home .mobile-menu-panel .mobile-menu-item:hover,
body.is-day-future-home .mobile-menu-panel .mobile-menu-item.is-hovered,
body.is-day-future-home .mobile-menu-panel .mobile-menu-item.is-active {
  color: #a0346f !important;
  -webkit-text-stroke: 1px #ff5ab5 !important;
}

body.is-day-future-home .mobile-menu-social {
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.3;
}

body.is-day-future-home .mobile-menu-x {
  background: #ffffff;
}

body.is-day-future-home .mobile-menu-social:hover,
body.is-day-future-home .mobile-menu-social:focus-visible {
  opacity: 1;
}

@media (min-width: 901px) {
  body.is-day-future-home a.news-item:hover {
    background: #111111;
  }

  body.is-day-future-home a.news-item.is-pinned:hover {
    background: #1f1f1f;
  }
}

@media (max-width: 900px) {
  body.is-day-future-home .mobile-menu-panel {
    background: rgba(0, 0, 0, 0.9);
  }

  body.is-day-future-home .mobile-menu-socials {
    background: #111111;
  }

  body.is-day-future-home .mobile-menu-social {
    background: #ffffff;
  }

  body.is-day-future-home .footer-social {
    background: #ffffff;
  }
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) {
  background: #ffffff;
  color: #333333;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .site,
body.is-day-future-mode.portfolio-template-page .template-site,
body.is-day-future-mode.portfolio-template-page .template-section,
body.is-day-future-mode.portfolio-template-page .template-feature,
body.is-day-future-mode.portfolio-template-page .template-feature .explanation,
body.is-day-future-mode.portfolio-template-page .template-sticky-text,
body.is-day-future-mode.portfolio-template-page .template-full-video-frame,
body.is-day-future-mode.portfolio-template-page .template-scroll-media-frame,
body.is-day-future-mode.portfolio-template-page .template-fade-slideshow,
body.is-day-future-mode.portfolio-template-page .branding-text,
body.is-day-future-mode.portfolio-template-page .branding-video-shell,
body.is-day-future-mode.portfolio-template-page .branding-index-nav,
body.is-day-future-mode.portfolio-template-page .branding-local-nav,
body.is-day-future-mode.portfolio-template-page .branding-local-thumb,
body.is-day-future-mode.portfolio-template-page .branding-local-thumb::after,
body.is-day-future-mode:not(.home-page).portfolio-index-page .portfolio-list,
body.is-day-future-mode:not(.home-page).portfolio-index-page .portfolio-list .content,
body.is-day-future-mode:not(.home-page).portfolio-index-page .feature-card,
body.is-day-future-mode:not(.home-page).portfolio-index-page .explanation,
body.is-day-future-mode:not(.home-page).portfolio-index-page .content.dark .explanation,
body.is-day-future-mode:not(.home-page).portfolio-index-page .content-media,
body.is-day-future-mode:not(.home-page).portfolio-index-page .fashion-dual-media-video,
body.is-day-future-mode:not(.home-page).portfolio-index-page .fashion-slideshow,
body.is-day-future-mode:not(.home-page).portfolio-index-page .graphic-slideshow,
body.is-day-future-mode:not(.home-page).portfolio-index-page .vimeo-video {
  background: #ffffff;
  color: #333333;
}

body.is-day-future-mode.portfolio-template-page .template-photo-marquee {
  background: #111111;
}

body.is-day-future-mode.portfolio-template-page.branding-page .branding-detail-content .template-sticky-scroll-section,
body.is-day-future-mode.portfolio-template-page.branding-page .branding-detail-content .template-sticky-text,
body.is-day-future-mode.portfolio-template-page.branding-detail-page .branding-detail-content .template-sticky-scroll-section,
body.is-day-future-mode.portfolio-template-page.branding-detail-page .branding-detail-content .template-sticky-text,
body.is-day-future-mode.portfolio-template-page.fashion-beauty-page .fashion-section07-scroll,
body.is-day-future-mode.portfolio-template-page.fashion-beauty-page .fashion-section07-scroll .template-sticky-text,
body.is-day-future-mode.portfolio-template-page.fashion-beauty-page .fashion-section14,
body.is-day-future-mode.portfolio-template-page.fashion-beauty-page .fashion-section14 .template-sticky-text {
  background: #f0f0f0;
}

body.is-day-future-mode.portfolio-template-page.branding-page .branding-detail-content .template-sticky-scroll-section .template-scroll-media-frame,
body.is-day-future-mode.portfolio-template-page.branding-detail-page .branding-detail-content .template-sticky-scroll-section .template-scroll-media-frame,
body.is-day-future-mode.portfolio-template-page.fashion-beauty-page .fashion-section07-scroll .template-scroll-media-frame,
body.is-day-future-mode.portfolio-template-page.fashion-beauty-page .fashion-section14 .template-scroll-media-frame {
  background: transparent;
}

body.is-day-future-mode.portfolio-template-page.branding-page .branding-feature .explanation {
  background: #ffffff;
}

body.is-day-future-mode.portfolio-template-page .branding-section14-video-sequence-section .template-scroll-media-frame {
  background: transparent;
}

body.is-day-future-mode.portfolio-template-page .template-media-frame {
  background: transparent;
}

body.is-day-future-mode:not(.home-page).portfolio-index-page .background,
body.is-day-future-mode:not(.home-page).portfolio-index-page .base3-circle,
body.is-day-future-mode:not(.home-page).portfolio-index-page .base3-notfound-text {
  display: none;
}

body.is-day-future-mode:not(.home-page).portfolio-index-page .portfolio-list.is-content-hidden {
  background: transparent;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .header {
  border-bottom-color: rgba(51, 51, 51, 0.16);
  background: rgba(255, 255, 255, 0.94);
  color: #333333;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .logo img {
  filter: invert(1);
}

body.is-mobile-menu-open.is-day-future-home .logo img,
body.is-mobile-menu-open.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .logo img {
  filter: none;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-toggle {
  color: #333333;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .menu a,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .menu span,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .portfolio-keyvisual-title,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .portfolio-keyvisual-copy,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .work-title,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .work-copy,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .more-link,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .template-section-name,
body.is-day-future-mode.portfolio-template-page .template-text-heading,
body.is-day-future-mode.portfolio-template-page .template-text-section p,
body.is-day-future-mode.portfolio-template-page .template-sticky-text .work-title,
body.is-day-future-mode.portfolio-template-page .template-sticky-text .work-copy,
body.is-day-future-mode.portfolio-template-page .template-scroll-media-caption,
body.is-day-future-mode.portfolio-template-page .branding-index-card,
body.is-day-future-mode.portfolio-template-page .branding-local-title,
body.is-day-future-mode.portfolio-template-page .branding-local-copy {
  color: #333333;
}

body.is-day-future-mode:not(.home-page).portfolio-index-page .portfolio-keyword-hero {
  border-bottom: 0;
  background: #000000;
}

body.is-day-future-mode:not(.home-page).portfolio-index-page .portfolio-keyword-group {
  color: #a6ff00;
  opacity: 0.15;
}

body.is-day-future-mode:not(.home-page).portfolio-index-page .portfolio-keyword-group .is-portfolio {
  color: #ff5ab5;
  opacity: 1;
}

body.is-day-future-mode:not(.home-page).portfolio-index-page .portfolio-keyvisual-panel {
  border: 0;
  background: #ffffff;
  color: #111111;
}

body.is-day-future-mode:not(.home-page).portfolio-index-page .portfolio-keyvisual-title {
  color: #111111;
}

body.is-day-future-mode:not(.home-page).portfolio-index-page .portfolio-keyvisual-copy {
  color: #333333;
}

body.is-day-future-mode.portfolio-template-page .template-section,
body.is-day-future-mode.portfolio-template-page .template-feature,
body.is-day-future-mode.portfolio-template-page .template-photo-marquee,
body.is-day-future-mode.portfolio-template-page .branding-index-nav,
body.is-day-future-mode.portfolio-template-page .branding-local-nav,
body.is-day-future-mode:not(.home-page).portfolio-index-page .portfolio-list .content {
  border-color: rgba(51, 51, 51, 0.16);
}

body.is-day-future-mode.portfolio-template-page.fashion-beauty-page .fashion-video-pair + .fashion-video-pair {
  border-top-color: rgba(51, 51, 51, 0.16);
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .feature-card::after {
  border-color: rgba(17, 17, 17, 0.9);
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .feature-card .more-link {
  border-color: #333333;
}

body.is-day-future-mode.portfolio-template-page .branding-local-item {
  color: rgba(51, 51, 51, 0.32);
}

body.is-day-future-mode.portfolio-template-page .branding-local-item.is-active,
body.is-day-future-mode.portfolio-template-page .branding-local-item:hover,
body.is-day-future-mode.portfolio-template-page .branding-local-item:focus-visible {
  color: #333333;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .news-section,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .news-list,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .news-item {
  background: #111111;
  color: rgba(255, 255, 255, 0.88);
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .news-list {
  border-top-color: rgba(255, 255, 255, 0.08);
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .news-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .news-item.is-pinned {
  background: #1f1f1f;
  box-shadow: none;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .news-title {
  color: rgba(255, 255, 255, 0.86);
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .news-date::after,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .news-category::after {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.32) 50%, transparent 0);
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) a.news-item:hover {
  background: #252525;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) a.news-item::before {
  background: #a0346f;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .site-footer,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .site-footer::after {
  background: #111111;
  color: var(--white);
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .footer-menu-item {
  color: rgba(255, 255, 255, 0.1);
  opacity: 1;
  -webkit-text-stroke-color: transparent;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .footer-menu-item:focus-visible,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .footer-menu-item:hover,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .footer-menu-item.is-hovered,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .footer-menu-item.is-active {
  color: #a0346f;
  opacity: 1;
  -webkit-text-stroke: 1px #ff5ab5;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .footer-social {
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.3;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .footer-x {
  background: #ffffff;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .footer-social:hover {
  opacity: 1;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)).is-mobile-menu-open .mobile-menu-toggle {
  color: #ffffff;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)).is-mobile-menu-open .mobile-menu-toggle:hover,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)).is-mobile-menu-open .mobile-menu-toggle.is-open:hover {
  color: #ff5ab5;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-panel,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-scroll {
  background: #111111;
  color: var(--white);
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-socials {
  background: transparent;
  color: var(--white);
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-panel::before,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-scroll,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-socials {
  border-color: rgba(255, 255, 255, 0.25);
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-panel::before {
  background: rgba(255, 255, 255, 0.25);
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-item {
  color: rgba(255, 255, 255, 0.1);
  -webkit-text-stroke: 0 transparent;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-panel .mobile-menu-item:focus-visible,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-panel .mobile-menu-item:hover,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-panel .mobile-menu-item.is-hovered,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-panel .mobile-menu-item.is-active {
  color: #a0346f !important;
  -webkit-text-stroke: 1px #ff5ab5 !important;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-social {
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.3;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-x {
  background: #ffffff;
}

body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-social:hover,
body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-social:focus-visible {
  opacity: 1;
}

@media (min-width: 901px) {
  body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) a.news-item:hover {
    background: #111111;
  }

  body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) a.news-item.is-pinned:hover {
    background: #1f1f1f;
  }
}

@media (max-width: 900px) {
  body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .header {
    border-bottom: 0;
    background: transparent;
  }

  body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-panel {
    background: rgba(0, 0, 0, 0.9);
  }

  body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-socials {
    background: #111111;
  }

  body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .mobile-menu-social,
  body.is-day-future-mode:is(.portfolio-template-page, .portfolio-index-page:not(.home-page)) .footer-social {
    background: #ffffff;
  }
}

html[lang="en"] .work-copy {
  font-size: 18px;
}

html[lang="en"] .feature-card .explanation .work-copy,
html[lang="en"] .branding-feature .work-copy {
  font-size: 20px;
  line-height: 2;
}

html[lang="en"] .profile-copy {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.65;
}

html[lang="en"] .history-text {
  font-size: 19px;
  line-height: 1.35;
}

html[lang="en"] .portfolio-keyvisual-copy {
  font-size: clamp(19px, 1.25vw, 24px);
}

html[lang="en"] .news-title {
  font-size: 18px;
}

html[lang="en"] .feature-card .more-link {
  display: none;
}

html[lang="en"] .template-text-section:not(.template-text-section--large) p {
  font-size: 14pt;
}

html[lang="en"] .branding-section-copy.template-text-section--large .template-text-inner > p {
  font-size: 26px;
  line-height: 50px;
}

html[lang="en"] .branding-section-copy.template-text-section--large .template-text-inner > p:first-child {
  font-size: 26px;
  line-height: 34px;
}

html[lang="en"] .branding-page .template-sticky-scroll-section .template-sticky-text .work-copy,
html[lang="en"] .branding-detail-page .template-sticky-scroll-section .template-sticky-text .work-copy {
  font-size: 19px;
  line-height: 2;
}

html[lang="en"] .branding-page .template-scroll-media-caption,
html[lang="en"] .branding-detail-page .template-scroll-media-caption {
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  html[lang="en"] body,
  html[lang="en"] .work-copy,
  html[lang="en"] .profile-copy,
  html[lang="en"] .history-text,
  html[lang="en"] .portfolio-keyvisual-copy,
  html[lang="en"] .template-text-section p {
    font-weight: 600;
  }

  html[lang="en"] .work-copy,
  html[lang="en"] .feature-card .explanation .work-copy,
  html[lang="en"] .branding-feature .work-copy {
    font-size: 14px;
    line-height: 1.72;
  }

  html[lang="en"] .portfolio-index-page .feature-card .explanation .work-copy {
    font-size: 16px;
    line-height: 1.8;
  }

  html[lang="en"] .portfolio-template-page .template-feature .explanation .work-copy {
    font-size: 16px;
    line-height: 1.8;
  }

  html[lang="en"] .feature-card .more-link {
    display: block;
  }

  html[lang="en"] .portfolio-keyvisual-copy {
    font-size: clamp(13px, calc(3vw + 2px), 15px);
    line-height: 1.65;
  }

  html[lang="en"] .profile-copy {
    font-size: clamp(15px, calc(3vw + 4px), 17px);
    line-height: 1.65;
  }

  html[lang="en"] .history-text {
    font-size: clamp(13px, calc(3vw + 2px), 15px);
    line-height: 1.65;
  }

  html[lang="en"] .news-title {
    font-size: 16px;
  }

  html[lang="en"] .template-text-section:not(.template-text-section--large) p {
    font-size: 16px;
  }

  html[lang="en"] .branding-section-copy.template-text-section--large .template-text-inner > p {
    font-size: 16px;
    line-height: 1.8;
  }

  html[lang="en"] .branding-section-copy.template-text-section--large .template-text-inner > p:first-child {
    font-size: 18px;
    line-height: 1.55;
  }

  html[lang="en"] .branding-page .template-sticky-scroll-section .template-sticky-text .work-copy,
  html[lang="en"] .branding-detail-page .template-sticky-scroll-section .template-sticky-text .work-copy {
    font-size: 15.7px;
    line-height: 1.65;
  }

  html[lang="en"] .branding-page .template-scroll-media-caption,
  html[lang="en"] .branding-detail-page .template-scroll-media-caption {
    font-size: 12px;
    line-height: 1.6;
  }
}

@media (max-width: 360px) {
  .hero-feel-copy {
    font-size: 9pt;
  }
}
