:root {
  --black: #000;
  --white: #fff;
  --gray: #d9d9d9;
  --nav-gray: #e9e9e9;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --sans: "Shippori Mincho", serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow: hidden;
  color: var(--black);
  background: var(--black);
  font-family: var(--sans);
  animation: pageFadeIn 1.45s var(--ease) both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.mobile-menu-trigger,
.mobile-menu-button,
.mobile-menu,
.mobile-back-top {
  display: none;
}

/* FV base */
.fv-track {
  display: flex;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.fv-track::-webkit-scrollbar {
  display: none;
}

.fv-panel {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}

/* FV title screen */
.fv-title-screen,
.fv-copy-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
}

.fv-title-screen {
  background: var(--gray);
}

.fv-fluid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.fv-copy-screen {
  background: var(--black);
}

.fv-title-area,
.fv-copy-area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
}

.fv-title-area {
  padding: 7vw;
  position: relative;
  z-index: 1;
}

.fv-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(104px, 8.8vw, 162px);
  line-height: 1.18;
  letter-spacing: 0;
  text-align: center;
  -webkit-text-stroke: .5px currentColor;
  text-stroke: .5px currentColor;
}

.fv-title span {
  display: inline-block;
  transition: transform .65s var(--ease);
  will-change: transform;
}

.fv-title.is-scattering span {
  transition: none;
}

.fv-copy-area {
  flex-direction: column;
  padding: 8vw;
  color: var(--white);
  text-align: center;
}

.fv-main-copy {
  margin: 0 0 58px;
  font-size: clamp(48px, 4.3vw, 78px);
  font-weight: 700;
}

.fv-sub-copy {
  margin: 0 0 clamp(88px, 11vh, 136px);
  font-size: clamp(34px, 3.15vw, 54px);
  line-height: 1.45;
  font-weight: 500;
}

.fv-caption {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(20px, 1.45vw, 26px);
  line-height: 1.45;
  padding: 12px 18px 14px;
  background:
    linear-gradient(currentColor, currentColor) left bottom / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) left bottom / 1px 0 no-repeat,
    linear-gradient(currentColor, currentColor) right bottom / 1px 0 no-repeat;
  transition: transform .3s var(--ease), background-size .42s var(--ease) .38s;
}

.fv-caption::before,
.fv-caption::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: opacity .3s var(--ease);
  transform-origin: center;
}

.fv-caption::before {
  top: 0;
  height: 1px;
  background:
    linear-gradient(currentColor, currentColor) left top / 0 1px no-repeat,
    linear-gradient(currentColor, currentColor) right top / 0 1px no-repeat;
  opacity: .85;
  transition: background-size .38s var(--ease);
}

.fv-caption::after {
  bottom: 0;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity .22s var(--ease) .8s, transform .32s var(--ease) .8s;
}

.fv-caption:hover,
.fv-caption:focus-visible {
  transform: translateY(-2px);
  background-size: 100% 1px, 1px 100%, 1px 100%;
  transition: transform .3s var(--ease), background-size .42s var(--ease);
}

.fv-caption:hover::before,
.fv-caption:focus-visible::before {
  background-size: 50% 1px, 50% 1px;
  transition-delay: .42s;
}

.fv-caption:hover::after,
.fv-caption:focus-visible::after {
  opacity: .85;
  transform: scaleX(1);
  transition: opacity .22s var(--ease), transform .32s var(--ease);
}

.arrow-button {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--black);
  transition: transform .25s var(--ease);
}

.arrow-button:hover {
  transform: translateX(4px);
}

.arrow-button span {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 31px solid var(--white);
  transform: translate(-50%, -50%);
}

.arrow-button-light {
  background: var(--white);
}

.arrow-button-light span {
  border-left-color: var(--black);
}

.back-to-top-button {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 10;
  display: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--black);
  transition: transform .25s var(--ease);
}

body.is-gallery-active .back-to-top-button {
  display: block;
}

.back-to-top-button:hover {
  transform: translateX(-4px);
}

.back-to-top-button span {
  position: absolute;
  top: 50%;
  left: 46%;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 26px solid var(--white);
  transform: translate(-50%, -50%);
}

/* FV gallery */
.fv-gallery {
  background: var(--white);
}

.fv-side-nav {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  display: flex;
  width: 104px;
  flex-direction: column;
  justify-content: center;
  gap: clamp(88px, 14vh, 160px);
  background: var(--nav-gray);
  text-align: center;
  font-size: 16px;
}

.fv-side-nav a {
  position: relative;
  display: block;
  padding: 6px 0;
  color: inherit;
  text-decoration: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.fv-side-nav a::after {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.3);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  content: "";
}

.fv-side-nav a:hover,
.fv-side-nav a:focus-visible {
  opacity: .62;
  transform: translateX(3px);
}

.fv-side-nav a.is-active {
  font-weight: 700;
}

.fv-side-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.fv-gallery-scroll {
  height: 100%;
  margin-left: 104px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.fv-gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.fv-gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--gray);
}

.fv-gallery-canvas {
  position: relative;
  width: clamp(1680px, 136vw, 2080px);
  height: 100vh;
  min-height: 720px;
  --gallery-edge: clamp(42px, 6.4vh, 62px);
  --gallery-gap-y: clamp(46px, 6.8vh, 66px);
  --gallery-small-h: clamp(182px, 24.5vh, 224px);
  --gallery-medium-h: clamp(225px, 31vh, 275px);
  --gallery-large-h: clamp(270px, 37vh, 338px);
}

