:root {
  --black: #0D0E10; --white: #EFEFEA; --paper: #F6F6F2;
  --ac: #D8532A; --ac-d: #B8431F;              /* terracotta — matches the profile backdrop */
  --gray: #6F7278; --gray-l: #A9ABB0; --line: #DCDCD6; --line-d: #2A2C30; --card-d: #16181C;
  --ease: cubic-bezier(.2,.8,.2,1); --ease2: cubic-bezier(.76,0,.24,1);
  --gx: clamp(20px, 5.5vw, 80px);
}
* { box-sizing: border-box; }
html { scroll-behavior: auto; background: var(--black); }
body { margin: 0; background: var(--black); color: var(--black); font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, dl, dd, figure { margin: 0; }
button { font-family: inherit; }

.en { font-family: "Josefin Sans", "Helvetica Neue", Arial, sans-serif; }
.label { font-family: "Josefin Sans", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; padding-top: .15em; display: flex; align-items: center; gap: 10px; }
.label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ac); margin-top: -.15em; }
.h2 { font-family: "Instrument Serif", "Times New Roman", serif; font-weight: 400; font-size: clamp(52px, 8.5vw, 112px); line-height: 1; letter-spacing: -.02em; padding-top: .1em; }
.h2ja { font-size: 15px; font-weight: 700; }
.h3 { font-family: "Instrument Serif", "Times New Roman", serif; font-weight: 400; font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -.01em; line-height: 1.05; padding-top: .1em; }
.lead { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.6; font-weight: 700; letter-spacing: -.01em; }
.body { font-size: 16px; line-height: 2; color: var(--gray); }
.dark .body { color: var(--gray-l); }
.note { font-size: 13px; line-height: 1.9; color: var(--gray); }
.ac { color: var(--ac); }

.sec { padding: clamp(80px, 11vw, 140px) var(--gx); position: relative; }
.light { background: var(--white); color: var(--black); }
.dark { background: var(--black); color: var(--white); }
.sec__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: clamp(40px, 6vw, 72px); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 56px; padding: 0 28px; border-radius: 999px; font-family: "Josefin Sans", sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; border: 0; cursor: pointer; padding-top: .2em; transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .35s var(--ease); }
.btn .ar { font-size: 16px; margin-top: -.2em; }
.btn-primary { background: var(--ac); color: var(--white); }
.btn-primary:hover { background: var(--ac-d); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(216,83,42,.28); }
.btn-ghost { background: transparent; border: 1.5px solid currentColor; }
.light .btn-ghost:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.dark .btn-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- opening (transparent over the smoke) ---------- */
#opening { position: fixed; inset: 0; z-index: 1000; color: var(--white); transition: opacity 1s var(--ease2); }
#opening.done { opacity: 0; pointer-events: none; }
.op__ttl, .op__txt { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; text-align: center; }
.op__ttl p { margin: 0; overflow: hidden; }
.op__ttl span { display: block; transform: translateY(100%); transition: transform 1.5s var(--ease2); }
.op__t1 { font-family: "Instrument Serif", serif; font-size: clamp(16px, 1.33vw, 26px); line-height: 1.3; letter-spacing: .05em; }
.op__t2 { font-family: "Instrument Serif", serif; font-size: clamp(36px, 3vw, 58px); line-height: 1.3; letter-spacing: .05em; }
#opening.run .op__t1 span { transform: none; }
#opening.run .op__t2 span { transform: none; transition-delay: .5s; }
#opening.run .op__ttl { animation: opOut 1s var(--ease2) 2.5s forwards; }
.op__txt { font-family: "Inter", "Zen Kaku Gothic New", sans-serif; font-size: clamp(11px, .8vw, 14px); line-height: 2; letter-spacing: .05em; opacity: 0; }
.op__txt p { margin: 0; }
.op__gray { opacity: .1; }
.op__white { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; }
.op__white p { clip-path: inset(0 100% 0 0); transition: clip-path 1.5s var(--ease2); }
#opening.run .op__white p { clip-path: inset(0); }
#opening.run .op__txt1 { opacity: 1; transition: opacity 1s var(--ease2) 2.8s; animation: opOut .5s var(--ease2) 8s forwards; }
#opening.run .op__txt2 { opacity: 1; transition: opacity 1s var(--ease2) 8.8s; animation: opOut .5s var(--ease2) 11.5s forwards; }
@keyframes opOut { to { opacity: 0; } }
.op__bar { position: absolute; left: 50%; transform: translateX(-50%); bottom: 6.6%; width: 83.3334%; height: 1px; background: rgba(255,255,255,.2); opacity: 0; transition: opacity 1.5s var(--ease2); }
#opening.run .op__bar { opacity: 1; }
.op__bar i { display: block; height: 100%; width: 0; background: var(--white); transition: width 10.5s linear .8s; }
#opening.run .op__bar i { width: 100%; }
.op__skip { position: absolute; bottom: 27%; left: 50%; transform: translateX(-50%); border: 0; background: none; color: var(--white); font-family: "Inter", sans-serif; font-size: clamp(11px, .8vw, 14px); letter-spacing: .1em; line-height: 1; padding: 0; cursor: pointer; opacity: 0; }
.op__skip::after { content: ""; position: absolute; top: 50%; left: 50%; width: 90px; height: 90px; border-radius: 50%; border: 1px solid var(--white); opacity: .2; transform: translate(-50%, -50%); transition: transform 1s var(--ease2), opacity 1s var(--ease2); }
.op__skip:hover::after { transform: translate(-50%, -50%) scale(1.18); opacity: 1; }
#opening.run .op__skip { animation: opIn 1.5s var(--ease2) 3.5s forwards; }
@keyframes opIn { to { opacity: 1; } }
body.booting { overflow: hidden; }
body.booting .burger, body.booting .side { opacity: 0; }
.burger, .side { transition: opacity .8s var(--ease); }

