/* くらしの共創研究所 トップ骨格
   基準幅 1440px / スリーライン
   書体: 和文 Kosugi Maru / 英数 Montserrat（Google Fonts）
   約物: YakuHanRP（https://yakuhanjp.qranoko.jp/） */

:root {
  --u: calc(100vw / 1440);

  --paper: #f8f5f0;
  --ink: #1a1a1a;
  --gray: #6b6b6b;
  --rule: #d9d6ce;
  --indigo: #2f4858;

  /* 約物半角 YakuHanRP → 英数 Montserrat → 和文 Kosugi Maru */
  --font-en: "Montserrat", sans-serif;
  --font-ja: YakuHanRP, "Kosugi Maru", "Montserrat", sans-serif;
  --font: YakuHanRP, "Montserrat", "Kosugi Maru", sans-serif;
  --serif: var(--font);
  --sans: var(--font);

  --container: calc(var(--u) * 1040);
  --read: calc(var(--u) * 640);
  --header-h: calc(var(--u) * 104);
}

@media (min-width: 1440px) {
  :root { --u: 1px; }
}

@media (max-width: 767px) {
  :root {
    --u: 1px;
    --header-h: 72px;
  }
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  background: var(--paper);
  scroll-behavior: smooth;
}
html.lenis,
html.lenis body {
  height: auto;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font);
  font-size: calc(var(--u) * 19);
  line-height: 2.15;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "palt";
}

/* 英数字・英字ラベルは Montserrat を優先（和文要素には付けない） */
.eyebrow,
.eyebrow--chars,
.eyebrow-char,
.card-num,
.axis-label,
.stat-num,
.tiny,
.site-footer .tiny {
  font-family: var(--font-en);
}

img { max-width: 100%; display: block; }
a { color: var(--indigo); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: calc(var(--u) * 16);
  top: calc(var(--u) * 16);
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: calc(var(--u) * 8) calc(var(--u) * 16);
}

.serif { font-family: var(--serif); font-weight: 600; }

.container {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 calc(var(--u) * 24);
}

.read {
  width: var(--read);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section { padding: calc(var(--u) * 96) 0; }
.section-center { text-align: center; }
#person { padding-top: calc(var(--u) * 240); }
#person .container.split {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 calc(var(--u) * 80) 0 0;
  grid-template-columns: 56vw minmax(0, 1fr);
  column-gap: calc(var(--u) * 64);
  align-items: center;
}
#person #works {
  width: 100%;
  max-width: 1440px;
  margin-top: calc(var(--u) * 96);
  padding: 0 calc(var(--u) * 80);
}
#works > .eyebrow,
#works > .quote,
#works > .grid > .stat,
#works > .advisor {
  opacity: 0;
}
#works.is-inview > .eyebrow,
#works.is-inview > .quote,
#works.is-inview > .grid > .stat,
#works.is-inview > .advisor {
  animation: works-fade-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
#works.is-inview > .eyebrow { animation-delay: 0.05s; }
#works.is-inview > .quote { animation-delay: 0.18s; }
#works.is-inview > .grid > .stat:nth-child(1) { animation-delay: 0.32s; }
#works.is-inview > .grid > .stat:nth-child(2) { animation-delay: 0.42s; }
#works.is-inview > .grid > .stat:nth-child(3) { animation-delay: 0.52s; }
#works.is-inview > .grid > .stat:nth-child(4) { animation-delay: 0.62s; }
#works.is-inview > .advisor { animation-delay: 0.78s; }
@keyframes works-fade-in {
  from {
    opacity: 0;
    transform: translateY(calc(var(--u) * 16));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  #works > .eyebrow,
  #works > .quote,
  #works > .grid > .stat,
  #works > .advisor,
  #works.is-inview > .eyebrow,
  #works.is-inview > .quote,
  #works.is-inview > .grid > .stat,
  #works.is-inview > .advisor {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
#person .ph-portrait {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 0 calc(var(--u) * 24) calc(var(--u) * 24) 0;
}
#person .container.split .ph-portrait,
#person .container.split .stack > * {
  opacity: 0;
}
#person .container.split.is-inview .ph-portrait,
#person .container.split.is-inview .stack > * {
  animation: person-fade-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
#person .container.split.is-inview .ph-portrait { animation-delay: 0.05s; }
#person .container.split.is-inview .stack > *:nth-child(1) { animation-delay: 0.2s; }
#person .container.split.is-inview .stack > *:nth-child(2) { animation-delay: 0.35s; }
#person .container.split.is-inview .stack > *:nth-child(3) { animation-delay: 0.5s; }
#person .container.split.is-inview .stack > *:nth-child(4) { animation-delay: 0.65s; }
#person .container.split.is-inview .stack > *:nth-child(5) { animation-delay: 0.8s; }
@keyframes person-fade-in {
  from {
    opacity: 0;
    transform: translateY(calc(var(--u) * 16));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  #person .container.split .ph-portrait,
  #person .container.split .stack > *,
  #person .container.split.is-inview .ph-portrait,
  #person .container.split.is-inview .stack > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
#person .stack {
  max-width: calc(var(--u) * 520);
}
#person .quote,
#works .quote,
#voices > .container > h2.quote,
#news > .container > h2.quote,
#axes > .container > .quote,
#services .services-head .quote {
  font-size: calc(var(--u) * 36);
  font-weight: 400;
  line-height: 1.4;
  color: #443625;
}
#works .quote,
#voices > .container > h2.quote,
#news > .container > h2.quote,
#axes > .container > .quote,
#services .services-head .quote {
  margin-bottom: calc(var(--u) * 16);
}
#works .quote,
#voices > .container > h2.quote,
#news > .container > h2.quote {
  margin-bottom: calc(var(--u) * 64);
}
#axes .container,
#services .container,
#voices .container,
#news > .container,
#consult > .container {
  width: 100%;
  max-width: 1440px;
  padding: 0 calc(var(--u) * 80);
}
#voices {
  padding-top: calc(var(--u) * 160);
  border-top-left-radius: calc(var(--u) * 160);
}
#news {
  padding-bottom: calc(var(--u) * 180);
}
#consult {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: calc(var(--u) * 160) 0 calc(var(--u) * 256);
  margin-bottom: calc(var(--u) * -48);
  z-index: 0;
  text-align: left;
  border-top-right-radius: calc(var(--u) * 200);
}
#consult::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  top: calc(var(--u) * -140);
  height: calc(var(--u) * 280);
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
}
#consult > .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: calc(var(--u) * 40);
}
.consult-copy {
  min-width: 0;
}
.consult-illust {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: calc(var(--u) * 340);
  margin-right: calc(var(--u) * -24);
  pointer-events: none;
}
.consult-illust img {
  display: block;
  width: auto;
  flex: 0 0 auto;
}
.consult-illust img + img {
  margin-left: calc(var(--u) * -18);
}
.consult-illust img:nth-child(1) { height: calc(var(--u) * 340); }
.consult-illust img:nth-child(2) { height: calc(var(--u) * 186); }
.consult-illust img:nth-child(3) { height: calc(var(--u) * 194); }
.consult-illust img:nth-child(4) { height: calc(var(--u) * 304); }
.consult-illust img:nth-child(5) { height: calc(var(--u) * 320); }
.consult-illust img:nth-child(6) { height: calc(var(--u) * 327); }
#consult .cta-copy {
  font-size: calc(var(--u) * 40);
  font-weight: 400;
  line-height: 1.55;
  white-space: nowrap;
}
#consult .consult-lead {
  margin-top: calc(var(--u) * 16);
  line-height: 2.1;
}
#consult .consult-cta {
  margin-top: calc(var(--u) * 40);
}
#consult .consult-cta .btn-pill {
  min-width: calc(var(--u) * 360);
  min-height: calc(var(--u) * 80);
  gap: calc(var(--u) * 20);
  padding: calc(var(--u) * 12) calc(var(--u) * 14) calc(var(--u) * 12) calc(var(--u) * 48);
  font-size: calc(var(--u) * 18);
  justify-content: space-between;
}
#consult .consult-cta .btn-pill-icon {
  width: calc(var(--u) * 56);
  height: calc(var(--u) * 56);
}
#consult .consult-cta .btn-pill-icon svg {
  width: calc(var(--u) * 22);
  height: calc(var(--u) * 22);
}
#services {
  --services-gutter: calc(var(--u) * 80);
  overflow: visible;
  padding-bottom: calc(var(--u) * 280);
}
#services .container {
  overflow: visible;
}
#services .services-head {
  display: block;
  margin-bottom: 0;
}
#services .services-head__copy {
  min-width: 0;
}
#axes .axes-lead,
#services .services-lead {
  margin: 0 0 calc(var(--u) * 56);
  font-size: calc(var(--u) * 18);
  line-height: 2.1;
  color: #444;
}
#services .services-filter {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--u) * 12);
  margin: 0 0 calc(var(--u) * 48);
}
#services .services-filter__btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: calc(var(--u) * 40);
  padding: calc(var(--u) * 8) calc(var(--u) * 22);
  border: 1px solid #ff9c00;
  border-radius: 999px;
  background: #fff;
  color: #443625;
  font-family: var(--font);
  font-size: calc(var(--u) * 14);
  line-height: 1.4;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