.fv-work {
  position: absolute;
  display: block;
  background: var(--gray);
  transition: opacity .25s var(--ease), transform .35s var(--ease);
}

.fv-work span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gray);
}

.fv-work-comic-pop {
  overflow: hidden;
  background: var(--gray);
}

.fv-work-logo-design,
.fv-work-editorial-design,
.fv-work-lp-design,
.fv-work-d4ta,
.fv-work-caterpy,
.fv-work-millenoa {
  overflow: hidden;
  background: var(--gray);
}

.fv-work-comic-pop::before,
.fv-work-logo-design::before,
.fv-work-editorial-design::before,
.fv-work-lp-design::before,
.fv-work-d4ta::before,
.fv-work-caterpy::before,
.fv-work-millenoa::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 2px solid #00a497;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(.985);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.fv-work-comic-pop img,
.fv-work-logo-design img,
.fv-work-editorial-design img,
.fv-work-lp-design img,
.fv-work-d4ta img,
.fv-work-caterpy img,
.fv-work-millenoa img {
  display: block;
  width: 100%;
  height: 100%;
  transition: filter .35s var(--ease), transform .65s var(--ease);
}

.fv-work-comic-pop img {
  object-fit: cover;
  object-position: 78% 46%;
}

.fv-work-logo-design img {
  object-fit: cover;
  object-position: 50% 50%;
}

.fv-work-editorial-design img {
  object-fit: cover;
  object-position: 79% 28%;
}

.fv-work-lp-design img {
  width: 220%;
  height: 220%;
  object-fit: cover;
  object-position: 58% 8%;
}

.fv-work-d4ta img {
  object-fit: cover;
  object-position: 62% 50%;
}

.fv-work-caterpy img {
  object-fit: cover;
  object-position: 48% 42%;
}

.fv-work-millenoa img {
  object-fit: cover;
  object-position: 50% 50%;
}

.fv-work-comic-pop .fv-work-title,
.fv-work-logo-design .fv-work-title,
.fv-work-editorial-design .fv-work-title,
.fv-work-lp-design .fv-work-title,
.fv-work-d4ta .fv-work-title,
.fv-work-caterpy .fv-work-title,
.fv-work-millenoa .fv-work-title {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: auto;
  height: auto;
  padding: clamp(14px, 1.5vw, 20px) clamp(18px, 2vw, 28px);
  color: var(--white);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.2;
  opacity: 0;
  background: rgba(0, 0, 0, .58);
  transform: translateY(100%);
  transition: opacity .32s var(--ease), transform .38s var(--ease);
}

.fv-work:hover,
.fv-work:focus-visible {
  opacity: .78;
  transform: translateY(-4px);
}

.fv-work-comic-pop:hover,
.fv-work-comic-pop:focus-visible,
.fv-work-logo-design:hover,
.fv-work-logo-design:focus-visible,
.fv-work-editorial-design:hover,
.fv-work-editorial-design:focus-visible,
.fv-work-lp-design:hover,
.fv-work-lp-design:focus-visible,
.fv-work-d4ta:hover,
.fv-work-d4ta:focus-visible,
.fv-work-caterpy:hover,
.fv-work-caterpy:focus-visible,
.fv-work-millenoa:hover,
.fv-work-millenoa:focus-visible {
  opacity: 1;
  transform: translateY(-6px);
}

.fv-work-comic-pop:hover::before,
.fv-work-comic-pop:focus-visible::before,
.fv-work-logo-design:hover::before,
.fv-work-logo-design:focus-visible::before,
.fv-work-editorial-design:hover::before,
.fv-work-editorial-design:focus-visible::before,
.fv-work-lp-design:hover::before,
.fv-work-lp-design:focus-visible::before,
.fv-work-d4ta:hover::before,
.fv-work-d4ta:focus-visible::before,
.fv-work-caterpy:hover::before,
.fv-work-caterpy:focus-visible::before,
.fv-work-millenoa:hover::before,
.fv-work-millenoa:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.fv-work-comic-pop:hover img,
.fv-work-comic-pop:focus-visible img,
.fv-work-logo-design:hover img,
.fv-work-logo-design:focus-visible img,
.fv-work-editorial-design:hover img,
.fv-work-editorial-design:focus-visible img,
.fv-work-lp-design:hover img,
.fv-work-lp-design:focus-visible img,
.fv-work-d4ta:hover img,
.fv-work-d4ta:focus-visible img,
.fv-work-caterpy:hover img,
.fv-work-caterpy:focus-visible img,
.fv-work-millenoa:hover img,
.fv-work-millenoa:focus-visible img {
  filter: brightness(.82);
  transform: scale(1.06);
}

.fv-work-comic-pop:hover .fv-work-title,
.fv-work-comic-pop:focus-visible .fv-work-title,
.fv-work-logo-design:hover .fv-work-title,
.fv-work-logo-design:focus-visible .fv-work-title,
.fv-work-editorial-design:hover .fv-work-title,
.fv-work-editorial-design:focus-visible .fv-work-title,
.fv-work-lp-design:hover .fv-work-title,
.fv-work-lp-design:focus-visible .fv-work-title,
.fv-work-d4ta:hover .fv-work-title,
.fv-work-d4ta:focus-visible .fv-work-title,
.fv-work-caterpy:hover .fv-work-title,
.fv-work-caterpy:focus-visible .fv-work-title,
.fv-work-millenoa:hover .fv-work-title,
.fv-work-millenoa:focus-visible .fv-work-title {
  opacity: 1;
  transform: translateY(0);
}

