@charset "UTF-8";
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("../fonts/ZenKakuGothicNew-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("../fonts/ZenKakuGothicNew-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("../fonts/ZenKakuGothicNew-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Albert Sans";
  src: url("../fonts/AlbertSans-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Albert Sans";
  src: url("../fonts/AlbertSans-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Albert Sans";
  src: url("../fonts/AlbertSans-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Albert Sans";
  src: url("../fonts/AlbertSans-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  --color-bg: #ffffff;
  --color-text: #1f1f1f;
  --color-text-sub: #1e1e1e;
  --color-text-muted: #3a3a3a;
  --color-accent: #111111;
  --color-band: #ededed;
  --color-sticky: #f6f5f3;
  --font-jp: "Zen Kaku Gothic New", Meiryo, sans-serif;
  --font-en: "Albert Sans", sans-serif;
}

/*=======================================
  ベース
=======================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.is-intro-active {
  background: #000;
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

footer {
  margin-top: auto;
}

/*=======================================
  カスタムカーソル
=======================================*/
@media (hover: hover) and (pointer: fine) {
  html,
  body,
  a,
  button {
    cursor: none;
  }
  .pagetop-fixed {
    cursor: none;
  }
.cursor {
    position: fixed;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    background: rgba(31, 31, 31, 0.6);
    border-radius: 50%;
  z-index: 10050;
    opacity: 0;
    transition: opacity 0.2s ease, width 0.25s ease, height 0.25s ease, top 0.25s ease, left 0.25s ease, background 0.25s ease;
    transform: translate(0, 0);
    pointer-events: none;
  }
  .cursor.is-visible {
    opacity: 1;
  }
  .cursor.cursor--hover {
    top: -18px;
    left: -18px;
    width: 36px;
    height: 36px;
    background: rgba(31, 31, 31, 0.18);
  }
  body.is-cursor-invert .cursor {
    background: rgba(255, 255, 255, 0.7);
  }
  body.is-cursor-invert .cursor.cursor--hover {
    background: rgba(255, 255, 255, 0.25);
  }

  body.is-native-cursor-zone .cursor,
  body.is-native-cursor-zone .cursor.is-visible,
  body.is-native-cursor-zone .cursor.cursor--hover {
    opacity: 0;
  }

  .work-detail__design-viewport,
  .work-detail__design-viewport * {
    cursor: auto;
  }
}
.en {
  font-family: var(--font-en);
}

/*=======================================
  ヘッダー
=======================================*/
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}

body.is-intro-active .header::before {
  opacity: 0;
  transform: translateY(-100%);
}
body.is-intro-active .header__nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}
body.is-intro-active .menu-toggle {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}
body.is-intro-active .band-decor {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
}

.header {
  position: relative;
  height: 100vh;
  --band-width: 240px;
  --color-band: #1f1f1f;
  --color-accent: #f6f5f3;
  --band-text: #ffffff;
}
.header::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: var(--band-width);
  height: 100vh;
  background: var(--color-band);
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: 5;
  opacity: 1;
  transform: translateY(0);
}

.header__nav {
  position: fixed;
  left: calc(var(--band-width) / 2 - 48px);
  top: clamp(132px, 16vh, 176px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  align-items: flex-start;
  text-align: left;
  z-index: 10;
}
.header__link {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3.2px;
  text-decoration: none;
  color: var(--band-text);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  position: relative;
  padding-left: 14px;
  animation: none;
}
.header__link span {
  display: inline-block;
}
.header__link::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 3px;
  height: 18px;
  background: var(--band-text);
  transform: translateY(-50%);
  opacity: 0.45;
  transition: opacity 0.25s ease;
}
.header__link:focus-visible {
  opacity: 1;
  transform: none;
}
.header__link:focus-visible::before {
  opacity: 1;
}
.header__link:focus-visible span {
  animation: letter-bounce 0.6s ease forwards;
}
.header__link:focus-visible span:nth-child(1) {
  animation-delay: 0s;
}
.header__link:focus-visible span:nth-child(2) {
  animation-delay: 0.03s;
}
.header__link:focus-visible span:nth-child(3) {
  animation-delay: 0.06s;
}
.header__link:focus-visible span:nth-child(4) {
  animation-delay: 0.09s;
}
.header__link:focus-visible span:nth-child(5) {
  animation-delay: 0.12s;
}
.header__link:focus-visible span:nth-child(6) {
  animation-delay: 0.15s;
}
.header__link:focus-visible span:nth-child(7) {
  animation-delay: 0.18s;
}
@media (hover: hover) and (pointer: fine) {
  .header__link:hover {
    opacity: 1;
    transform: none;
  }
  .header__link:hover::before {
    opacity: 1;
  }
  .header__link:hover span {
    animation: letter-bounce 0.6s ease forwards;
  }
  .header__link:hover span:nth-child(1) {
    animation-delay: 0s;
  }
  .header__link:hover span:nth-child(2) {
    animation-delay: 0.03s;
  }
  .header__link:hover span:nth-child(3) {
    animation-delay: 0.06s;
  }
  .header__link:hover span:nth-child(4) {
    animation-delay: 0.09s;
  }
  .header__link:hover span:nth-child(5) {
    animation-delay: 0.12s;
  }
  .header__link:hover span:nth-child(6) {
    animation-delay: 0.15s;
  }
  .header__link:hover span:nth-child(7) {
    animation-delay: 0.18s;
  }
}
.header.is-sticky::before {
  transform: translateY(0);
}
.header.is-sticky::after {
  transform: translateY(0);
  opacity: 1;
}
.header.is-sticky .header__nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.header.is-sticky .header__link {
  animation: none;
}

.menu-toggle {
  position: fixed;
  top: 24px;
  left: 24px;
  width: 36px;
  height: 28px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 0;
  pointer-events: auto;
  z-index: 12;
}

.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  position: relative;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.band-decor {
  position: fixed;
  left: calc(var(--band-width) / 2);
  bottom: 86px;
  z-index: 6;
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
  pointer-events: none;
}

.band-decor--logo {
  position: fixed;
  overflow: visible;
}

.band-decor--logo::before {
  content: "♪";
  position: absolute;
  left: 86%;
  top: -16px;
  font-size: 26px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(6px) scale(0.8);
  pointer-events: none;
}

@media (min-width: 992px) {
  body.is-cta-hover .band-decor--logo::before {
    animation: note-float 0.75s ease-out forwards;
  }
}
.band-decor--logo img {
  display: block;
  width: 120px;
  height: auto;
  opacity: 1;
}

.band-decor__label {
  display: block;
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 1;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
}

.band-typed::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.9em;
  margin-left: 3px;
  background-color: currentColor;
  opacity: 0.7;
  animation: typed-caret 0.9s steps(1) infinite;
}

@keyframes typed-caret {
  0%, 50% {
    opacity: 0.7;
  }
  51%, 100% {
    opacity: 0;
  }
}
@keyframes nav-rise {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 0.9;
    transform: translateX(0);
  }
}
@keyframes letter-bounce {
  from {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  70% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes note-float {
  0% {
    opacity: 0;
    transform: translateY(6px) scale(0.8);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(1);
  }
}
.intro {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  --intro-duration: 3720ms;
  --intro-exit: 260ms;
  --intro-black-duration: 400ms;
  --intro-open: 3670ms;
}

.intro.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.intro.is-exiting {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__black {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: #000;
  overflow: hidden;
  transition: height 400ms cubic-bezier(1, 0, 0, 1);
  z-index: 2;
}

.intro__black.is-open {
  height: 0;
}

.intro__black-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.intro__name {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2.1px;
  color: #f2f2f2;
  margin: 0;
  opacity: 1;
  transform: translateY(0);
  position: relative;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
}

.intro__name-logo {
  display: block;
  width: clamp(156px, 17vw, 244px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-2%) scale(0.995);
  will-change: clip-path, opacity, transform;
}

.intro__black.is-open .intro__name-logo {
  opacity: 0;
  transition: opacity 0.12s linear;
}

.intro__line-wrap {
  position: relative;
  width: clamp(108px, 14vw, 150px);
  height: 2px;
  display: block;
  overflow: visible;
  margin-top: -36px;
  z-index: 1;
}

.intro__line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(245, 242, 238, 0.26);
  transform: scaleX(0);
  transform-origin: left;
}

.intro__line--thick {
  height: 2px;
  background: #f3efea;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}

.intro.is-active .intro__name--logo .intro__name-logo {
  animation: intro-logo-reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards, intro-logo-hide 0.12s linear calc(var(--intro-open) - 120ms) forwards;
}

.intro.is-active .intro__line--thin {
  animation: intro-line-draw 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.55s forwards, intro-line-hide 0.1s ease 3.15s forwards;
}

.intro.is-active .intro__line--thick {
  animation: intro-line-draw 0.6s cubic-bezier(0.22, 1, 0.36, 1) 2.2s forwards;
}

.intro__line-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 3;
}

.intro.is-active .intro__line-wrap::after {
  animation: intro-line-cover 0.45s cubic-bezier(0.22, 1, 0.36, 1) 2.9s forwards;
}

.intro.is-active .intro__line-wrap {
  animation: intro-line-wrap-hide 0.1s ease 3.4s forwards;
}

body.is-intro-active {
  overflow: hidden;
}

body.is-fv-locked {
  overflow: hidden;
}

body.is-page-transition-lock {
  overflow: hidden;
  touch-action: none;
}

body.is-works-lock {
  overflow: hidden;
}

body.is-profile-lock {
  overflow: hidden;
}

@keyframes intro-line-draw {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes intro-line-cover {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes intro-line-wrap-hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes intro-line-hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes intro-logo-reveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-2%) scale(0.995);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0) scale(1);
  }
}

@keyframes intro-logo-hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*=======================================
  ローディング / ページ遷移
=======================================*/
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  height: 100%;
  width: 100%;
  background: #000;
}

html.is-page-transition-pending .page-transition {
  opacity: 1;
  height: 100%;
  transition: none;
}

.page-transition.is-dim {
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.4, 0.4, 0, 1);
}

.page-transition.is-open {
  opacity: 1;
  height: 0%;
  transition: height 400ms cubic-bezier(1, 0, 0, 1) 0.2s;
}