#services .services-filter__btn:hover {
  background: #ff9c00;
  color: #fff;
}
#services .services-filter__btn.is-active {
  background: #ff9c00;
  color: #fff;
  border-color: #ff9c00;
}
#services .services-filter__btn.is-active:hover {
  background: #443625;
  border-color: #443625;
  color: #fff;
}
#services .card.is-filtered-out {
  display: none;
}
#services .card.is-filter-animating {
  pointer-events: none;
  transition: opacity 0.35s ease !important;
}
#axes .grid.col-4 {
  grid-template-columns: 1fr;
  gap: calc(var(--u) * 32);
  margin-top: calc(var(--u) * 40);
}
#axes .container > .eyebrow,
#axes .container > .quote,
#axes .container > .axes-lead,
#axes .container > .grid > .axis {
  opacity: 0;
}
#axes .container.is-inview > .eyebrow,
#axes .container.is-inview > .quote,
#axes .container.is-inview > .axes-lead,
#axes .container.is-inview > .grid > .axis {
  animation: axes-fade-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
#axes .container.is-inview > .eyebrow { animation-delay: 0.05s; }
#axes .container.is-inview > .quote { animation-delay: 0.18s; }
#axes .container.is-inview > .axes-lead { animation-delay: 0.32s; }
#axes .container.is-inview > .grid > .axis:nth-child(1) { animation-delay: 0.48s; }
#axes .container.is-inview > .grid > .axis:nth-child(2) { animation-delay: 0.6s; }
#axes .container.is-inview > .grid > .axis:nth-child(3) { animation-delay: 0.72s; }
#axes .container.is-inview > .grid > .axis:nth-child(4) { animation-delay: 0.84s; }
@keyframes axes-fade-in {
  from {
    opacity: 0;
    transform: translateY(calc(var(--u) * 16));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  #axes .container > .eyebrow,
  #axes .container > .quote,
  #axes .container > .axes-lead,
  #axes .container > .grid > .axis,
  #axes .container.is-inview > .eyebrow,
  #axes .container.is-inview > .quote,
  #axes .container.is-inview > .axes-lead,
  #axes .container.is-inview > .grid > .axis {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
#person .sub-title {
  font-weight: 400;
}
#person .person-role {
  margin: 0;
  font-size: calc(var(--u) * 14);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: #666;
}
#person .person-name {
  margin: 0;
  font-family: var(--serif);
  font-size: calc(var(--u) * 40);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #443625;
}
#person .stack > .person-name {
  margin-top: calc(var(--u) * 2);
}
#person .stack > p:nth-of-type(4) {
  margin-top: calc(var(--u) * 28);
  margin-bottom: calc(var(--u) * 48);
  line-height: 2.55;
}

.stack > * + * { margin-top: calc(var(--u) * 24); }

.eyebrow {
  font-size: calc(var(--u) * 13);
  color: var(--gray);
  margin-bottom: calc(var(--u) * 40);
}