.fv-work-01 {
  top: calc(var(--gallery-edge) + 34px);
  left: 5.8%;
  width: clamp(250px, 16.2%, 330px);
  height: var(--gallery-large-h);
}

.fv-work-02 {
  top: calc(var(--gallery-edge) + 44px);
  left: 24%;
  width: clamp(200px, 12.4%, 260px);
  height: var(--gallery-large-h);
}

.fv-work-03 {
  top: calc(var(--gallery-edge) + 18px);
  left: 39.5%;
  width: clamp(184px, 11.4%, 238px);
  height: clamp(460px, 66vh, 620px);
}

.fv-work-04 {
  top: calc(var(--gallery-edge) + var(--gallery-large-h) + var(--gallery-gap-y) + 36px);
  left: 13%;
  width: clamp(320px, 20.6%, 430px);
  height: clamp(245px, 33.5vh, 300px);
}

.fv-work-05 {
  top: calc(var(--gallery-edge) + 10px);
  left: 53%;
  width: clamp(335px, 20.8%, 440px);
  height: clamp(190px, 25vh, 233px);
}

.fv-work-06 {
  top: calc(var(--gallery-edge) + var(--gallery-small-h) + var(--gallery-gap-y) + 34px);
  left: 53%;
  width: clamp(335px, 20.8%, 440px);
  height: clamp(270px, 42vh, 390px);
}

.fv-work-07 {
  top: calc(var(--gallery-edge) + 4px);
  left: 77%;
  width: clamp(330px, 19.6%, 430px);
  height: clamp(200px, 26vh, 247px);
}

.fv-contact-teaser {
  position: absolute;
  top: calc(var(--gallery-edge) + var(--gallery-small-h) + var(--gallery-gap-y) + 76px);
  left: 76%;
  width: clamp(300px, 17.5%, 360px);
  text-align: center;
  font-size: clamp(28px, 2.25vw, 36px);
  line-height: 1.18;
}

.fv-contact-message {
  margin: 58px 0 34px;
}

.fv-teaser-link {
  position: relative;
  display: inline-block;
  padding: 12px 18px 14px;
  background:
    linear-gradient(currentColor, currentColor) left bottom / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) left bottom / 1px 0 no-repeat,
    linear-gradient(currentColor, currentColor) right bottom / 1px 0 no-repeat;
  transition: transform .3s var(--ease), background-size .42s var(--ease) .38s;
}

.fv-teaser-link::before,
.fv-teaser-link::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: opacity .3s var(--ease);
  transform-origin: center;
}

.fv-teaser-link::before {
  top: 0;
  height: 1px;
  background:
    linear-gradient(currentColor, currentColor) left top / 0 1px no-repeat,
    linear-gradient(currentColor, currentColor) right top / 0 1px no-repeat;
  opacity: .85;
  transition: background-size .38s var(--ease);
}

.fv-teaser-link::after {
  bottom: 0;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity .22s var(--ease) .8s, transform .32s var(--ease) .8s;
}

.fv-teaser-link:hover,
.fv-teaser-link:focus-visible {
  transform: translateY(-2px);
  background-size: 100% 1px, 1px 100%, 1px 100%;
  transition: transform .3s var(--ease), background-size .42s var(--ease);
}

.fv-teaser-link:hover::before,
.fv-teaser-link:focus-visible::before {
  background-size: 50% 1px, 50% 1px;
  transition-delay: .42s;
}

.fv-teaser-link:hover::after,
.fv-teaser-link:focus-visible::after {
  opacity: .85;
  transform: scaleX(1);
  transition: opacity .22s var(--ease), transform .32s var(--ease);
}