/* ---------- bottom bar (viewing area + nav + job) ---------- */
.cur-area { position: fixed; left: 2.6%; bottom: 4.4%; z-index: 300; display: flex; align-items: center; font-family: "Inter", sans-serif; font-weight: 400; opacity: 0; transition: opacity 1.5s var(--ease2) 1s, color .35s; pointer-events: none; }
body.reveal .cur-area { opacity: 1; }
.cur-area__ttl { font-size: clamp(9px, .6666vw, 12px); letter-spacing: .036em; line-height: 1.4; }
.cur-area__line { display: block; width: 19px; height: 1px; background: currentColor; margin: 0 30px 0 15px; }
.cur-area__list { position: relative; display: block; height: 1.4em; font-size: clamp(11px, .8vw, 14px); letter-spacing: .036em; line-height: 1.4; min-width: 90px; }
.cur-area__item { position: absolute; top: 0; left: 0; font-weight: 400; white-space: nowrap; clip-path: inset(100% 0 0 0); transition: clip-path 1.2s var(--ease2); }
.cur-area__item.on { clip-path: inset(0); }
.cur-area__item.out { clip-path: inset(0 0 100% 0); }
.bnav { position: fixed; left: 50%; bottom: 4.4%; transform: translateX(-50%); z-index: 300; display: flex; align-items: center; gap: clamp(28px, 4.2vw, 80px); font-family: "Inter", sans-serif; font-weight: 400; font-size: clamp(11px, .8333vw, 15px); letter-spacing: .0433em; line-height: 1; transition: color .35s; }
.bnav__l { position: relative; display: block; overflow: hidden; }
.bnav__l span { display: block; }
.bnav__l::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 0; height: 1px; background: currentColor; transition: width .5s var(--ease2); }
.bnav__l:hover::after { width: 100%; }
.bnav__l { transform: translateY(150%); opacity: 0; }
body.reveal .bnav__l { animation: bnavUp 1s var(--ease2) 1.5s forwards; }
@keyframes bnavUp { to { transform: none; opacity: 1; } }
.bnav__job { display: flex; flex-direction: column; align-items: center; text-align: center; opacity: 0; transition: opacity 1.2s var(--ease2) 1s, color .35s; }
body.reveal .bnav__job { opacity: 1; }
.bnav__name { font-size: clamp(11px, .8vw, 14px); line-height: 1.25; }
.bnav__pill { display: block; margin-top: 1em; font-size: clamp(10px, .7vw, 13px); letter-spacing: .036em; line-height: 2; padding: .2em 1.5em; border-radius: 15px; border: 1px solid currentColor; width: clamp(120px, 9.6vw, 170px); box-sizing: border-box; opacity: 1; }
.bnav__pill { border-color: rgba(128,128,128,.45); }
#jobText::after { content: "|"; animation: blink 1s step-end infinite; }
body.menu-open .bnav, body.menu-open .cur-area { filter: blur(4px); opacity: .5; }

/* ---------- grain ---------- */
#grain { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 250; pointer-events: none; opacity: .09; mix-blend-mode: overlay; transition: opacity .4s; }
#grain.off { opacity: 0; }