/*=======================================
  TOP: FV
=======================================*/
.fv {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(32px, 6vw, 140px);
  padding-bottom: clamp(32px, 6vw, 140px);
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  overflow: hidden;
}
.fv__inner {
  text-align: center;
}
.fv__title {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: 3px;
  color: var(--color-text);
  animation: none;
  opacity: 0;
  display: block;
  white-space: normal;
}
.fv__subtitle {
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(31, 31, 31, 0.66);
  animation: none;
  opacity: 0;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.fv__subtitle::before {
  content: "";
  width: 22px;
  height: 1.6px;
  background: linear-gradient(90deg, rgba(31, 31, 31, 0.62) 0%, rgba(31, 31, 31, 0.38) 55%, rgba(31, 31, 31, 0.08) 100%);
  display: inline-block;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
}
body.is-loaded .fv__title {
  animation: title-reveal 0.6s ease 0.35s forwards;
}
body.is-loaded .fv__subtitle {
  animation: subtitle-reveal 0.6s ease 0.55s forwards;
}
body.is-loaded .fv__subtitle::before {
  animation: subtitle-line 0.6s ease 0.65s forwards;
}
.fv .scroll {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: clamp(24px, 5vw, 64px);
  margin-inline: auto;
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
  pointer-events: none;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 1.6px;
  color: rgba(31, 31, 31, 0.82);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.fv .scroll span {
  display: block;
  text-align: center;
  margin-bottom: 6px;
}
.fv .scroll::before {
  animation: 2s scroll infinite;
  background: currentColor;
  border-radius: 3px;
  content: "";
  height: 7px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
}
.fv .scroll::after {
  border: 2px solid currentColor;
  border-radius: 20px;
  content: "";
  display: block;
  height: 34px;
  margin-inline: auto;
  margin-top: 5px;
  width: 20px;
}

body.is-loaded .fv .scroll {
  opacity: 0.9;
  transition-delay: 1.2s;
}

body.is-scroll-hidden .fv .scroll {
  opacity: 0;
  transition-delay: 0s;
}

@keyframes title-reveal {
  from {
    opacity: 0;
    letter-spacing: 8px;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    letter-spacing: 3px;
    transform: translateY(0);
  }
}
@keyframes subtitle-reveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes subtitle-line {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes line-grow {
  from {
    width: 0;
  }
  to {
    width: 100vw;
  }
}
@keyframes line-fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  95% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
    top: 40%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 70%;
  }
}
@media (max-width: 991.98px) {
  .fv .scroll {
    display: none;
  }
}

/*=======================================
  TOP: WORKS
=======================================*/
.works {
  padding: 200px 0 180px;
  position: relative;
}
.works__inner {
  width: min(960px, 92%);  margin: 0 auto;
  padding: 0 20px;
}
.works__title {
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--color-text);
  margin: 0 0 6px;
}
.works__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 150px;
  height: 42px;
  margin-top: 10px;
  max-width: 100%;
  padding: 0;
  border-radius: 40px;
  background: #111111;
  color: #ffffff;
  border: 2px solid #111111;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  overflow: hidden;
  transition: color 0.2s ease;
}
.works__button:focus-visible {
  color: #111111;
  transition-delay: 0.12s;
}
.works__button:active {
  color: #111111;
}
.works__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.32s ease;
  border-radius: inherit;
  z-index: 0;
  will-change: transform;
}
.works__button:focus-visible::before {
  transform: scale(1);
}
.works__button:active::before {
  transform: scale(1.05);
}
@media (hover: hover) and (pointer: fine) {
  .works__button:hover {
    color: #111111;
    transition-delay: 0.12s;
  }
  .works__button:hover::before {
    transform: scale(1);
  }
}
.works__button-label {
  position: relative;
  z-index: 1;
}
.works__thumb {
  position: absolute;
  z-index: 1;
  border-radius: 14px;
  background: #f0f0f0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 4px solid #111111;
  box-shadow: none;
  opacity: 0;
  transform: translateY(24px) scale(0.9) rotate(var(--rot));
  transform-origin: center;
  animation: none;
  overflow: hidden;
  --works-delay: 0s;
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}
.works__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.works__thumb--1 {
  width: 260px;
  height: 146px;
  top: -22px;
  left: 4%;
  --rot: -8deg;
  --works-delay: 0s;
}
.works__thumb--2 {
  width: 276px;
  height: 155px;
  top: 28px;
  right: 4%;
  --rot: 7deg;
  --works-delay: 0.12s;
}
.works__thumb--3 {
  width: 356px;
  height: 200px;
  bottom: -30px;
  left: 12%;
  --rot: 4deg;
  --works-delay: 0s;
}
.works__thumb--4 {
  width: 100px;
  height: 100px;
  bottom: 128px;
  top: auto;
  right: 10%;
  border-radius: 999px;
  --rot: -6deg;
  --works-delay: 0s;
}
.works__thumb--5 {
  width: 106px;
  height: 186px;
  bottom: 210px;
  top: auto;
  left: auto;
  right: 2%;
  --rot: 8deg;
  --works-delay: 0s;
  background-color: #ffffff;
}
.works__thumb.is-inview {
  animation: works-in 0.32s cubic-bezier(0.445, 0.05, 0.55, 0.95) var(--works-delay) forwards;
}
.works__thumb.is-ready {
  animation: none;
  opacity: 1;
  transform: translateY(0) scale(1) rotate(var(--rot));
}
@media (hover: hover) and (pointer: fine) {
  .works__thumb.is-ready:hover {
    transform: translateY(0) scale(1.045) rotate(var(--rot));
  }
}

@keyframes works-in {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.94);
    filter: blur(2px);
  }
  62% {
    opacity: 1;
    transform: translateY(-2px) scale(1.008);
    filter: blur(0);
  }
  84% {
    opacity: 1;
    transform: translateY(0.5px) scale(0.999);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@media (min-width: 992px) {
  .works__thumb--1 {
    width: clamp(294px, 24.5vw, 450px);
    height: clamp(165px, 13.8vw, 252px);
    left: -4%;
    top: -68px;
  }
  .works__thumb--2 {
    width: clamp(316px, 26.6vw, 500px);
    height: clamp(178px, 15vw, 282px);
    right: -5%;
    top: 8px;
  }
  .works__thumb--3 {
    width: clamp(420px, 34vw, 640px);
    height: clamp(236px, 19.3vw, 360px);
    left: 8%;
    bottom: -88px;
  }
  .works__thumb--4 {
    width: 104px;
    height: 104px;
    right: 6%;
    bottom: 200px;
  }
  .works__thumb--5 {
    width: clamp(120px, 10.2vw, 190px);
    height: clamp(212px, 17.8vw, 330px);
    left: auto;
    right: -2%;
    bottom: 300px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .works__thumb--4 {
    right: 7%;
  }
  .works__thumb--3 {
    left: 10%;
  }
  .works__thumb--5 {
    right: -1%;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .works__thumb--1 {
    width: calc(clamp(332px, 28vw, 560px) * 1.08);
    height: calc(clamp(186px, 15.9vw, 317px) * 1.08);
    left: -8%;
    top: -78px;
  }
  .works__thumb--2 {
    width: calc(clamp(357px, 30.5vw, 638px) * 1.08);
    height: calc(clamp(202px, 17.3vw, 359px) * 1.08);
    right: -10%;
    top: -6px;
  }
  .works__thumb--4 {
    width: clamp(112px, 7.6vw, 160px);
    height: clamp(112px, 7.6vw, 160px);
    right: 4%;
    bottom: 224px;
  }
  .works__thumb--5 {
    width: calc(clamp(141px, 12.2vw, 255px) * 1.03);
    height: calc(clamp(250px, 21.9vw, 460px) * 1.03);
    left: auto;
    right: -4%;
    bottom: 348px;
  }
  .works__thumb--3 {
    width: calc(clamp(460px, 36.5vw, 765px) * 1.08);
    height: calc(clamp(258px, 20.4vw, 432px) * 1.08);
    left: 6%;
    bottom: -112px;
  }
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
  .works__inner {
    width: min(1320px, calc(100% - 40px));
  }
  .works__thumb--1 {
    width: calc(clamp(332px, 28vw, 560px) * 1.05);
    height: calc(clamp(186px, 15.9vw, 317px) * 1.05);
    left: -2%;
    top: -64px;
  }
  .works__thumb--2 {
    width: calc(clamp(357px, 30.5vw, 638px) * 1.05);
    height: calc(clamp(202px, 17.3vw, 359px) * 1.05);
    right: -4%;
    top: 12px;
  }
  .works__thumb--3 {
    width: calc(clamp(460px, 36.5vw, 765px) * 1.05);
    height: calc(clamp(258px, 20.4vw, 432px) * 1.05);
    left: 8%;
    bottom: -96px;
  }
  .works__thumb--4 {
    width: clamp(120px, 8vw, 180px);
    height: clamp(120px, 8vw, 180px);
    right: 5%;
    bottom: 240px;
  }
  .works__thumb--5 {
    width: calc(clamp(141px, 12.2vw, 255px) * 1);
    height: calc(clamp(250px, 21.9vw, 460px) * 1);
    left: auto;
    right: -1%;
    bottom: 370px;
  }
}
@media (min-width: 1800px) and (max-width: 2399.98px) {
  .works__inner {
    width: min(1500px, calc(100% - 40px));
  }
  .works__thumb--1 {
    width: calc(clamp(332px, 28vw, 588px) * 1.05);
    height: calc(clamp(186px, 15.9vw, 330px) * 1.05);
    left: 0%;
    top: -88px;
  }
  .works__thumb--2 {
    width: calc(clamp(383px, 31.6vw, 689px) * 1.05);
    height: calc(clamp(214px, 18vw, 389px) * 1.05);
    right: -2%;
    top: -8px;
  }
  .works__thumb--3 {
    width: calc(clamp(485px, 39vw, 816px) * 1.05);
    height: calc(clamp(273px, 21.7vw, 460px) * 1.05);
    left: 10%;
    bottom: -146px;
  }
  .works__thumb--4 {
    width: clamp(130px, 8vw, 200px);
    height: clamp(130px, 8vw, 200px);
    right: 4%;
    bottom: 250px;
  }
  .works__thumb--5 {
    width: calc(clamp(153px, 12.2vw, 280px) * 0.99);
    height: calc(clamp(273px, 23vw, 485px) * 0.99);
    left: auto;
    right: 0%;
    bottom: 390px;
  }
}
@media (max-width: 767.98px) {
  .works {
    padding: 160px 0 140px;
  }
  .works__thumb {
    box-shadow: none;
  }
  .works__thumb--1 {
    width: 220px;
    height: 124px;
    top: -18px;
    left: -2%;
  }
  .works__thumb--2 {
    width: 228px;
    height: 128px;
    top: 20px;
    right: -3%;
  }
  .works__thumb--3 {
    width: 280px;
    height: 158px;
    bottom: -18px;
    left: 8%;
  }
  .works__thumb--4 {
    width: 82px;
    height: 82px;
    bottom: 126px;
    top: auto;
    right: 8%;
    border-radius: 999px;
  }
  .works__thumb--5 {
    width: 90px;
    height: 160px;
    bottom: 214px;
    top: auto;
    left: auto;
    right: -3%;
    --rot: 9deg;
    background-color: #ffffff;
  }
}
@media (max-width: 575.98px) {
  .works__thumb--1 {
    left: -6%;
  }
  .works__thumb--2 {
    right: -8%;
  }
  .works__thumb--3 {
    bottom: -10px;
    left: 2%;
  }
  .works__thumb--4 {
    right: 2%;
  }
  .works__thumb--5 {
    left: auto;
    right: -8%;
  }
}
@media (max-width: 400px) {
  .works__thumb--1 {
    left: -12%;
  }
  .works__thumb--2 {
    right: -12%;
  }
  .works__thumb--3 {
    left: -4%;
  }
  .works__thumb--4 {
    right: -4%;
  }
  .works__thumb--5 {
    left: auto;
    right: -14%;
  }
  .contact__label-wrap {
    position: relative;
    width: 100%;
  }
  .contact__hint {
    position: static;
  }
.contact__hint-body {
  left: auto;
  right: 20px;
  width: min(220px, calc(100% - 40px));
}
}
@media (max-width: 320px) {
  .works__thumb--3 {
    left: -12%;
  }
  .works__thumb--4 {
    right: -8%;
  }
  .works__thumb--5 {
    left: auto;
    right: -20%;
  }
}
.works {
  padding: clamp(180px, 20vh, 250px) 0 clamp(130px, 14vh, 180px);
}

.works__stream {
  --works-grid-width: min(1200px, 63vw);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 72px;
  width: var(--works-grid-width);
  margin: 0 auto;
  align-items: stretch;
  position: relative;
  z-index: 3;
}

.works__head {
  display: flex;
  align-items: center;
  gap: 0;
  width: var(--works-grid-width);
  margin: 0 auto 124px;
  justify-content: center;
  position: relative;
  z-index: 4;
}

.works__title {
  font-family: var(--font-en);
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 2.6px;
  color: var(--color-text);
  margin: 0;
  display: inline-block;
  line-height: 1;
  position: relative;
  padding-bottom: 12px;
}

.works__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 31, 31, 0.58) 0%, rgba(31, 31, 31, 0.38) 18%, rgba(31, 31, 31, 0.22) 30%, rgba(31, 31, 31, 0.12) 38%, rgba(31, 31, 31, 0.06) 44%, rgba(31, 31, 31, 0) 52%);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.85;
  transition: transform 0.6s ease 0.12s;
}

.works.is-title-inview .works__title::after {
  transform: scaleX(1);
}

.works .works__inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.works__decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.works__badge {
  position: absolute;
  height: auto;
  opacity: 0.1;
  filter: blur(1px);
}

.works__badge--a {
  right: -86px;
  top: -56px;
  width: clamp(260px, 21vw, 400px);
  opacity: 0.19;
  z-index: 1;
}

.works__badge--b {
  right: auto;
  left: 34.72%;
  top: 82.2%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 18vw, 300px);
  opacity: 0.24;
  z-index: 2;
}

.works__badge--c {
  left: 0%;
  top: 62.2%;
  transform: translate(-50%, -50%);
  width: clamp(76px, 6.2vw, 97px);
  opacity: 0.22;
  z-index: 3;
}