/* About page */
.about-page {
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.about-side-nav {
  position: fixed;
  color: var(--black);
}

.about-track {
  display: flex;
  width: calc(100vw - 104px);
  height: 100vh;
  height: 100dvh;
  margin-left: 104px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scrollbar-width: thin;
}

.about-track::-webkit-scrollbar {
  height: 8px;
}

.about-track::-webkit-scrollbar-thumb {
  background: var(--gray);
}

.about-panel {
  position: relative;
  display: flex;
  flex: 0 0 calc(100vw - 104px);
  width: calc(100vw - 104px);
  height: 100vh;
  height: 100dvh;
  min-height: 720px;
  background: var(--black);
}

.about-profile-panel {
  align-items: center;
  gap: clamp(64px, 7.2vw, 120px);
  padding: clamp(72px, 11vh, 132px) clamp(80px, 8.2vw, 132px) clamp(72px, 11vh, 132px) clamp(178px, 14vw, 250px);
}

.about-profile-image {
  width: clamp(320px, 24vw, 500px);
  aspect-ratio: 326 / 462;
  background: var(--gray);
  overflow: hidden;
}

.about-profile-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-profile-text {
  display: grid;
  gap: clamp(46px, 7vh, 74px);
  font-size: clamp(42px, 3.4vw, 66px);
  line-height: 1.1;
}

.about-profile-text p,
.about-profile-text h1 {
  margin: 0;
}

.about-name-block {
  display: grid;
  gap: 2px;
}

.about-name-en {
  font-size: clamp(30px, 2.3vw, 44px);
}

.about-name-ja {
  font-size: clamp(56px, 5vw, 92px);
  font-weight: 600;
  line-height: 1;
}

.about-concept-panel {
  align-items: center;
  justify-content: center;
  padding: clamp(72px, 10vh, 120px);
}

.about-concept {
  text-align: center;
}

.about-concept h2 {
  margin: 0 0 clamp(108px, 16vh, 156px);
  font-size: clamp(58px, 5.2vw, 96px);
  font-weight: 400;
  line-height: 1;
}

.about-concept p {
  margin: 0 0 48px;
  font-size: clamp(28px, 2.5vw, 44px);
  line-height: 1.45;
}

.about-color-panel {
  align-items: center;
  justify-content: center;
  padding: clamp(72px, 10vh, 118px) clamp(96px, 9vw, 150px);
}

.about-color-content {
  display: grid;
  grid-template-columns: minmax(760px, 1fr) clamp(170px, 14.8vw, 214px);
  align-items: start;
  gap: clamp(16px, 2.4vw, 42px);
  width: min(1240px, 84vw);
}

.about-color-text h2 {
  margin: 0;
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.18;
  white-space: nowrap;
}

.about-color-code {
  margin: 0 0 clamp(86px, 11vh, 118px);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.15;
}

.about-color-ja {
  margin: 0 0 clamp(48px, 7vh, 70px);
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.42;
  white-space: nowrap;
}

.about-color-note {
  margin: 0;
  font-size: clamp(23px, 1.8vw, 29px);
  line-height: 1.35;
  white-space: nowrap;
}

.about-color-chip {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-top: clamp(8px, 2vh, 18px);
  background: #00a497;
}

/* Contact page */
.contact-page {
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.contact-side-nav {
  position: fixed;
  color: var(--black);
}

.contact-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100vw - 104px);
  min-height: 100vh;
  min-height: 100dvh;
  margin-left: 104px;
  padding: clamp(58px, 8vh, 96px) clamp(72px, 8vw, 128px);
}

.contact-content {
  display: grid;
  justify-items: center;
  width: min(960px, 78vw);
}

.contact-message {
  margin-bottom: clamp(70px, 9vh, 92px);
  font-size: clamp(31px, 2.45vw, 40px);
  line-height: 1.25;
  text-align: center;
}

.contact-message p {
  margin: 0;
}

.contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(66px, 7vw, 100px);
  margin-bottom: clamp(28px, 4vh, 44px);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 5.4vw, 84px);
  height: clamp(64px, 5.4vw, 84px);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

.contact-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-link:hover {
  opacity: .72;
  transform: translateY(-4px);
}

.contact-mail-address {
  display: inline-block;
  margin-bottom: clamp(64px, 10vh, 108px);
  color: var(--white);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 8px;
  user-select: text;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.contact-mail-address:hover,
.contact-mail-address:focus-visible {
  opacity: .72;
  transform: translateY(-3px);
}

.contact-banner {
  position: relative;
  width: min(520px, 50vw);
  isolation: isolate;
}

.contact-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.js-secret-banner {
  cursor: pointer;
}

.contact-secret-flash {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0, 164, 151, .18) 0 2px,
      transparent 2px 8px
    ),
    radial-gradient(circle at 68% 55%, rgba(0, 164, 151, .32), transparent 26%),
    radial-gradient(circle at 42% 48%, rgba(255, 255, 255, .18), transparent 22%);
  mix-blend-mode: screen;
}

.contact-secret-flash.is-show {
  animation: secretFlash .92s ease-out both;
}

.contact-secret-panel {
  position: absolute;
  right: clamp(-250px, -17vw, -190px);
  bottom: clamp(112px, 9vw, 150px);
  z-index: 2;
  color: var(--white);
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px) skewX(-6deg);
  filter: drop-shadow(0 0 14px rgba(0, 164, 151, .4));
  transition: opacity .28s var(--ease), transform .42s var(--ease);
}

.contact-secret-panel span,
.contact-secret-panel strong {
  display: block;
  white-space: nowrap;
}

.contact-secret-panel span {
  color: #00a497;
  font-size: clamp(11px, .95vw, 15px);
  font-family: Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .12em;
}

.contact-secret-panel strong {
  margin-top: 4px;
  color: var(--white);
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  line-height: .95;
}

.contact-secret-panel.is-show {
  opacity: 1;
  transform: translateX(0) skewX(0deg);
  animation: secretGlitch .66s steps(2, end) both;
}

.contact-secret-link {
  position: absolute;
  right: clamp(-96px, -7vw, -72px);
  bottom: clamp(28px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(54px, 4.8vw, 74px);
  height: clamp(54px, 4.8vw, 74px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(.92);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}

.contact-secret-link.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: secretBounce .7s cubic-bezier(.2, 1.35, .35, 1) both;
  filter: drop-shadow(0 0 14px rgba(0, 164, 151, .72));
}

.contact-secret-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes secretFlash {
  0% {
    opacity: 0;
    transform: translateX(-2%);
  }
  12% {
    opacity: .86;
  }
  28% {
    opacity: .36;
    transform: translateX(1.5%);
  }
  46% {
    opacity: .64;
    transform: translateX(-.8%);
  }
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}

@keyframes secretGlitch {
  0% {
    clip-path: inset(0 0 0 0);
    transform: translateX(-12px) skewX(-9deg);
  }
  20% {
    clip-path: inset(0 0 58% 0);
    transform: translateX(8px) skewX(7deg);
  }
  42% {
    clip-path: inset(38% 0 18% 0);
    transform: translateX(-5px) skewX(-5deg);
  }
  68% {
    clip-path: inset(12% 0 0 0);
    transform: translateX(3px) skewX(2deg);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateX(0) skewX(0deg);
  }
}

@keyframes secretBounce {
  0% {
    transform: translateY(16px) scale(.72) rotate(-10deg);
  }
  62% {
    transform: translateY(-8px) scale(1.1) rotate(5deg);
  }
  100% {
    transform: translateY(0) scale(1) rotate(0);
  }
}

/* Gallery page */
.gallery-page {
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--white);
  background: var(--black);
}