/* ---------- cursor (ring + label) ---------- */
#cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; opacity: 0; transform: translate(-50%, -50%); will-change: transform; mix-blend-mode: difference; color: #fff; display: grid; place-items: center; width: 120px; height: 120px; }
.cur__ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid currentColor; opacity: .2; transition: transform .25s ease-out, opacity .25s; }
.cur__txt { font-family: "Inter", sans-serif; font-size: clamp(10px, .7vw, 13px); font-weight: 500; letter-spacing: .05em; white-space: nowrap; transition: opacity .2s; }
#cursor.is-hover .cur__ring { transform: scale(1.25); opacity: .6; }
#cursor.is-hide .cur__ring { transform: scale(0); opacity: 0; }
@media (hover: hover) and (pointer: fine) { body, body a, body button { cursor: none; } #cursor { opacity: 1; } }

/* ---------- fixed UI (inverts over dark/light) ---------- */
.blend { color: var(--white); transition: color .35s; }
.blend.on-light { color: var(--black); }
.gh-bg { position: fixed; top: 0; left: 0; right: 0; height: 80px; z-index: 290; backdrop-filter: blur(16px) saturate(1.1); -webkit-backdrop-filter: blur(16px) saturate(1.1); -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent); mask-image: linear-gradient(to bottom, #000 70%, transparent); pointer-events: none; }
.logo:hover .logo__mark { transform: scale(1.06); }
.burger { display: flex; position: fixed; top: 24px; right: 32px; z-index: 400; width: 44px; height: 44px; border: 0; background: none; padding: 0; align-items: center; justify-content: center; }
.side { position: fixed; left: 32px; top: 50%; transform: translateY(-50%) rotate(180deg); z-index: 200; font-family: "Josefin Sans", sans-serif; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; writing-mode: vertical-rl; pointer-events: none; transition: opacity .5s, color .35s; }
.side.hide { opacity: 0; }
.counter { position: fixed; right: 32px; bottom: 32px; z-index: 200; font-family: "Josefin Sans", sans-serif; font-size: 11px; letter-spacing: .24em; pointer-events: none; display: flex; align-items: center; gap: 12px; transition: opacity .4s, transform .4s var(--ease), color .35s; }
.counter.hide { opacity: 0; transform: translateY(10px); }
.counter i { display: block; width: 60px; height: 1px; background: currentColor; position: relative; }
.counter i::after { content: ""; position: absolute; left: 0; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: currentColor; transform: translateX(calc(var(--pg, 0) * 55px)); transition: transform .3s var(--ease); }

.mnav { position: fixed; inset: 0; z-index: 350; background: var(--black); color: var(--white); padding: 96px 40px 40px; display: flex; flex-direction: column; gap: 4px; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .4s var(--ease), transform .4s var(--ease); overflow-y: auto; }
.mnav.open { opacity: 1; pointer-events: auto; transform: none; }
.mnav a { font-family: "Instrument Serif", serif; font-weight: 400; font-size: 44px; letter-spacing: 0; padding: 10px 0; border-bottom: 1px solid var(--line-d); display: flex; justify-content: space-between; align-items: center; }
.mnav a small { font-family: "Zen Kaku Gothic New", sans-serif; font-size: 13px; font-weight: 500; color: var(--gray); }
body.menu-open .burger { color: var(--white) !important; }
@media (min-width: 900px) { .mnav { padding: 120px 8vw 60px; max-width: none; } .mnav a { font-size: 56px; } }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(28px); filter: blur(10px); transition: opacity 1.3s var(--ease), transform 1.3s var(--ease), filter 1.3s var(--ease); transition-delay: var(--d, 0s); }
.rv.in { opacity: 1; transform: none; filter: blur(0); }
.rv-img { clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease2); transition-delay: var(--d, 0s); }
.rv-img.in { clip-path: inset(0 0 0 0); }
.ch { display: inline-block; opacity: 0; animation: chr .6s ease-out forwards; animation-delay: var(--cd, 0s); }
@keyframes chr { 0% { opacity: 0; filter: blur(8px); transform: translateY(4px); } 100% { opacity: 1; filter: blur(0); transform: none; } }
.rv-line { position: relative; }
.rv-line::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: currentColor; opacity: .18; transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease2); }
.rv-line.in::after { transform: scaleX(1); }
.tw { opacity: 0; } .tw.on { opacity: 1; }
.caret { display: inline-block; width: 2px; height: 1em; background: var(--ac); margin-left: 4px; vertical-align: -.15em; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
[data-px] { will-change: transform; }
@media (prefers-reduced-motion: reduce) { .rv, .rv-img { opacity: 1; transform: none; clip-path: none; filter: none; transition: none; } #opening { display: none; } body.booting #page { opacity: 1; } #smoke, #grain { display: none; } .hbig, .hsub { filter: none; } [data-px] { transform: none !important; } }

/* ---------- hero (fixed, content slides over) ---------- */
.hero { position: fixed; inset: 0; height: 100vh; height: 100svh; z-index: 0; overflow: hidden; color: var(--white); background: var(--black); }
#smoke { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero__note { position: absolute; left: 2.6%; top: 32px; margin: 0; z-index: 2; font-family: "Josefin Sans", sans-serif; font-size: 11px; line-height: 1.7; letter-spacing: .08em; color: var(--gray-l); opacity: 0; transition: opacity 1.2s var(--ease); }
.hero__c { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; text-align: center; will-change: transform; }
.hbig { margin: 0; line-height: 0; opacity: 0; filter: blur(18px); transform: scale(1.06); transition: opacity 1.8s var(--ease), filter 1.8s var(--ease), transform 1.8s var(--ease); }
.hbig__mark { display: block; width: clamp(64px, 7vw, 96px); aspect-ratio: 865 / 1600; background: var(--white); -webkit-mask: url(/img/logo_pay.png) center / contain no-repeat; mask: url(/img/logo_pay.png) center / contain no-repeat; }
.hsub { font-family: "Josefin Sans", sans-serif; font-size: clamp(11px, 1.1vw, 13px); font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gray-l); padding-top: .2em; margin: 0; opacity: 0; filter: blur(6px); transition: opacity 1.4s var(--ease), filter 1.4s var(--ease); }
.hero__meta { position: absolute; left: 2.6%; top: 76px; z-index: 2; display: flex; gap: 28px; font-family: "Josefin Sans", sans-serif; font-size: 11px; letter-spacing: .22em; color: var(--gray); padding-top: .2em; opacity: 0; transition: opacity 1.2s var(--ease); }
body.reveal .hero__note { opacity: 1; transition-delay: 1.2s; }
body.reveal .hbig { opacity: 1; filter: blur(0); transform: none; transition-delay: .5s; }
body.reveal .hsub { opacity: 1; filter: blur(0); transition-delay: 1.1s; }
body.reveal .hero__meta { opacity: 1; transition-delay: 1.2s; }
.hero__scroll { position: absolute; right: 32px; bottom: 32px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 14px; color: var(--gray-l); opacity: 0; transition: opacity 1.2s var(--ease) 1.4s, color .3s; }
body.reveal .hero__scroll { opacity: 1; }
.hero__scroll:hover { color: var(--white); }
.hero__scroll-t { writing-mode: vertical-rl; font-family: "Josefin Sans", sans-serif; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; }
.hero__circle { position: relative; display: grid; place-items: center; width: 48px; height: 48px; }
.hero__circle svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.hero__circle circle { fill: none; stroke: currentColor; stroke-width: 1; stroke-dasharray: 126; stroke-dashoffset: 126; animation: ring 2.6s var(--ease2) infinite; }
.hero__circle b { font-weight: 400; font-size: 13px; animation: arrow 2.6s var(--ease2) infinite; }
@keyframes ring { 0% { stroke-dashoffset: 126; } 45% { stroke-dashoffset: 0; } 70% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: 0; opacity: 0; } }
@keyframes arrow { 0% { transform: translateY(-6px); opacity: 0; } 40% { transform: none; opacity: 1; } 75% { transform: none; opacity: 1; } 100% { transform: translateY(6px); opacity: 0; } }
.hero-spacer { height: 100vh; height: 100svh; }
#content, .ft { position: relative; z-index: 1; }
#content > .sec:first-child { border-radius: 28px 28px 0 0; }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.about__body { display: flex; flex-direction: column; gap: 24px; }
.timeline li { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 14px 0; border-top: 1.5px solid var(--line); font-size: 14px; color: var(--gray); align-items: baseline; }
.timeline li:last-child { border-bottom: 1.5px solid var(--line); }
.timeline b { font-family: "Josefin Sans", sans-serif; font-weight: 700; font-size: 14px; color: var(--ac); padding-top: .2em; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(56px, 8vw, 96px); padding-top: 32px; border-top: 1.5px solid var(--line); }
.facts .big { font-family: "Josefin Sans", sans-serif; font-size: clamp(36px, 4.4vw, 56px); font-weight: 700; letter-spacing: -.02em; line-height: 1; padding-top: .1em; display: block; }
.facts .big small { font-size: 16px; color: var(--gray); margin-left: 6px; font-weight: 500; }
.facts .sub { font-size: 13px; color: var(--gray); display: block; margin-top: 10px; }

