@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/instrument-serif-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/instrument-serif-italic.ttf") format("truetype");
}

@font-face {
  font-family: "CIFRA Noto Sans JP";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("../fonts/noto-sans-jp-subset.ttf") format("truetype");
}

:root {
  --ink: #111;
  --paper: #fff;
  --soft: #f3f3f1;
  --soft-2: #e8e8e5;
  --footer: #d7d7d7;
  --muted: #6b6b6b;
  --line: #c9c9c6;
  --display: "Instrument Serif", "Times New Roman", serif;
  --jp-serif: "CIFRA Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --sans: "CIFRA Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --shell: 1200px;
  --narrow: 820px;
  --gutter: 24px;
  --section: clamp(96px, 12vw, 180px);
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.055em;
  overflow-wrap: anywhere;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 8px 14px;
  color: #fff;
  background: #111;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.narrow {
  width: min(var(--narrow), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  height: 88px;
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 88px;
  padding-left: max(var(--gutter), calc((100vw - var(--shell)) / 2));
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width: 208px;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 84px;
  height: 88px;
  margin-left: auto;
  padding: 0;
  color: #fff;
  background: #111;
  border: 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.12em;
}

.menu-toggle:focus-visible,
.menu-close:focus-visible,
.round-link:focus-visible,
.button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.menu-panel {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  visibility: hidden;
  overflow: auto;
  color: #fff;
  background: #111;
  opacity: 0;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.menu-panel.is-open {
  visibility: visible;
  opacity: 1;
}

.menu-panel__top {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
}

.menu-close {
  display: grid;
  place-items: center;
  width: 84px;
  height: 88px;
  padding: 0;
  color: #111;
  background: #fff;
  border: 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.1em;
}

.menu-panel__body {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(420px, 1.15fr);
  gap: 90px;
  align-items: center;
  width: min(1100px, calc(100% - 96px));
  margin: auto;
  padding-block: 110px 80px;
}

.menu-panel__brand img {
  width: min(360px, 100%);
}

.menu-panel__brand p {
  margin-top: 26px;
  color: #aaa;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.05em;
}

.global-nav {
  display: block;
}

.global-nav__link,
.global-nav__parent {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-block: 15px 10px;
  border-bottom: 1px solid #414141;
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
  transition: color 160ms ease, padding-left 160ms ease;
}

.global-nav__link::after,
.global-nav__parent::after {
  content: "\2197";
  font-family: var(--sans);
  font-size: 13px;
  opacity: 0.6;
}

.global-nav__link:hover,
.global-nav__parent:hover {
  padding-left: 8px;
  color: #cfcfcf;
}

.global-nav__group {
  padding-bottom: 16px;
  border-bottom: 1px solid #414141;
}

.global-nav__group .global-nav__parent {
  border-bottom: 0;
}

.global-nav__children {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 3px 0 0 28px;
}

.global-nav__child {
  display: flex;
  min-height: 52px;
  flex-direction: column;
  justify-content: center;
  padding: 7px 12px;
  border-left: 1px solid #555;
  color: #d4d4d4;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.05;
  transition: color 160ms ease, border-color 160ms ease;
}

.global-nav__child span {
  margin-bottom: 5px;
  color: #777;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.global-nav__child:hover,
.global-nav__child[aria-current="page"] {
  color: #fff;
  border-color: #fff;
}

.intro-splash {
  display: grid;
  place-items: center;
  min-height: 620px;
  height: 100svh;
  color: #fff;
  background: #000;
}

.intro-splash img {
  width: min(250px, 42vw);
}

.section-display {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(64px, 7vw, 94px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.section-rule {
  width: 100%;
  height: 1px;
  margin-bottom: 34px;
  background: var(--line);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
	font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 0.04em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.jp-heading {
  margin-bottom: 30px;
  font-family: var(--jp-serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.07em;
}

.lead-copy {
  max-width: 740px;
  color: #282828;
  font-size: 15px;
  line-height: 2.2;
}

.round-link {
  display: inline-grid;
  place-items: center;
  width: 118px;
  height: 118px;
  flex: 0 0 118px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.05em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.round-link:hover {
  color: #fff;
  background: #111;
}

.round-link:hover {
  transform: translateY(-3px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 62px;
  padding: 16px 28px;
  color: #fff;
  background: #111;
  border: 1px solid #111;
  cursor: pointer;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.07em;
  transition: color 180ms ease, background 180ms ease;
}

.button:hover {
  color: #111;
  background: #fff;
}

/* Home */
.home-about {
  padding-block: var(--section);
}

.home-about__stage {
  position: relative;
  min-height: 820px;
}

.home-title-row {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
}

.home-title-row h1,
.home-title-row h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(60px, 5.6vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.home-title-row > span {
  height: 1px;
  flex: 1;
  margin-left: 36px;
  background: rgba(17, 17, 17, 0.58);
}

.home-about__title {
  top: 164px;
  right: 21.5%;
  left: 39.2%;
}

.home-about__grid {
  display: grid;
  grid-template-columns: 44% minmax(0, 1fr);
  gap: 3%;
  align-items: start;
}

.home-about__image {
  width: min(378px, 87%);
  aspect-ratio: 378 / 580;
  justify-self: end;
  object-fit: cover;
}

.home-about__content {
  width: min(480px, 100%);
  padding-top: 330px;
}

.home-about__content .lead-copy {
  margin-bottom: 42px;
}

.home-about__content .round-link {
	display: grid;
  margin-left: auto;
}

.home-service {
  padding-bottom: var(--section);
}

.home-service__intro {
  margin-bottom: 62px;
}

.home-service__intro .lead-copy {
  margin-bottom: 0;
}

.home-service__visual {
  position: relative;
}

.home-service__title {
  top: 155px;
  right: 43%;
  left: 9%;
}

.home-service__main-image {
  width: min(789px, 100%);
  aspect-ratio: 789 / 376;
  margin-left: auto;
  object-fit: cover;
}

.home-service__copy {
  width: min(470px, 100%);
  margin: 74px 0 0 auto;
}

.home-service__copy .round-link {
	display: grid;
	margin: 42px 0 0 auto;
}

.service-list {
  margin-top: 88px;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr) 118px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-block: 64px;
  border-bottom: 1px solid var(--line);
}

.service-row__image {
  width: 276px;
  aspect-ratio: 1;
  object-fit: cover;
}

.service-row__number {
  margin-bottom: 13px;
  color: #6f6f6f;
  font-family: var(--display);
  font-size: 17px;
}

.service-row h3 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(42px, 4.3vw, 62px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.service-row p {
  max-width: 560px;
  margin-bottom: 0;
  color: #333;
  line-height: 2.1;
}

/* Common page heroes */
.visual-hero {
  position: relative;
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  aspect-ratio: 1200 / 347;
  margin: 80px auto 0;
  overflow: hidden;
  background: #ddd;
}

.visual-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.09);
}

.visual-hero h1 {
  position: absolute;
  z-index: 1;
  inset: 50% auto auto 50%;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.type-hero {
  padding-block: clamp(86px, 11vw, 150px) clamp(76px, 9vw, 122px);
}

.type-hero__meta {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.type-hero h1 {
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: clamp(76px, 11.5vw, 150px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.04em;
}

.type-hero__bottom {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 510px);
  gap: 50px;
  align-items: end;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.type-hero__jp {
  margin: 0;
  font-family: var(--jp-serif);
  font-size: 17px;
  letter-spacing: 0.09em;
}

.type-hero__bottom p:last-child {
  margin: 0;
  color: #373737;
  line-height: 2.1;
}

.feature-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  min-height: 560px;
  margin: 78px auto 0;
  background: var(--soft);
}

.feature-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(52px, 6vw, 84px);
}

.feature-hero__index {
  color: var(--muted);
  font-family: var(--display);
  font-size: 17px;
}

.feature-hero h1 {
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: clamp(76px, 9vw, 124px);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.04em;
}

.feature-hero__jp {
  margin-bottom: 0;
  font-family: var(--jp-serif);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.7;
}

.feature-hero__image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.page-section {
  padding-block: var(--section);
}

.page-section + .page-section {
  padding-top: 0;
}

.page-section + .creative-process-section {
	padding-top: var(--section);
}

.page-section--soft {
  padding-block: var(--section);
  background: var(--soft);
}

.page-section__header {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: start;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.page-section__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 90px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.page-section__body .jp-heading {
  margin-bottom: 26px;
}

/* About */
.about-story {
  padding-block: clamp(130px, 15vw, 220px);
}

.about-story__headline {
  max-width: 960px;
  margin: 0 auto 78px;
  text-align: center;
  font-family: var(--jp-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.about-story__copy {
  max-width: 820px;
  margin-inline: auto;
}

.about-story__copy p {
  margin-bottom: 28px;
  line-height: 2.3;
}

.about-areas {
  padding-bottom: var(--section);
}

.area-circles {
  position: relative;
  width: min(680px, 100%);
  height: 585px;
  margin-top: 85px;
  margin-inline: auto;
}

.area-circle {
  position: absolute;
  display: grid;
  place-items: center;
  width: 355px;
  height: 355px;
  aspect-ratio: 1;
  border: 1px solid #757575;
  border-radius: 50%;
  background: transparent;
  text-align: center;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.area-circle:hover,
.area-circle:focus-visible {
	z-index: 2;
	color: #fff;
	background: #111;
	border-color: #111;
}

.area-circle:hover .area-circle__number,
.area-circle:focus-visible .area-circle__number {
	color: #cfcfcf;
}

.area-circle:first-child {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.area-circle:nth-child(2) {
  top: 230px;
  left: 0;
}

.area-circle:nth-child(3) {
  top: 230px;
  right: 0;
}

.area-circle__number {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--display);
}

.area-circle strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.area-circle small {
  display: block;
  margin-top: 13px;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 92px;
  border-top: 1px solid var(--line);
}

.process-flow__item {
  position: relative;
  padding: 30px 20px 0 0;
}

.process-flow__item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #111;
}

.process-flow__item span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 14px;
}

.process-flow__item strong {
  font-family: var(--jp-serif);
  font-size: 15px;
  font-weight: 400;
}

/* Company */
.company-content {
  padding-block: clamp(120px, 14vw, 190px);
}

.company-block + .company-block {
  margin-top: 112px;
}

.company-block .section-display {
  margin-bottom: 34px;
  font-size: clamp(58px, 6.5vw, 82px);
}

.company-photo {
  width: 100%;
  aspect-ratio: 789 / 376;
  margin-bottom: 46px;
  object-fit: cover;
}

.company-greeting p {
  line-height: 2.35;
}

.company-profile {
  border-top: 1px solid var(--ink);
}

.profile-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  border-bottom: 1px solid var(--ink);
}

.profile-row dt,
.profile-row dd {
  margin: 0;
  padding: 20px 24px;
}

.profile-row dt {
  color: #fff;
  background: #111;
  font-weight: 500;
}

.profile-row dd {
  background: #fff;
}

/* Service index */
.service-overview-image {
  width: min(789px, 100%);
  margin: 72px 0 0 auto;
  aspect-ratio: 789 / 376;
  object-fit: cover;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 70px;
}

.service-card {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: 24px;
  background: var(--soft);
}

.service-card__image {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  margin-bottom: 32px;
  object-fit: cover;
}

.service-card__number {
  margin-bottom: 5px;
  color: var(--muted);
  font-family: var(--display);
}

.service-card h3 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(37px, 4vw, 51px);
  font-weight: 400;
  line-height: 0.95;
}

.service-card p {
  margin-bottom: 25px;
  color: #383838;
  font-size: 13px;
  line-height: 2;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.05em;
}

.text-link::after {
  content: "\2197";
  font-family: var(--sans);
  font-size: 11px;
}

/* Detail services */
.detail-intro {
  padding-block: var(--section);
}

.detail-intro__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(46px, 8vw, 112px);
  align-items: start;
}

.detail-intro__lead {
  margin: 0;
  font-family: var(--jp-serif);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.8;
}

.detail-intro__copy p {
  margin-bottom: 24px;
  line-height: 2.25;
}

.capability-list {
  counter-reset: capability;
}

.capability {
  counter-increment: capability;
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(46px, 8vw, 112px);
  padding-block: 72px;
  border-top: 1px solid var(--line);
}

.capability:last-child {
  border-bottom: 1px solid var(--line);
}

.capability__label::before {
  content: "0" counter(capability);
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 16px;
}

.capability__label h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 70px);
  font-weight: 400;
  line-height: 0.95;
}

.capability__label span {
  display: block;
  margin-top: 16px;
  font-family: var(--jp-serif);
  font-size: 14px;
}

.capability__content h3 {
  margin-bottom: 20px;
  font-family: var(--jp-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.7;
}

.capability__content p {
  margin-bottom: 0;
  line-height: 2.25;
}

.capability__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}

.capability__tags span {
  padding: 5px 12px;
  border: 1px solid #aaa;
  border-radius: 999px;
  color: #444;
  font-size: 11px;
  letter-spacing: 0.07em;
}

.brand-statement {
  padding-block: var(--section);
  text-align: center;
}

.brand-statement__name {
  margin-bottom: 40px;
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.brand-statement__tagline {
  margin-bottom: 18px;
  font-family: var(--jp-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: 0.09em;
}

.brand-statement__sub {
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(23px, 3vw, 34px);
  font-style: italic;
  letter-spacing: 0.02em;
}

.brand-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 50px;
  background: var(--line);
  border: 1px solid var(--line);
}

.brand-category-grid div {
  min-height: 150px;
  padding: 28px;
  background: #fff;
}

.brand-category-grid span {
  display: block;
  margin-bottom: 23px;
  color: var(--muted);
  font-family: var(--display);
}

.brand-category-grid strong {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
}

.store-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
  padding: clamp(48px, 7vw, 80px);
  color: #fff;
  background: #111;
}

.store-cta h2 {
  margin-bottom: 17px;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 400;
  line-height: 0.95;
}

.store-cta p {
  margin: 0;
  color: #c8c8c8;
}

.store-cta .round-link {
  color: #fff;
  border-color: #fff;
}

.store-cta .round-link:hover {
  color: #111;
  background: #fff;
}

.creative-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.creative-process__step {
  min-height: 220px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.creative-process__step:last-child {
  border-right: 0;
}

.creative-process__step span {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-family: var(--display);
}

.creative-process__step strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
}

.creative-process__step small {
  color: #555;
  font-size: 11px;
  line-height: 1.7;
}

/* Info */
.info-list {
  border-top: 1px solid var(--ink);
}

.info-item {
  display: grid;
  grid-template-columns: 130px 90px minmax(0, 1fr) 22px;
  gap: 24px;
  align-items: center;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.info-item time,
.info-item__category {
  color: var(--muted);
  font-family: var(--display);
  font-size: 14px;
}

.info-item h2 {
  margin: 0;
  font-family: var(--jp-serif);
  font-size: 16px;
  font-weight: 400;
}

.info-item__arrow {
  font-size: 13px;
}

.info-note {
  margin-top: 48px;
  color: var(--muted);
  font-size: 12px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 38px;
}

.contact-aside h2 {
  margin-bottom: 25px;
  font-family: var(--jp-serif);
  font-size: clamp(23px, 2.5vw, 31px);
  font-weight: 400;
  line-height: 1.7;
}

.contact-aside p {
  color: #454545;
  line-height: 2.15;
}

.contact-form {
  border-top: 1px solid var(--ink);
}

.form-field {
  padding-block: 27px;
  border-bottom: 1px solid var(--line);
}

.form-field label,
.form-field legend {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.form-field .required {
  margin-left: 9px;
  color: #777;
  font-size: 10px;
  font-weight: 400;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #aaa;
  border-radius: 0;
  outline: none;
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: #111;
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-block: 30px;
  font-size: 12px;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin-top: 6px;
}

.form-consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-message {
  min-height: 28px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

/* Privacy */
.policy {
  counter-reset: policy;
}

.policy-section {
  counter-increment: policy;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 48px;
  padding-block: 42px;
  border-top: 1px solid var(--line);
}

.policy-section:last-child {
  border-bottom: 1px solid var(--line);
}

.policy-section h2 {
  margin: 0;
  font-family: var(--jp-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.policy-section h2::before {
  content: "0" counter(policy);
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 14px;
}

.policy-section__body p,
.policy-section__body li {
  font-size: 13px;
  line-height: 2.1;
}

.policy-section__body ul {
  margin: 15px 0 0;
  padding-left: 1.4em;
}

.policy-date {
  margin-top: 36px;
  text-align: right;
  color: var(--muted);
  font-size: 12px;
}

/* Footer */
.site-footer {
  margin-top: var(--section);
  padding-block: clamp(72px, 8vw, 108px) 36px;
  color: #fff;
  background: var(--footer);
}

.site-footer--flush {
  margin-top: 0;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 50px;
  align-items: end;
}

.site-footer__logo {
  width: min(416px, 100%);
}

.site-footer__contact {
  display: block;
  width: 165px;
  transition: opacity 160ms ease;
}

.site-footer__contact:hover {
  opacity: 0.72;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 76px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.site-footer__bottom nav {
  display: flex;
  gap: 24px;
}

.site-footer__bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 960px) {
  :root {
    --section: 112px;
  }

  .menu-panel__body {
    grid-template-columns: 1fr;
    gap: 46px;
    width: min(680px, calc(100% - 64px));
  }

  .menu-panel__brand img {
    width: 260px;
  }

  .global-nav__children {
    padding-left: 18px;
  }

	.home-about {
		padding-bottom: calc(var(--section) + 32px);
	}

	.home-about__stage {
		min-height: 0;
	}

	.home-title-row {
		position: static;
		width: 100%;
		margin-bottom: 34px;
	}

  .home-about__grid {
    grid-template-columns: 44% minmax(0, 1fr);
    gap: 3%;
  }

  .home-about__image {
    width: 87%;
  }

  .home-about__title {
		top: auto;
		right: auto;
		left: auto;
  }

  .home-about__content {
		padding-top: 70px;
  }

  .home-service__title {
		top: auto;
		right: auto;
		left: auto;
  }

  .service-row {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .service-row__image {
    width: 220px;
  }

  .service-row .round-link {
    grid-column: 2;
    width: 96px;
    height: 96px;
    margin-top: -4px;
		justify-self: end;
  }

  .area-circles {
    width: min(540px, 100%);
    height: 480px;
  }

  .area-circle {
    width: 290px;
    height: 290px;
  }

  .area-circle:nth-child(2),
  .area-circle:nth-child(3) {
    top: 190px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-card {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    grid-template-rows: auto auto 1fr auto;
    column-gap: 34px;
    min-height: 0;
  }

  .service-card__image {
    grid-row: 1 / 5;
    margin: 0;
  }

	.service-card .text-link {
		justify-self: end;
		margin-left: auto;
	}

  .creative-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .creative-process__step:nth-child(3) {
    border-right: 0;
  }

  .creative-process__step:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  :root {
    --gutter: 20px;
    --section: 88px;
  }

  body {
    font-size: 14px;
    line-height: 1.95;
  }

  .site-header,
  .site-header__inner {
    height: 72px;
  }

  .site-logo {
    width: 144px;
  }

  .menu-toggle,
  .menu-close {
    width: 72px;
    height: 72px;
    font-size: 14px;
  }

  .menu-panel__body {
    display: block;
    width: calc(100% - 40px);
    padding-block: 92px 48px;
  }

  .menu-panel__brand {
    margin-bottom: 42px;
  }

  .menu-panel__brand img {
    width: 190px;
  }

  .menu-panel__brand p {
    margin-top: 14px;
    font-size: 15px;
  }

  .global-nav__link,
  .global-nav__parent {
    font-size: 36px;
  }

  .global-nav__children {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 4px 20px;
  }

  .global-nav__child {
    min-height: 44px;
    flex-direction: row;
    gap: 12px;
    align-items: baseline;
    justify-content: flex-start;
    font-size: 20px;
  }

  .intro-splash {
    min-height: 520px;
  }

  .section-display {
    margin-bottom: 21px;
    font-size: 58px;
  }

  .section-rule {
    margin-bottom: 27px;
  }

  .jp-heading {
    margin-bottom: 23px;
    font-size: 23px;
  }

  .round-link {
    width: 94px;
    height: 94px;
    flex-basis: 94px;
    font-size: 16px;
  }

	.home-about {
		padding-bottom: calc(var(--section) + 44px);
	}

  .home-about__stage {
    min-height: 0;
  }

	.home-title-row {
		position: static;
		width: 100%;
		margin-bottom: 30px;
	}

  .home-title-row h1,
  .home-title-row h2 {
    font-size: 50px;
  }

  .home-title-row > span {
    margin-left: 16px;
  }

  .home-about__grid {
    display: block;
  }

  .home-about__image {
    width: 76vw;
    max-width: 378px;
    margin-left: 0;
  }

  .home-about__title {
		top: auto;
		right: auto;
		left: auto;
  }

  .home-about__content {
    width: 100%;
    padding-top: 52px;
  }

  .home-about__content .lead-copy {
    margin-bottom: 32px;
  }

  .home-service__intro {
    margin-bottom: 48px;
  }

  .home-service__main-image {
    width: 86%;
  }

  .home-service__title {
		top: auto;
		right: auto;
		left: auto;
  }

  .home-service__copy {
    width: 100%;
    margin-top: 52px;
  }

  .service-list {
    margin-top: 62px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 48px;
  }

  .service-row__image {
    width: min(74vw, 276px);
  }

  .service-row h3 {
    margin-bottom: 18px;
    font-size: 46px;
  }

  .service-row .round-link {
    grid-column: auto;
		justify-self: end;
		margin: 0 0 0 auto;
  }

  .visual-hero {
    aspect-ratio: 1.6 / 1;
    margin-top: 42px;
  }

  .visual-hero h1 {
    font-size: 51px;
  }

  .type-hero {
    padding-block: 72px 76px;
  }

  .type-hero h1 {
    margin-bottom: 22px;
    font-size: 72px;
  }

  .type-hero__bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 42px;
  }

  .feature-hero__copy {
		min-height: 0;
		justify-content: flex-start;
		gap: 36px;
    padding: 36px 28px 42px;
  }

  .feature-hero h1 {
    font-size: 76px;
  }

  .feature-hero__image {
    min-height: 0;
    aspect-ratio: 1.3 / 1;
  }

  .page-section__header,
  .detail-intro__grid,
  .capability,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-section__header {
    gap: 35px;
  }

  .page-section__title {
    font-size: 57px;
  }

  .about-story {
    padding-block: 110px;
  }

  .about-story__headline {
    margin-bottom: 54px;
    text-align: left;
    font-size: 25px;
  }

  .area-circles {
    display: block;
		width: min(340px, 100%);
		height: clamp(280px, 86vw, 330px);
    margin-top: 60px;
  }

  .area-circle {
		width: clamp(150px, 45vw, 190px);
		height: clamp(150px, 45vw, 190px);
  }

	.area-circle strong {
		font-size: clamp(26px, 7.8vw, 32px);
	}

	.area-circle__number {
		margin-bottom: 4px;
	}

	.area-circle small {
		margin-top: 6px;
	}

  .area-circle:first-child {
    top: 0;
  }

  .area-circle:nth-child(2),
  .area-circle:nth-child(3) {
		top: clamp(110px, 34vw, 132px);
  }

  .process-flow {
		position: relative;
		grid-template-columns: 1fr;
		row-gap: 0;
		width: min(120px, 100%);
		margin: 70px auto 0;
		border-top: 0;
  }

	.process-flow::before {
		content: "";
		position: absolute;
		top: 11px;
		bottom: 21px;
		left: 4px;
		width: 1px;
		background: var(--line);
	}

	.process-flow__item {
		padding: 0 0 46px 34px;
	}

	.process-flow__item:last-child {
		padding-bottom: 0;
	}

	.process-flow__item::before {
		top: 7px;
		left: 0;
	}

  .company-content {
    padding-block: 100px;
  }

  .profile-row {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .profile-row dt,
  .profile-row dd {
    padding: 15px 17px;
  }

  .profile-row dd {
    border-inline: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .service-overview-image {
    margin-top: 48px;
  }

  .service-card {
    display: flex;
    padding: 20px;
  }

	.service-card .text-link {
		margin-left: auto;
	}

  .service-card__image {
    width: 100%;
    margin-bottom: 28px;
  }

  .detail-intro__grid,
  .capability {
    gap: 34px;
  }

  .capability {
    padding-block: 56px;
  }

  .brand-category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .store-cta {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 42px 26px;
  }

	.store-cta .round-link {
		justify-self: end;
		margin-left: auto;
	}

  .creative-process {
    grid-template-columns: 1fr;
  }

  .creative-process__step,
  .creative-process__step:nth-child(3) {
    min-height: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .creative-process__step:first-child {
    border-top: 0;
  }

  .creative-process__step span {
    margin-bottom: 16px;
  }

  .info-item {
    grid-template-columns: 1fr auto;
    gap: 6px 20px;
  }

  .info-item time,
  .info-item__category {
    grid-row: 1;
  }

  .info-item h2 {
    grid-column: 1 / 3;
    margin-top: 8px;
  }

  .info-item__arrow {
    display: none;
  }

  .contact-aside {
    position: static;
  }

	.contact-form > .button {
		display: flex;
		margin-inline: auto;
	}

  .policy-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .site-footer__logo {
    width: min(320px, 88%);
  }

  .site-footer__contact {
    width: 145px;
		margin-left: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
		align-items: center;
    margin-top: 58px;
		text-align: center;
  }

	.site-footer__bottom nav {
		justify-content: center;
	}
}

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

/* WordPress integration */
body.admin-bar .site-header {
  top: 32px;
}

.info-item:hover h2,
.info-item:focus-visible h2 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.pagination {
  margin-top: 54px;
}

.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination .current,
.post-pages a,
.post-pages > span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding-inline: 10px;
  border: 1px solid var(--ink);
  font-family: var(--display);
  line-height: 1;
}

.pagination .current,
.pagination a:hover,
.post-pages > span,
.post-pages a:hover {
  color: var(--paper);
  background: var(--ink);
}

.post-detail {
  padding-block: clamp(92px, 12vw, 170px);
}

.post-detail__header {
  padding-bottom: clamp(58px, 8vw, 100px);
}

.post-detail__back {
  display: inline-block;
  margin-bottom: clamp(52px, 8vw, 92px);
  font-family: var(--display);
  font-size: 20px;
}

.post-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 14px;
}

.post-detail__header h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--jp-serif);
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.entry-content {
  padding-bottom: var(--section);
}

.entry-content > * + * {
  margin-top: 1.8em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-bottom: 0.8em;
  font-family: var(--jp-serif);
  font-weight: 500;
  line-height: 1.6;
}

.entry-content h2 {
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--line);
  font-size: clamp(23px, 3vw, 34px);
}

.entry-content h3 {
  font-size: clamp(19px, 2.2vw, 25px);
}

.entry-content a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.entry-content img,
.entry-content .wp-block-image {
  height: auto;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.5em;
}

.entry-content blockquote {
  margin-inline: 0;
  padding: 22px 28px;
  background: var(--soft);
  border-left: 2px solid var(--ink);
}

.post-pages {
  display: flex;
  gap: 9px;
  margin-top: 54px;
}

.generic-page .entry-content {
  padding-top: 0;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-notice {
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.8;
}

.form-notice--success {
  background: #f0f5ef;
}

.form-notice--error {
  background: #f8eeee;
}

@media screen and (max-width: 782px) and (min-width: 601px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  body.admin-bar .site-header {
    top: 0;
  }
}