.hero-title {
  margin: 0;
  margin-top: calc(var(--u) * -16);
  transform: translateX(calc(var(--u) * 40));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(var(--u) * 864);
  line-height: 0;
}
.hero-title-line {
  display: block;
  overflow: hidden;
  min-width: 0;
  line-height: 0;
  background-color: #1a1a1a;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  clip-path: inset(0% 100% 0% 0%);
}
.hero-title-line:first-child {
  width: calc(var(--u) * 781);
  -webkit-mask-image: url("../img/top/fv-ttl01.png");
  mask-image: url("../img/top/fv-ttl01.png");
}
.hero-title-line:last-child {
  width: 100%;
  -webkit-mask-image: url("../img/top/fv-ttl02.png");
  mask-image: url("../img/top/fv-ttl02.png");
}
.hero-title img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
}
.is-fv-play .hero-title-line {
  animation:
    hero-ttl-reveal 0.8s cubic-bezier(0.45, 0, 0.55, 1) both,
    hero-ttl-to-white 1.2s ease 4.15s both;
}
.is-fv-play .hero-title-line:nth-child(1) { animation-delay: 0.4s, 4.15s; }
.is-fv-play .hero-title-line:nth-child(2) { animation-delay: 1.3s, 4.15s; }
@keyframes hero-ttl-reveal {
  from { clip-path: inset(0% 100% 0% 0%); }
  to { clip-path: inset(0% 0% 0% 0%); }
}
@keyframes hero-ttl-to-white {
  from { background-color: #1a1a1a; }
  to { background-color: #fff; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title-line,
  .is-fv-play .hero-title-line {
    animation: none;
    clip-path: none;
    background-color: #fff;
  }
  .site-header,
  .is-fv-play .site-header {
    animation: none;
    transform: none;
  }
  .hero-bg,
  .is-fv-play .hero-bg {
    animation: none;
    opacity: 1;
  }
  .hero-bg-slide {
    transition: none;
  }
  .hero-illust img,
  .is-fv-play .hero-illust img {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

.sub-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: calc(var(--u) * 22);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.quote {
  font-family: var(--serif);
  font-size: calc(var(--u) * 22);
  line-height: 1.8;
}

.small { font-size: calc(var(--u) * 17); }
.tiny { font-size: calc(var(--u) * 13); color: var(--gray); }
.muted { color: var(--gray); }

.grid {
  display: grid;
  gap: calc(var(--u) * 24);
}
.col-3 { grid-template-columns: repeat(3, 1fr); }
.col-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: calc(var(--u) * 400) 1fr;
  gap: calc(var(--u) * 40);
  align-items: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 0;
  transform: translate3d(0, -120%, 0);
}
.is-fv-play .site-header {
  animation: fv-header-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 3.1s both;
}
@keyframes fv-header-in {
  from { transform: translate3d(0, -120%, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.site-header .container {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: var(--header-h);
  padding: calc(var(--u) * 8) calc(var(--u) * 40);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--u) * 24);
}

.logo {
  display: block;
  line-height: 0;
  color: inherit;
  text-decoration: none;
  margin-top: calc(var(--u) * 8);
}
.logo:hover { text-decoration: none; }
.logo img {
  display: block;
  width: auto;
  height: calc(var(--u) * 88);
  filter: brightness(0);
}

.menu-toggle {
  display: none;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  white-space: nowrap;
}

.gnav {
  position: absolute;
  top: 50%;
  right: calc(var(--u) * 40);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: calc(var(--u) * 24);
  height: auto;
  min-height: calc(var(--u) * 64);
  padding: calc(var(--u) * 8) calc(var(--u) * 8) calc(var(--u) * 8) calc(var(--u) * 32);
  background: #fff;
  border-radius: 999px;
  transform: translateY(-50%);
  box-shadow: 0 calc(var(--u) * 4) calc(var(--u) * 16) rgb(68 54 37 / 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: calc(var(--u) * 32);
  white-space: nowrap;
  padding: 0;
}
.nav-links a {
  position: relative;
  display: flex;
  align-items: center;
  color: #443625;
  font-size: calc(var(--u) * 15);
  padding: 0;
  text-decoration: none;
  transition: color 0.25s ease;
}
.nav-links a:hover {
  text-decoration: none;
  color: #ff9c00;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(var(--u) * 144);
  height: calc(var(--u) * 48);
  padding: 0 calc(var(--u) * 24);
  font-size: calc(var(--u) * 15);
  font-family: var(--sans);
  letter-spacing: 0.04em;
  border: 1px solid var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  text-decoration: none;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}
.btn-header {
  height: calc(var(--u) * 48);
  min-width: 0;
  padding: 0 calc(var(--u) * 28);
  border: 1px solid #ff9c00;
  border-radius: 999px;
  background: #ff9c00;
  color: #fff;
  font-size: calc(var(--u) * 15);
}
.btn-header:hover {
  background: #fff;
  color: #ff9c00;
  border-color: #ff9c00;
  opacity: 1;
  text-decoration: none;
  box-shadow: none;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--u) * 16);
  min-height: calc(var(--u) * 64);
  padding: calc(var(--u) * 10) calc(var(--u) * 12) calc(var(--u) * 10) calc(var(--u) * 32);
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ff9c00;
  color: #ff9c00;
  font-size: calc(var(--u) * 15);
  font-family: var(--sans);
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-pill-icon {
  display: grid;
  place-items: center;
  width: calc(var(--u) * 46);
  height: calc(var(--u) * 46);
  border-radius: 50%;
  background: #ff9c00;
  color: #fff;
  flex-shrink: 0;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.btn-pill-icon svg {
  display: block;
  width: calc(var(--u) * 18);
  height: calc(var(--u) * 18);
}
.btn-pill:hover {
  background: #ff9c00;
  color: #fff;
  text-decoration: none;
}
.btn-pill:hover .btn-pill-icon {
  background: #fff;
  color: #ff9c00;
}
.btn-pill--plain {
  min-height: 0;
  padding: 0;
  gap: calc(var(--u) * 10);
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #443625;
  font-size: calc(var(--u) * 14);
  transition: color 0.25s ease;
}
.btn-pill--plain .btn-pill-icon {
  width: calc(var(--u) * 36);
  height: calc(var(--u) * 36);
  border: 1px solid #ff9c00;
}
.btn-pill--plain .btn-pill-icon svg {
  width: calc(var(--u) * 14);
  height: calc(var(--u) * 14);
}
.btn-pill--plain:hover {
  background: transparent;
  color: #ff9c00;
  text-decoration: none;
}
.btn-pill--plain:hover .btn-pill-icon {
  background: #fff;
  color: #ff9c00;
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn-pill,
  .btn-pill-icon {
    transition: none;
  }
}

.link-arrow {
  color: var(--ink);
  font-size: calc(var(--u) * 15);
}
.link-arrow::after {
  content: " →";
  color: var(--gray);
}
.link-arrow:hover { color: var(--gray); }

.hero-wrap {
  overflow: visible;
  margin-top: 0;
  margin-bottom: 28svh;
}
.hero {
  /* 高さは svh。弧の半径も同じ svh 基準にする（vw と混ぜない） */
  --hero-h: 85svh;
  --hero-arc: 1.75;
  position: relative;
  width: 100%;
  height: var(--hero-h);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: calc(var(--hero-h) * -0.08);
  z-index: 0;
  background-color: #c9c6bc;
  clip-path: ellipse(
    calc(var(--hero-h) * var(--hero-arc))
    calc(var(--hero-h) * 1.08)
    at 50% 0
  );
  opacity: 0;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: 50% 30%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-bg-slide.is-in {
  z-index: 1;
  opacity: 1;
}
.hero-bg-slide:nth-child(1) { background-image: url("../img/top/fv-img01.png"); }
.hero-bg-slide:nth-child(2) { background-image: url("../img/top/fv-img02.png"); }
.hero-bg-slide:nth-child(3) { background-image: url("../img/top/fv-img03.png"); }
.hero-bg-slide:nth-child(4) { background-image: url("../img/top/fv-img04.png"); }
.hero-bg-slide:nth-child(5) { background-image: url("../img/top/fv-img05.png"); }
.is-fv-play .hero-bg {
  animation: fv-bg-in 1.2s ease 4.15s both;
}
@keyframes fv-bg-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgb(0 0 0 / 0.28);
}
.hero-illust {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: calc(var(--u) * 320);
  transform: translate(-50%, calc(50% - var(--u) * 32));
  pointer-events: none;
}
.hero-illust img {
  display: block;
  width: auto;
  flex: 0 0 auto;
  opacity: 0;
  transform: translate3d(0, calc(var(--u) * 24), 0);
}
.hero-illust img + img {
  margin-left: calc(var(--u) * -18);
}
.hero-illust img:nth-child(1) { height: calc(var(--u) * 320); }
.hero-illust img:nth-child(2) { height: calc(var(--u) * 175); }
.hero-illust img:nth-child(3) { height: calc(var(--u) * 183); }
.hero-illust img:nth-child(4) { height: calc(var(--u) * 286); }
.hero-illust img:nth-child(5) { height: calc(var(--u) * 301); }
.hero-illust img:nth-child(6) { height: calc(var(--u) * 308); }
.is-fv-play .hero-illust img {
  animation: fv-illust-in 0.8s ease both;
}
.is-fv-play .hero-illust img:nth-child(1) { animation-delay: 2.2s; }
.is-fv-play .hero-illust img:nth-child(2) { animation-delay: 2.35s; }
.is-fv-play .hero-illust img:nth-child(3) { animation-delay: 2.5s; }
.is-fv-play .hero-illust img:nth-child(4) { animation-delay: 2.65s; }
.is-fv-play .hero-illust img:nth-child(5) { animation-delay: 2.8s; }
.is-fv-play .hero-illust img:nth-child(6) { animation-delay: 2.95s; }
@keyframes fv-illust-in {
  from {
    opacity: 0;
    transform: translate3d(0, calc(var(--u) * 24), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.hero .container {
  position: relative;
  z-index: 1;
  width: auto;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#origin {
  position: relative;
  z-index: 2;
  min-height: calc(90svh + 22svh);
  height: auto;
  margin-top: 0;
  padding: 0 0 22svh;
}
.origin-stage {
  position: relative;
}
.origin-bg {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100svh;
  margin-bottom: -100svh;
  pointer-events: none;
  background-image: url("../img/top/origin.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.origin-stage:has(#origin.is-inview) > .origin-bg,
.origin-stage.is-inview > .origin-bg {
  opacity: 1;
}
.origin-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(var(--u) * 320);
  background: linear-gradient(
    to bottom,
    var(--paper) 0%,
    rgb(248 245 240 / 0.72) 42%,
    rgb(248 245 240 / 0) 100%
  );
  pointer-events: none;
}
.origin-cluster {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media (prefers-reduced-motion: reduce) {
  .origin-bg,
  .origin-stage:has(#origin.is-inview) > .origin-bg {
    opacity: 1;
    transition: none;
  }
  .origin-photos img,
  #origin.is-photos-in .origin-photos img {
    animation: none;
    opacity: 1;
  }
  #origin .origin-copy > *,
  #origin.is-photos-in .origin-copy > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.after-origin {
  position: relative;
  z-index: 2;
  background: transparent;
  border-top: 0;
}
.after-origin > .section {
  background: var(--paper);
}
.after-origin > #person {
  border-top-right-radius: calc(var(--u) * 160);
}
.origin-reveal {
  position: relative;
  z-index: 0;
  height: 70svh;
  background: transparent;
  pointer-events: none;
}
.after-reveal {
  position: relative;
  z-index: 2;
  background: transparent;
  overflow-x: clip;
}
.after-reveal > .section:not(#consult) {
  background: var(--paper);
}
#origin .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) calc(var(--u) * 560);
  column-gap: calc(var(--u) * 48);
  align-items: center;
  width: 100%;
  max-width: 1440px;
  padding: 0 calc(var(--u) * 80);
  margin: 0 auto;
  color: #444;
  text-align: left;
}
#origin .origin-copy {
  min-width: 0;
}
#origin .origin-copy > * {
  opacity: 0;
}
#origin.is-photos-in .origin-copy > * {
  animation: origin-copy-fade-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
#origin.is-photos-in .origin-copy > *:nth-child(1) { animation-delay: 0.05s; }
#origin.is-photos-in .origin-copy > *:nth-child(2) { animation-delay: 0.2s; }
#origin.is-photos-in .origin-copy > *:nth-child(3) { animation-delay: 0.4s; }
#origin.is-photos-in .origin-copy > *:nth-child(4) { animation-delay: 0.6s; }
@keyframes origin-copy-fade-in {
  from {
    opacity: 0;
    transform: translateY(calc(var(--u) * 16));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.origin-photos {
  position: relative;
  width: calc(var(--u) * 560);
  height: calc(var(--u) * 832);
}
.origin-photos img {
  position: absolute;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--u) * 16);
  animation: origin-photo-in 0.9s ease both;
}
#origin.is-photos-in .origin-photos img:nth-child(1) { animation-delay: 0.1s; }
#origin.is-photos-in .origin-photos img:nth-child(2) { animation-delay: 0.35s; }
#origin.is-photos-in .origin-photos img:nth-child(3) { animation-delay: 0.6s; }
#origin.is-photos-in .origin-photos img:nth-child(4) { animation-delay: 0.85s; }
@keyframes origin-photo-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.origin-photos img:nth-child(1) {
  width: calc(var(--u) * 312);
  height: calc(var(--u) * 312);
  top: calc(var(--u) * 8);
  right: calc(var(--u) * 8);
  z-index: 4;
}
.origin-photos img:nth-child(2) {
  width: calc(var(--u) * 196);
  height: calc(var(--u) * 196);
  top: calc(var(--u) * 264);
  left: calc(var(--u) * 108);
  z-index: 5;
}
.origin-photos img:nth-child(3) {
  width: calc(var(--u) * 200);
  height: calc(var(--u) * 200);
  top: calc(var(--u) * 376);
  right: calc(var(--u) * 8);
  z-index: 3;
}
.origin-photos img:nth-child(4) {
  width: calc(var(--u) * 320);
  height: calc(var(--u) * 320);
  top: calc(var(--u) * 512);
  left: 0;
  z-index: 3;
}
#origin .eyebrow,
#person .eyebrow,
#axes .eyebrow,
#services .eyebrow,
#voices .eyebrow,
#news .eyebrow,
#consult .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--u) * 8);
  margin-bottom: 0;
  font-size: calc(var(--u) * 14);
  letter-spacing: 0.16em;
  color: #ff9c00;
}
#origin .eyebrow::before,
#person .eyebrow::before,
#axes .eyebrow::before,
#services .eyebrow::before,
#voices .eyebrow::before,
#news .eyebrow::before,
#consult .eyebrow::before {
  content: "";
  width: calc(var(--u) * 6);
  height: calc(var(--u) * 6);
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
#origin .eyebrow::before {
  transform: translateY(-2px);
}
#axes .eyebrow,
#services .eyebrow,
#voices .eyebrow,
#news .eyebrow {
  margin-bottom: calc(var(--u) * 16);
}
#consult .eyebrow {
  margin-bottom: calc(var(--u) * 28);
}
#person .eyebrow {
  margin-bottom: calc(var(--u) * 24);
}
#person #works .eyebrow {
  margin-bottom: calc(var(--u) * 16);
}
#origin .eyebrow.eyebrow--chars,
#person .eyebrow.eyebrow--chars,
#axes .eyebrow.eyebrow--chars,
#services .eyebrow.eyebrow--chars,
#voices .eyebrow.eyebrow--chars,
#news .eyebrow.eyebrow--chars,
#consult .eyebrow.eyebrow--chars {
  gap: 0;
  letter-spacing: 0;
}
#origin .eyebrow.eyebrow--chars::before,
#person .eyebrow.eyebrow--chars::before,
#axes .eyebrow.eyebrow--chars::before,
#services .eyebrow.eyebrow--chars::before,
#voices .eyebrow.eyebrow--chars::before,
#news .eyebrow.eyebrow--chars::before,
#consult .eyebrow.eyebrow--chars::before {
  margin-right: calc(var(--u) * 8);
}
.eyebrow--chars .eyebrow-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  letter-spacing: 0;
  margin-right: 0.16em;
}
#consult .eyebrow--chars .eyebrow-char {
  margin-right: 0.04em;
}
.eyebrow--chars .eyebrow-char:last-child {
  margin-right: 0;
}
.eyebrow--chars.is-inview .eyebrow-char {
  animation: eyebrow-char-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i) * 0.045s);
}
@keyframes eyebrow-char-in {
  from {
    opacity: 0;
    transform: translateY(0.55em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .eyebrow--chars .eyebrow-char {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
#origin .quote {
  display: block;
  width: 100%;
  font-size: calc(var(--u) * 42);
  line-height: 1.6;
  white-space: nowrap;
  color: #443625;
}
#origin .origin-text {
  width: 100%;
  line-height: 3.6;
  white-space: nowrap;
  margin-top: calc(var(--u) * 64);
  margin-bottom: calc(var(--u) * 88);
}
#origin .origin-text + * {
  width: 100%;
  margin-top: 0;
}

.ph {
  background: repeating-linear-gradient(
    135deg,
    #eceae3,
    #eceae3 10px,
    #e4e1d8 10px,
    #e4e1d8 20px
  );
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: calc(var(--u) * 13);
  letter-spacing: 0.08em;
  text-align: center;
}
.ph-portrait {
  aspect-ratio: 3 / 4;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: calc(var(--u) * 8);
}

.card {
  border: 1px solid var(--rule);
  padding: calc(var(--u) * 24);
  background: var(--paper);
}
#services .services-slider {
  position: relative;
  overflow: visible;
}
#services .services-slider__viewport {
  overflow: visible;
  width: 100%;
  max-width: none;
  padding: 0;
}
#services .services-slider__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(var(--u) * 28);
  width: 100%;
  padding: 0;
}
#services .card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  background: #fff;
  border-radius: calc(var(--u) * 24);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  opacity: 0;
  transform: translateY(calc(var(--u) * 16));
  transition: transform 0.55s ease, opacity 0.55s ease;
}
#services.is-inview .card {
  opacity: 1;
  transform: translateY(0);
}
#services.is-inview .card:nth-child(1) { transition-delay: 0s; }
#services.is-inview .card:nth-child(2) { transition-delay: 0.08s; }
#services.is-inview .card:nth-child(3) { transition-delay: 0.16s; }
#services.is-inview .card:nth-child(4) { transition-delay: 0.24s; }
#services.is-inview .card:nth-child(5) { transition-delay: 0.32s; }
#services.is-inview .card:nth-child(6) { transition-delay: 0.4s; }
#services.is-inview .card:nth-child(7) { transition-delay: 0.48s; }
#services.is-inview .card:nth-child(8) { transition-delay: 0.56s; }
#services.is-entered .card,
#services.is-entered .card:nth-child(n) {
  transition: none;
  transition-delay: 0s;
}
#services .card:hover {
  text-decoration: none;
  color: inherit;
}
#services .card:focus-visible {
  outline: 2px solid #ff9c00;
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  #services .card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
#services .card-media {
  position: relative;
  overflow: hidden;
}
#services .card-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}
#services .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  margin-top: 0;
  padding: calc(var(--u) * 36) calc(var(--u) * 32) calc(var(--u) * 28);
}
#services .card-num {
  margin: 0 0 calc(var(--u) * 8);
  font-family: var(--font-en);
  font-size: calc(var(--u) * 14);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #ff9c00;
}
#services .card h3 {
  margin: 0 0 calc(var(--u) * 12);
  font-family: var(--sans);
  font-size: calc(var(--u) * 28);
  font-weight: 400;
  line-height: 1.4;
  color: #443625;
  letter-spacing: 0.02em;
}
#services .card-desc {
  margin: 0 0 calc(var(--u) * 20);
  font-size: calc(var(--u) * 17);
  line-height: 2;
  color: #666;
}
#services .card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--u) * 10);
  margin-top: 0;
  margin-bottom: calc(var(--u) * 12);
}
#services .card .tag {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: calc(var(--u) * 8) calc(var(--u) * 18);
  border: 0;
  border-radius: 999px;
  background: #efe8de;
  font-size: calc(var(--u) * 14);
  line-height: 1.4;
  color: #443625;
}
#services .card-more {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--u) * 10);
  margin-top: auto;
  padding-top: calc(var(--u) * 20);
  align-self: flex-end;
  color: #443625;
  font-size: calc(var(--u) * 14);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  transition: color 0.25s ease;
}
#services .card-more .btn-pill-icon {
  width: calc(var(--u) * 36);
  height: calc(var(--u) * 36);
  border: 1px solid #ff9c00;
}
#services .card-more .btn-pill-icon svg {
  width: calc(var(--u) * 14);
  height: calc(var(--u) * 14);
}
#services .card:hover .card-more {
  color: #ff9c00;
  text-decoration: none;
}
#services .card:hover .card-more .btn-pill-icon {
  background: #fff;
  color: #ff9c00;
}
.card h3 {
  font-family: var(--serif);
  font-size: calc(var(--u) * 18);
  font-weight: 600;
  margin-bottom: calc(var(--u) * 8);
  line-height: 1.4;
}
.card .tags { margin-top: calc(var(--u) * 16); }