.gallery-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: clamp(92px, 9vh, 112px);
  background: #8f8f8f;
}

.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: clamp(84px, 10vw, 180px);
  color: var(--black);
  font-size: clamp(19px, 1.45vw, 25px);
}

.gallery-nav a {
  display: block;
  padding: 9px 0;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.gallery-nav a:hover,
.gallery-nav a:focus-visible {
  opacity: .62;
  transform: translateY(-2px);
}

.gallery-nav a.is-active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 9px;
}

.gallery-main {
  min-height: calc(100vh - clamp(92px, 9vh, 112px));
  padding: clamp(72px, 8vh, 96px) clamp(52px, 8vw, 118px) clamp(96px, 12vh, 148px);
}

.gallery-intro {
  margin: 0 auto clamp(62px, 8vh, 92px);
  text-align: center;
}

.gallery-intro h1 {
  margin: 0 0 18px;
  font-size: clamp(48px, 5.2vw, 74px);
  font-weight: 400;
  line-height: 1;
}

.gallery-intro p {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4.8vw, 76px);
  width: min(1160px, 86vw);
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gray);
  transition: transform .35s var(--ease);
}

.gallery-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 2px solid #00a497;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(.985);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.gallery-card > span:not(.gallery-card-title) {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gray);
}

.gallery-card-coming-soon {
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, .58);
  cursor: default;
}

.gallery-card-coming-soon > span:not(.gallery-card-title) {
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 42px);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 700;
  line-height: .95;
  text-align: center;
  text-transform: lowercase;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .35s var(--ease), transform .65s var(--ease);
}

.gallery-card-photocollage img {
  object-position: 50% 38%;
}

.gallery-card-comic-pop img {
  object-position: 78% 46%;
}

.gallery-card-comic-pop-02 img {
  object-position: 24% 54%;
}

.gallery-card-lp-design img {
  width: 210%;
  height: 210%;
  object-position: 59% 7%;
}

.gallery-card-logo-design img {
  object-fit: contain;
}

.gallery-card-editorial-design img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 20%;
}

.fv-work-comic-pop .fv-work-title,
.fv-work-editorial-design .fv-work-title,
.gallery-card-comic-pop .gallery-card-title,
.gallery-card-editorial-design .gallery-card-title {
  z-index: 3;
}

.gallery-card-d4ta img {
  object-position: 62% 50%;
}

.gallery-card-beam-rifle img {
  object-position: 50% 50%;
}

.gallery-card-caterpy img {
  object-position: 48% 42%;
}

.gallery-card-focus img {
  object-position: 50% 50%;
}

.gallery-card-millenoa img {
  object-position: 50% 50%;
}

.gallery-card-title {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: clamp(14px, 1.8vw, 22px) clamp(18px, 2.4vw, 30px);
  color: var(--white);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
  opacity: 0;
  background: rgba(0, 0, 0, .58);
  transform: translateY(100%);
  transition: opacity .32s var(--ease), transform .38s var(--ease);
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-6px);
}

.gallery-card:hover::before,
.gallery-card:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: brightness(.82);
  transform: scale(1.06);
}

.gallery-card:hover .gallery-card-title,
.gallery-card:focus-visible .gallery-card-title {
  opacity: 1;
  transform: translateY(0);
}

/* Work detail page */
.work-detail-page {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--black);
  background:
    linear-gradient(180deg, var(--white) 0%, var(--white) 68%, rgba(0, 164, 151, .14) 100%);
}

.work-detail-page::before,
.work-detail-page::after {
  position: fixed;
  pointer-events: none;
  content: "";
}

.work-detail-page::before {
  top: clamp(132px, 14vh, 174px);
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, transparent, rgba(0, 164, 151, .36), transparent) clamp(28px, 5vw, 82px) 0 / 1px 100% no-repeat,
    linear-gradient(180deg, transparent, rgba(0, 164, 151, .2), transparent) clamp(82px, 12vw, 180px) 0 / 1px 100% no-repeat,
    linear-gradient(180deg, transparent, rgba(0, 164, 151, .22), transparent) calc(100% - clamp(70px, 9vw, 150px)) 0 / 1px 100% no-repeat;
}