.works__stream .works__thumb {
  margin: 0;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.works__stream .works__thumb {
  display: block;
  position: relative;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: 0 11px 24px rgba(0, 0, 0, 0.16), 0 3px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
  isolation: isolate;
  --rot: 0deg;
  --works-delay: 0s;
  opacity: 0;
  transform: translateY(22px) scale(0.94);
  transform-origin: center bottom;
  filter: blur(2px);
  animation: none;
  transition: none;
  will-change: opacity, transform, filter;
}

.works__stream .works__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translate(1px, 1px);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.52);
  pointer-events: none;
  transition: none;
}

.works__stream .works__thumb-surface {
  display: block;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 0;
  border: 2.5px solid #1a1a1a;
  transform: translate(0, 0);
  transition: transform 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.works__stream .works__thumb-surface img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.works__stream .works__thumb.is-inview {
  animation: works-in 0.72s cubic-bezier(0.22, 0.61, 0.36, 1) var(--works-delay) forwards;
}

.works__stream .works__thumb.is-ready {
  animation: none;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (hover: hover) and (pointer: fine) {
  .works__stream .works__thumb:hover .works__thumb-surface {
    transform: translate(-8px, -8px);
    transition-duration: 0.16s;
    transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  }
}

.works__foot {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 4;
}

@media (max-width: 1600px) and (min-width: 992px) {
  .works__head {
    margin-bottom: 96px;
  }
}

@media (max-width: 991.98px) {
  .works {
    padding: 190px 0 200px;
  }
  .works__head {
    width: min(100%, calc(100% - 48px));    margin-bottom: 82px;
  }
  .works__stream {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 60px;
    width: min(100%, calc(100% - 48px));    margin: 0 auto;
  }
  .works__badge--a {
    right: -86px;
    top: -34px;
    width: clamp(240px, 38vw, 320px);
    opacity: 0.22;
  }
  .works__badge--b {
    left: 56%;
    right: auto;
    top: 60%;
    transform: translate(-50%, -50%);
    width: clamp(150px, 24vw, 220px);
    opacity: 0.24;
  }
  .works__badge--c {
    left: -2%;
    top: 44%;
    transform: translate(-50%, -50%);
    width: clamp(70px, 11.5vw, 96px);
    opacity: 0.28;
  }
  .works__foot {
    margin-top: 76px;
  }
}

@media (max-width: 575.98px) {
  .works {
    padding: 150px 0 160px;
  }
  .works__badge--a,
  .works__badge--b,
  .works__badge--c {
    display: none;
  }

  .works__stream {
    grid-template-columns: 1fr;
    row-gap: 60px;
    width: min(100%, calc(100% - 24px));
  }
  .works__head {
    width: min(100%, calc(100% - 24px));    gap: 0;
    margin-bottom: 62px;
  }
  .works__title {
    font-size: clamp(25px, 7.8vw, 30px);
    letter-spacing: 2.4px;
  }
  .works__badge--a {
    right: -66px;
    top: 18px;
    width: clamp(180px, 52vw, 260px);
    opacity: 0.24;
  }
  .works__badge--b {
    left: 76%;
    right: auto;
    top: 58%;
    transform: translate(-50%, -50%);
    width: clamp(150px, 48vw, 220px);
    opacity: 0.29;
  }
  .works__badge--c {
    left: 14%;
    right: auto;
    top: 36%;
    transform: translate(-50%, -50%);
    width: clamp(78px, 24vw, 112px);
    opacity: 0.24;
  }
}

/*=======================================
  TOP: TOPICS
=======================================*/
.topics {
  padding: clamp(16px, 3.2vh, 28px) 0 clamp(72px, 10vh, 92px);
}

.topics__inner {
  width: min(940px, 92%);  margin: 0 auto;
  padding: 0 20px;
}

.topics__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  column-gap: 42px;
  row-gap: 0;
  align-items: start;
}


.topics__note {
  position: relative;
  max-width: 100%;
  padding-top: 0;
}

.topics__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
  justify-items: center;
}

.topics__item {
  position: relative;
  width: min(100%, 780px);  min-height: auto;
  margin-left: 11px;
  isolation: isolate;
}

.topics__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  text-decoration: none;
  color: inherit;
  width: 100%;
  padding: 16px 14px;
  position: relative;
  z-index: 1;
}

.topics__meta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.9px;
  color: var(--color-text-muted);
  white-space: nowrap;
  line-height: 1;
  align-self: center;
}

.topics__meta time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topics__meta time::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid var(--color-text);
  border-radius: 50%;
  background: transparent;
  flex: 0 0 9px;
  transition: background-color 0.2s ease;
}

.topics__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 17px;
  padding: 0 6px;
  border: 1px solid var(--color-text);
  border-radius: 999px;
  color: var(--color-text);
  letter-spacing: 0.9px;
  font-size: 10px;
  line-height: 1;
  align-self: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.topics__text {
  margin: 0;
  font-size: clamp(13px, 0.15vw + 12px, 15px);
  letter-spacing: 0.1px;
  line-height: 1;
  color: var(--color-text-sub);
  align-self: center;
  margin-left: 4px;
}

@media (min-width: 1600px) {
  .topics__item {
    width: min(100%, 820px);
  }
}

.topics__trail {
  flex: 0 0 100%;
  width: min(100%, 560px);  margin: 0;
  min-height: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: var(--color-text-muted);
}

.topics__trail::before {
  content: "";
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 2px;
  background: url("../img/tensen.svg") repeat-x left center/auto 2px;
  opacity: 0.72;
  transition: opacity 0.22s ease;
}

.topics__trail-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-en);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.6px;
  color: var(--color-text-muted);
  white-space: nowrap;
  transform: translateY(-1px);
}

.topics__trail-prev,
.topics__trail-next {
  display: inline-block;
  line-height: 1;
}

.topics__trail-next {
  transition: transform 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .topics__link:hover .topics__text {
    opacity: 0.9;
  }
  .topics__link:hover .topics__meta time::before {
    background: var(--color-text);
  }
  .topics__link:hover .topics__trail-next {
    transform: translateX(5px);
  }
  .topics__link:hover .topics__trail::before {
    opacity: 0.87;
  }
}

.topics__demo-grid {
  width: min(860px, 100%);  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.topics__layout--demo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.topics__layout--demo .topics__note {
  width: min(100%, 700px);  margin: 0 auto;
}

.topics__layout--demo .topics__item {
  width: 100%;
  padding-top: 26px;
}

.topics__accent {
  position: absolute;
  top: 12px;
  left: 11px;
  z-index: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  line-height: 0;
}

.topics__accent-img {
  display: block;
  width: clamp(155px, 15.5vw, 236px);
  height: auto;
  opacity: 0.96;
}

/*=======================================
  TOPICS一覧 / TOPICSモーダル
=======================================*/
.topics-archive {
  padding: 180px 0 120px;
}

.topics-archive__inner {
  width: min(960px, 92%);  margin: 0 auto;
  padding: 0 20px;
}

.topics-archive__title {
  font-family: var(--font-en);
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 2.6px;
  color: var(--color-text);
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.topics-archive__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 31, 31, 0.58) 0%, rgba(31, 31, 31, 0.38) 18%, rgba(31, 31, 31, 0.22) 30%, rgba(31, 31, 31, 0.12) 38%, rgba(31, 31, 31, 0.06) 44%, rgba(31, 31, 31, 0) 52%);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.85;
  transition: transform 0.6s ease 0.12s;
}

body.is-loaded .topics-archive__title::after {
  transform: scaleX(1);
}

.topics-archive__lead {
  margin-top: 44px;
  font-size: 14px;
  color: #2f2f2f;
  letter-spacing: 0.4px;
}

.topics-archive__list {
  margin-top: 56px;
  display: grid;
  gap: 40px 28px;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.topics-card {
  width: min(280px, 100%);
  list-style: none;
  height: 100%;
}

.topics-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.topics-card__thumb {
  position: relative;
  margin: 0 0 20px;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f1f1;
  box-shadow: 6px 8px 20px rgba(0, 0, 0, 0.08);
}

.topics-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.topics-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 64px;
}

.topics-card__title {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--color-text);
}

.topics-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topics-card__date {
  font-size: 11px;
  letter-spacing: 0.3px;
  color: var(--color-text-sub);
  display: inline-block;
}

.topics-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.12s ease;
}

.topics-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.is-modal-open {
  overflow: hidden;
}

.topics-modal__panel {
  width: min(860px, 94%);  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #fff;
  border: 4px solid #1f1f1f;
  border-radius: 16px;
  padding: 30px 50px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transform: scale(0.78);
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.topics-modal.is-open .topics-modal__panel {
  transform: scale(1);
}

.topics-modal__title {
  margin: 0;
  padding: 50px 0 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--color-text);
}

.topics-modal__date {
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--color-text-sub);
  margin-bottom: 20px;
}

.topics-modal__image {
  margin: 10px 0 0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  aspect-ratio: 16 / 9;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(31, 31, 31, 0.09);
  flex: 0 0 auto;
}

.topics-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.topics-modal__body {
  margin: 0 0 44px;
  font-size: 15px;
  line-height: 1.8;
  color: #2f2f2f;
}

.topics-modal__body p {
  margin: 0 0 1.1em;
}

.topics-modal__body p:last-child {
  margin-bottom: 0;
}

.topics-modal__scroll-hint {
  position: absolute;
  top: 40px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  opacity: 1;
  pointer-events: none;
}

.topics-modal__scroll-icon {
  display: inline-block;
  width: 14px;
  height: 20px;
  border: 2px solid #1f1f1f;
  border-radius: 10px;
  position: relative;
}

.topics-modal__scroll-icon::before {
  content: "";
  width: 2px;
  height: 6px;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1f1f1f;
  border-radius: 2px;
  animation: scroll-line 1.8s infinite;
}

.topics-modal__close {
  align-self: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: none;
  background: #1f1f1f;
  color: #fff;
  font-size: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: none;
  margin-top: 4px;
  transition: transform 0.2s ease;
}

.topics-modal__close span {
  display: inline-block;
  transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .topics-modal__close:hover {
    transform: scale(1.08);
  }

  .topics-modal__close:hover span {
    transform: none;
  }
}

.topics-modal__panel::-webkit-scrollbar {
  width: 0;
  height: 0;
}

@media (max-width: 640px) {
  .topics-modal {
    padding: 16px;
  }

  .topics-modal__panel {
    width: min(860px, 100%);    max-height: calc(100dvh - 32px);
    padding: 24px 20px 22px;
    border-radius: 16px;
  }

  .topics-modal__image {
    margin-bottom: 30px;
  }

  .topics-modal__close {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    font-size: 24px;
  }
  .topics-modal__scroll-hint {
    top: 46px;
    right: 18px;
  }
}

.topics-modal__close span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
}

.topics-modal__body a {
  color: #6b6b6b;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.privacy-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.privacy-modal__panel {
  width: min(840px, 94%);  max-height: calc(100dvh - 64px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #ffffff;
  border: 4px solid #1f1f1f;
  border-radius: 16px;
  padding: 30px 44px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transform: scale(0.78);
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.privacy-modal.is-open .privacy-modal__panel {
  transform: scale(1);
}

.privacy-modal__title {
  margin: 0 0 46px;
  padding: 30px 0 0;
  text-align: center;
  font-family: var(--font-en);
  font-size: clamp(24px, 3.4vw, 46px);
  letter-spacing: 0.4px;
  line-height: 1;
  font-weight: 800;
  color: var(--color-text);
}

.privacy-modal__body {
  margin: 0 0 56px;
  font-size: 13px;
  line-height: 1.95;
  color: #2f2f2f;
}
.privacy-modal__body p {
  margin: 0;
}
.privacy-modal__body p + h3,
.privacy-modal__body ol + p {
  margin-top: 22px;
}
.privacy-modal__body h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
  color: var(--color-text);
}
.privacy-modal__body ol {
  margin: 12px 0 0;
  padding-left: 1.5em;
  display: grid;
  gap: 4px;
}

.privacy-modal__close {
  align-self: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: #1f1f1f;
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: transform 0.2s ease;
}

.privacy-modal__close span {
  display: inline-block;
  transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .privacy-modal__close:hover {
    transform: scale(1.08);
  }
  .privacy-modal__close:hover span {
    transform: none;
  }
}

@media (max-width: 991px) {
  .privacy-modal {
    padding: 12px;
  }
  .privacy-modal__panel {
    width: min(840px, 100%);    max-height: calc(100dvh - 24px);
    padding: 24px 20px 20px;
    border-radius: 16px;
  }
  .privacy-modal__body {
    font-size: 13px;
    line-height: 1.9;
  }
  .privacy-modal__body h3 {
    font-size: 15px;
  }
  .privacy-modal__close {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .topics-archive__list {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .topics-archive__list {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
  }

  .topics-card {
    max-width: 100%;
  }
}

/*=======================================
  WORKS一覧
=======================================*/
.works-archive {
  padding: 180px 0 120px;
}

.works-archive__inner {
  width: min(960px, 92%);  margin: 0 auto;
  padding: 0 20px;
}

.works-archive__title {
  font-family: var(--font-en);
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 2.6px;
  color: var(--color-text);
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.works-archive__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 31, 31, 0.58) 0%, rgba(31, 31, 31, 0.38) 18%, rgba(31, 31, 31, 0.22) 30%, rgba(31, 31, 31, 0.12) 38%, rgba(31, 31, 31, 0.06) 44%, rgba(31, 31, 31, 0) 52%);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.85;
  transition: transform 0.6s ease 0.12s;
}

body.is-loaded .works-archive__title::after {
  transform: scaleX(1);
}


.works-archive__grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: clamp(32px, 4vw, 80px);
       column-gap: clamp(32px, 4vw, 80px);
  row-gap: clamp(32px, 4vw, 80px);
}