.tag {
  display: inline-block;
  font-size: calc(var(--u) * 12);
  color: var(--gray);
  border: 1px solid var(--rule);
  padding: 2px calc(var(--u) * 8);
  margin: 0 calc(var(--u) * 4) calc(var(--u) * 4) 0;
}

.axis {
  display: flex;
  flex-direction: column;
  aspect-ratio: 16 / 10;
  min-height: 0;
  padding: calc(var(--u) * 40) calc(var(--u) * 40) calc(var(--u) * 36);
  background: #fff;
  border: 0;
  border-radius: calc(var(--u) * 32);
}
.axis-illust {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 calc(var(--u) * 24);
  object-fit: contain;
}
.axis--media {
  display: grid;
  grid-template-columns: auto minmax(0, 0.9fr) minmax(0, 1.2fr);
  align-items: start;
  aspect-ratio: auto;
  min-height: 0;
  padding: calc(var(--u) * 96) calc(var(--u) * 80);
  column-gap: calc(var(--u) * 40);
}
.axis--media .axis-illust {
  display: block;
  width: 100%;
  max-width: calc(var(--u) * 420);
  height: auto;
  max-height: calc(var(--u) * 300);
  margin: 0;
  justify-self: center;
  align-self: center;
  object-fit: contain;
  object-position: center;
}
.axis-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(var(--u) * 16);
  flex-shrink: 0;
}
.axis-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
#axes .axis-copy .small {
  font-size: calc(var(--u) * 18);
  line-height: 2.4;
}
.axis-label {
  margin: 0;
  font-family: var(--font-en);
  font-size: calc(var(--u) * 14);
  letter-spacing: 0.16em;
  color: #ff9c00;
  line-height: 1.4;
  white-space: nowrap;
}
.axis .btn-pill {
  margin-top: auto;
  align-self: flex-start;
}
.axis--media .axis-copy .btn-pill {
  margin-top: auto;
  align-self: flex-start;
}
.axis h2,
.axis h3 {
  font-family: var(--serif);
  font-size: calc(var(--u) * 48);
  font-weight: 400;
  margin: 0;
  color: #443625;
  line-height: 1.4;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.axis-examples {
  margin: calc(var(--u) * 24) 0 calc(var(--u) * 12);
  font-size: calc(var(--u) * 14);
  letter-spacing: 0.08em;
  color: #ff9c00;
  line-height: 1.4;
}
.axis ul {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--u) * 10);
  margin-top: 0;
  margin-bottom: calc(var(--u) * 48);
  list-style: none;
}
.axis ul li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: calc(var(--u) * 8) calc(var(--u) * 18);
  border-radius: 999px;
  background: #efe8de;
  font-size: calc(var(--u) * 14);
  line-height: 1.4;
  color: #443625;
}