.work-detail-page::after {
  right: max(-420px, -22vw);
  bottom: max(-460px, -34vh);
  z-index: 0;
  width: clamp(620px, 62vw, 1040px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(0, 164, 151, .22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 58%, rgba(0, 164, 151, .08) 59%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(0, 164, 151, .07), transparent 62%);
}

.work-detail-page .gallery-header,
.work-detail-main,
.work-assets,
.work-booklet-assets,
.work-back-link,
.work-footer {
  position: relative;
  z-index: 1;
}

.work-detail-main {
  width: min(1260px, 86vw);
  margin: 0 auto;
  padding: clamp(38px, 5vh, 62px) 0 clamp(96px, 12vh, 144px);
}

.work-hero {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(420px, 1.12fr);
  gap: clamp(44px, 5vw, 74px);
  align-items: start;
  margin-bottom: clamp(150px, 18vh, 210px);
}

.work-detail-main-compact {
  padding-bottom: clamp(34px, 5vh, 58px);
}

.work-detail-main-compact .work-hero {
  margin-bottom: clamp(34px, 5vh, 58px);
}

@media (max-width: 980px) {
  .work-detail-main {
    width: min(760px, 86vw);
  }

  .work-hero {
    grid-template-columns: 1fr;
    gap: clamp(34px, 5vw, 48px);
  }
}

.work-back-link {
  position: relative;
  display: block;
  width: fit-content;
  margin: clamp(34px, 5vh, 58px) auto 0;
  padding: 12px 18px 14px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.2;
  background:
    linear-gradient(currentColor, currentColor) left bottom / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) left bottom / 1px 0 no-repeat,
    linear-gradient(currentColor, currentColor) right bottom / 1px 0 no-repeat;
  transition: transform .3s var(--ease), background-size .42s var(--ease) .38s;
}

.work-back-link::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background:
    linear-gradient(currentColor, currentColor) left top / 0 1px no-repeat,
    linear-gradient(currentColor, currentColor) right top / 0 1px no-repeat;
  content: "";
  transition: background-size .38s var(--ease);
}

.work-back-link:hover,
.work-back-link:focus-visible {
  background-size: 100% 1px, 1px 100%, 1px 100%;
  transform: translateY(-2px);
  transition: transform .3s var(--ease), background-size .42s var(--ease);
}

.work-back-link:hover::before,
.work-back-link:focus-visible::before {
  background-size: 50% 1px, 50% 1px;
  transition-delay: .42s;
}

.work-main-image {
  overflow: hidden;
  background: var(--white);
}

.work-main-image img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
}

.work-main-image-lp img {
  width: 88%;
  max-height: none;
  margin: 0 auto;
}

.work-main-image-logo img {
  width: 112%;
  max-width: none;
  margin-left: -6%;
}

.work-main-image-stack {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
  overflow: visible;
}

.work-main-image-stack img {
  width: 100%;
  max-height: none;
}

.work-main-image-d4ta img:first-child {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.work-main-image-d4ta img:nth-child(2) {
  width: min(76%, 360px);
  margin: 0 auto;
}

.work-main-image-focus img:nth-child(2) {
  width: 92%;
  margin: 0 auto;
}

.work-assets-focus {
  width: min(1120px, 82vw);
  margin: clamp(54px, 8vh, 92px) auto clamp(42px, 6vh, 70px);
}

.work-assets-focus img {
  width: 100%;
  max-height: min(78vh, 820px);
  object-fit: contain;
}

.work-assets-focus figcaption {
  width: 100%;
  margin: 0 0 clamp(10px, 1.3vw, 18px);
  text-align: left;
}

.work-info dl {
  display: grid;
  gap: clamp(24px, 3.3vh, 42px);
  margin: 0 0 clamp(36px, 5vh, 58px);
}

.work-info dt,
.work-info dd,
.work-description,
.work-asset figcaption,
.work-footer p {
  margin: 0;
}

.work-info dt {
  font-size: clamp(22px, 1.95vw, 30px);
  line-height: 1.1;
}

.work-info dd {
  font-size: clamp(30px, 2.65vw, 42px);
  line-height: 1.15;
}

.work-description {
  max-width: 34em;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.55;
  line-break: strict;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.work-assets {
  display: grid;
  gap: clamp(92px, 12vh, 140px);
}

.work-asset {
  margin: 0;
}

.work-asset figcaption {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.25vw, 34px);
  line-height: 1.2;
}

.work-asset img {
  display: block;
  width: 100%;
  height: auto;
}

.work-booklet-assets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 52px);
  margin: clamp(70px, 9vh, 110px) 0 clamp(42px, 6vh, 70px);
}

.work-booklet-assets img {
  display: block;
  width: 100%;
  height: auto;
}

.work-asset-flier {
  width: min(500px, 42vw);
  margin: 0 auto;
}

.work-assets-d4ta {
  grid-template-columns: 1fr;
  width: min(760px, 78vw);
  margin: clamp(54px, 8vh, 92px) auto 0;
}

.work-asset-d4ta-banner {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .work-assets-d4ta {
    grid-template-columns: 1fr;
  }

  .work-asset-d4ta-banner {
    width: min(520px, 100%);
    margin: 0 auto;
  }
}

.work-assets-caterpy {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(28px, 3.2vw, 52px);
  width: min(1040px, 86vw);
  margin: clamp(58px, 8vh, 96px) auto clamp(42px, 6vh, 70px);
}

.work-assets-caterpy .work-asset figcaption {
  font-size: clamp(18px, 1.45vw, 26px);
  line-height: 1.25;
}

.work-assets-caterpy .work-asset {
  min-width: 0;
}

.work-assets-caterpy .work-asset img {
  width: 100%;
  max-width: 100%;
  height: clamp(420px, 52vh, 620px);
  object-fit: contain;
  object-position: top center;
}

.work-asset-caterpy-story {
  width: 100%;
  justify-self: center;
}