.works-archive__card {
  display: flex;
  flex-direction: column;
  text-align: left;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
}

body.is-loaded .works-archive__card {
  animation: works-card-fade-up 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

body.is-loaded .works-archive__card:nth-child(1) {
  animation-delay: 0.28s;
}

body.is-loaded .works-archive__card:nth-child(2) {
  animation-delay: 0.28s;
}

body.is-loaded .works-archive__card:nth-child(3) {
  animation-delay: 0.28s;
}

body.is-loaded .works-archive__card:nth-child(4) {
  animation-delay: 0.28s;
}

@keyframes works-card-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.works-archive__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.works-archive__thumb {
  position: relative;
  width: min(420px, 100%);
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #efefef;
  isolation: isolate;
  box-shadow: 6px 6px 30px 0 rgba(0, 0, 0, 0.1);
  transform-origin: center center;
  transition: transform 0.16s ease;
}

.works-archive__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: none;
  transform-origin: center center;
  opacity: 1;
  transition: opacity 0.18s ease;
}

.works-archive__link:focus-visible .works-archive__thumb img {
  opacity: 0.8;
}

@media (hover: hover) and (pointer: fine) {
  .works-archive__link:hover .works-archive__thumb,
  .works-archive__link:focus-visible .works-archive__thumb {
    transform: none;
  }

  .works-archive__link:hover .works-archive__thumb img {
    opacity: 0.8;
  }
}
.works-archive__name {
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.45;
  min-height: 1.45em;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--color-text);
}

.works-archive__role {
  margin: 5px 0 0;
  min-height: 1.45em;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: #666;
}

.works-archive__colors {
  margin: 7px 0 0;
  min-height: 10px;
  padding: 0;
  list-style: none;
  display: inline-flex;
  gap: 8px;
}

.works-archive__color {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--swatch, #ddd);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.works-archive__pagination {
  margin-top: 160px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.works-archive__page {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2em;
  padding: 0 2px 6px;
}

.works-archive__page:focus-visible {
  color: var(--color-text);
}

@media (hover: hover) and (pointer: fine) {
  .works-archive__page:hover {
    color: var(--color-text);
  }
}
/*=======================================
  WORKS詳細
=======================================*/
.work-detail {
  padding: 180px 0 140px;
}
.work-detail__summary {
  margin: 60px 0 80px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-sub);
}

.work-detail__summary p {
  margin: 0 0 1.1em;
}

.work-detail__summary p:last-child {
  margin-bottom: 0;
}

.work-detail__inner {
  width: min(960px, 92%);  margin: 0 auto;
  padding: 0 20px;
}

.work-detail__title {
  font-family: var(--font-en);
  font-size: clamp(36px, 4.2vw, 48px);
  font-weight: 600;
  letter-spacing: 2.4px;
  color: var(--color-text);
  margin: 0;
  text-align: center;
  line-height: 1.15;
}

.work-detail__tags {
  margin-top: 30px;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: var(--color-text-muted);
  text-align: center;
}

.work-detail__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px auto 70px;
  font-size: 12px;
  letter-spacing: 1.4px;
  color: var(--color-text-sub);
  text-align: center;
  cursor: default;
}

.work-detail__link-target {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.work-detail__link-icon {
  width: 11px;
  height: 11px;
  margin-left: 2px;
  vertical-align: -1px;
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.work-detail__link-text {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.work-detail__link-label {
  display: inline-block;
  margin-right: 6px;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: inherit;
}

.work-detail__link--accent {
  color: var(--color-text);
}

.work-detail__link--accent:focus-visible {
  color: var(--color-text);
}

.work-detail__link--accent .work-detail__link-text {
  color: inherit;
}

.work-detail__link-target:focus-visible .work-detail__link-icon {
  animation: link-arrow-swoop 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {
  .work-detail__link--accent:hover {
    color: var(--color-text);
  }
  .work-detail__link-target:hover .work-detail__link-icon {
    animation: link-arrow-swoop 0.5s ease;
  }
}
@keyframes link-arrow-swoop {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  40% {
    transform: translate(6px, -6px);
    opacity: 0;
  }
  41% {
    transform: translate(-6px, 6px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.work-detail__hero {
  margin-top: 32px;
  overflow: hidden;
  background: #f2f2f2;
  aspect-ratio: 16/9;
  box-shadow: 0 10px 24px rgba(15, 18, 24, 0.12);
}

.work-detail__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-detail__meta {
  margin-top: 64px;
  display: grid;
  row-gap: 16px;
  --meta-line: rgba(0, 0, 0, 0.06);
}

.work-detail__meta--compact {
  margin-top: 32px;
  width: min(320px, 100%);  margin-left: auto;
  margin-right: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.work-detail__meta-item {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 6px;
  font-size: 13px;
  color: var(--color-text-sub);
  padding: 10px 0;
  border-bottom: 1px solid var(--meta-line);
}

.work-detail__meta-item dt {
  color: var(--color-text-sub);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 11px;
}

.work-detail__meta-item dd {
  color: var(--color-text-sub);
  line-height: 1.6;
  min-height: 1.6em;
  display: flex;
  align-items: center;
}

.work-detail__meta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  border-bottom: 1px solid var(--meta-line);
  padding: 10px 0;
}

.work-detail__meta-row .work-detail__meta-item {
  border-bottom: 0;
  padding: 0;
}

.work-detail__meta-row .work-detail__meta-item dt {
  color: #4a4a4a;
}

.work-detail__meta-row .work-detail__meta-item dd {
  color: #505050;
}

.work-detail__meta--stack .work-detail__meta-item {
  grid-template-columns: 1fr;
  row-gap: 6px;
}

.work-detail__colors {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.work-detail__color {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--swatch, #ddd);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.work-detail__section-title {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-en);
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--color-text);
  position: relative;
  display: block;
  padding-bottom: 8px;
}
.work-detail__section-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 31, 31, 0.58) 0%, rgba(31, 31, 31, 0.38) 18%, rgba(31, 31, 31, 0.22) 30%, rgba(31, 31, 31, 0.12) 38%, rgba(31, 31, 31, 0.06) 44%, rgba(31, 31, 31, 0) 52%);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.8;
  transition: transform 0.6s ease;
}
.work-detail__section-title.is-inview::after {
  transform: scaleX(1);
}

.work-detail__section-lead {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--color-text-sub);
  text-align: left;
  max-width: 260px;
}

.work-detail__design-layout {
  margin-top: 140px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.work-detail__design-meta {
  position: relative;
}

.work-detail__design-meta-inner {
  position: sticky;
  top: 140px;
  width: 100%;
}

.work-detail__design-content {
  min-width: 0;
}

.work-detail__design {
  margin-top: 8px;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.work-detail__design img {
  width: 100%;
  height: auto;
  display: block;
}

.work-detail__design-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.work-detail__design-label {
  font-size: 11px;
  letter-spacing: 2.6px;
  color: var(--color-text-muted);
}

.work-detail__design-figure {
  position: relative;
  margin: 0;
  overflow: visible;
  background: #f2f2f2;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.052);
}

.work-detail__design-figure .work-detail__design-clip {
  position: absolute;
  top: -36px;
  right: 24px;
  width: 60px;
  height: auto;
  max-width: none;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12));
  z-index: 2;
}

@media (max-width: 991.98px) {
  .work-detail__design-figure .work-detail__design-clip {
    top: -34px;
    right: 20px;
    width: 56px;
  }
}

@media (max-width: 579.98px) {
  .work-detail__design-figure .work-detail__design-clip {
    top: -28px;
    right: 12px;
    width: 46px;
  }
}

.work-detail__design-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.work-detail__design-image--mobile {
  width: 100%;
  height: auto;
}

.work-detail__design-frame {
  width: min(266px, 100%);
  padding: 10px;
  border-radius: 24px;
  background: #2a2d33;
  border: 1px solid #3a3f47;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.work-detail__design-viewport {
  width: 100%;
  aspect-ratio: 375/667;
  overflow-y: auto;
  border-radius: 16px;
  background: #f8f8f8;
  border: 1px solid #efefef;
}

.work-detail__design-viewport::-webkit-scrollbar {
  width: 8px;
}

.work-detail__design-viewport::-webkit-scrollbar-track {
  background: transparent;
}

.work-detail__design-viewport::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}

.work-detail__mobile-grid {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  justify-items: center;
}

.work-detail__mobile-grid--single {
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
}

.work-detail__mobile-item {
  width: 100%;
  display: flex;
  justify-content: center;
}

.work-detail__mobile-wrap {
  position: relative;
}

.work-detail__mobile-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.work-detail__scroll-hint {
  display: inline-flex;
  align-items: center;
  color: var(--color-text-muted);
}

.work-detail__scroll-icon {
  display: inline-block;
  width: 12px;
  height: 18px;
  border: 1px solid #bdbdbd;
  border-radius: 9px;
  position: relative;
}

.work-detail__scroll-icon::before {
  content: "";
  width: 1px;
  height: 4px;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8f8f8f;
  border-radius: 2px;
  animation: scroll-line 1.8s infinite;
}

@keyframes scroll-line {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
}
.work-detail__cta {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.work-detail__cta--secondary {
  margin-top: 60px;
}

.work-detail__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #efefef;
  color: var(--color-text);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.8px;
  transition: background-color 0.25s ease;
}

.work-detail__cta-link--compact {
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: 1.6px;
}

.work-detail__cta-link:focus-visible {
  background: #e7e7e7;
}

.work-detail__cta-icon {
  width: 12px;
  height: 12px;
}

.work-detail__cta-link:focus-visible .work-detail__cta-icon {
  animation: link-arrow-swoop 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {
  .work-detail__cta-link:hover {
    background: #e7e7e7;
  }
  .work-detail__cta-link:hover .work-detail__cta-icon {
    animation: link-arrow-swoop 0.5s ease;
  }
}
.works-archive__page.is-active {
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 0.4px;
}

.works-archive__page.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 1.05em;
  height: 1px;
  background-color: currentColor;
}

.works-archive__page--ghost {
  color: var(--color-text-muted);
  pointer-events: none;
}

/*=======================================
  PROFILE
=======================================*/
.profile {
  padding: clamp(150px, 18vh, 190px) 0 clamp(120px, 14vh, 160px);
}

.profile__inner {
  width: min(960px, 92%);  margin: 0 auto;
  padding: 0 20px;
}

.profile__title {
  font-family: var(--font-en);
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 2.6px;
  color: var(--color-text);
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.profile__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 31, 31, 0.58) 0%, rgba(31, 31, 31, 0.38) 18%, rgba(31, 31, 31, 0.22) 30%, rgba(31, 31, 31, 0.12) 38%, rgba(31, 31, 31, 0.06) 44%, rgba(31, 31, 31, 0) 52%);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.85;
  transition: transform 0.6s ease;
}

body.is-profile-ready .profile__title::after {
  transform: scaleX(1);
}

.profile__title::first-letter {
  color: var(--color-text);
}

.profile__lead {
  margin-top: 62px;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
  color: #2f2f2f;
}

.profile__lead p {
  margin: 0;
}

.profile__lead-emphasis {
  margin-top: 0;
}