.stat {
  text-align: left;
  font-size: calc(var(--u) * 19);
  line-height: 1.6;
}
#works .grid.col-4 {
  gap: calc(var(--u) * 20);
}
#works .stat {
  margin: 0;
  padding: calc(var(--u) * 28) calc(var(--u) * 24);
  background: #fff;
  border-radius: calc(var(--u) * 12);
  color: #443625;
  text-align: center;
}
.stat-num {
  font-family: var(--font-en);
  font-size: calc(var(--u) * 40);
  font-weight: 600;
  margin: 0 1px;
  color: #ff9c00;
}
.stat-note {
  display: block;
  margin-top: calc(var(--u) * 6);
  font-size: calc(var(--u) * 13);
  color: var(--gray);
}

#voices .voices-slider {
  position: relative;
  overflow: visible;
}
#voices .voices-slider__stage {
  position: relative;
}
#voices .voices-slider__main {
  width: 100%;
  min-width: 0;
}
#voices .voices-slider__viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}
#voices .voices-slider__track {
  display: flex;
  gap: calc(var(--u) * 28);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
#voices .testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 calc((100% - (var(--u) * 56)) / 3);
  min-width: 0;
  min-height: calc(var(--u) * 420);
  gap: calc(var(--u) * 24);
  margin: 0;
  padding: calc(var(--u) * 64) calc(var(--u) * 48);
  background: #fff;
  border: 0;
  border-radius: calc(var(--u) * 32);
  color: #443625;
  text-align: left;
  box-sizing: border-box;
}
.testimonial-avatar-wrap {
  display: block;
  width: calc(var(--u) * 96);
  height: calc(var(--u) * 96);
  flex-shrink: 0;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid #fce2c4;
  background: #fce2c4;
  order: -2;
}
.testimonial-avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  transform: translateY(16%);
}
.testimonial-title {
  margin: 0;
  width: 100%;
  font-size: calc(var(--u) * 26);
  font-weight: 400;
  line-height: 1.55;
  color: #443625;
  text-align: left;
}
.testimonial-body {
  margin: 0;
  width: 100%;
  font-size: calc(var(--u) * 17);
  line-height: 2.1;
  color: #666;
  text-align: left;
}
.testimonial .who {
  order: -1;
  align-self: center;
  margin: calc(var(--u) * -8) 0 0;
  padding: 0;
  width: auto;
  font-size: calc(var(--u) * 14);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #ff9c00;
  text-align: center;
}
#voices .voices-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(var(--u) * 36);
}
#voices .voices-slider__btn {
  appearance: none;
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff9c00;
  cursor: pointer;
}
#voices .voices-slider__btn--prev {
  left: 0;
  transform: translate(-100%, -50%) translateX(calc(var(--u) * -20));
}
#voices .voices-slider__btn--next {
  right: 0;
  transform: translate(100%, -50%) translateX(calc(var(--u) * 20));
}
#voices .voices-slider__btn .btn-pill-icon {
  width: calc(var(--u) * 56);
  height: calc(var(--u) * 56);
  border: 1px solid #ff9c00;
  background: #ff9c00;
  color: #fff;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