@media (max-width: 980px) {
  .work-assets-caterpy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(620px, 86vw);
  }

  .work-asset-caterpy-story {
    grid-column: 1 / -1;
    width: min(300px, 52vw);
  }
}

.work-asset-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 52px);
  width: min(540px, 50vw);
  margin-left: min(430px, 40vw);
  margin-top: max(-540px, -44vw);
}

.work-asset-square .work-placeholder {
  aspect-ratio: 1 / 1;
}

.work-asset-wide {
  width: min(640px, 58vw);
  margin: 0 auto;
}

.work-asset-wide .work-placeholder {
  aspect-ratio: 2.75 / 1;
}

.work-placeholder {
  width: 100%;
  background: var(--gray);
}

.work-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 86px;
  color: var(--white);
  background: var(--black);
  font-size: clamp(22px, 2vw, 30px);
}

.page-mobile-footer {
  display: none;
}

/* Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* SP */
@media (max-width: 767px) {
  html {
    scroll-padding-top: 0;
  }

  body {
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--black);
  }

  body.is-mobile-menu-open {
    overflow: hidden;
  }

  .mobile-menu-trigger {
    position: fixed !important;
    top: 26px;
    left: 24px;
    z-index: 2147483000 !important;
    display: block;
    width: 132px;
    height: 66px;
    color: var(--white);
    pointer-events: none;
  }

  .mobile-menu-trigger.is-on-light {
    color: var(--black);
  }

  body.work-detail-page .mobile-menu-trigger {
    color: var(--black);
  }

  .mobile-menu-button {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 56px;
    height: 46px;
    padding: 0;
    border: 0;
    color: inherit;
    appearance: none;
    background: transparent;
    outline: none;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu-button > span:not(.mobile-menu-hint) {
    position: absolute;
    left: 4px;
    display: block;
    width: 44px;
    height: 4px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-menu-button > span:nth-child(1) {
    top: 8px;
  }

  .mobile-menu-button > span:nth-child(2) {
    top: 22px;
  }

  .mobile-menu-button > span:nth-child(3) {
    top: 36px;
  }

  body.is-mobile-menu-open .mobile-menu-trigger {
    display: none !important;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-menu-hint {
    position: absolute;
    top: -8px;
    left: 56px;
    display: block;
    color: currentColor;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transform: rotate(18deg);
  }

  .mobile-menu-hint-arrow {
    display: block;
    position: relative;
    width: 34px;
    height: 16px;
    margin-top: 8px;
    margin-left: 6px;
    font-size: 0;
    line-height: 1;
    transform: rotate(-14deg);
  }

  .mobile-menu-hint-arrow::before {
    position: absolute;
    top: 7px;
    right: 0;
    width: 31px;
    height: 4px;
    border-radius: 999px;
    background: currentColor;
    content: "";
  }

  .mobile-menu-hint-arrow::after {
    position: absolute;
    top: 2px;
    left: 0;
    width: 12px;
    height: 12px;
    border-bottom: 4px solid currentColor;
    border-left: 4px solid currentColor;
    content: "";
    transform: rotate(45deg);
  }

  .mobile-menu {
    position: fixed !important;
    inset: 0;
    z-index: 2147482000 !important;
    display: block;
    width: 100vw;
    height: 100dvh;
    overflow: hidden;
    isolation: isolate;
    color: var(--black);
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s var(--ease), visibility .24s var(--ease);
  }

  .mobile-menu::before {
    position: absolute;
    top: 52px;
    left: 52px;
    z-index: 0;
    width: 240vmax;
    height: 240vmax;
    border-radius: 50%;
    background: var(--gray);
    content: "";
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    transition: transform .62s cubic-bezier(.65, 0, .2, 1);
  }

  body.is-mobile-menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.is-mobile-menu-open .mobile-menu::before {
    transform: translate(-50%, -50%) scale(1);
  }

  .mobile-menu-close {
    position: fixed;
    top: 28px;
    left: 28px;
    z-index: 2147483001 !important;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    color: var(--black);
    appearance: none;
    background: transparent;
    pointer-events: auto !important;
    transform: translateZ(0);
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu-close::before,
  .mobile-menu-close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 4px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transform-origin: center;
  }

  .mobile-menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mobile-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-menu-nav {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex !important;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(58px, 9vh, 90px);
  }

  .mobile-menu-nav a {
    display: block;
    color: var(--black) !important;
    font-family: Arial, sans-serif;
    font-size: clamp(52px, 15vw, 74px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .42s var(--ease), transform .42s var(--ease);
  }

  body.is-mobile-menu-open .mobile-menu-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  body.is-mobile-menu-open .mobile-menu-nav a:nth-child(1) {
    transition-delay: .2s;
  }

  body.is-mobile-menu-open .mobile-menu-nav a:nth-child(2) {
    transition-delay: .28s;
  }

  body.is-mobile-menu-open .mobile-menu-nav a:nth-child(3) {
    transition-delay: .36s;
  }

  body.is-mobile-menu-open .mobile-menu-nav a:nth-child(4) {
    transition-delay: .44s;
  }

  .mobile-back-top {
    position: fixed !important;
    right: 18px;
    bottom: 18px;
    z-index: 2147483000 !important;
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--black);
    background: var(--white);
    pointer-events: auto !important;
    transform: translateZ(0);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .18);
  }

  .mobile-back-top span {
    width: 0;
    height: 0;
    border-right: 13px solid transparent;
    border-bottom: 20px solid currentColor;
    border-left: 13px solid transparent;
    transform: translateY(-2px);
  }

  .fv-side-nav,
  .gallery-header,
  .arrow-button,
  .back-to-top-button {
    display: none !important;
  }

  .fv-track {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }

  .fv-panel {
    width: 100%;
    min-height: 100vh;
    height: auto;
  }

  .fv-title-screen,
  .fv-copy-screen {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }

  .fv-title-screen {
    background: var(--gray);
  }

  .fv-copy-screen {
    background: var(--black);
  }

  .fv-title-area {
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 0 32px;
  }

  .fv-title {
    width: min(86vw, 390px);
    font-size: clamp(58px, 17vw, 76px);
    line-height: 1.08;
    white-space: nowrap;
  }

  .fv-title span {
    white-space: pre;
  }

  .fv-copy-area {
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding: 0;
  }

  .fv-main-copy {
    margin: 0 0 40px;
    font-size: clamp(31px, 8.7vw, 34px);
    line-height: 1.2;
    white-space: nowrap;
  }

  .fv-sub-copy {
    margin: 0 0 110px;
    font-size: clamp(31px, 8.5vw, 38px);
    line-height: 1.45;
  }

  .fv-caption {
    font-size: 24px;
    line-height: 1.45;
  }

  .fv-gallery {
    display: block;
    min-height: auto;
    padding: 100px 28px 104px;
    background: var(--white);
  }

  .fv-gallery-scroll {
    height: auto;
    margin-left: 0;
    overflow: visible;
  }

  .fv-gallery-canvas {
    display: grid;
    width: 100%;
    height: auto;
    min-height: 0;
    gap: 34px;
  }

  .fv-work,
  .fv-contact-teaser {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .fv-work {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .fv-contact-teaser {
    padding: 38px 0 20px;
    color: var(--black);
    font-size: 28px;
    line-height: 1.2;
  }

  .about-page,
  .contact-page {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .about-track {
    display: block;
    width: 100%;
    height: auto;
    margin-left: 0;
    overflow: visible;
  }

  .about-panel {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    flex: none;
  }

  .about-profile-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
    padding: 112px 24px 96px;
  }

  .about-profile-image {
    width: min(72vw, 360px);
    margin: 0 auto;
  }

  .about-profile-text {
    gap: 34px;
    width: min(86vw, 420px);
    margin: 0 auto;
    font-size: clamp(30px, 8.8vw, 38px);
  }

  .about-name-en {
    font-size: clamp(24px, 6.8vw, 30px);
    white-space: nowrap;
  }

  .about-name-ja {
    font-size: clamp(44px, 12vw, 58px);
    white-space: nowrap;
  }

  .about-profile-text p {
    white-space: nowrap;
  }

  .about-concept-panel {
    padding: 104px 24px 96px;
  }

  .about-concept h2 {
    margin-bottom: 78px;
    font-size: clamp(48px, 15vw, 68px);
    line-height: 1.28;
  }

  .about-concept p {
    margin-bottom: 32px;
    font-size: 23px;
  }

  .about-color-panel {
    padding: 104px 24px 96px;
  }

  .about-color-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    width: 100%;
  }

  .about-color-text h2,
  .about-color-ja,
  .about-color-note {
    white-space: normal;
  }

  .about-color-text h2 {
    font-size: 42px;
  }

  .about-color-code {
    margin-bottom: 58px;
    font-size: 34px;
  }

  .about-color-ja,
  .about-color-note {
    font-size: 23px;
  }

  .about-color-chip {
    width: min(42vw, 180px);
    margin-top: 0;
  }

  .contact-main {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    margin-left: 0;
    padding: 112px 24px 96px;
  }

  .contact-content {
    width: 100%;
  }

  .contact-message {
    margin-bottom: 54px;
    font-size: 26px;
  }

  .contact-links {
    gap: 34px;
  }

  .contact-icon-link {
    width: 72px;
    height: 72px;
  }

  .contact-banner {
    width: min(84vw, 420px);
  }

  .contact-secret-link {
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
  }

  .contact-secret-panel {
    right: 12px;
    bottom: 76px;
    text-align: right;
  }

  .contact-secret-panel span {
    font-size: 11px;
  }

  .contact-secret-panel strong {
    font-size: 28px;
  }

  .gallery-main {
    padding: 112px 24px 84px;
  }

  .gallery-title {
    font-size: 48px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .work-detail-main {
    width: 100%;
    padding: 112px 24px 64px;
  }

  .work-hero {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .work-meta {
    font-size: clamp(26px, 7.8vw, 34px);
    word-break: keep-all;
  }

  .work-description {
    font-size: 22px;
  }

  .work-assets,
  .work-assets-two,
  .work-assets-three {
    grid-template-columns: 1fr;
    width: min(86vw, 420px);
  }

  .work-assets-caterpy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
    width: min(92vw, 520px);
  }

  .work-assets-caterpy .work-asset img {
    height: auto;
    object-fit: contain;
  }

  .work-assets-caterpy .work-asset-caterpy-story {
    grid-column: 1 / -1;
    width: min(64vw, 280px);
    justify-self: center;
  }

  .work-asset-flier {
    width: min(82vw, 420px);
  }

  .work-booklet-assets {
    grid-template-columns: 1fr;
    width: min(86vw, 520px);
    margin-inline: auto;
  }

  .work-footer {
    min-height: 76px;
    font-size: 22px;
  }

  .page-mobile-footer {
    display: flex;
  }
}