.profile__lead-quote {
  font-size: 15px;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.profile__lead-gap {
  margin: 0;
  line-height: 1;
  height: 1em;
}

.profile__strengths {
  margin: 4px 0 0;
  display: grid;
  row-gap: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.6px;
  color: #2f2f2f;
}

.profile__strengths p {
  margin: 0;
  line-height: 1.8;
}

.profile__strengths p + p {
  margin-top: 4px;
}

.profile__strengths-line {
  display: inline;
}

.profile__profile {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 100px;
}

.profile__photo {
  position: relative;
  display: inline-block;
  isolation: isolate;
  justify-self: start;
  width: -moz-fit-content;
  width: min(100%, fit-content);
}

.profile__photo::before,
.profile__photo::after {
  content: "";
  position: absolute;
  width: 58%;
  height: 84%;
  background: #4a4e57;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.profile__photo::before {
  left: -18px;
  top: -4px;
  transform: translateY(-78%) rotate(-4deg) skewX(-7deg);
}

.profile__photo::after {
  right: -10px;
  top: 18px;
  transform: translateY(78%) rotate(-4deg) skewX(-7deg);
}

.profile__photo img {
  position: relative;
  z-index: 1;
  width: 180px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  transition: none;
}

.profile__identity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  align-self: center;
}

.profile__name {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.38s ease 0.4s, transform 0.46s ease 0.4s;
}

body.is-profile-detail-ready .profile__photo img {
  animation: profile-photo-pop 0.45s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

body.is-profile-detail-ready .profile__photo::before {
  animation: profile-photo-panel-top 0.52s cubic-bezier(0.22, 0.8, 0.28, 1) 0.07s forwards;
}

body.is-profile-detail-ready .profile__photo::after {
  animation: profile-photo-panel-bottom 0.52s cubic-bezier(0.22, 0.8, 0.28, 1) 0.18s forwards;
}

body.is-profile-detail-ready .profile__name {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.34s;
}

.profile__name-ja {
  font-size: 14px;
  letter-spacing: 1.4px;
  font-weight: 400;
  color: #666;
  white-space: nowrap;
}

.profile__name-line {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.profile__name-en {
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 2.8px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  line-height: 1.1;
}

.profile__name-sep {
  width: 1px;
  height: 1em;
  background: #b0b0b0;
  display: inline-block;
}

.profile__name-role {
  font-size: clamp(12px, 1.4vw, 13px);
  letter-spacing: 1.4px;
  color: #666;
  font-weight: 400;
}

.profile__details {
  margin-top: 64px;
  grid-column: 1/-1;
}

.profile__info {
  display: grid;
  row-gap: 30px;
  margin: 0;
  grid-template-columns: 1fr;
}

.profile__info-item {
  display: grid;
  grid-template-columns: 165px 1fr;
  -moz-column-gap: 32px;
       column-gap: 32px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: inherit;
  color: #2f2f2f;
  align-items: start;
}

.profile__info-item dt,
.profile__info-item dd {
  margin: 0;
}

.profile__info-label {
  color: #24262b;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: inherit;
  padding-left: 18px;
  border-left: 3px solid rgba(31, 31, 31, 0.56);
  line-height: 1.8;
  white-space: nowrap;
  display: inline-block;
}

.profile__info-label--offset {
  transform: translateY(4px);
}

.profile__info-text {
  line-height: 1.8;
}

.profile__emoji-paw {
  display: inline-block;
  font-size: 1.15em;
  line-height: 1;
  vertical-align: baseline;
}

.profile__info-seg {
  display: inline;
}

.profile__info-break {
  display: block;
  line-height: 1.8;
  margin-top: 4px;
}

.profile__info-item:last-child {
  padding-bottom: 0;
}

.skills {
  margin-top: 150px;
}

.skills__title {
  font-family: var(--font-en);
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 2.6px;
  color: var(--color-text);
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.skills__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 31, 31, 0.58) 0%, rgba(31, 31, 31, 0.38) 18%, rgba(31, 31, 31, 0.22) 30%, rgba(31, 31, 31, 0.12) 38%, rgba(31, 31, 31, 0.06) 44%, rgba(31, 31, 31, 0) 52%);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.85;
  transition: transform 0.6s ease 0.2s;
}

.skills.is-inview .skills__title::after {
  transform: scaleX(1);
}

.skills__lead {
  margin-top: 36px;
  font-size: 14px;
  color: #2f2f2f;
}

.skills__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 290px);
  gap: 24px;
  justify-content: center;
}

.skills__card {
  padding: 22px 24px;
  height: 220px;
  width: 290px;
  border: 2px solid rgba(31, 31, 31, 0.36);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 58%, #f6f6f6 100%);
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  box-shadow: 0 6px 12px rgba(17, 17, 17, 0.048), 0 4px 0 rgba(31, 31, 31, 0.21);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.skills.is-inview .skills__card {
  animation: skills-card-in 0.52s cubic-bezier(0.22, 0.85, 0.32, 1) forwards;
}

.skills.is-inview .skills__card:nth-child(2) {
  animation-delay: 0s;
}

.skills.is-inview .skills__card:nth-child(3) {
  animation-delay: 0s;
}

@keyframes skills-card-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  68% {
    opacity: 1;
    transform: translateY(-1px) scale(1.01);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes profile-photo-pop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
  }
  68% {
    opacity: 1;
    transform: translateY(-2px) scale(1.03);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes profile-photo-panel-top {
  from {
    opacity: 0;
    transform: translateY(-78%) rotate(-4deg) skewX(-7deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-4deg) skewX(-7deg);
  }
}

@keyframes profile-photo-panel-bottom {
  from {
    opacity: 0;
    transform: translateY(78%) rotate(-4deg) skewX(-7deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-4deg) skewX(-7deg);
  }
}

.skills__card:focus-within {
  box-shadow: 0 8px 16px rgba(17, 17, 17, 0.067), 0 6px 0 rgba(31, 31, 31, 0.27);
  transform: translateY(-2px);
  border-color: rgba(31, 31, 31, 0.46);
  filter: brightness(1.015);
}

@media (hover: hover) and (pointer: fine) {
  .skills__card:hover {
    box-shadow: 0 8px 16px rgba(17, 17, 17, 0.067), 0 6px 0 rgba(31, 31, 31, 0.27);
    transform: translateY(-2px);
    border-color: rgba(31, 31, 31, 0.46);
    filter: brightness(1.015);
  }
}
.skills__label {
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--color-text);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.skills__icon {
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
}
.skills__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.skills__icon--tight {
  margin-right: -2px;
  margin-top: -2px;
  color: var(--color-text-muted);
}
.skills__icon--tight svg path {
  stroke-width: 1.8;
}

.skills__list {
  margin-top: 26px;
  display: grid;
  row-gap: 8px;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: #2f2f2f;
  padding-left: 14px;
  margin-bottom: 0;
  list-style: disc;
}
.skills__list li {
  line-height: 1.85;
}

/*=======================================
  CONTACT
=======================================*/
.contact {
  padding: 180px 0 60px;
  position: relative;
}
.contact__inner {
  width: min(960px, 92%);  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  isolation: isolate;
}
.contact__title {
  font-family: var(--font-en);
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 2.6px;
  color: var(--color-text);
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.contact__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 31, 31, 0.58) 0%, rgba(31, 31, 31, 0.38) 18%, rgba(31, 31, 31, 0.22) 30%, rgba(31, 31, 31, 0.12) 38%, rgba(31, 31, 31, 0.06) 44%, rgba(31, 31, 31, 0) 52%);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.85;
  transition: transform 0.6s ease;
}

body.is-loaded.is-page-transition-ready .contact__title::after {
  transform: scaleX(1);
}
.contact__lead {
  margin-top: 62px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-sub);
  letter-spacing: 0.3px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.contact__lead p {
  margin: 0;
}
.contact__lead p + p {
  margin-top: 10px;
}

.contact__title,
.contact__lead,
.contact__panel {
  position: relative;
  z-index: 1;
}

.contact__lead-icon {
  position: absolute;
  left: 42px;
  top: -42px;
  width: 120px;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.contact__lead-icon img {
  display: block;
  width: 100%;
  height: auto;
}
.contact__lead-emphasis {
  color: var(--color-text);
  font-weight: 500;
}
.contact__panel {
  margin-top: 82px;
  width: min(720px, 100%);  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.contact__form {
  display: grid;
  row-gap: 31px;
  width: 100%;
  text-align: left;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
  align-items: start;
  padding: 0;
}
.contact__label {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(34, 34, 34, 0.84);
  font-weight: 500;
  padding-top: 0;
}
.contact__label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact__hint {
  position: relative;
  display: inline-flex;
}
.contact__hint[open] .contact__hint-toggle {
  background: #2b2b2b;
  color: #ffffff;
  border-color: var(--color-text);
}
.contact__hint[open] .contact__hint-toggle::after {
  content: "−";
}
.contact__hint-toggle {
  list-style: none;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 1.2px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  padding: 4px 8px;
  background: #f5f5f5;
  color: var(--color-text-sub);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  line-height: 1;
  position: relative;
  top: 0.5px;
}
.contact__hint-toggle::-webkit-details-marker {
  display: none;
}
.contact__hint-toggle::marker {
  content: "";
}
.contact__hint-toggle::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  font-size: 10px;
  font-weight: 500;
  color: inherit;
  line-height: 1;
  position: relative;
  top: -0.71px;
  margin-left: 1px;
}
.contact__hint-body {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 2;
  margin-top: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafafa;
  font-size: 11px;
  line-height: 1.8;
  color: var(--color-text-muted);
  width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.072);
  border-radius: 10px;
  word-break: keep-all;
  white-space: normal;
}
.contact__hint-title {
  margin: 0 0 8px;
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text);
  background: #e7e5e1;
  border: 1px solid #d1cec8;
  border-radius: 6px;
  padding: 3px 12px;
  font-weight: 600;
}
.contact__hint-list {
  margin: 0;
  padding-left: 0;
  display: grid;
  row-gap: 4px;
  list-style-position: inside;
}
.contact__input, .contact__textarea {
  width: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #efefef;
  padding: 12px 14px;
  font-size: 13px;
  letter-spacing: 0.6px;
  font-family: var(--font-jp);
  color: var(--color-text);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.contact__input::-moz-placeholder, .contact__textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.contact__input::placeholder, .contact__textarea::placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.contact__input:focus, .contact__textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #1f1f1f;
  box-shadow: none;
}
.contact__textarea {
  min-height: 260px;
  resize: vertical;
}
.contact__actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.contact__button {
  border: 1px solid #2b2b2b;
  border-radius: 999px;
  background: #2b2b2b;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: var(--font-jp);
  padding: 12px 38px;
  cursor: pointer;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}