#voices .voices-slider__btn .btn-pill-icon svg {
  width: calc(var(--u) * 22);
  height: calc(var(--u) * 22);
}
#voices .voices-slider__btn:hover .btn-pill-icon {
  background: #fff;
  color: #ff9c00;
}
#voices .voices-slider__btn:disabled {
  cursor: default;
  opacity: 0.35;
  pointer-events: none;
}
#voices .voices-slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(var(--u) * 8);
}
#voices .voices-slider__dot {
  appearance: none;
  width: calc(var(--u) * 10);
  height: calc(var(--u) * 10);
  padding: 0;
  border: 1px solid #ff9c00;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
#voices .voices-slider__dot.is-active {
  background: #ff9c00;
}
#voices .voices-slider__dot:hover {
  background: #fce2c4;
}

.section-foot { margin-top: calc(var(--u) * 40); }

.flush {
  margin-left: 0;
  margin-right: auto;
}

.advisor {
  margin-top: calc(var(--u) * 64);
  margin-left: 0;
  margin-right: auto;
}
#works .advisor {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: calc(var(--u) * 32);
  width: 100%;
  max-width: none;
  margin-top: calc(var(--u) * 20);
  margin-right: 0;
  padding: calc(var(--u) * 28) calc(var(--u) * 32);
  background: #fff;
  border-radius: calc(var(--u) * 12);
  color: #443625;
  text-align: left;
}
#works .advisor > .small {
  flex-shrink: 0;
  margin: 0 calc(var(--u) * 16);
  font-size: calc(var(--u) * 19);
  line-height: 1.6;
}
#works .advisor-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: calc(var(--u) * 12);
  margin-top: 0;
}
.advisor-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(var(--u) * 12);
  margin-top: calc(var(--u) * 16);
}
.advisor-item {
  display: inline-flex;
  align-items: center;
  padding: calc(var(--u) * 12) calc(var(--u) * 24);
  border-radius: calc(var(--u) * 8);
  background: #efe8de;
  font-size: calc(var(--u) * 19);
  line-height: 1.4;
  color: #443625;
}