/* ---------- about strip ---------- */
.strip { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 16px; margin-top: clamp(48px, 7vw, 88px); align-items: start; }
.strip figure { overflow: hidden; border-radius: 12px; }
.strip figure:nth-child(1) { margin-top: 48px; }
.strip figure:nth-child(3) { margin-top: 96px; }
.strip img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.strip figcaption { font-size: 11px; letter-spacing: .18em; color: var(--gray); margin-top: 10px; padding-top: .2em; }

/* ---------- works blocks ---------- */
.wblock { margin-bottom: clamp(56px, 8vw, 104px); }
.wblock__head { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; margin-bottom: 32px; max-width: 640px; }
.wblock__head .body { font-size: 15px; }
.tlink { font-family: "Josefin Sans", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .1em; border-bottom: 1.5px solid currentColor; padding-bottom: 3px; transition: color .3s; }
.tlink:hover { color: var(--ac); }
.wgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
.wgrid a { display: flex; flex-direction: column; gap: 8px; }
.wgrid figure { overflow: hidden; border-radius: 10px; aspect-ratio: 16/10; border: 1px solid var(--line); }
.wgrid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.wgrid a:hover img { transform: scale(1.04); }
.wgrid .works-t { font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -.02em; line-height: 1.2; margin-top: 6px; padding-top: .1em; transition: color .3s; }
.wgrid a:hover .works-t { color: var(--ac); }
.wgrid .w-sub { font-size: 12px; color: var(--gray); }
.ygrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ygrid figure { overflow: hidden; border-radius: 10px; aspect-ratio: 16/9; }
.ygrid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ygrid a:hover img { transform: scale(1.04); }
.wblock--2col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.wblock--3col { grid-template-columns: 1fr 1fr 1fr; }
.vgrid { grid-template-columns: repeat(4, 1fr); }
.vgrid figure { aspect-ratio: 16/10; }
.vgrid .works-t { font-size: 16px; }
.kvgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 20px; }
.kvgrid a { display: flex; flex-direction: column; gap: 8px; }
.kvgrid figure { overflow: hidden; border-radius: 10px; aspect-ratio: 1; border: 1px solid var(--line); background: #fff; }
.kvgrid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.kvgrid a:hover img { transform: scale(1.04); }
.kvgrid .works-t { font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 16px; letter-spacing: -.01em; line-height: 1.3; margin-top: 6px; padding-top: .1em; transition: color .3s; }
.kvgrid a:hover .works-t { color: var(--ac); }
.kvgrid .w-sub { font-size: 12px; color: var(--gray); }
.g-ph { aspect-ratio: 1400/430; display: flex; align-items: center; justify-content: center; background: var(--black) !important; color: var(--white); font-weight: 700; font-size: clamp(22px, 2.6vw, 34px); line-height: 1.05; letter-spacing: -.02em; text-align: center; padding-top: .1em; }
.plist a { color: var(--white); border-bottom: 1px solid var(--line-d); transition: color .3s; }
.plist a:hover { color: var(--ac); }
.pj { display: flex; flex-direction: column; gap: 16px; }
.pj > div { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.pj__img { overflow: hidden; border-radius: 12px; aspect-ratio: 16/10; border: 1px solid var(--line); }
.pj__logo { overflow: hidden; border-radius: 12px; aspect-ratio: 16/6; border: 1px solid var(--line); }
.pj__img img, .pj__logo img { width: 100%; height: 100%; object-fit: cover; }
.pj__img--ph { display: flex; align-items: center; justify-content: center; background: var(--black); color: var(--white); font-family: "Josefin Sans", sans-serif; font-weight: 700; font-size: clamp(40px, 6vw, 84px); line-height: .95; letter-spacing: -.04em; text-align: center; padding-top: .1em; }
.pj__img--ph span { position: relative; }
.pj__img--ph span::after { content: ""; position: absolute; right: -18px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--ac); }

/* ---------- media grid ---------- */
.mgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.mgrid a { display: flex; flex-direction: column; gap: 8px; }
.mgrid figure { overflow: hidden; border-radius: 10px; aspect-ratio: 4/3; }
.mgrid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.mgrid a:hover img { transform: scale(1.04); }
.mgrid .en { font-size: 11px; letter-spacing: .14em; color: var(--ac); font-weight: 600; margin-top: 6px; padding-top: .2em; }
.mgrid .works-t { font-size: 14px; font-weight: 700; line-height: 1.6; }

/* ---------- company ---------- */
.company { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.company__visuals { position: relative; padding-bottom: 18%; }
.company__visual { width: 62%; aspect-ratio: 2/3; overflow: hidden; border-radius: 12px; }
.company__visual img, .company__site img { width: 100%; height: 100%; object-fit: cover; }
.company__site { position: absolute; right: 0; bottom: 0; width: 58%; aspect-ratio: 16/10; overflow: hidden; border-radius: 12px; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.company__body { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }
.biz div { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 14px 0; border-top: 1.5px solid var(--line-d); font-size: 14px; }
.biz div:last-child { border-bottom: 1.5px solid var(--line-d); }
.biz dt { font-family: "Josefin Sans", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ac); padding-top: .2em; }
.biz dd { color: var(--gray-l); line-height: 1.8; }

/* ---------- company info / range ---------- */
.cinfo { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 96px); margin-top: clamp(56px, 8vw, 104px); padding-top: clamp(40px, 5vw, 64px); border-top: 1.5px solid var(--line-d); }
.cinfo__msg { display: flex; flex-direction: column; gap: 18px; }
.cinfo__table div { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 14px 0; border-top: 1.5px solid var(--line-d); font-size: 14px; }
.cinfo__table div:last-child { border-bottom: 1.5px solid var(--line-d); }
.cinfo__table dt { font-weight: 700; color: var(--gray-l); }
.cinfo__table dd { line-height: 1.8; }
.range { margin-top: clamp(48px, 6vw, 80px); display: flex; flex-direction: column; gap: 24px; }
.range__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.range__grid div { background: var(--card-d); border: 1.5px solid var(--line-d); border-radius: 12px; padding: 22px 22px 20px; display: flex; flex-direction: column; gap: 8px; }
.range__grid b { font-family: "Josefin Sans", sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -.01em; padding-top: .15em; color: var(--ac); }
.range__grid span { font-size: 13px; line-height: 1.8; color: var(--gray-l); }

/* ---------- graphic / print grids ---------- */
.ggrid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; }
.ggrid li { display: flex; flex-direction: column; gap: 10px; }
.ggrid .g-wide { grid-column: 1 / -1; }
.ggrid figure { overflow: hidden; border-radius: 10px; border: 1px solid var(--line); background: #fff; }
.ggrid img { width: 100%; height: auto; }
.gcap { font-size: 13px; line-height: 1.7; color: var(--gray); display: flex; gap: 12px; align-items: baseline; }
.gcap b { font-family: "Josefin Sans", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--black); white-space: nowrap; padding-top: .2em; }
.apparel__note { max-width: 640px; margin: -32px 0 40px; }
.brand__img { overflow: hidden; border-radius: 10px; margin-top: 6px; }
.brand__img img { width: 100%; }