.contact__button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #ffffff;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.35s ease;
  z-index: -1;
  will-change: transform;
}
.contact__button:focus-visible {
  background-color: #2b2b2b;
  border-color: #1f1f1f;
  color: #1f1f1f;
  transform: none;
  box-shadow: none;
}
.contact__button:focus-visible::after {
  transform: scale(1);
}
.contact__button:active {
  background-color: #1a1a1a;
  border-color: var(--color-text);
  color: #1f1f1f;
  box-shadow: none;
}
.contact__button:active::after {
  transform: scale(1.05);
}
@media (hover: hover) and (pointer: fine) {
  .contact__button:hover {
    background-color: #2b2b2b;
    border-color: #1f1f1f;
    color: #1f1f1f;
    transform: none;
    box-shadow: none;
  }
  .contact__button:hover::after {
    transform: scale(1);
  }
}
.contact .wpcf7 {
  width: 100%;
}
.contact .wpcf7-form {
  display: block;
  margin: 0;
}
.contact .wpcf7-form > p {
  margin: 0;
}
.contact .wpcf7-form .contact__row {
  margin-top: 34px;
}
.contact .wpcf7-form .contact__row:first-of-type {
  margin-top: 0;
}
.contact .wpcf7 > form > ul,
.contact .wpcf7 > form > ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact .wpcf7 > form > ul > li,
.contact .wpcf7 > form > ol > li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact .wpcf7-not-valid-tip,
.contact .wpcf7-response-output {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.7;
}
.contact .wpcf7-not-valid-tip {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #5f3131;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.contact .wpcf7-not-valid-tip::before {
  content: "!";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #5f3131;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}
.contact .wpcf7 form .wpcf7-response-output {
  margin: 28px 0 0;
  padding: 12px 14px 12px 16px;
  border: 1px solid #2a2a2a;
  border-left: 4px solid #2a2a2a;
  border-radius: 4px;
  background: #f5f5f5;
  color: #1f1f1f;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.2px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.08);
}
.contact .wpcf7 form.invalid .wpcf7-response-output,
.contact .wpcf7 form.unaccepted .wpcf7-response-output,
.contact .wpcf7 form.spam .wpcf7-response-output,
.contact .wpcf7 form.aborted .wpcf7-response-output {
  border-color: #2a2a2a;
  border-left-color: #2a2a2a;
  background: #f5f5f5;
  color: #1f1f1f;
}
.contact .wpcf7 form.sent .wpcf7-response-output {
  border-color: #3a3a3a;
  border-left-color: #3a3a3a;
  background: #f7f7f7;
  color: #1f1f1f;
}
.contact .wpcf7-form-control.wpcf7-not-valid,
.contact .contact__input.wpcf7-not-valid,
.contact .contact__textarea.wpcf7-not-valid {
  border-color: #5f3131;
  background: #f3efef;
}
.contact .privacy-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text-sub);
}
.contact .privacy-text a {
  color: #a1a1a1;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  text-decoration-color: #b0b0b0;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact .privacy-text a:hover {
    color: var(--color-text);
    text-decoration-color: var(--color-text);
  }
}
.contact .recaptcha-text {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.7;
  color: #757575;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}
.contact .recaptcha-text a {
  color: #a1a1a1;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  text-decoration-color: #b0b0b0;
  display: inline;
  white-space: nowrap;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact .recaptcha-text a:hover {
    color: var(--color-text);
    text-decoration-color: var(--color-text);
  }
}
.contact .contact__row .contact__label + .wpcf7-form-control-wrap {
  margin-top: 0;
}
.contact .contact__row .wpcf7-form-control-wrap {
  margin: 0;
}
.contact .contact__row .contact__label {
  margin-bottom: 0;
}
.contact .contact__row .contact__label-wrap {
  margin-bottom: 0;
}
.contact .contact__actions {
  margin-top: 46px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.contact .wpcf7-form .contact__actions {
  display: grid;
  place-items: center;
}
.contact .contact__actions .contact__button,
.contact .contact__actions .wpcf7-submit {
  border: 1px solid #2b2b2b;
  border-radius: 999px;
  background: #2b2b2b;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: var(--font-jp);
  padding: 12px 38px;
  cursor: pointer;
  box-shadow: none;
  transition: color 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  margin: 0;
  width: auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact .contact__actions .contact__button::after,
.contact .contact__actions .wpcf7-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #ffffff;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.35s ease;
  z-index: -1;
  will-change: transform;
}
.contact .contact__actions .contact__button:focus-visible,
.contact .contact__actions .wpcf7-submit:focus-visible {
  background-color: #2b2b2b;
  border-color: #1f1f1f;
  color: #1f1f1f;
  transform: none;
  box-shadow: none;
}
.contact .contact__actions .contact__button:focus-visible::after,
.contact .contact__actions .wpcf7-submit:focus-visible::after {
  transform: scale(1);
}
.contact .contact__actions .contact__button:active,
.contact .contact__actions .wpcf7-submit:active {
  background-color: #1a1a1a;
  border-color: var(--color-text);
  color: #1f1f1f;
  box-shadow: none;
}
.contact .contact__actions .contact__button:active::after,
.contact .contact__actions .wpcf7-submit:active::after {
  transform: scale(1.05);
}
.contact .contact__actions .contact__button:disabled,
.contact .contact__actions .wpcf7-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
@media (hover: hover) and (pointer: fine) {
  .contact .contact__actions .contact__button:hover,
  .contact .contact__actions .wpcf7-submit:hover {
    background-color: #2b2b2b;
    border-color: #1f1f1f;
    color: #1f1f1f;
    transform: none;
    box-shadow: none;
  }
  .contact .contact__actions .contact__button:hover::after,
  .contact .contact__actions .wpcf7-submit:hover::after {
    transform: scale(1);
  }
}
.contact .contact__actions .wpcf7-spinner {
  margin: 8px auto 0;
  display: block;
}
.contact .contact__form .wpcf7 form .contact__actions .wpcf7-submit {
  justify-self: center;
}
.contact .contact__form .wpcf7 .screen-reader-response ul,
.contact .contact__form .wpcf7 .screen-reader-response ol,
.contact .contact__form .wpcf7 .wpcf7-response-output ul,
.contact .contact__form .wpcf7 .wpcf7-response-output ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*=======================================
  THANKS
=======================================*/
.thanks {
  padding: clamp(180px, 20vh, 250px) 0 clamp(56px, 8vh, 96px);
  position: relative;
  min-height: 80vh;
}
.thanks__inner {
  width: min(920px, 92%);  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.thanks__title {
  font-family: var(--font-en);
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 2.6px;
  color: var(--color-text);
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.thanks__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 31, 31, 0.58) 0%, rgba(31, 31, 31, 0.38) 18%, rgba(31, 31, 31, 0.22) 30%, rgba(31, 31, 31, 0.12) 38%, rgba(31, 31, 31, 0.06) 44%, rgba(31, 31, 31, 0) 52%);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.85;
  transition: transform 0.6s ease;
}
body.is-loaded.is-page-transition-ready .thanks__title::after {
  transform: scaleX(1);
}
.thanks__lead {
  margin-top: 36px;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--color-text-sub);
}
.thanks__body {
  margin-top: 52px;
  font-size: 13px;
  line-height: 2.08;
  letter-spacing: 0.6px;
  color: var(--color-text-sub);
}
.thanks__body .thanks__message {
  margin: 0;
}
.thanks__body .thanks__message + .thanks__message {
  margin-top: 12px;
}
.thanks__note {
  font-size: 11px;
  color: rgba(54, 56, 60, 0.66);
  letter-spacing: 0.3px;
  margin-top: 12px;
  display: inline-block;
}
.thanks__actions {
  margin-top: clamp(40px, 6vh, 56px);
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.thanks__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.6px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  color: var(--color-text);
  background: #f6f6f6;
  min-width: 200px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.12);
  transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}
.thanks__link--ghost {
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--color-text-muted);
  background: transparent;
}
.thanks__link:focus-visible {
  background: #f0f0f0;
  transform: translate(1px, 3px);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.16);
}
.thanks__link:active {
  transform: translate(3px, 5px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.18);
}
.thanks__link--ghost:focus-visible {
  background: #f8f8f8;
  transform: translate(1px, 3px);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.14);
}
.thanks__link--ghost:active {
  background: #f8f8f8;
  transform: translate(3px, 5px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.16);
}
@media (hover: hover) and (pointer: fine) {
  .thanks__link:hover {
    background: #f0f0f0;
    transform: translate(1px, 3px);
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.16);
  }
  .thanks__link--ghost:hover {
    background: #f8f8f8;
    transform: translate(1px, 3px);
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.14);
  }
}

/*=======================================
  CTA
=======================================*/
.cta {
  padding: 32px 16px 56px;
}

.cta__inner {
  width: min(960px, 92%);  margin: 0 auto;
  text-align: center;
}

.cta__lead {
  font-size: 11px;
  letter-spacing: 2.8px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.cta__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-jp);
  font-size: 15px;
  letter-spacing: 1.2px;
  text-decoration: none;
  color: var(--color-text);
  padding: 8px 0;
  line-height: 1;
  transition: transform 0.35s ease, border-color 0.35s ease, color 0.25s ease;
}

.cta__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 3px;
  padding-left: 12px;
  padding-right: 12px;
  line-height: 1.4;
  border-bottom: 1px solid currentColor;
}

.cta__short {
  display: none;
}

.cta__full {
  display: inline;
}

.cta__short,
.cta__full {
  position: relative;
  top: 0;
}

.cta__label::after {
  content: "›";
  font-size: 20px;
  margin-left: 8px;
  position: relative;
  top: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transform: translateY(-2px);
  transition: transform 0.35s ease;
}

.cta__icon-wrap {
  display: inline-flex;
  align-items: center;
}

.cta__icon {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.cta__link:focus-visible .cta__icon {
  animation: cat-hop 0.6s ease;
  filter: saturate(1.1);
}

.cta__link:focus-visible .cta__label::after {
  transform: translateX(4px) translateY(-2px);
}

@media (hover: hover) and (pointer: fine) {
  .cta__link:hover .cta__icon {
    animation: cat-hop 0.6s ease;
    filter: saturate(1.1);
  }
  .cta__link:hover .cta__label::after {
    transform: translateX(4px) translateY(-2px);
  }
}
body[data-cta=outline] .cta__link {
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-width: 260px;
  height: 52px;
  padding: 0 28px;
  text-align: center;
  border: 0;
  border-radius: 40px;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  overflow: visible;
  transform: none;
  justify-content: center;
}

body[data-cta=outline] .cta__label {
  border-bottom: 0;
  padding-bottom: 0;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1;
}

body[data-cta=outline] .cta__border {
  position: absolute;
  inset: 0;
  border: 2px solid #111111;
  border-radius: 40px;
  z-index: 4;
  pointer-events: none;
}

body[data-cta=outline] .cta__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111111;
  border-radius: inherit;
  z-index: 1;
}

body[data-cta=outline] .cta__link:focus-visible {
  color: #111111;
  transition-delay: 0.12s;
}

body[data-cta=outline] .cta__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  clip-path: inset(0 100% 0 0 round 40px);
  transition: clip-path 0.32s ease;
  border-radius: inherit;
  z-index: 2;
  will-change: clip-path;
}

body[data-cta=outline] .cta__link:focus-visible::after {
  clip-path: inset(0 0 0 0 round 40px);
}

@media (hover: hover) and (pointer: fine) {
  body[data-cta=outline] .cta__link:hover {
    color: #111111;
    transition-delay: 0.12s;
  }
  body[data-cta=outline] .cta__link:hover::after {
    clip-path: inset(0 0 0 0 round 40px);
  }
}
body[data-cta=outline] .cta__link:active::after {
  clip-path: inset(0 0 0 0 round 40px);
}

body[data-cta=outline] .cta__cat {
  position: absolute;
  width: 56px;
  height: 56px;
  left: 14px;
  top: -37px;
  background-image: url("../img/cat.png");
  background-size: 56px 56px;
  background-repeat: no-repeat;
  opacity: 1;
  transform-origin: bottom center;
  transform: translateY(31px) scale(1);
  animation: none;
  transition: none;
  z-index: 0;
  pointer-events: none;
}

body[data-cta=outline] .cta__link.is-hover .cta__cat,
body[data-cta=outline] .cta__link:focus-visible .cta__cat {
  animation: cta-cat-hover 0.18s ease forwards;
}

body[data-cta=outline] .cta__link.is-leave .cta__cat {
  animation: cta-cat-leave 0.1s ease forwards;
}

body[data-cta=outline] .cta.is-inview .cta__cat {
  animation: cta-cat-idle 7s ease-in-out infinite;
}

body[data-cta=outline] .cta.is-inview .cta__link.is-hover .cta__cat,
body[data-cta=outline] .cta.is-inview .cta__link:focus-visible .cta__cat {
  animation: cta-cat-hover 0.18s ease forwards;
}

body[data-cta=outline] .cta.is-inview .cta__link.is-leave .cta__cat {
  animation: cta-cat-leave 0.1s ease forwards;
}

@keyframes cta-cat-idle {
  0% {
    transform: translateY(31px) scale(1);
  }
  14% {
    transform: translateY(31px) scale(1);
  }
  24% {
    transform: translateY(20px) scale(1);
  }
  66% {
    transform: translateY(20px) scale(1);
  }
  69% {
    transform: translateY(31px) scale(1);
  }
  100% {
    transform: translateY(31px) scale(1);
  }
}
@keyframes cta-cat-hover {
  0% {
    transform: translateY(31px) scale(1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
@keyframes cta-cat-leave {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(31px) scale(1);
  }
}
body[data-cta=outline] .cta__icon-wrap {
  display: none;
}

@keyframes cat-hop {
  0% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-6px);
  }
  70% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-2px);
  }
}
/*=======================================
  PAGE TOP
=======================================*/
.pagetop-btn {
  width: 52px;
  height: 52px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  border-radius: 50%;
  border: 4px solid #ffffff;
  outline: 0;
  outline: 3px solid #2b2b2b;
  color: #ffffff;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, filter 0.2s ease;
}