.news-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(var(--u) * 16);
  margin: 0 0 calc(var(--u) * 72);
  padding: 0;
  border: 0;
}
.news-item {
  border: 0;
}
.news-item__link {
  display: grid;
  grid-template-columns: calc(var(--u) * 280) minmax(0, 1fr);
  align-items: center;
  column-gap: calc(var(--u) * 32);
  padding: calc(var(--u) * 28) calc(var(--u) * 32);
  border-radius: calc(var(--u) * 16);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.news-item__link:hover {
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 0 0 1px #ff9c00;
}
.news-item__meta {
  display: flex;
  align-items: center;
  gap: calc(var(--u) * 16);
  min-width: 0;
}
.news-item__date {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: calc(var(--u) * 15);
  letter-spacing: 0.04em;
  color: var(--gray);
  line-height: 1.4;
  white-space: nowrap;
}
.news-item__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(var(--u) * 72);
  padding: calc(var(--u) * 4) calc(var(--u) * 12);
  border: 1px solid #ff9c00;
  border-radius: 999px;
  font-size: calc(var(--u) * 13);
  line-height: 1.4;
  color: #ff9c00;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.news-item__link:hover .news-item__cat {
  background: #ff9c00;
  color: #fff;
}
.news-item__title {
  font-size: calc(var(--u) * 18);
  line-height: 1.7;
  color: #443625;
}
.news-item__link:hover .news-item__title {
  color: #ff9c00;
}
.news-more {
  margin-top: calc(var(--u) * 40);
  text-align: center;
}
#news .news-more .btn-pill {
  display: inline-flex;
}

.cta-copy { margin-bottom: calc(var(--u) * 8); }

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 0;
  padding: calc(var(--u) * 160) 0 calc(var(--u) * 120);
  background: #ff9c00;
  color: #fff;
  border-radius: calc(var(--u) * 48) calc(var(--u) * 48) 0 0;
}
.page-top {
  position: absolute;
  /* フッター上辺にボタン中心を合わせる: padding-top 160 + 半径 32 */
  top: calc(var(--u) * -192);
  right: calc(var(--u) * 80);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--u) * 64);
  height: calc(var(--u) * 64);
  border: 1px solid #ff9c00;
  border-radius: 50%;
  background: #fff;
  color: #ff9c00;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.page-top svg {
  width: calc(var(--u) * 24);
  height: calc(var(--u) * 24);
  transition: transform 0.3s ease;
}
.page-top:hover {
  border-color: #443625;
  background: #443625;
  color: #fff;
}
.page-top:hover svg {
  transform: translateY(calc(var(--u) * -3));
}
.page-top:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.site-footer .container {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0 calc(var(--u) * 80);
}
.footer-logo {
  display: inline-block;
  margin: 0 0 calc(var(--u) * 32);
  margin-left: calc(var(--u) * -16);
  line-height: 0;
  text-decoration: none;
  color: inherit;
}
.footer-logo:hover {
  text-decoration: none;
}
.footer-logo img {
  display: block;
  width: auto;
  height: calc(var(--u) * 96);
  filter: brightness(0) invert(1);
}
.footer-vision {
  font-family: var(--serif);
  font-size: calc(var(--u) * 32);
  line-height: 1.6;
  margin-bottom: calc(var(--u) * 64);
  color: #fff;
  white-space: nowrap;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(var(--u) * 40);
  padding-bottom: calc(var(--u) * 56);
  border-bottom: 1px solid rgb(255 255 255 / 0.35);
}
.foot-grid h2 {
  font-family: var(--sans);
  font-size: calc(var(--u) * 13);
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: calc(var(--u) * 16);
  font-weight: 700;
}
.foot-nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  column-gap: calc(var(--u) * 48);
  row-gap: calc(var(--u) * 16);
  justify-content: start;
}
.foot-nav a {
  color: #fff;
  font-size: calc(var(--u) * 15);
}
.foot-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--u) * 24);
  padding-top: calc(var(--u) * 40);
  white-space: nowrap;
}
.foot-legal-links {
  display: flex;
  gap: calc(var(--u) * 24);
}
.foot-legal a {
  color: #fff;
  font-size: calc(var(--u) * 13);
}
.site-footer .tiny {
  color: #fff;
}