/* ---------- works / media ---------- */
.works__note { max-width: 640px; margin-bottom: 40px; }
.works a, .works div { display: grid; grid-template-columns: 140px minmax(0, 1fr) auto 20px; gap: 16px; align-items: center; padding: 18px 0; border-top: 1.5px solid var(--line); font-size: 15px; font-weight: 700; transition: color .3s, padding-left .35s var(--ease); }
.works li:last-child > * { border-bottom: 1.5px solid var(--line); }
.dark .works a { border-color: var(--line-d); }
.works a:hover { color: var(--ac); padding-left: 12px; }
.works .en { font-size: 11px; letter-spacing: .14em; color: var(--gray); padding-top: .2em; font-weight: 600; }
.works .works-t { font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif; font-size: clamp(20px, 2.6vw, 30px); letter-spacing: -.02em; line-height: 1.15; padding-top: .1em; }
.works .w-sub { font-size: 12px; font-weight: 400; color: var(--gray); white-space: nowrap; }
.works .ar { color: var(--ac); font-size: 16px; text-align: right; }
.works.media .works-t { font-family: "Zen Kaku Gothic New", sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0; line-height: 1.7; }
.works.media a, .works.media div { grid-template-columns: 180px minmax(0, 1fr) 20px; }
.note { margin-top: 24px; max-width: 640px; }