.pagetop-btn::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -35%) rotate(45deg);
  transition: transform 0.25s ease;
}

.pagetop-fixed {
  position: fixed;
  top: auto;
  left: auto;
  right: 24px;
  bottom: 32px;
  z-index: 2000;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(80px) rotate(0deg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.pagetop-fixed.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) rotate(0deg);
}

.pagetop-fixed.is-roll-in {
  animation: pagetop-roll-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pagetop-fixed.is-roll-out {
  animation: pagetop-roll-out 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pagetop-fixed.is-visible:focus-visible {
  transform: translateX(0) rotate(0deg) scale(1.08);
}

@media (hover: hover) and (pointer: fine) {
  .pagetop-fixed.is-visible:hover {
    transform: translateX(0) rotate(0deg) scale(1.08);
  }
}
@keyframes pagetop-roll-in {
  0% {
    transform: translateX(80px) rotate(0deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(-360deg);
    opacity: 1;
  }
}
@keyframes pagetop-roll-out {
  0% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(80px) rotate(360deg);
    opacity: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .pagetop-fixed {
    cursor: none;
  }
}
/*=======================================
  フッター
=======================================*/
footer {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--color-text);
  padding: 24px 24px 56px;
  margin: 0;
}

.footer__inner {
  width: min(920px, 92%);  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

footer p {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.footer__links {
  margin-top: 14px;
  display: inline-flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding-inline-start: 0;
}

.footer__link {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-decoration: none;
  color: rgba(17, 17, 17, 0.78);
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: color 0.3s ease;
}

.footer__link + .footer__link::before {
  content: "/";
  color: rgba(17, 17, 17, 0.42);
  margin: 0 16px;
  display: inline-block;
  line-height: 1;
}

.footer__link-text {
  display: inline-block;
  line-height: 1;
  position: relative;
}

.footer__link:focus-visible {
  color: var(--color-text);
}

.footer__link-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.2), rgba(17, 17, 17, 0.56), rgba(17, 17, 17, 0.2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.footer__link:focus-visible .footer__link-text::after {
  transform: scaleX(1);
}

@media (hover: hover) and (pointer: fine) {
  .footer__link:hover {
    color: var(--color-text);
  }
  .footer__link:hover .footer__link-text::after {
    transform: scaleX(1);
  }
}
/*=======================================
  レイアウト共通オフセット
=======================================*/
@media (min-width: 992px) {
  .fv__inner,
  .works__inner,
  .topics__inner,
  .profile__inner,
  .topics-archive__inner,
  .works-archive__inner,
  .work-detail__inner,
  .cta__inner,
  .footer__inner,
  .contact__inner,
  .thanks__inner {
    transform: translateX(120px);
  }
  .footer__inner {
    padding-top: 0;
  }
}
@media (max-width: 1400px) and (min-width: 992px) {
  .works__inner,
  .topics__inner,
  .topics-archive__inner,
  .works-archive__inner,
  .work-detail__inner,
  .cta__inner,
  .footer__inner,
  .profile__inner,
  .contact__inner,
  .thanks__inner {
    max-width: calc(100% - 260px);
    margin: 0 auto;
    padding: 0 20px;
  }
}
@media (min-width: 668px) and (max-width: 1299.98px) {
  .profile__strengths-line--break {
    display: block;
    margin-top: 4px;
  }
}
@media (min-width: 992px) and (max-width: 1180px) {
  .skills__grid {
    grid-template-columns: repeat(2, 290px);
    gap: 24px;
    justify-content: start;
  }
}
@media (min-width: 992px) and (max-width: 1110px) {
  .profile__name-line {
    flex-wrap: wrap;
    gap: 10px 12px;
  }
  .profile__name-sep {
    display: none;
  }
  .profile__name-role {
    width: 100%;
  }
  .profile__name-role::before {
    content: "|";
    margin-right: 10px;
    color: var(--color-text-muted);
    font-weight: 300;
  }
}
@media (max-width: 1360px) {
  .footer__links {
    justify-content: center;
    margin-top: 14px;
  }
  footer {
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .topics-archive {
    padding: 160px 0 0;
  }
  .topics-archive__lead {
    margin-top: 36px;
  }
  .topics-archive__list {
    margin-top: 36px;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 22px;
  }
  .topics {
    padding: 24px 0 80px;
  }
  .topics__layout {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .topics__note {
    max-width: 100%;
  }
  .topics__item {
    width: 100%;
    min-height: auto;
    margin-left: 11px;
  }
  .topics__accent-img {
    width: clamp(145px, 18vw, 210px);
  }
  .works-archive {
    padding: 160px 0 0;
  }
  .works-archive__inner {
    width: min(960px, 92%);    margin: 0 auto;
    padding: 0 20px;
  }
  .works-archive__thumb {
    width: min(420px, 100%);
    height: auto;
    aspect-ratio: 16/9;
  }
  .works-archive__pagination {
    margin-top: 104px;
  }
  .work-detail {
    padding: 160px 0 120px;
  }
  .work-detail__title {
    font-size: clamp(28px, 7.8vw, 36px);
    font-weight: 600;
    letter-spacing: 1.6px;
  }
  .work-detail__hero {
    margin-top: 32px;
  }
  .work-detail__summary {
    font-size: 13px;
  }
  .work-detail__meta-item {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
  .work-detail__section-title {
    font-size: 22px;
    letter-spacing: 3px;
    margin: 0 auto;
    text-align: center;
  }
  .work-detail__design-layout {
    margin-top: 96px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .work-detail__design-meta {
    position: static;
  }
  .work-detail__design-meta-inner {
    position: static;
    width: 100%;
  }
  .work-detail__section-lead {
    text-align: center;
    max-width: none;
  }
  .work-detail__design {
    margin-top: 24px;
    gap: 48px;
  }
  .work-detail__design-block {
    gap: 12px;
  }
  .work-detail__design-label {
    text-align: center;
  }
  .work-detail__mobile-head {
    justify-content: center;
  }
  .work-detail__mobile-grid {
    grid-template-columns: repeat(2, minmax(190px, 260px));
    -moz-column-gap: 64px;
         column-gap: 64px;
    row-gap: 28px;
    justify-content: center;
  }
  .work-detail__mobile-grid--single {
    grid-template-columns: minmax(0, 260px);
  }
  .work-detail__design-frame {
    max-width: 260px;
  }
  .work-detail__cta {
    margin-top: 56px;
  }
  .work-detail__cta--secondary {
    margin-top: 56px;
  }
  .footer__links {
    margin-top: 14px;
  }
  body.is-loaded .fv__title {
    animation-delay: 0.35s;
  }
  body.is-loaded .fv__subtitle {
    animation-delay: 0.55s;
  }
}
@media (max-width: 991.98px) {
  header {
    pointer-events: auto;
  }
  body.is-sticky .header__nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
  }
  .header {
    --band-width: 160px;
  }
  .header__nav {
    top: 120px;
    left: 0;
    right: 0;
    width: 100%;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    align-items: center;
    text-align: center;
    transition: opacity 0.15s ease-out, transform 0.15s ease-out;
  }
  .header__link {
    font-size: 16px;
    letter-spacing: 3.6px;
    padding-left: 0;
    padding-right: 0;
  }
  .header__link::before {
    left: -12px;
    right: auto;
  }
  .band-decor--logo img {
    width: 96px;
  }
  .header::before {
    left: 0;
    right: auto;
    opacity: 0;
    transform: translateY(-100%);
  }
  body.is-loaded .header::before {
    opacity: 0;
    transform: translateY(-100%);
  }
  body.is-loaded .header__nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition-delay: 0s;
  }
  body.is-loaded .header__link {
    animation: none;
  }
  body.is-loaded .header__link:nth-child(1) {
    animation-delay: 0s;
  }
  body.is-loaded .header__link:nth-child(2) {
    animation-delay: 0s;
  }
  body.is-loaded .header__link:nth-child(3) {
    animation-delay: 0s;
  }
  body.is-loaded .header__link:nth-child(4) {
    animation-delay: 0s;
  }
  .header.is-sticky::before {
    opacity: 0;
    transform: translateY(-100%);
  }
  body.is-menu-open .header::before {
    opacity: 1;
    transform: translateY(0);
    width: 100vw;
    right: 0;
    height: 100vh;
    z-index: 9;
    background: #ffffff;
    box-shadow: none;
  }
  body.is-menu-closing .header::before {
    opacity: 0;
    transform: translateY(-100%);
    transition-delay: 0s;
    transition-duration: 0.35s;
  }
  body.is-menu-open .header.is-sticky::before {
    opacity: 1;
    transform: translateY(0);
    width: 100vw;
    right: 0;
    height: 100vh;
  }
  body.is-menu-closing .header.is-sticky::before {
    opacity: 0;
    transform: translateY(-100%);
    transition-delay: 0s;
    transition-duration: 0.35s;
  }
  body.is-menu-open .header__nav {
    opacity: 1;
    pointer-events: auto;
    top: 50%;
    transform: translateY(-50%);
    transition-delay: 0.16s;
    transition-duration: 0.35s;
    z-index: 12;
  }
  body.is-menu-closing .header__nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-60%);
    transition-delay: 0s;
    transition-duration: 0.12s;
  }
  body.is-menu-open .header__link {
    opacity: 0;
    animation: nav-rise 0.6s ease forwards;
    animation-delay: 0.14s;
  }
  body.is-menu-open .header__link:nth-child(1) {
    animation-delay: 0.16s;
  }
  body.is-menu-open .header__link:nth-child(2) {
    animation-delay: 0.3s;
  }
  body.is-menu-open .header__link:nth-child(3) {
    animation-delay: 0.44s;
  }
  body.is-menu-open .header__link:nth-child(4) {
    animation-delay: 0.58s;
  }
  body.is-menu-open .header__link:nth-child(5) {
    animation-delay: 0.72s;
  }
  .header.is-sticky .header__nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
  }
  .header.is-sticky::before,
  .header.is-sticky::after {
    opacity: 0;
    transform: translateY(-100%);
  }
  .header.is-sticky .band-decor {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
  }
  body.is-menu-open .header.is-sticky::before,
  body.is-menu-open .header.is-sticky::after,
  body.is-menu-open .header.is-sticky .band-decor,
  body.is-menu-open .header.is-sticky .header__nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .band-decor {
    left: calc(var(--band-width) / 2);
    right: auto;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
  }
  body.is-loaded:not(.is-menu-open) .band-decor {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition-delay: 0s;
  }
  body.is-loaded.is-menu-open .band-decor,
  body.is-menu-open .band-decor {
    display: none;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition-delay: 0s;
  }
  body.is-menu-closing .band-decor {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-56px);
    transition-delay: 0s;
    transition-duration: 0.12s;
  }
  body.is-menu-closing .band-decor--logo img,
  body.is-menu-closing .band-decor img {
    opacity: 0;
    transition-duration: 0.12s;
  }
  body.is-menu-open .header__link {
    color: var(--color-text);
    font-size: 16px;
    letter-spacing: 3.6px;
  }
  body.is-menu-open .header__link::before {
    display: none;
  }
  body.is-menu-open .header__link span {
    opacity: 0.8;
  }
  body.is-menu-open .menu-toggle {
    z-index: 13;
  }
  .menu-toggle {
    display: inline-flex;
    width: 52px;
    height: 52px;
    gap: 6px;
    top: 18px;
    right: 18px;
    left: auto;
    border-radius: 50%;
    background: #111111;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }
  .menu-toggle__bar {
    width: 24px;
    height: 4px;
    transform-origin: center;
    background: #ffffff;
  }
  .menu-toggle.is-open .menu-toggle__bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .menu-toggle.is-open .menu-toggle__bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-open .menu-toggle__bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .fv {
    padding: 24px;
  }
  .fv__title {
    font-size: 24px;
  }
  .works {
    padding: 180px 0 120px;
  }
  .profile__lead {
    font-size: 13px;
    margin-top: 48px;
  }
  .profile__name-en {
    font-size: clamp(20px, 5.6vw, 30px);
  }
  .profile__name-role {
    font-size: 12px;
  }
  .profile__info {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
  .profile__info-item {
    grid-template-columns: 150px 1fr;
  }
  .skills {
    margin-top: 96px;
  }
  .skills__grid {
    grid-template-columns: repeat(2, 290px);
    row-gap: 36px;
    -moz-column-gap: 32px;
         column-gap: 32px;
    justify-content: start;
  }
  .skills__lead {
    font-size: 13px;
    margin-top: 36px;
  }
  .profile {
    padding: 160px 0 120px;
  }
  .profile__title {
    font-size: 24px;
    letter-spacing: 2.4px;
  }
  .profile__profile {
    grid-template-columns: 160px 1fr;
    gap: 36px;
  }
  .profile__photo img {
    width: 160px;
    height: auto;
  }
  .cta {
    padding: 32px 16px 56px;
  }
  .contact {
    padding: 140px 0 70px;
  }
  .contact__title {
    font-size: 24px;
    letter-spacing: 2.4px;
  }
  .contact__lead-icon {
    left: calc(50% - 291px);
    top: -39px;
    width: 104px;
  }
  .contact__lead {
    margin-top: 56px;
    font-size: 13px;
  }
  .contact__panel {
    margin-top: 72px;
  }
  .contact__row {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .contact__label {
    padding-top: 0;
  }
  .contact__actions {
    justify-content: center;
  }
  .thanks {
    padding: clamp(160px, 18vh, 220px) 0 clamp(48px, 8vh, 88px);
  }
  .thanks__title {
    font-size: 26px;
    letter-spacing: 2.6px;
  }
  .thanks__body {
    margin-top: 32px;
  }
  body[data-cta=outline] .cta__link {
    min-width: 240px;
    height: 48px;
    padding: 0 22px;
  }
  body[data-cta=outline] .cta__label {
    padding-left: 8px;
    padding-right: 8px;
    justify-content: center;
  }
  .cta__icon {
    width: 44px;
    height: 44px;
  }
  footer {
    padding: 24px 16px 56px;
  }
  .footer__inner {
    justify-content: space-between;
  }
}
@media (max-width: 850px) {
  .profile__name-line {
    flex-wrap: wrap;
    gap: 10px 12px;
  }
  .profile__name-sep {
    display: none;
  }
  .profile__name-role {
    width: 100%;
  }
  .profile__name-role::before {
    content: "|";
    margin-right: 10px;
    color: var(--color-text-muted);
    font-weight: 300;
  }
}
@media (max-width: 767.98px) {
  .topics {
    padding: 18px 0 64px;
  }
  .topics__link {
    gap: 10px;
    padding: 10px 0;
  }
  .topics__meta {
    gap: 6px;
  }
  .topics__text {
    font-size: 13px;
  }
  .topics__trail {
    margin-top: 3px;
    gap: 6px;
  }
  .topics__trail-arrow {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .topics__item {
    width: 100%;
    min-height: auto;
  }
  .topics__accent-img {
    width: clamp(132px, 42vw, 170px);
  }
  .work-detail {
    padding: 150px 0 90px;
  }
  .work-detail__meta--compact {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .work-detail__meta {
    row-gap: 20px;
  }
  .work-detail__meta-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    border-bottom: 0;
    padding: 0;
  }
  .work-detail__meta-item {
    text-align: center;
    justify-items: center;
    width: 100%;
    border-bottom: 0;
    padding: 0;
  }
  .work-detail__design {
    margin-top: 20px;
    gap: 40px;
  }
  .work-detail__mobile-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 28px;
    width: min(100%, 520px);    margin-left: auto;
    margin-right: auto;
  }
  .work-detail__mobile-grid--single {
    grid-template-columns: minmax(0, 200px);
  }
  .work-detail__design-frame {
    max-width: 200px;
  }
  .work-detail__cta {
    margin-top: 48px;
  }
  .work-detail__cta--secondary {
    margin-top: 52px;
  }
  .work-detail__meta,
  .work-detail__meta-item {
    text-align: center;
    justify-items: center;
  }
  .work-detail__meta-row {
    grid-template-columns: repeat(2, minmax(120px, 160px));
    justify-content: center;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
  .works-archive {
    padding: 150px 0 0;
  }
  .works-archive__title {
    font-size: 24px;
    letter-spacing: 2.6px;
  }
  .works-archive__grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
    row-gap: 48px;
  }
  .works-archive__thumb {
    max-width: 100%;
  }
  .works-archive__pagination {
    margin-top: 104px;
  }
}
@media (max-width: 579.98px) {
  .contact__lead-icon {
    left: -10px;
    top: -33px;
    width: 88px;
  }
}
@media (max-width: 520px) {
  .work-detail__mobile-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
  }
  .work-detail__design-frame {
    max-width: 304px;
  }
}
@media (max-width: 756px) and (min-width: 576px) {
  .profile__profile {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .profile__name-en {
    font-size: clamp(18px, 4.4vw, 26px);
  }
}
@media (max-width: 680px) {
  .skills__grid {
    grid-template-columns: 290px;
    row-gap: 40px;
    -moz-column-gap: 14px;
         column-gap: 14px;
    justify-content: start;
  }
  .skills__card {
    width: 290px;
  }
}
@media (max-width: 668px) and (min-width: 576px) {
  .profile__info {
    row-gap: 36px;
  }
  .profile__info-item {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
}
@media (max-width: 575.98px) {
  header {
    pointer-events: auto;
  }
  body.is-sticky .header__nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
  }
  .header {
    --band-width: 160px;
  }
  .header__nav {
    top: 120px;
    left: 0;
    right: 0;
    width: 100%;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    align-items: center;
    text-align: center;
    transition: opacity 0.15s ease-out, transform 0.15s ease-out;
  }
  .header__link {
    font-size: 18px;
    letter-spacing: 3.8px;
    padding-left: 0;
    padding-right: 0;
  }
  .header__link::before {
    left: -12px;
    right: auto;
  }
  .header::before {
    left: 0;
    right: auto;
    opacity: 0;
    transform: translateY(-100%);
  }
  .header.is-sticky::before {
    opacity: 0;
    transform: translateY(-100%);
  }
  body.is-menu-open .header::before {
    background: #ffffff;
    box-shadow: none;
  }
  body.is-menu-open .band-decor {
    display: none;
  }
  .header.is-sticky .header__nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
  }
  .header.is-sticky::before {
    opacity: 0;
    transform: translateY(-100%);
  }
  .header.is-sticky .band-decor {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
  }
  .band-decor {
    left: calc(var(--band-width) / 2);
    right: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
  }
  .menu-toggle {
    width: 52px;
    height: 52px;
    gap: 6px;
    top: 18px;
    right: 18px;
    left: auto;
  }
  .menu-toggle__bar {
    width: 24px;
    height: 4px;
    transform-origin: center;
  }
  .band-decor {
    bottom: 56px;
  }
  .band-decor--logo img {
    width: 96px;
  }
  .fv__title {
    font-size: 24px;
    letter-spacing: 3px;
  }
  .fv__subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .works {
    padding: 180px 0 120px;
  }
  .works__title {
    font-size: 28px;
  }
  .profile {
    padding: 120px 0 90px;
  }
  .profile__title {
    font-size: 22px;
    letter-spacing: 2.2px;
  }
  .profile__lead {
    font-size: 13px;
    margin-top: 40px;
  }
  .profile__profile {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .profile__photo img {
    width: 140px;
  }
  .profile__name-line {
    flex-wrap: wrap;
    gap: 12px;
  }
  .profile__name-en {
    font-size: clamp(20px, 7.2vw, 28px);
  }
  .profile__name-role {
    font-size: 11px;
  }
  .profile__info-item {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
  .profile__info-label {
    padding-left: 8px;
  }
  .skills {
    margin-top: 110px;
  }
  .skills__title {
    font-size: 22px;
    letter-spacing: 2.2px;
  }
  .skills__lead {
    font-size: 13px;
    margin-top: 32px;
  }
  .skills__grid {
    grid-template-columns: 290px;
    row-gap: 40px;
    -moz-column-gap: 14px;
         column-gap: 14px;
    justify-content: start;
  }
  .skills__card {
    padding: 18px 18px;
    width: 290px;
  }
  .skills__label {
    font-size: 14px;
  }
  .skills__list {
    font-size: 12px;
  }
  .profile__profile {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .profile__photo img {
    width: 140px;
    height: auto;
  }
  .profile__name-en {
    font-size: clamp(18px, 7vw, 28px);
  }
  .profile__name-role {
    font-size: 11px;
  }
  .profile__info {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .cta__lead {
    font-size: 11px;
    letter-spacing: 2.8px;
  }
  .cta__link {
    font-size: 14px;
  }
  body[data-cta=outline] .cta__link {
    min-width: 240px;
    height: 48px;
    padding: 0 22px;
  }
  body[data-cta=outline] .cta__label {
    padding-left: 8px;
    padding-right: 8px;
  }
  .cta__icon {
    width: 44px;
    height: 44px;
  }
  footer {
    font-size: 14px;
  }
  .footer__inner {
    justify-content: space-between;
  }
  .footer__link {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}
@media (max-width: 575.98px) {
  .profile__info {
    row-gap: 36px;
  }
  .profile__info-item {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
  .profile__info-item dd {
    padding-left: 10px;
  }
  .works-archive {
    padding: 140px 0 0;
  }
  .works-archive__grid {
    margin-top: 44px;
    row-gap: 40px;
  }
  .works-archive__name {
    font-size: 14px;
  }
  .works-archive__role {
    font-size: 10px;
  }
  .works-archive__pagination {
    margin-top: 96px;
    gap: 12px;
    flex-wrap: wrap;
    row-gap: 8px;
  }
}
@media (max-width: 529.98px) {
  .profile__info-seg {
    display: block;
  }
  .profile__info-seg + .profile__info-seg {
    margin-top: 2px;
  }
}
@media (max-width: 520px) {
  .profile__name-line {
    flex-wrap: wrap;
  }
  .profile__name-en {
    white-space: normal;
    padding-right: 20px;
    line-height: 1.2;
  }
  .work-detail__meta--compact {
    margin-left: auto;
    margin-right: auto;
  }
  .contact__button,
  .thanks__link {
    width: 100%;
    justify-content: center;
  }
  .pagetop-btn {
    width: 44px;
    height: 44px;
    border-width: 3px;
    outline-width: 2px;
  }
  .pagetop-btn::before {
    width: 10px;
    height: 10px;
    transform: translate(-50%, -32%) rotate(45deg);
  }
}
@media (max-width: 510px) and (min-width: 418px) {
  .fv__title {
    white-space: nowrap;
    letter-spacing: 2px;
  }
}
@media (max-width: 460px) {
  .profile__name-line {
    flex-wrap: nowrap;
    gap: 8px 10px;
  }
  .profile__name-en {
    font-size: clamp(12px, 5.6vw, 18px);
    letter-spacing: 1.6px;
  }
  .profile__name-sep {
    display: none;
  }
  .profile__name-role {
    width: auto;
    font-size: 10px;
  }
  .profile__name-role::before {
    content: "";
    margin: 0;
  }
  .profile__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 450px) {
  footer {
    padding-bottom: 85px;
  }
}
@media (max-width: 400px) {
  .pagetop-btn {
    width: 40px;
    height: 40px;
    border-width: 3px;
    outline-width: 2px;
  }
  .pagetop-btn::before {
    width: 9px;
    height: 9px;
    transform: translate(-50%, -30%) rotate(45deg);
  }
}
@media (max-width: 417.98px) {
  .footer__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer__links {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-inline-start: 0;
    list-style: none;
  }

  .footer__link + .footer__link::before {
    margin: 0 10px;
  }

  .cta__full {
    display: none;
  }
  .cta__short {
    display: inline;
  }
  .cta__label {
    white-space: nowrap;
  }
  body[data-cta=outline] .cta__label {
    padding-left: 6px;
    padding-right: 6px;
    justify-content: center;
    gap: 6px;
  }
  body[data-cta=outline] .cta__link {
    min-width: 220px;
    height: 44px;
    padding: 0 18px;
  }
  .cta__link {
    font-size: 13px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  footer p {
    white-space: nowrap;
    font-size: 9px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 360px) {
  .profile__name-en {
    font-size: 14px;
    letter-spacing: 1.2px;
  }
}
@media (max-width: 350px) and (min-width: 320px) {
  .skills__grid {
    grid-template-columns: 1fr;
    justify-content: start;
  }
  .skills__card {
    width: 100%;
    height: 210px;
  }
}