@media (max-width: 767px) {
  body { font-size: 18px; line-height: 2.1; }

  .container { width: 100%; padding: 0 20px; }
  .read { width: 100%; }

  .section { padding: 56px 0; }
  #consult {
    padding: 96px 0 160px;
    margin-bottom: -32px;
    border-top-right-radius: 80px;
  }
  #consult > .container {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .consult-illust {
    justify-content: flex-start;
    height: 188px;
    margin-right: 0;
  }
  .consult-illust img + img {
    margin-left: -10px;
  }
  .consult-illust img:nth-child(1) { height: 188px; }
  .consult-illust img:nth-child(2) { height: 103px; }
  .consult-illust img:nth-child(3) { height: 108px; }
  .consult-illust img:nth-child(4) { height: 168px; }
  .consult-illust img:nth-child(5) { height: 177px; }
  .consult-illust img:nth-child(6) { height: 181px; }
  #consult .eyebrow { margin-bottom: 24px; }
  #consult .cta-copy {
    font-size: 32px;
    white-space: normal;
  }
  #consult .consult-lead { margin-top: 16px; }
  #consult .consult-cta .btn-pill {
    min-width: 280px;
    min-height: 72px;
    gap: 16px;
    padding: 10px 12px 10px 36px;
    font-size: 16px;
  }
  #consult .consult-cta .btn-pill-icon {
    width: 52px;
    height: 52px;
  }
  #consult .consult-cta .btn-pill-icon svg {
    width: 20px;
    height: 20px;
  }
  #news { padding-bottom: 90px; }
  .news-list {
    margin-bottom: 56px;
    gap: 12px;
  }
  .news-item__link {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 20px 20px;
    border-radius: 12px;
  }
  .news-item__meta {
    gap: 12px;
  }
  .news-item__date {
    font-size: 13px;
  }
  .news-item__cat {
    min-width: 64px;
    padding: 4px 10px;
    font-size: 12px;
  }
  .news-item__title {
    font-size: 16px;
  }
  #voices {
    padding-top: 96px;
    border-top-left-radius: 64px;
  }
  #person { padding-top: 128px; }
  .after-origin > #person { border-top-right-radius: 64px; }
  #person #works {
    margin-top: 56px;
    padding: 0 24px;
  }
  #axes .container,
  #services .container,
  #voices .container,
  #news > .container,
  #consult > .container {
    padding: 0 24px;
  }
  #axes .grid.col-4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #services {
    --services-gutter: 24px;
    padding-bottom: 140px;
  }
  #person .container.split {
    padding: 0 24px 0 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #person .ph-portrait {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 0 18px 18px 0;
  }
  #person .stack {
    max-width: none;
    padding-left: 24px;
  }
  #origin { padding: 0 24px 22svh; }
  .origin-reveal { height: 50svh; }
  #origin .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    padding: 0;
    transform: none;
  }
  .origin-cluster { max-width: none; padding: 0; }
  .origin-photos {
    width: min(100%, 340px);
    height: calc(min(100vw - 48px, 340px) * 832 / 560);
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  .origin-photos img {
    border-radius: 12px;
  }
  .origin-photos img:nth-child(1) {
    width: 55.7%;
    height: auto;
  }
  .origin-photos img:nth-child(2) {
    width: 35%;
    height: auto;
    top: 37.3%;
    left: 19.3%;
    right: auto;
  }
  .origin-photos img:nth-child(3) {
    width: 35.7%;
    height: auto;
    top: 53.1%;
    right: 1.4%;
  }
  .origin-photos img:nth-child(4) {
    width: 57.1%;
    height: auto;
    top: 61.5%;
    left: 0;
  }
  .eyebrow { font-size: 13px; margin-bottom: 24px; }

  .hero-title {
    width: calc(100% - 40px);
    margin-top: 8px;
    transform: translateX(12px);
  }
  .hero-title-line:first-child {
    width: 90.39%;
  }
  .hero-illust {
    height: 168px;
  }
  .hero-illust img + img {
    margin-left: -10px;
  }
  .hero-illust img:nth-child(1) { height: 168px; }
  .hero-illust img:nth-child(2) { height: 92px; }
  .hero-illust img:nth-child(3) { height: 96px; }
  .hero-illust img:nth-child(4) { height: 150px; }
  .hero-illust img:nth-child(5) { height: 158px; }
  .hero-illust img:nth-child(6) { height: 162px; }
  #origin .quote {
    font-size: 32px;
    white-space: normal;
  }
  #origin .origin-text {
    width: 100%;
    white-space: normal;
    margin-top: 64px;
    margin-bottom: 64px;
  }
  #origin .origin-text + * {
    width: 100%;
  }
  .sub-title { font-size: 20px; }
  .quote { font-size: 18px; }
  .small { font-size: 16px; }
  .tiny { font-size: 12px; }

  .col-3,
  .col-4,
  .split,
  .foot-grid,
  .foot-nav { grid-template-columns: 1fr; }

  .testimonial {
    padding: 40px 32px;
    gap: 20px;
    min-height: 0;
  }
  .testimonial-avatar-wrap {
    width: 72px;
    height: 72px;
  }
  .testimonial-title {
    font-size: 20px;
  }
  .testimonial-body {
    font-size: 16px;
  }
  #voices .testimonial {
    flex: 0 0 100%;
  }
  #voices .voices-slider__track {
    gap: 0;
  }
  #voices .voices-slider__controls {
    margin-top: 24px;
  }
  #voices .voices-slider__btn--prev {
    transform: translate(-100%, -50%) translateX(-12px);
  }
  #voices .voices-slider__btn--next {
    transform: translate(100%, -50%) translateX(12px);
  }
  #voices .voices-slider__btn .btn-pill-icon {
    width: 48px;
    height: 48px;
  }
  #voices .voices-slider__btn .btn-pill-icon svg {
    width: 20px;
    height: 20px;
  }

  #services .services-slider__track {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #services .card {
    border-radius: 16px;
  }
  #services .card-body {
    padding: 24px 22px 20px;
  }
  #services .card-num {
    margin-bottom: 6px;
    font-size: 13px;
  }
  #services .card h3 {
    margin-bottom: 8px;
    font-size: 22px;
  }
  #services .card-more {
    padding-top: 16px;
    gap: 8px;
    font-size: 13px;
  }
  #services .card-more .btn-pill-icon {
    width: 32px;
    height: 32px;
  }

  .grid { gap: 24px; }
  .split { gap: 24px; }

  .site-header .container {
    min-height: 72px;
    padding: 8px 16px;
  }
  .logo img { height: 56px; }
  .logo { margin-top: 4px; }

  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .gnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: auto;
    min-height: 0;
    transform: none;
    background: var(--paper);
    border-radius: 0;
    border-bottom: 1px solid var(--rule);
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 24px;
    box-shadow: none;
  }
  .is-open .gnav { display: flex; }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    white-space: normal;
    padding: 0;
  }
  .nav-links a {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
    color: var(--ink);
  }
  .nav-links a:hover { color: #ff9c00; }
  .btn-header {
    width: 100%;
    height: 44px;
    margin-top: 16px;
    font-size: 15px;
    border-radius: 999px;
  }
  .btn-pill {
    min-height: 64px;
    gap: 12px;
    padding: 10px 12px 10px 28px;
    font-size: 15px;
  }
  .btn-pill-icon {
    width: 46px;
    height: 46px;
  }
  .btn-pill-icon svg {
    width: 18px;
    height: 18px;
  }

  .card { padding: 20px; }
  #services .card { padding: 0; }
  .card h3 { font-size: 17px; }
  .axis h2,
  .axis h3 { font-size: 36px; }
  .axis--media {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "head illust"
      "copy copy";
    padding: 56px 28px 64px;
    row-gap: 20px;
    column-gap: 20px;
    min-height: 0;
  }
  .axis--media .axis-head { grid-area: head; }
  .axis--media .axis-illust {
    grid-area: illust;
    width: 100%;
    max-height: 200px;
    height: 200px;
    justify-self: center;
  }
  .axis--media .axis-copy { grid-area: copy; }
  .axis-head {
    gap: 12px;
  }
  .stat { font-size: 18px; }
  .stat-num { font-size: 32px; }
  #works .stat { padding: 20px 16px; }
  #works .advisor > .small { font-size: 18px; }
  #works .advisor {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
    margin-top: 16px;
    gap: 16px;
  }
  #works .advisor-list {
    justify-content: flex-start;
  }

  .section-foot,
  .advisor { margin-top: 32px; }
  .cta-copy { margin-bottom: 8px; }
  .btn {
    min-width: 0;
    height: 44px;
    font-size: 14px;
    padding: 0 12px;
  }

  .site-footer {
    padding: 96px 0 80px;
    border-radius: 32px 32px 0 0;
  }
  .site-footer .container { padding: 0 24px; }
  .page-top {
    top: -120px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
  .page-top svg {
    width: 20px;
    height: 20px;
  }
  .page-top:hover svg { transform: translateY(-3px); }
  .footer-logo { margin-bottom: 24px; margin-left: -12px; }
  .footer-logo img { height: 64px; }
  .footer-vision { font-size: 22px; margin-bottom: 40px; white-space: normal; }
  .foot-grid { gap: 32px; padding-bottom: 36px; }
  .foot-legal {
    flex-wrap: wrap;
    white-space: normal;
    gap: 12px;
  }
  .foot-legal-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }
}