/* ---------- band ---------- */
.band { background: var(--ac); color: var(--white); padding: 18px 0; overflow: hidden; position: relative; z-index: 1; }
.marquee { overflow: hidden; white-space: nowrap; }
.marquee .track { display: inline-flex; gap: 56px; animation: mq 32s linear infinite; font-family: "Josefin Sans", sans-serif; font-size: clamp(22px, 3vw, 40px); font-weight: 700; letter-spacing: -.02em; text-transform: uppercase; padding-top: .2em; }
.marquee .track span::after { content: "◆"; margin-left: 56px; font-size: 10px; vertical-align: middle; }
@keyframes mq { to { transform: translateX(-50%); } }

/* ---------- apparel ---------- */
.apparel { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.apparel__gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 14px; }
.ag { overflow: hidden; border-radius: 12px; aspect-ratio: 16/10; }
.ag--tall { grid-row: 1 / 3; aspect-ratio: 2/3; }
.ag img { width: 100%; height: 100%; object-fit: cover; }
.brand { padding: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.brand .body { font-size: 14px; line-height: 1.9; }
.sns-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.sns-row a { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px; padding-top: .15em; border: 1.5px solid var(--line-d); border-radius: 999px; font-family: "Josefin Sans", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .08em; transition: border-color .3s, background .3s, color .3s; }
.light .sns-row a { border-color: var(--line); }
.sns-row a:hover { background: var(--ac); border-color: var(--ac); color: var(--white); }
.plist li { display: grid; grid-template-columns: 90px 1fr; gap: 12px; font-size: 14px; color: var(--gray-l); padding: 6px 0; }
.plist b { font-family: "Josefin Sans", sans-serif; font-size: 12px; color: var(--ac); padding-top: .2em; }

/* ---------- music ---------- */
.music { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.music__arts { position: sticky; top: 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.ma img { border-radius: 12px; width: 100%; }
.ma--big { grid-column: 1 / -1; }
.ma figcaption { font-size: 11px; letter-spacing: .18em; color: var(--gray); margin-top: 10px; padding-top: .2em; }
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-content: start; }
.mv img { border-radius: 8px; width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .4s var(--ease), opacity .3s; }
.mv a:hover img { transform: translateY(-3px); opacity: .85; }
.unit { padding: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.unit .body { font-size: 14px; line-height: 1.9; }
.disco { margin: 32px 0 40px; }
.disco li { display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; padding: 12px 0; border-top: 1.5px solid var(--line); font-size: 14px; align-items: baseline; }
.disco li:last-child { border-bottom: 1.5px solid var(--line); }
.disco b { font-family: "Josefin Sans", sans-serif; font-size: 12px; color: var(--ac); padding-top: .2em; }
.disco .t { font-weight: 700; font-size: 16px; }
.disco .by { font-family: "Josefin Sans", sans-serif; font-size: 11px; letter-spacing: .1em; color: var(--gray); text-transform: uppercase; }

/* ---------- other ---------- */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--card-d); border: 1.5px solid var(--line-d); border-radius: 14px; padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; transition: border-color .3s, transform .35s var(--ease); }
.card:hover { border-color: var(--ac); transform: translateY(-4px); }
.card .h3 { font-size: 30px; }
.card__img { margin: -32px -28px 12px; aspect-ratio: 16/9; overflow: hidden; border-radius: 12px 12px 0 0; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__img img { transform: scale(1.04); }
.card__img--ph { display: flex; align-items: center; justify-content: center; background: repeating-linear-gradient(135deg, transparent 0 14px, #1E2024 14px 15px); color: var(--gray); font-size: 12px; letter-spacing: .3em; }
.card .body { font-size: 14px; line-height: 1.8; flex: 1; }
.card__link { font-family: "Josefin Sans", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .08em; border-bottom: 1.5px solid var(--line-d); padding-bottom: 3px; align-self: flex-start; transition: border-color .3s, color .3s; }
.card__link:hover { color: var(--ac); border-color: var(--ac); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.chips div { border: 1.5px solid var(--line-d); border-radius: 999px; padding: 8px 16px 7px; font-size: 13px; font-weight: 500; color: var(--gray-l); }

/* ---------- links ---------- */
.links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.links a { display: flex; flex-direction: column; gap: 8px; padding: 26px 24px; border: 1.5px solid var(--line-d); border-radius: 14px; background: var(--card-d); height: 100%; transition: border-color .3s, transform .35s var(--ease); }
.links a:hover { border-color: var(--ac); transform: translateY(-4px); }
.links .en { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gray); font-weight: 600; padding-top: .2em; }
.links .lk { font-family: "Josefin Sans", sans-serif; font-weight: 700; font-size: 17px; letter-spacing: -.01em; padding-top: .15em; }

/* ---------- contact (gnmd-style full-block CTA) ---------- */
.book { padding: 0 !important; }
.cta { position: relative; display: block; overflow: hidden; padding: clamp(96px, 14vw, 200px) var(--gx); color: var(--black); }
.cta__bg { position: absolute; inset: 0; background: var(--ac); transform: translateY(-101%); transition: transform .7s var(--ease2); }
.cta:hover .cta__bg { transform: none; }
.cta__in { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; transition: color .4s; }
.cta:hover .cta__in { color: var(--white); }
.cta .label { justify-content: center; }
.cta:hover .label::before { background: var(--white); }
.cta__big { display: flex; flex-direction: column; font-family: "Josefin Sans", "Helvetica Neue", Arial, sans-serif; font-weight: 700; font-size: clamp(40px, 7.6vw, 112px); line-height: 1; letter-spacing: -.03em; padding-top: .1em; }
.cta__ja { font-size: clamp(14px, 1.4vw, 19px); font-weight: 700; line-height: 1.9; max-width: 640px; }
.cta__mail { display: inline-flex; align-items: center; gap: 10px; font-size: clamp(16px, 2vw, 24px); font-weight: 700; letter-spacing: -.01em; padding-top: .2em; border-bottom: 2px solid currentColor; padding-bottom: 6px; }
.cta__mail i { font-style: normal; transition: transform .35s var(--ease); }
.cta:hover .cta__mail i { transform: translate(3px, -3px); }

/* ---------- footer (gnmd-style: giant wordmark + link columns) ---------- */
.ft { background: var(--paper); color: var(--black); padding: 0 var(--gx) 40px; border-top: 1.5px solid var(--line); }
.ft__head { padding: clamp(32px, 4vw, 56px) 0 clamp(20px, 3vw, 40px); border-bottom: 1.5px solid var(--line); }
.ft__logo { display: flex; justify-content: center; width: 100%; padding-top: .1em; margin-right: 0; user-select: none; color: var(--black); transition: color .35s; }
.ft__mark { display: block; width: clamp(140px, 22vw, 340px); aspect-ratio: 865 / 1600; background: currentColor; -webkit-mask: url(/img/logo_pay.png) center / contain no-repeat; mask: url(/img/logo_pay.png) center / contain no-repeat; }
.ft__logo:hover { color: var(--ac); }
.ft__top { width: 44px; height: 44px; border: 1.5px solid var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .3s, color .3s, border-color .3s; }
.ft__top:hover { background: var(--black); color: var(--white); }
.ft__body { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; padding: clamp(40px, 5vw, 64px) 0; }
.ft__list { display: flex; flex-direction: column; gap: 2px; }
.ft__list a { display: inline-block; padding: 6px 0; font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif; font-weight: 600; font-size: 14px; letter-spacing: .02em; transition: color .3s, transform .3s var(--ease); }
.ft__list a:hover { color: var(--ac); transform: translateX(4px); }
.ft__cat { display: block; font-family: "Josefin Sans", sans-serif; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); padding: 6px 0 10px; }
.ft__foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; padding-top: 28px; border-top: 1.5px solid var(--line); }
.ft__foot .ft__top { margin-left: auto; }
.ft__sub { display: flex; gap: 28px; flex-wrap: wrap; }
.ft__sub a { font-family: "Josefin Sans", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .1em; display: inline-flex; gap: 6px; align-items: center; transition: color .3s; }
.ft__sub a:hover { color: var(--ac); }
.ft__sub i { font-style: normal; color: var(--ac); }
.ft__addr { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; font-size: 12px; letter-spacing: .06em; color: var(--gray); text-align: right; }
.ft__addr small { font-size: 11px; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .about, .company, .apparel, .music, .wblock--2col, .cinfo { grid-template-columns: 1fr; }
  .range__grid { grid-template-columns: 1fr 1fr; }
  .company__visuals { max-width: 480px; }
  .music__arts { position: static; }
  .wgrid, .ygrid, .vgrid, .kvgrid { grid-template-columns: 1fr 1fr; }
  .mgrid { grid-template-columns: 1fr 1fr; }
  .wblock--3col { grid-template-columns: 1fr; }
  .ft__body { grid-template-columns: 1fr 1fr; }
  .ft__addr { align-items: flex-start; text-align: left; }
  .strip { gap: 10px; } .strip figure:nth-child(1) { margin-top: 24px; } .strip figure:nth-child(3) { margin-top: 48px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .grid3 { grid-template-columns: 1fr; }
  .links { grid-template-columns: 1fr 1fr; }
  .side, .counter { display: none; }
  .hero__bg { width: 100%; }
  .hero__bg::before { background: linear-gradient(180deg, rgba(13,14,16,.2) 0%, rgba(13,14,16,.35) 40%, rgba(13,14,16,.92) 100%); }
  .hero__scroll { right: 20px; top: auto; bottom: 36px; transform: none; }
  .hero__in { bottom: 96px; }
}
@media (max-width: 640px) {
  .logo__mark { width: 22px; height: 40px; }
  .gh-bg { height: 64px; }
  .works a, .works div, .works.media a, .works.media div { grid-template-columns: minmax(0, 1fr) 20px; padding: 16px 0; }
  .works .en { grid-column: 1 / -1; }
  .works .w-sub { grid-column: 1; white-space: normal; }
  .works .ar { grid-row: 2; grid-column: 2; }
  .works.media .ar { grid-row: 2; }
  .links { grid-template-columns: 1fr; }
  .wgrid, .ygrid, .mgrid, .ggrid, .range__grid { grid-template-columns: 1fr; }
  .vgrid, .kvgrid { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
  .kvgrid .works-t, .vgrid .works-t { font-size: 14px; }
  .ft__body { grid-template-columns: 1fr; gap: 28px; }
  .ft__top { width: 36px; height: 36px; }
  .gcap { flex-direction: column; gap: 4px; }
  .apparel__gallery { grid-template-columns: 1fr 1fr; }
  .mv { grid-template-columns: 1fr 1fr; }
  .hbig__mark { width: 60px; }
  .bnav, .cur-area { display: none; }
  .hsub { font-size: 10px; letter-spacing: .18em; padding: 0 24px; }
  .hero__note { left: 24px; top: 28px; right: 80px; font-size: 10px; }
  .hero__meta { left: 24px; top: 72px; gap: 16px; font-size: 10px; }
  .hero__scroll { right: 20px; bottom: 24px; }
  .op__t { font-size: 12px; }
  .facts .big { font-size: 32px; }

}
@media (min-width: 641px) and (max-width: 1100px) {
}
