@charset "UTF-8";

:root {
  --paper: #fbfaf8;
  --ink: #17181a;
  --ink-soft: #6c6a66;
  --ink-faint: #9b9892;
  --rule: #e4e0d9;
  --dark: #121213;
  --max: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 2;
  font-feature-settings: "palt" 1;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* width/height 属性を持つ画像が縦に伸びないように（aspect-ratio を効かせる） */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

p {
  text-align: justify;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}

:lang(en) p { text-align: left; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: 780px; }

/* ── header ─────────────────────────────────────────── */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px var(--gutter);
  color: #fff;
  transition: background-color .4s, color .4s, box-shadow .4s;
}

.site-header.is-solid {
  background: rgba(251, 250, 248, .93);
  backdrop-filter: blur(10px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--rule);
}

.site-header__name {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .06em;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 12.5px;
  letter-spacing: .08em;
}

.site-nav a { text-decoration: none; opacity: .85; }
.site-nav a:hover { opacity: 1; }

.lang {
  display: flex;
  gap: 6px;
  align-items: center;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .08em;
}

.lang button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  padding: 0 2px;
  cursor: pointer;
  opacity: .5;
}

.lang button[aria-pressed="true"] { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

.nav-toggle { display: none; }

@media (max-width: 860px) {
  .site-nav__links {
    position: fixed;
    inset: 0 0 auto 0;
    padding: 76px var(--gutter) 28px;
    background: var(--paper);
    color: var(--ink);
    display: grid;
    gap: 14px;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  }
  .site-nav__links[hidden] { display: none; }
  .nav-toggle {
    display: block;
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    font-size: 12.5px;
    letter-spacing: .1em;
    cursor: pointer;
    padding: 4px;
  }
}

@media (min-width: 861px) {
  .site-nav__links { display: flex; gap: clamp(14px, 2vw, 28px); }
  .site-nav__links[hidden] { display: flex; }
}

/* ── hero ───────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  background: var(--dark);
  color: #fff;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .96;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, .3) 60%, rgba(0, 0, 0, .68) 100%);
}

.hero__body {
  position: relative;
  padding: 0 var(--gutter) clamp(48px, 9vh, 96px);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 8.2vw, 104px);
  line-height: 1.02;
  letter-spacing: .01em;
  margin: 0 0 18px;
}

.hero__name span { display: block; }

.hero__lead {
  max-width: 34em;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 2.1;
  color: rgba(255, 255, 255, .88);
  margin: 0;
}

.hero__caption {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(48px, 9vh, 96px);
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .55);
  writing-mode: vertical-rl;
}

@media (max-width: 860px) { .hero__caption { display: none; } }

/* ── section ────────────────────────────────────────── */

.section { padding-block: clamp(72px, 11vw, 148px); }
.section--tight { padding-block: clamp(48px, 7vw, 92px); }
.section--dark { background: var(--dark); color: #fff; }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: clamp(28px, 4vw, 52px);
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 500;
  letter-spacing: .06em;
  margin: 0;
}

.section-head .en {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .14em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

.section--dark .section-head .en { color: rgba(255, 255, 255, .5); }

.section-head .more {
  margin-left: auto;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  white-space: nowrap;
}

/* ── atmosphere ─────────────────────────────────────── */

.atmos { display: grid; gap: clamp(10px, 1.4vw, 18px); }

.atmos__row {
  display: grid;
  gap: clamp(10px, 1.4vw, 18px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.atmos figure { margin: 0; }

.atmos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.atmos__wide img { aspect-ratio: 16 / 7; }

/* ── about ──────────────────────────────────────────── */

.about {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

@media (max-width: 860px) { .about { grid-template-columns: 1fr; } }

.about__portrait img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }

.about__text p + p { margin-top: 1.3em; }

.about__meta {
  margin-top: 28px;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  font-size: 13px;
  color: var(--ink-soft);
  display: grid;
  gap: 6px;
}

.about__meta div { display: flex; gap: 14px; }
.about__meta dt, .about__meta b { min-width: 6.5em; color: var(--ink); font-weight: 500; }

/* ── series tiles ───────────────────────────────────── */

.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

.series-card { text-decoration: none; display: block; }

.series-card__media {
  overflow: hidden;
  background: #efece6;
  aspect-ratio: 4 / 5;
}

.series-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2, .7, .2, 1);
}

.series-card:hover .series-card__media img { transform: scale(1.035); }

.series-card__body {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 14px;
}

.series-card__ja { font-size: 16px; letter-spacing: .04em; }
.series-card__en { font-family: var(--serif); font-size: 14px; letter-spacing: .1em; color: var(--ink-faint); }
.series-card__count { margin-left: auto; font-size: 12px; color: var(--ink-faint); }

/* ── work grid ──────────────────────────────────────── */

.work-grid {
  columns: 3 280px;
  column-gap: clamp(12px, 1.6vw, 22px);
}

.work-grid--portraits { columns: 6 150px; }

.work-grid figure {
  margin: 0 0 clamp(12px, 1.6vw, 22px);
  break-inside: avoid;
}

.work-grid button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.work-grid img { width: 100%; background: #efece6; }

.work-grid figcaption {
  font-size: 11.5px;
  color: var(--ink-faint);
  padding-top: 7px;
  line-height: 1.7;
}

.work-grid figcaption a { text-decoration: none; border-bottom: 1px solid var(--rule); }

/* ── lamppost strip ─────────────────────────────────── */

.lamppost {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 860px) { .lamppost { grid-template-columns: 1fr; } }

.lamppost__mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 6px;
}

.lamppost__mosaic img { aspect-ratio: 1; object-fit: cover; width: 100%; }

.lamppost__text p { color: rgba(255, 255, 255, .82); }

.lamppost__num {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

/* ── shop / news lists ──────────────────────────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
  gap: clamp(18px, 2.4vw, 32px);
}

.card { text-decoration: none; display: block; }
.card__media { background: #efece6; aspect-ratio: 1; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__name { font-size: 13.5px; padding-top: 12px; line-height: 1.75; }
.card__price { font-size: 12.5px; color: var(--ink-soft); }

.list { border-top: 1px solid var(--rule); }

.list a, .list > div {
  display: grid;
  grid-template-columns: 7.5em minmax(0, 1fr) auto;
  gap: 18px;
  padding: 16px 2px;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  align-items: baseline;
}

@media (max-width: 640px) {
  .list a, .list > div { grid-template-columns: 1fr; gap: 4px; }
}

.list time, .list .date {
  font-family: var(--serif);
  font-size: 13.5px;
  letter-spacing: .06em;
  color: var(--ink-faint);
}

.list .title { font-size: 14px; line-height: 1.8; }
.list .outlet { font-size: 12px; color: var(--ink-faint); white-space: nowrap; }

/* ── contact ────────────────────────────────────────── */

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(20px, 3vw, 40px);
}

.contact__item { border-top: 1px solid var(--rule); padding-top: 18px; }
.contact__item h3 { font-size: 14.5px; font-weight: 500; margin: 0 0 8px; letter-spacing: .04em; }
.contact__item p { font-size: 13px; color: var(--ink-soft); margin: 0; }

.contact__to {
  margin-top: clamp(28px, 4vw, 48px);
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: .04em;
}

.contact__to a { text-decoration: none; border-bottom: 1px solid var(--rule); }

/* ── footer ─────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--rule);
  padding-block: 40px 56px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.site-footer .wrap { display: flex; gap: 20px; flex-wrap: wrap; align-items: baseline; }
.site-footer nav { margin-left: auto; display: flex; gap: 18px; }
.site-footer a { text-decoration: none; }

.sample-note {
  background: #f1eee8;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .04em;
  padding: 10px var(--gutter);
  text-align: center;
}

/* ── lightbox ───────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 10, 11, .94);
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 56px);
}

.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 82svh; object-fit: contain; }

.lightbox__cap {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  text-align: center;
  padding-top: 14px;
}

.lightbox__close, .lightbox__nav {
  position: absolute;
  background: none;
  border: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 26px;
  cursor: pointer;
  padding: 12px 16px;
  opacity: .7;
}

.lightbox__close { top: 6px; right: 10px; }
.lightbox__nav--prev { left: 4px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 4px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { opacity: 1; }

/* ── works page ─────────────────────────────────────── */

.page-head { padding-top: clamp(96px, 12vw, 150px); }

.page-head h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 5.5vw, 62px);
  margin: 0 0 6px;
  letter-spacing: .02em;
}

.page-head .ja { font-size: clamp(15px, 1.6vw, 18px); letter-spacing: .08em; color: var(--ink-soft); }

.series-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-block: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid var(--rule);
  font-size: 13.5px;
}

.series-tabs a { text-decoration: none; color: var(--ink-faint); letter-spacing: .04em; }
.series-tabs a[aria-current="true"] { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 3px; }

.group-head {
  font-size: 14px;
  letter-spacing: .06em;
  margin: clamp(38px, 5vw, 64px) 0 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}

.cv-block + .cv-block { margin-top: clamp(38px, 5vw, 64px); }
.cv-block h2 { font-size: 15px; font-weight: 500; letter-spacing: .08em; margin: 0 0 14px; }
